From a51a99fb5666bdc149b5d1b589aae603d76f2a87 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Thu, 20 Nov 2025 13:27:00 +0100 Subject: [PATCH 01/23] Enable HA cluster with kube-vip --- ansible/inventory/offline/99-static | 10 +- ansible/inventory/offline/README.md | 122 ++ .../group_vars/k8s-cluster/k8s-cluster.yml | 68 + offline/kube-vip-ha-setup.md | 1279 +++++++++++++++++ 4 files changed, 1476 insertions(+), 3 deletions(-) create mode 100644 ansible/inventory/offline/README.md create mode 100644 ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml create mode 100644 offline/kube-vip-ha-setup.md diff --git a/ansible/inventory/offline/99-static b/ansible/inventory/offline/99-static index 2dd0febac..8389a4341 100644 --- a/ansible/inventory/offline/99-static +++ b/ansible/inventory/offline/99-static @@ -9,9 +9,9 @@ # # ansible_host= [all] -# kubenode1 ansible_host=100.89.110.8 ip=10.114.0.10 -# kubenode2 ansible_host=100.154.219.107 ip=10.114.0.8 -# kubenode3 ansible_host=100.227.143.169 ip=10.114.0.2 +kubenode1 ansible_host=192.168.122.21 ip=192.168.122.21 +kubenode2 ansible_host=192.168.122.22 ip=192.168.122.22 +kubenode3 ansible_host=192.168.122.23 ip=192.168.122.23 # You could add more if capacity is needed # kubenode4 .... @@ -144,6 +144,10 @@ postgresql_network_interface = enp1s0 kube-master kube-node +# Kubernetes cluster configuration (kube-vip, network plugins, etc.) +# is defined in group_vars/k8s-cluster/k8s-cluster.yml +# See offline/kube-vip-ha-setup.md for HA setup documentation + # Add all cassandra nodes here [cassandra] # cassandra1 diff --git a/ansible/inventory/offline/README.md b/ansible/inventory/offline/README.md new file mode 100644 index 000000000..c7e691610 --- /dev/null +++ b/ansible/inventory/offline/README.md @@ -0,0 +1,122 @@ +# Offline Inventory Configuration + +Ansible inventory for offline/air-gapped deployments of Wire infrastructure. + +## Quick Start + +### 1. Edit Inventory + +```bash +# Define your hosts +vim ansible/inventory/offline/99-static + +# Configure kube-vip HA (optional but recommended) +vim ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml +``` + +### 2. Deploy + +```bash +ansible-playbook -i ansible/inventory/offline ansible/kubernetes.yml +``` + +### 3. Access Cluster + +```bash +export KUBECONFIG=ansible/inventory/offline/artifacts/admin.conf +kubectl get nodes +``` + +## Directory Structure + +``` +offline/ +├── 99-static # Main inventory file +├── group_vars/ +│ ├── all/offline.yml # Base settings (k8s version, etc.) +│ ├── k8s-cluster/k8s-cluster.yml # kube-vip HA configuration +│ ├── postgresql/postgresql.yml # PostgreSQL settings +│ └── demo/offline.yml # Demo overrides +└── artifacts/ # Generated (kubeconfig, etc.) +``` + +## Configuration Files + +| File | Purpose | +|------|---------| +| `99-static` | Define hosts and group memberships | +| `group_vars/all/offline.yml` | Base settings (k8s version, container runtime) | +| `group_vars/k8s-cluster/k8s-cluster.yml` | kube-vip HA, API server, networking | +| `group_vars/postgresql/postgresql.yml` | PostgreSQL configuration | + +## Key Variables to Customize + +**In `99-static`:** +- Host IP addresses (`ansible_host` and `ip`) +- Node assignments to groups (`[kube-master]`, `[kube-node]`, `[etcd]`) + +**In `group_vars/k8s-cluster/k8s-cluster.yml`:** +- `kube_vip_address` - Virtual IP for HA (e.g., `192.168.122.100`) +- `kube_vip_interface` - Network interface (e.g., `enp1s0`) + +**In `group_vars/all/offline.yml`:** +- `kube_version` - Kubernetes version +- Network settings (usually defaults are fine) + +## Common Tasks + +### Deploy Full Cluster +```bash +ansible-playbook -i ansible/inventory/offline ansible/kubernetes.yml +``` + +### Add Node to Existing Cluster +```bash +# 1. Add node to 99-static +# 2. Run scale playbook +ansible-playbook -i ansible/inventory/offline \ + ansible/roles-external/kubespray/scale.yml +``` + +### Verify kube-vip HA +```bash +kubectl get pods -n kube-system | grep kube-vip +kubectl get lease -n kube-system plndr-cp-lock -o jsonpath='{.spec.holderIdentity}' +``` + +## Documentation + +- **kube-vip HA Setup**: [../../../docs/kube-vip-ha-setup.md](../../../docs/kube-vip-ha-setup.md) +- **Kubespray**: https://github.com/kubernetes-sigs/kubespray +- **Wire Docs**: https://docs.wire.com/ + +## Important Notes + +- VIP must be in same subnet as control plane nodes +- VIP must not be in DHCP range +- etcd requires odd number of members (3, 5, 7) +- Keep `artifacts/` directory secure (contains admin kubeconfig) +- For production, encrypt sensitive files with SOPS + +## Troubleshooting + +**Inventory not found:** +```bash +ansible-inventory -i ansible/inventory/offline --list +``` + +**Can't SSH to nodes:** +```bash +ansible -i ansible/inventory/offline all -m ping +``` + +**kube-vip not working:** +```bash +kubectl logs -n kube-system kube-vip-kubenode1 +``` + +See [docs/kube-vip-ha-setup.md](../../../docs/kube-vip-ha-setup.md) for detailed troubleshooting. + +--- + +**Last Updated**: 2024-11-19 diff --git a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml new file mode 100644 index 000000000..35e8192af --- /dev/null +++ b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml @@ -0,0 +1,68 @@ +--- +# Kubernetes cluster configuration for offline deployment +# +# This file contains configuration overrides for the Kubernetes cluster +# deployed via Kubespray. These settings override the defaults in +# ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/ + +# ============================================================================== +# kube-vip Configuration for High Availability Control Plane +# ============================================================================== +# +# kube-vip provides a Virtual IP (VIP) for the Kubernetes API server, +# enabling automatic failover between control plane nodes without requiring +# external load balancers. Perfect for bare-metal and air-gapped deployments. +# +# Documentation: docs/kube-vip-ha-setup.md +# Reference: https://kube-vip.io/ + +# Enable kube-vip +kube_vip_enabled: true + +# Enable control plane VIP (required for HA) +kube_vip_controlplane_enabled: true + +# Virtual IP address for the Kubernetes API server +# IMPORTANT: This must be: +# - In the same subnet as your control plane nodes +# - Unused and not in DHCP range +# - Accessible from all nodes and external clients +# Example: If control plane nodes are 192.168.122.21-23, use 192.168.122.100 +kube_vip_address: "192.168.122.100" + +# Network interface to bind the VIP to +# Find this by running: ssh kubenode1 "ip -br addr show" +# Example values: eth0, enp1s0 +kube_vip_interface: "enp1s0" + +# Use ARP for Layer 2 VIP management (recommended for most deployments) +# Set to false only if using BGP for Layer 3 routing +kube_vip_arp_enabled: true + +# Enable kube-vip for LoadBalancer services (optional) +# Set to true if you want kube-vip to also handle LoadBalancer service IPs +# For control plane HA only, keep this false +kube_vip_services_enabled: false + +# API server advertise address (use VIP for consistency) +# This is the address the API server advertises to clients +apiserver_loadbalancer_domain_name: "192.168.122.100" + +# Required for kube-vip with ARP mode +# Prevents kube-proxy from responding to ARP requests for the VIP +kube_proxy_strict_arp: true + +# Configure API server endpoint to use VIP +# This tells all Kubernetes components to connect via the VIP +loadbalancer_apiserver: + address: "192.168.122.100" + port: 6443 + +# Disable localhost load balancer since we have VIP +# When using kube-vip, we don't need the nginx localhost proxy +loadbalancer_apiserver_localhost: false + +# Add VIP to API server SSL certificates +# This ensures the API server certificate is valid for the VIP address +supplementary_addresses_in_ssl_keys: + - "192.168.122.100" diff --git a/offline/kube-vip-ha-setup.md b/offline/kube-vip-ha-setup.md new file mode 100644 index 000000000..afb6c195c --- /dev/null +++ b/offline/kube-vip-ha-setup.md @@ -0,0 +1,1279 @@ +# High Availability Kubernetes Control Plane with kube-vip + +## Table of Contents + +1. [Overview](#overview) +2. [Why kube-vip?](#why-kube-vip) +3. [How kube-vip Works](#how-kube-vip-works) +4. [How Kubespray Integrates kube-vip](#how-kubespray-integrates-kube-vip) +5. [Choosing a Virtual IP (VIP)](#choosing-a-virtual-ip-vip) +6. [Configuration Reference](#configuration-reference) +7. [Installation Guide](#installation-guide) +8. [Testing and Verification](#testing-and-verification) +9. [Troubleshooting](#troubleshooting) +10. [References](#references) + +--- + +## Overview + +kube-vip provides Kubernetes clusters with a **Virtual IP (VIP)** for the control plane API server, enabling **High Availability (HA)** without requiring external load balancers. This is especially valuable for bare-metal, on-premises, and air-gapped deployments where cloud load balancers are unavailable. + +### The Problem + +In a multi-master Kubernetes cluster, when one control plane node fails, clients connecting directly to that node's IP address lose connectivity: + +``` +Client → kubenode1 (192.168.122.21:6443) ❌ [Node fails] + kubenode2 (192.168.122.22:6443) ✅ [Still running] + kubenode3 (192.168.122.23:6443) ✅ [Still running] +``` + +Without HA configuration, all kubeconfigs and kubelets point to the first control plane node, creating a **single point of failure**. + +### The Solution: kube-vip + +kube-vip creates a floating VIP that automatically fails over between healthy control plane nodes: + +``` +Client → VIP (192.168.122.100:6443) ✅ [Always available] + ↓ (automatically routes to healthy node) + kubenode1 (192.168.122.21:6443) ❌ [Node fails] + kubenode2 (192.168.122.22:6443) ✅ [Active - owns VIP] + kubenode3 (192.168.122.23:6443) ✅ [Standby] +``` + +--- + +## Why kube-vip? + +### Comparison of HA Solutions + +| Solution | Infrastructure Required | Setup Complexity | Best For | +|----------|------------------------|------------------|----------| +| **kube-vip** | None (Layer 2 ARP) | Low (built into Kubespray) | Bare-metal, on-prem, offline | +| Cloud LB | Cloud provider (AWS ELB, GCP LB) | Low (automated) | Cloud deployments | +| HAProxy + keepalived | External VMs/containers | High (manual setup) | Legacy environments | +| nginx localhost proxy | None | Low | Limited HA (per-node only) | + +### Why kube-vip is the Best Choice for wire-server-deploy + +1. **Zero External Dependencies** + - No external load balancers required + - No additional infrastructure costs + - Works in air-gapped/offline environments + +2. **Native Kubespray Integration** + - Built into Kubespray v2.25+ (used by wire-server-deploy) + - Automatic deployment and configuration + - No manual installation steps + +3. **True High Availability** + - Automatic failover (typically <2 seconds) + - Works for both internal (kubelet) and external (kubectl) clients + - Single IP for all API server access + +4. **Layer 2 Simplicity** + - Uses standard ARP protocol (no BGP routing needed) + - Works on any network with Layer 2 adjacency + - No firewall rule changes required + +5. **Production Ready** + - Battle-tested in CNCF ecosystem + - Active maintenance by kube-vip community + - Used by major Kubernetes distributions + +6. **Perfect for Hetzner/Bare-Metal** + - Works on bare-metal servers + - Compatible with virtual machines + - No cloud-specific dependencies + +### When NOT to Use kube-vip + +- **Cloud environments with native LBs**: Use cloud provider load balancers (cheaper, integrated) +- **Routed Layer 3 networks**: Use BGP mode or external LB instead of ARP mode +- **Windows control plane nodes**: kube-vip requires Linux + +--- + +## How kube-vip Works + +### Architecture + +kube-vip runs as a **static pod** on each control plane node and uses **leader election** to determine which node owns the VIP at any given time. + +``` +┌─────────────────────────────────────────────────────────────┐ +│ Control Plane │ +├─────────────────────────────────────────────────────────────┤ +│ │ +│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │ +│ │ kubenode1 │ │ kubenode2 │ │ kubenode3 │ │ +│ │ │ │ │ │ │ │ +│ │ kube-vip pod │ │ kube-vip pod │ │ kube-vip pod │ │ +│ │ (standby) │ │ (LEADER) │ │ (standby) │ │ +│ │ │ │ OWNS VIP │ │ │ │ +│ └──────────────┘ └──────┬───────┘ └──────────────┘ │ +│ │ │ +│ │ ARP Announcement │ +└──────────────────────────────┼───────────────────────────────┘ + │ + VIP: 192.168.122.100 + │ + ┌──────────▼──────────┐ + │ Network switches │ + │ learn MAC address │ + └──────────┬──────────┘ + │ + ┌──────────▼──────────┐ + │ Client requests │ + │ routed to leader │ + └─────────────────────┘ +``` + +### Key Components + +1. **Static Pod Manifest** (`/etc/kubernetes/manifests/kube-vip.yml`) + - Deployed by Kubespray on each control plane node + - Starts before kubelet is fully initialized + - Ensures VIP is available during cluster bootstrap + +2. **Leader Election** + - Uses Kubernetes lease mechanism + - Leader holds a lease named `plndr-cp-lock` in `kube-system` namespace + - Lease renewed every 15 seconds (default) + +3. **ARP Announcement** + - Leader sends gratuitous ARP packets + - Network learns VIP → Leader's MAC address mapping + - Clients automatically route to the active leader + +4. **Health Checks** + - Monitors local API server health + - If leader becomes unhealthy, releases lease + - Standby node detects failure and takes over VIP + +### Failover Process + +When the leader node fails: + +1. **Lease expires** (no renewal for 15-30 seconds) +2. **Standby nodes compete** for leadership +3. **New leader elected** via Kubernetes lease API +4. **New leader claims VIP** and sends ARP announcement +5. **Network updates** MAC address → new leader +6. **Clients reconnect** automatically (typically <2s downtime) + +--- + +## How Kubespray Integrates kube-vip + +Kubespray (used by wire-server-deploy) has **native kube-vip support** built-in since version 2.25.0. This integration is handled in the `kubernetes/node` role. + +### Kubespray's Automatic Setup + +When you enable kube-vip in your inventory, Kubespray automatically: + +1. **Downloads kube-vip Image** + - Pulls `ghcr.io/kube-vip/kube-vip:v0.8.0` (configurable) + - Cached locally for offline deployments + - Configured in `roles/kubespray-defaults/defaults/main/download.yml` + +2. **Generates Static Pod Manifest** + - Template: `roles/kubernetes/node/templates/manifests/kube-vip.manifest.j2` + - Placed at: `/etc/kubernetes/manifests/kube-vip.yml` + - Kubelet automatically starts the pod + +3. **Validates Prerequisites** + - Checks `kube_proxy_strict_arp: true` (required for ARP mode) + - Verifies control plane node roles + - Ensures network interface exists + +4. **Configures API Server** + - Updates `loadbalancer_apiserver` to use VIP + - Adds VIP to API server certificate SANs + - Configures kubeconfig with VIP endpoint + +### Relevant Kubespray Code + +```yaml +# File: ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml (line 24-30) +- name: Install kube-vip + import_tasks: loadbalancer/kube-vip.yml + when: + - is_kube_master + - kube_vip_enabled + tags: + - kube-vip +``` + +```yaml +# File: ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/kube-vip.yml +- name: Kube-vip | Check cluster settings for kube-vip + fail: + msg: "kube-vip require kube_proxy_strict_arp = true" + when: + - kube_proxy_mode == 'ipvs' and not kube_proxy_strict_arp + - kube_vip_arp_enabled + +- name: Kube-vip | Write static pod + template: + src: manifests/kube-vip.manifest.j2 + dest: "{{ kube_manifest_dir }}/kube-vip.yml" + mode: 0640 +``` + +### Kubespray Default Variables + +```yaml +# File: ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/main.yml +kube_vip_enabled: false # Override in your inventory + +# File: ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/download.yml +kube_vip_image_repo: "{{ github_image_repo }}/kube-vip/kube-vip" +kube_vip_image_tag: v0.8.0 +``` + +--- + +## Choosing a Virtual IP (VIP) + +### Requirements for VIP Selection + +The VIP must meet these criteria: + +1. **Same subnet** as control plane nodes +2. **Unused/available** (not assigned to any host) +3. **Not in DHCP range** (to prevent conflicts) +4. **Routable** within your network +5. **Not a broadcast or network address** + +### Step-by-Step VIP Selection + +#### 1. Identify Your Control Plane Network + +```bash +# SSH to any control plane node +ssh kubenode1 + +# Check IP and subnet +ip addr show enp1s0 +``` + +Example output: +``` +2: enp1s0: mtu 1500 + inet 192.168.122.21/24 brd 192.168.122.255 scope global enp1s0 +``` + +**Example Network information:** +- IP: `192.168.122.21` +- Subnet mask: `/24` (255.255.255.0) +- Network range: `192.168.122.0 - 192.168.122.255` +- Broadcast: `192.168.122.255` + +#### 2. Check for Unused IPs + +```bash +# Scan the subnet for unused IPs +nmap -sn 192.168.122.0/24 + +# Or use ping +for i in {1..254}; do + ping -c 1 -W 1 192.168.122.$i > /dev/null 2>&1 + if [ $? -ne 0 ]; then + echo "192.168.122.$i is available" + fi +done +``` + +#### 3. Verify No DHCP Conflict + +Check your DHCP server configuration to ensure the chosen IP is outside the DHCP range. + +Example DHCP configuration: +``` +# DHCP range: 192.168.122.50 - 192.168.122.200 +# Safe VIP choices: 192.168.122.2 - 192.168.122.49 +# 192.168.122.201 - 192.168.122.254 +``` + +#### 4. Test VIP Availability + +```bash +# From a control plane node +ping -c 5 192.168.122.100 # change with the IP used for VIP + +# Should show: "Destination Host Unreachable" or 100% packet loss +``` + +#### 5. Document Reserved IP + +Add the VIP to your network documentation to prevent future conflicts: + +``` +# /etc/hosts or DNS records +192.168.122.100 k8s-api.example.com # kube-vip VIP for Kubernetes API +``` + +### VIP Selection Examples + +#### Example 1: Small Network (192.168.1.0/24) + +``` +Control plane nodes: 192.168.1.10, 192.168.1.11, 192.168.1.12 +DHCP range: 192.168.1.100 - 192.168.1.200 +Good VIP choice: 192.168.1.5 (near control plane, outside DHCP) +``` + +#### Example 2: Hetzner Cloud (10.0.0.0/24) + +``` +Control plane nodes: 10.0.0.2, 10.0.0.3, 10.0.0.4 +DHCP range: 10.0.0.10 - 10.0.0.250 +Good VIP choice: 10.0.0.5 (contiguous with nodes, easy to remember) +``` + +#### Example 3: Large Network (172.16.0.0/16) + +``` +Control plane subnet: 172.16.10.0/24 +Control plane nodes: 172.16.10.11, 172.16.10.12, 172.16.10.13 +DHCP range: 172.16.10.50 - 172.16.10.200 +Good VIP choice: 172.16.10.10 (easy pattern, outside DHCP) +``` + +### VIP Best Practices + +✅ **DO:** +- Choose an IP near your control plane nodes (easy to remember) +- Use a "round" number (e.g., .10, .100, .200) +- Document the VIP in network inventory +- Test availability before deployment +- Reserve the IP in DHCP server (exclusion) + +❌ **DON'T:** +- Use .1 (often router/gateway) +- Use .255 (broadcast address) +- Use random high numbers (hard to remember) +- Pick an IP in DHCP range +- Use an IP from a different subnet + +--- + +## Configuration Reference + +### Complete Configuration Variables + +All configuration is done in the Ansible inventory's `group_vars/k8s-cluster/` directory. + +#### Required Variables + +```yaml +# File: ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml + +# Enable kube-vip +kube_vip_enabled: true + +# Enable control plane VIP (required for HA) +kube_vip_controlplane_enabled: true + +# The Virtual IP address +kube_vip_address: "192.168.122.100" + +# Network interface to bind VIP to +kube_vip_interface: "enp1s0" + +# Use ARP for Layer 2 VIP management +kube_vip_arp_enabled: true + +# Required for kube-vip ARP mode +kube_proxy_strict_arp: true +``` + +#### API Server Configuration + +```yaml +# Configure API server to advertise VIP +apiserver_loadbalancer_domain_name: "192.168.122.100" + +# Configure load balancer endpoint +loadbalancer_apiserver: + address: "192.168.122.100" + port: 6443 + +# Disable localhost load balancer (not needed with VIP) +loadbalancer_apiserver_localhost: false +``` + +#### Certificate Configuration + +```yaml +# Add VIP to API server SSL certificates +supplementary_addresses_in_ssl_keys: + - "192.168.122.100" +``` + +### Optional Variables + +```yaml +# Use kube-vip for LoadBalancer services (not just control plane) +kube_vip_services_enabled: false # Recommended: false for control plane only + +# Use BGP instead of ARP (for routed Layer 3 networks) +kube_vip_bgp_enabled: false +kube_vip_bgp_routerid: "192.168.122.1" +kube_vip_bgp_as: 65000 +kube_vip_bgp_peeraddress: "192.168.122.1" +kube_vip_bgp_peeras: 65000 + +# Custom kube-vip image (for air-gapped deployments) +kube_vip_image_repo: "ghcr.io/kube-vip/kube-vip" +kube_vip_image_tag: "v0.8.0" + +# Leader election configuration (advanced) +kube_vip_lease_duration: "15s" +kube_vip_renew_deadline: "10s" +kube_vip_retry_period: "2s" +``` + +### Variable Reference Table + +| Variable | Required | Default | Description | +|----------|----------|---------|-------------| +| `kube_vip_enabled` | Yes | `false` | Enable kube-vip | +| `kube_vip_controlplane_enabled` | Yes | - | Enable control plane VIP | +| `kube_vip_address` | Yes | - | Virtual IP address | +| `kube_vip_interface` | Yes | - | Network interface name | +| `kube_vip_arp_enabled` | Yes* | - | Use ARP for Layer 2 | +| `kube_proxy_strict_arp` | Yes* | `false` | Required when using ARP mode | +| `loadbalancer_apiserver` | Yes | - | API server endpoint config | +| `supplementary_addresses_in_ssl_keys` | Yes | - | Add VIP to certificates | +| `kube_vip_services_enabled` | No | `false` | Enable LoadBalancer services | +| `kube_vip_bgp_enabled` | No | `false` | Use BGP instead of ARP | +| `apiserver_loadbalancer_domain_name` | Recommended | - | API server advertise address | +| `loadbalancer_apiserver_localhost` | Recommended | `true` | Disable for VIP setup | + +\* Required when using ARP mode (Layer 2). For BGP mode (Layer 3), use `kube_vip_bgp_enabled: true` instead. + +### Network Interface Detection + +To find your network interface name: + +```bash +# SSH to a control plane node +ssh kubenode1 + +# List network interfaces +ip link show + +# Or filter for active interfaces +ip -br addr show | grep UP +``` + +Common interface names: +- **eth0** - Traditional naming +- **enp1s0** - Predictable naming (PCI bus 1, slot 0) +- **ens3** - Predictable naming (hotplug slot 3) +- **eno1** - Onboard device naming + +--- + +## Installation Guide + +### Prerequisites + +Before starting, ensure: + +1. ✅ **Kubespray initialized** + ```bash + git submodule update --init ansible/roles-external/kubespray + ``` + +2. ✅ **Inventory configured** with control plane nodes + - Edit `ansible/inventory/offline/99-static` + - Uncomment and configure `[kube-master]`, `[kube-node]`, `[etcd]` sections + +3. ✅ **SSH access** to all nodes + ```bash + ssh kubenode1 'echo "SSH working"' + ``` + +4. ✅ **VIP selected** and verified available + +5. ✅ **Network interface name** identified + +### Installation Steps + +#### Step 1: Create kube-vip Configuration + +```bash +# Create the directory +mkdir -p ansible/inventory/offline/group_vars/k8s-cluster + +# Create the configuration file +cat > ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml << 'EOF' +--- +# kube-vip for control plane HA with VIP +kube_vip_enabled: true +kube_vip_controlplane_enabled: true +kube_vip_address: "192.168.122.100" # CHANGE THIS +kube_vip_interface: "enp1s0" # CHANGE THIS +kube_vip_arp_enabled: true +kube_vip_services_enabled: false + +# Configure API server domain name +apiserver_loadbalancer_domain_name: "192.168.122.100" + +# Required for kube-vip with ARP mode +kube_proxy_strict_arp: true + +# Configure API server endpoint to use VIP +loadbalancer_apiserver: + address: "192.168.122.100" # CHANGE THIS + port: 6443 + +# Disable localhost LB since we have VIP +loadbalancer_apiserver_localhost: false + +# Add VIP to API server SSL certificates +supplementary_addresses_in_ssl_keys: + - "192.168.122.100" # CHANGE THIS +EOF +``` + +**Important:** Replace `192.168.122.100` with your chosen VIP and `enp1s0` with your interface name. + +#### Step 2: Configure Inventory + +Ensure your inventory file has control plane nodes defined: + +```ini +# File: ansible/inventory/offline/99-static + +[all] +kubenode1 ansible_host=192.168.122.21 ip=192.168.122.21 +kubenode2 ansible_host=192.168.122.22 ip=192.168.122.22 +kubenode3 ansible_host=192.168.122.23 ip=192.168.122.23 + +[kube-master] +kubenode1 +kubenode2 +kubenode3 + +[etcd] +kubenode1 etcd_member_name=etcd1 +kubenode2 etcd_member_name=etcd2 +kubenode3 etcd_member_name=etcd3 + +[kube-node] +kubenode1 +kubenode2 +kubenode3 + +[k8s-cluster:children] +kube-master +kube-node +``` + +#### Step 3: Deploy Kubernetes with kube-vip + +For a **new cluster**: + +```bash +# Deploy full Kubernetes cluster with kube-vip +ansible-playbook -i ansible/inventory/offline/hosts.ini ansible/kubernetes.yml +``` + +For an **existing cluster** (adding kube-vip): + +```bash +# Deploy only kube-vip and update control plane +ansible-playbook -i ansible/inventory/offline/hosts.ini \ + ansible/kubernetes.yml \ + --tags=node,kube-vip,master +``` + +Expected output: +``` +PLAY [Install Kubernetes nodes] ******************************************* + +TASK [kubernetes/node : Install kube-vip] ********************************* +included: /path/to/kubespray/roles/kubernetes/node/tasks/loadbalancer/kube-vip.yml + +TASK [kubernetes/node : Kube-vip | Check cluster settings for kube-vip] *** +ok: [kubenode1] + +TASK [kubernetes/node : Kube-vip | Write static pod] ********************** +changed: [kubenode1] +changed: [kubenode2] +changed: [kubenode3] + +PLAY RECAP **************************************************************** +kubenode1 : ok=45 changed=3 failed=0 +kubenode2 : ok=42 changed=3 failed=0 +kubenode3 : ok=42 changed=3 failed=0 +``` + +#### Step 4: Wait for kube-vip Pods + +```bash +# SSH to a control plane node +ssh kubenode1 + +# Wait for kube-vip static pods to start (may take 30-60 seconds) +watch kubectl get pods -n kube-system -l component=kube-vip +``` + +Expected output: +``` +NAME READY STATUS RESTARTS AGE +kube-vip-kubenode1 1/1 Running 0 45s +kube-vip-kubenode2 1/1 Running 0 45s +kube-vip-kubenode3 1/1 Running 0 45s +``` + +#### Step 5: Update Local Kubeconfig + +```bash +# Copy kubeconfig from artifacts +export KUBECONFIG=ansible/inventory/offline/artifacts/admin.conf + +# Verify it uses VIP +kubectl config view --minify -o jsonpath='{.clusters[0].cluster.server}' +# Should output: https://192.168.122.100:6443 +``` + +If not using VIP, update manually: + +```bash +kubectl config set-cluster cluster.local --server=https://192.168.122.100:6443 +``` + +--- + +## Testing and Verification + +### 1. Verify VIP is Active + +```bash +# SSH to each control plane node and check if VIP is present +ssh kubenode1 "ip addr show enp1s0 | grep 192.168.122.100" +ssh kubenode2 "ip addr show enp1s0 | grep 192.168.122.100" +ssh kubenode3 "ip addr show enp1s0 | grep 192.168.122.100" +``` + +**Expected result:** VIP should appear on exactly **one** node (the leader). + +Example output from leader: +``` +inet 192.168.122.21/24 brd 192.168.122.255 scope global enp1s0 +inet 192.168.122.100/32 scope global enp1s0 # <-- VIP present +``` + +### 2. Check kube-vip Leader Election + +```bash +# Check which node is the leader +# Note: The lease is named "plndr-cp-lock" (legacy name from kube-vip's previous project) +kubectl get lease -n kube-system plndr-cp-lock -o jsonpath='{.spec.holderIdentity}' +# Output: kubenode2 (or whichever node is current leader) +``` + +### 3. Test API Server Connectivity via VIP + +```bash +# From your local machine (outside cluster) +export KUBECONFIG=ansible/inventory/offline/artifacts/admin.conf + +# Test API connectivity +kubectl get nodes +kubectl cluster-info +``` + +Expected output: +``` +NAME STATUS ROLES AGE VERSION +kubenode1 Ready control-plane 10m v1.29.10 +kubenode2 Ready control-plane 10m v1.29.10 +kubenode3 Ready control-plane 10m v1.29.10 + +Kubernetes control plane is running at https://192.168.122.100:6443 +``` + +### 4. Test Failover (Simulated Node Failure) + +This is the **critical test** to verify HA works correctly. + +```bash +# Identify current leader +LEADER=$(kubectl get lease -n kube-system plndr-cp-lock -o jsonpath='{.spec.holderIdentity}') +echo "Current leader: $LEADER" + +# SSH to leader and stop kubelet (simulates node failure) +ssh $LEADER "sudo systemctl stop kubelet" + +# Watch VIP failover (should complete in <5 seconds) +watch -n 1 'kubectl get lease -n kube-system plndr-cp-lock -o jsonpath="{.spec.holderIdentity}"; echo' + +# Test API connectivity during failover +while true; do + kubectl get nodes --request-timeout=2s > /dev/null 2>&1 && echo "✅ API reachable" || echo "❌ API unavailable" + sleep 1 +done +``` + +**Expected behavior:** +1. Leader changes to a different node within 5-10 seconds +2. API may be briefly unavailable (1-3 seconds) +3. All subsequent requests succeed + +```bash +# Restore the stopped node +ssh $LEADER "sudo systemctl start kubelet" +``` + +### 5. Verify ARP Table Updates + +From a node on the same network: + +```bash +# Check ARP table for VIP +ip neigh show 192.168.122.100 + +# Should show the MAC address of the current leader node +# Example: 192.168.122.100 dev eth0 lladdr 52:54:00:12:34:56 REACHABLE +``` + +### 6. Check kube-vip Logs + +```bash +# View logs from current leader +LEADER=$(kubectl get lease -n kube-system plndr-cp-lock -o jsonpath='{.spec.holderIdentity}') +ssh $LEADER "sudo crictl logs $(sudo crictl ps | grep kube-vip | awk '{print $1}')" + +# Or view logs using kubectl +kubectl logs -n kube-system kube-vip-kubenode1 +``` + +Expected log entries: +``` +time="2024-11-19T09:00:00Z" level=info msg="Starting kube-vip" +time="2024-11-19T09:00:01Z" level=info msg="Starting Leader Election" +time="2024-11-19T09:00:05Z" level=info msg="Acquired leadership, starting VIP" +time="2024-11-19T09:00:05Z" level=info msg="Broadcasting ARP for 192.168.122.100" +``` + +### 7. Load Test (Optional) + +Test API server under load during failover: + +```bash +# Terminal 1: Generate continuous API requests +while true; do + kubectl get nodes --request-timeout=1s + sleep 0.5 +done + +# Terminal 2: Force failover +LEADER=$(kubectl get lease -n kube-system plndr-cp-lock -o jsonpath='{.spec.holderIdentity}') +ssh $LEADER "sudo systemctl stop kubelet" + +# Monitor success rate in Terminal 1 +# Expect: <1% failure rate during failover window +``` + +### Verification Checklist + +- [ ] VIP appears on exactly one control plane node +- [ ] kube-vip pods running on all control plane nodes +- [ ] Leader election lease `plndr-cp-lock` exists in `kube-system` namespace +- [ ] API server accessible via VIP from external client +- [ ] Kubeconfig uses VIP address (not individual node IPs) +- [ ] Failover completes within 5 seconds when leader node fails +- [ ] API requests succeed through failover (minimal downtime) +- [ ] VIP returns to original node after restart (optional) +- [ ] ARP table shows correct MAC address for VIP +- [ ] No error messages in kube-vip logs + +--- + +## Troubleshooting + +### Common Issues and Solutions + +#### Issue 1: VIP Not Appearing on Any Node + +**Symptoms:** +```bash +ssh kubenode1 "ip addr show enp1s0 | grep 192.168.122.100" +# No output +``` + +**Possible Causes:** + +1. **kube-vip pods not running** + ```bash + kubectl get pods -n kube-system | grep kube-vip + # Check STATUS column + ``` + + **Solution:** Check pod logs: + ```bash + kubectl logs -n kube-system kube-vip-kubenode1 + ``` + +2. **Wrong interface name** + ```bash + ssh kubenode1 "ip link show enp1s0" + # interface enp1s0 does not exist + ``` + + **Solution:** Find correct interface and update config: + ```bash + ssh kubenode1 "ip -br link show" + # Update kube_vip_interface in group_vars/k8s-cluster/k8s-cluster.yml + ``` + +3. **Lease acquisition failure** + ```bash + kubectl get lease -n kube-system plndr-cp-lock + # Error: leases.coordination.k8s.io "plndr-cp-lock" not found + ``` + + **Solution:** Check kube-vip logs for RBAC errors: + ```bash + # Look for "forbidden" or "unauthorized" messages + kubectl logs -n kube-system kube-vip-kubenode1 | grep -i error + ``` + +#### Issue 2: kube_proxy_strict_arp Error + +**Symptoms:** +``` +TASK [kubernetes/node : Kube-vip | Check cluster settings for kube-vip] +fatal: [kubenode1]: FAILED! => { + "msg": "kube-vip require kube_proxy_strict_arp = true" +} +``` + +**Solution:** +```bash +# Add to group_vars/k8s-cluster/k8s-cluster.yml +echo "kube_proxy_strict_arp: true" >> ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml + +# Re-run playbook +ansible-playbook -i ansible/inventory/offline/99-static ansible/kubernetes.yml --tags=node,kube-vip +``` + +#### Issue 3: VIP Not Reachable from External Network + +**Symptoms:** +```bash +# From external machine +ping 192.168.122.100 +# Destination Host Unreachable +``` + +**Possible Causes:** + +1. **VIP on wrong subnet** + ```bash + # Check control plane node subnet + ssh kubenode1 "ip addr show enp1s0" + # Ensure VIP is in the same /24 (or /16) network + ``` + +2. **Firewall blocking traffic** + ```bash + # Check firewall rules on nodes + ssh kubenode1 "sudo iptables -L -n | grep 6443" + + # Allow API server port if blocked + ssh kubenode1 "sudo iptables -I INPUT -p tcp --dport 6443 -j ACCEPT" + ``` + +3. **ARP not propagating** + ```bash + # From a node on the same network, check ARP table + ip neigh show | grep 192.168.122.100 + + # If missing, manually trigger ARP refresh + arping -I enp1s0 -c 3 192.168.122.100 + ``` + +#### Issue 4: Failover Not Working + +**Symptoms:** +```bash +# Stop leader node +ssh kubenode1 "sudo systemctl stop kubelet" + +# VIP doesn't move to another node (after 30+ seconds) +ssh kubenode2 "ip addr show | grep 192.168.122.100" +# No output +``` + +**Diagnosis:** + +1. **Check if standby nodes see leader failure** + ```bash + kubectl get lease -n kube-system plndr-cp-lock -o yaml + # Check renewTime - should be stale (>30s old) + ``` + +2. **Check standby kube-vip logs** + ```bash + ssh kubenode2 "sudo crictl logs $(sudo crictl ps | grep kube-vip | awk '{print $1}')" + # Look for: "Attempting to acquire lease" or "Acquired leadership" + + # Or using kubectl + kubectl logs -n kube-system kube-vip-kubenode2 | tail -50 + ``` + +3. **Verify network connectivity between nodes** + ```bash + ssh kubenode2 "ping -c 3 192.168.122.21" + ssh kubenode2 "nc -zv 192.168.122.21 6443" + ``` + +**Solution:** Restart kube-vip pods: +```bash +# Delete static pod manifest (kubelet will recreate it) +ssh kubenode2 "sudo rm /etc/kubernetes/manifests/kube-vip.yml" +sleep 5 +ssh kubenode2 "sudo systemctl restart kubelet" +``` + +#### Issue 5: Certificate Errors After Enabling VIP + +**Symptoms:** +```bash +kubectl get nodes +# Unable to connect to the server: x509: certificate is valid for 192.168.122.21, not 192.168.122.100 +``` + +**Solution:** VIP not in certificate SANs. Add to config and regenerate certificates: + +```bash +# Ensure this is in group_vars/k8s-cluster/k8s-cluster.yml +supplementary_addresses_in_ssl_keys: + - "192.168.122.100" + +# Regenerate certificates +ansible-playbook -i ansible/inventory/offline/99-static \ + ansible/kubernetes.yml \ + --tags=master + +# Or use Kubespray's certificate renewal playbook +ansible-playbook -i ansible/inventory/offline/99-static \ + ansible/roles-external/kubespray/extra_playbooks/upgrade-only.yml \ + --tags=upgrade-certs +``` + +#### Issue 6: Multiple Nodes Claiming VIP (Split Brain) + +**Symptoms:** +```bash +# VIP appears on multiple nodes simultaneously +ssh kubenode1 "ip addr show | grep 192.168.122.100" # Present +ssh kubenode2 "ip addr show | grep 192.168.122.100" # Present (BUG!) +``` + +**This is a critical issue.** Possible causes: + +1. **Network partition** - Nodes can't communicate +2. **Lease API unavailable** - etcd or API server problems +3. **Time sync issues** - NTP drift between nodes + +**Diagnosis:** +```bash +# Check if nodes can reach API server +ssh kubenode1 "curl -k https://127.0.0.1:6443/healthz" +ssh kubenode2 "curl -k https://127.0.0.1:6443/healthz" + +# Check time sync +ssh kubenode1 "date +%s" +ssh kubenode2 "date +%s" +# Should be within 1-2 seconds + +# Check lease status +kubectl get lease -n kube-system plndr-cp-lock -o yaml +``` + +**Solution:** +```bash +# Restart kube-vip on all nodes in sequence +for node in kubenode1 kubenode2 kubenode3; do + ssh $node "sudo rm /etc/kubernetes/manifests/kube-vip.yml && sleep 5 && sudo systemctl restart kubelet" + sleep 10 +done + +# Fix time sync if needed +for node in kubenode1 kubenode2 kubenode3; do + ssh $node "sudo systemctl restart systemd-timesyncd" +done +``` + +#### Issue 7: Pods Can't Reach API Server via VIP + +**Symptoms:** +```bash +# Inside a pod +kubectl exec -it mypod -- curl -k https://192.168.122.100:6443/healthz +# Connection timeout +``` + +**Cause:** VIP is Layer 2 (ARP) and only works for external traffic. Pods use internal Kubernetes service. + +**Solution:** This is **expected behavior**. Pods should use the Kubernetes service: +```bash +# Pods automatically use this (injected by kubelet) +kubectl get svc kubernetes -n default +# NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE +# kubernetes ClusterIP 10.233.0.1 443/TCP 1h +``` + +No action needed - this is correct. + +### Debug Commands Cheatsheet + +```bash +# Check VIP assignment +for node in kubenode1 kubenode2 kubenode3; do + echo "$node:" + ssh $node "ip addr show | grep -A2 '192.168.122.100'" +done + +# Check kube-vip pod status +kubectl get pods -n kube-system | grep kube-vip + +# Check current leader +kubectl get lease -n kube-system plndr-cp-lock -o jsonpath='{.spec.holderIdentity}{"\n"}' + +# View kube-vip logs from all nodes +for node in kubenode1 kubenode2 kubenode3; do + echo "=== $node ===" + kubectl logs -n kube-system kube-vip-$node +done + +# Check API server certificate SANs +echo | openssl s_client -connect 192.168.122.100:6443 -showcerts 2>/dev/null | \ + openssl x509 -noout -text | grep -A1 "Subject Alternative Name" + +# Check ARP table on all nodes +for node in kubenode1 kubenode2 kubenode3; do + echo "$node:" + ssh $node "ip neigh show 192.168.122.100" +done + +# Force leader election (for testing) +kubectl delete lease -n kube-system plndr-cp-lock + +# Check kube-proxy mode +kubectl get configmap -n kube-system kube-proxy -o yaml | grep mode + +# Verify strict ARP setting +kubectl get configmap -n kube-system kube-proxy -o yaml | grep strictARP +``` + +### Getting Help + +If issues persist: + +1. **Check kube-vip GitHub issues**: https://github.com/kube-vip/kube-vip/issues +2. **Review Kubespray documentation**: https://github.com/kubernetes-sigs/kubespray +3. **Wire server-deploy issues**: https://github.com/wireapp/wire-server-deploy/issues +4. **Include diagnostic information:** + ```bash + # Gather diagnostic bundle + kubectl cluster-info dump --output-directory=/tmp/k8s-debug + + # Collect kube-vip logs + for node in kubenode{1..3}; do + ssh $node "sudo crictl logs \$(sudo crictl ps --name kube-vip -q)" \ + > /tmp/kube-vip-$node.log 2>&1 + done + ``` + +--- + +## References + +### Official Documentation + +- **kube-vip Project**: https://kube-vip.io/ +- **kube-vip GitHub**: https://github.com/kube-vip/kube-vip +- **Kubespray Documentation**: https://github.com/kubernetes-sigs/kubespray + +### wire-server-deploy References + +- **Main Repository**: https://github.com/wireapp/wire-server-deploy +- **Inventory Configuration**: ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml +- **Kubespray Integration**: ansible/kubernetes.yml + +### Kubespray kube-vip Implementation + +- **kube-vip Role**: ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/kube-vip.yml +- **kube-vip Template**: ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/kube-vip.manifest.j2 +- **Default Variables**: ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/main.yml +- **Image Configuration**: ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/download.yml + +### Related Technologies + +- **VRRP (Virtual Router Redundancy Protocol)**: RFC 5798 +- **ARP (Address Resolution Protocol)**: RFC 826 +- **Kubernetes Leases**: https://kubernetes.io/docs/concepts/architecture/leases/ +- **Kubernetes HA**: https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/high-availability/ + +### Version Information + +- **Kubespray Version**: v2.25.1+ (used by wire-server-deploy) +- **kube-vip Version**: v0.8.0 (default in Kubespray v2.25.1) +- **Kubernetes Version**: v1.29.10 (as configured in wire-server-deploy) +- **Supported OS**: Ubuntu 22.04, Debian 11/12, Rocky Linux 9 + +--- + +## Appendix: Example Configurations + +### Example 1: Basic 3-Node Cluster + +```yaml +# File: ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml +--- +kube_vip_enabled: true +kube_vip_controlplane_enabled: true +kube_vip_address: "10.0.1.100" +kube_vip_interface: "eth0" +kube_vip_arp_enabled: true +kube_vip_services_enabled: false + +apiserver_loadbalancer_domain_name: "10.0.1.100" +kube_proxy_strict_arp: true + +loadbalancer_apiserver: + address: "10.0.1.100" + port: 6443 + +loadbalancer_apiserver_localhost: false + +supplementary_addresses_in_ssl_keys: + - "10.0.1.100" +``` + +### Example 2: With DNS Name + +```yaml +--- +kube_vip_enabled: true +kube_vip_controlplane_enabled: true +kube_vip_address: "192.168.1.10" +kube_vip_interface: "ens18" +kube_vip_arp_enabled: true +kube_vip_services_enabled: false + +# Use DNS name for better readability +apiserver_loadbalancer_domain_name: "k8s-api.example.com" +kube_proxy_strict_arp: true + +loadbalancer_apiserver: + address: "192.168.1.10" # Resolve k8s-api.example.com to this IP in DNS + port: 6443 + +loadbalancer_apiserver_localhost: false + +supplementary_addresses_in_ssl_keys: + - "192.168.1.10" + - "k8s-api.example.com" +``` + +### Example 3: Offline/Air-Gapped Deployment + +```yaml +--- +kube_vip_enabled: true +kube_vip_controlplane_enabled: true +kube_vip_address: "172.16.0.10" +kube_vip_interface: "enp1s0" +kube_vip_arp_enabled: true +kube_vip_services_enabled: false + +# Use local container registry for offline deployment +kube_vip_image_repo: "registry.local:5000/kube-vip/kube-vip" +kube_vip_image_tag: "v0.8.0" + +apiserver_loadbalancer_domain_name: "172.16.0.10" +kube_proxy_strict_arp: true + +loadbalancer_apiserver: + address: "172.16.0.10" + port: 6443 + +loadbalancer_apiserver_localhost: false + +supplementary_addresses_in_ssl_keys: + - "172.16.0.10" +``` + +### Example 4: Large Cluster with BGP (Advanced) + +For routed Layer 3 networks (data centers with BGP): + +```yaml +--- +kube_vip_enabled: true +kube_vip_controlplane_enabled: true +kube_vip_address: "10.100.0.10" +kube_vip_interface: "ens192" + +# Use BGP instead of ARP +kube_vip_arp_enabled: false +kube_vip_bgp_enabled: true +kube_vip_bgp_routerid: "10.100.0.10" +kube_vip_bgp_as: 65001 +kube_vip_bgp_peeraddress: "10.100.0.1" # BGP router +kube_vip_bgp_peeras: 65000 + +kube_vip_services_enabled: false + +apiserver_loadbalancer_domain_name: "10.100.0.10" + +# BGP doesn't require strict ARP +kube_proxy_strict_arp: false + +loadbalancer_apiserver: + address: "10.100.0.10" + port: 6443 + +loadbalancer_apiserver_localhost: false + +supplementary_addresses_in_ssl_keys: + - "10.100.0.10" +``` + +--- + +## Summary + +kube-vip provides a **simple, reliable, and production-ready** solution for Kubernetes control plane high availability in wire-server-deploy. With native Kubespray integration, deployment is as simple as adding a few configuration variables to your inventory. + +**Key Takeaways:** + +✅ **Zero external dependencies** - Works on any network with Layer 2 connectivity +✅ **Automatic failover** - Leader election ensures VIP always points to a healthy node +✅ **Built into Kubespray** - No manual installation or configuration required +✅ **Production proven** - Used by many organizations in bare-metal Kubernetes deployments +✅ **Perfect for Hetzner/offline** - Works in air-gapped and cloud environments + +By following this guide, you now have a fully redundant Kubernetes control plane that can survive node failures without service interruption. + +--- + +**Document Version**: 1.0 +**Last Updated**: 2024-11-20 +**Tested with**: +- wire-server-deploy: master branch +- Kubespray: v2.25.1 +- kube-vip: v0.8.0 +- Kubernetes: v1.29.10 From 8d7eb8de10999151d2e408720ee7cbf9c6c25336 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Thu, 20 Nov 2025 13:31:58 +0100 Subject: [PATCH 02/23] Add changelog --- changelog.d/3-deploy-builds/enable-ha-k8s-cluster | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 changelog.d/3-deploy-builds/enable-ha-k8s-cluster diff --git a/changelog.d/3-deploy-builds/enable-ha-k8s-cluster b/changelog.d/3-deploy-builds/enable-ha-k8s-cluster new file mode 100644 index 000000000..182cb3e9b --- /dev/null +++ b/changelog.d/3-deploy-builds/enable-ha-k8s-cluster @@ -0,0 +1,2 @@ +Added: comprehensive kube-vip HA setup documentation and configuration for high-availability Kubernetes control plane in offline deployments +Fixed: HA k8s cluster for wire-server with kube-vip From db35ec3fa477000b2f7d486526a990792fb5e284 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Thu, 20 Nov 2025 13:43:05 +0100 Subject: [PATCH 03/23] clean up and fix doc --- ansible/inventory/offline/99-static | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/inventory/offline/99-static b/ansible/inventory/offline/99-static index 8389a4341..cdc89ed3c 100644 --- a/ansible/inventory/offline/99-static +++ b/ansible/inventory/offline/99-static @@ -9,9 +9,9 @@ # # ansible_host= [all] -kubenode1 ansible_host=192.168.122.21 ip=192.168.122.21 -kubenode2 ansible_host=192.168.122.22 ip=192.168.122.22 -kubenode3 ansible_host=192.168.122.23 ip=192.168.122.23 +# kubenode1 ansible_host=100.89.110.8 ip=10.114.0.10 +# kubenode2 ansible_host=100.154.219.107 ip=10.114.0.8 +# kubenode3 ansible_host=100.227.143.169 ip=10.114.0.2 # You could add more if capacity is needed # kubenode4 .... @@ -144,7 +144,7 @@ postgresql_network_interface = enp1s0 kube-master kube-node -# Kubernetes cluster configuration (kube-vip, network plugins, etc.) +# Kubernetes cluster configuration (kube-vip, vip_address, vip_interface) # is defined in group_vars/k8s-cluster/k8s-cluster.yml # See offline/kube-vip-ha-setup.md for HA setup documentation From e7ec73604ccb965a538909cbb9796c48b6824db7 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Thu, 20 Nov 2025 13:47:29 +0100 Subject: [PATCH 04/23] update doc --- .../offline/group_vars/k8s-cluster/k8s-cluster.yml | 1 - offline/kube-vip-ha-setup.md | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml index 35e8192af..98ce70b7d 100644 --- a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml +++ b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml @@ -13,7 +13,6 @@ # enabling automatic failover between control plane nodes without requiring # external load balancers. Perfect for bare-metal and air-gapped deployments. # -# Documentation: docs/kube-vip-ha-setup.md # Reference: https://kube-vip.io/ # Enable kube-vip diff --git a/offline/kube-vip-ha-setup.md b/offline/kube-vip-ha-setup.md index afb6c195c..72464ed0b 100644 --- a/offline/kube-vip-ha-setup.md +++ b/offline/kube-vip-ha-setup.md @@ -491,7 +491,7 @@ Before starting, ensure: ``` 2. ✅ **Inventory configured** with control plane nodes - - Edit `ansible/inventory/offline/99-static` + - Check `ansible/inventory/offline/hosts.ini` - Uncomment and configure `[kube-master]`, `[kube-node]`, `[etcd]` sections 3. ✅ **SSH access** to all nodes @@ -863,7 +863,7 @@ fatal: [kubenode1]: FAILED! => { echo "kube_proxy_strict_arp: true" >> ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml # Re-run playbook -ansible-playbook -i ansible/inventory/offline/99-static ansible/kubernetes.yml --tags=node,kube-vip +ansible-playbook -i ansible/inventory/offline/hosts.ini ansible/kubernetes.yml --tags=node,kube-vip ``` #### Issue 3: VIP Not Reachable from External Network @@ -961,12 +961,12 @@ supplementary_addresses_in_ssl_keys: - "192.168.122.100" # Regenerate certificates -ansible-playbook -i ansible/inventory/offline/99-static \ +ansible-playbook -i ansible/inventory/offline/hosts.ini \ ansible/kubernetes.yml \ --tags=master # Or use Kubespray's certificate renewal playbook -ansible-playbook -i ansible/inventory/offline/99-static \ +ansible-playbook -i ansible/inventory/offline/hosts.ini \ ansible/roles-external/kubespray/extra_playbooks/upgrade-only.yml \ --tags=upgrade-certs ``` From 7f9ef2d02e09ed057c83c04a8bb46e9b92a2c896 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Thu, 20 Nov 2025 13:53:05 +0100 Subject: [PATCH 05/23] keep inventory doc simple --- ansible/inventory/offline/README.md | 59 +---------------------------- 1 file changed, 1 insertion(+), 58 deletions(-) diff --git a/ansible/inventory/offline/README.md b/ansible/inventory/offline/README.md index c7e691610..e04d70135 100644 --- a/ansible/inventory/offline/README.md +++ b/ansible/inventory/offline/README.md @@ -2,31 +2,6 @@ Ansible inventory for offline/air-gapped deployments of Wire infrastructure. -## Quick Start - -### 1. Edit Inventory - -```bash -# Define your hosts -vim ansible/inventory/offline/99-static - -# Configure kube-vip HA (optional but recommended) -vim ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml -``` - -### 2. Deploy - -```bash -ansible-playbook -i ansible/inventory/offline ansible/kubernetes.yml -``` - -### 3. Access Cluster - -```bash -export KUBECONFIG=ansible/inventory/offline/artifacts/admin.conf -kubectl get nodes -``` - ## Directory Structure ``` @@ -63,30 +38,9 @@ offline/ - `kube_version` - Kubernetes version - Network settings (usually defaults are fine) -## Common Tasks - -### Deploy Full Cluster -```bash -ansible-playbook -i ansible/inventory/offline ansible/kubernetes.yml -``` - -### Add Node to Existing Cluster -```bash -# 1. Add node to 99-static -# 2. Run scale playbook -ansible-playbook -i ansible/inventory/offline \ - ansible/roles-external/kubespray/scale.yml -``` - -### Verify kube-vip HA -```bash -kubectl get pods -n kube-system | grep kube-vip -kubectl get lease -n kube-system plndr-cp-lock -o jsonpath='{.spec.holderIdentity}' -``` ## Documentation -- **kube-vip HA Setup**: [../../../docs/kube-vip-ha-setup.md](../../../docs/kube-vip-ha-setup.md) - **Kubespray**: https://github.com/kubernetes-sigs/kubespray - **Wire Docs**: https://docs.wire.com/ @@ -107,16 +61,5 @@ ansible-inventory -i ansible/inventory/offline --list **Can't SSH to nodes:** ```bash -ansible -i ansible/inventory/offline all -m ping -``` - -**kube-vip not working:** -```bash -kubectl logs -n kube-system kube-vip-kubenode1 +ansible -i ansible/inventory/offline/hosts.ini all -m ping ``` - -See [docs/kube-vip-ha-setup.md](../../../docs/kube-vip-ha-setup.md) for detailed troubleshooting. - ---- - -**Last Updated**: 2024-11-19 From ae5e63678000ece4ec695377cfa2ff1eb255c519 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Thu, 20 Nov 2025 16:01:17 +0100 Subject: [PATCH 06/23] Add necessary vars to and image to deploy HA k8s cluster on CI based deployment via TF --- .../3-deploy-builds/enable-ha-k8s-cluster | 3 +-- offline/tasks/proc_system_containers.sh | 1 + .../outputs.tf | 25 +++++++++++++++++-- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/changelog.d/3-deploy-builds/enable-ha-k8s-cluster b/changelog.d/3-deploy-builds/enable-ha-k8s-cluster index 182cb3e9b..30799a0b2 100644 --- a/changelog.d/3-deploy-builds/enable-ha-k8s-cluster +++ b/changelog.d/3-deploy-builds/enable-ha-k8s-cluster @@ -1,2 +1 @@ -Added: comprehensive kube-vip HA setup documentation and configuration for high-availability Kubernetes control plane in offline deployments -Fixed: HA k8s cluster for wire-server with kube-vip +Added: kube-vip v0.8.0 for high-availability Kubernetes control plane with automatic failover, including comprehensive documentation, offline build configuration, and Terraform integration for CI deployments diff --git a/offline/tasks/proc_system_containers.sh b/offline/tasks/proc_system_containers.sh index 469afb512..d52e340b2 100755 --- a/offline/tasks/proc_system_containers.sh +++ b/offline/tasks/proc_system_containers.sh @@ -40,6 +40,7 @@ docker.io/library/nginx:1.25.4-alpine bats/bats:1.11.1 cr.step.sm/smallstep/step-ca:0.25.3-rc7 registry.k8s.io/ingress-nginx/kube-webhook-certgen:v20231011-8b53cabe0 +ghcr.io/kube-vip/kube-vip:v0.8.0 EOF } diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index 4e71f24a8..61068c2fb 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -93,11 +93,32 @@ output "static-inventory" { # NOTE: Necessary for the Hetzner Cloud until Calico v3.17 arrives in Kubespray # Hetzner private networks have an MTU of 1450 instead of 1500 vars = { - calico_mtu = 1450 - calico_veth_mtu = 1430 + calico_mtu = 1450 + calico_veth_mtu = 1430 # NOTE: relax handling a list with more than 3 items; required on Hetzner docker_dns_servers_strict = false upstream_dns_servers = [tolist(hcloud_server.adminhost.network)[0].ip] + + # kube-vip configuration for control plane HA + # See: offline/kube-vip-ha-setup.md + kube_vip_enabled = true + kube_vip_controlplane_enabled = true + kube_vip_arp_enabled = true + kube_vip_services_enabled = false + kube_vip_interface = "enp7s0" + # VIP within the Hetzner private network subnet + kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, -2) + # Configure API server to use VIP + apiserver_loadbalancer_domain_name = cidrhost(hcloud_network_subnet.main.ip_range, -2) + loadbalancer_apiserver = { + address = cidrhost(hcloud_network_subnet.main.ip_range, -2) + port = 6443 + } + loadbalancer_apiserver_localhost = false + kube_proxy_strict_arp = true + supplementary_addresses_in_ssl_keys = [ + cidrhost(hcloud_network_subnet.main.ip_range, -2) + ] } } cassandra = { From c019073f474f7762c45db29a1a3c56fef8193137 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Fri, 21 Nov 2025 09:58:54 +0100 Subject: [PATCH 07/23] Deploy kube-vip when the cluster is already up --- bin/offline-cluster.sh | 7 ++++++- offline/kube-vip-ha-setup.md | 30 ++++++++++++++++++++++++------ 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index 85b4e4fcb..a7c750c55 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -44,7 +44,12 @@ ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/seed-offline-containerd.yml ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/sync_time.yml -v # Run the rest of kubespray. This should bootstrap a kubernetes cluster successfully: -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml --skip-tags bootstrap-os,preinstall,container-engine,multus +# Skip kube-vip during initial bootstrap to avoid chicken-and-egg problem with leader election +ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip + +# Now that the API server is up, deploy kube-vip for HA +# kube-vip can now successfully perform leader election since the API server is accessible +ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml --tags kube-vip # Deploy all other services which don't run in kubernetes. ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/cassandra.yml diff --git a/offline/kube-vip-ha-setup.md b/offline/kube-vip-ha-setup.md index 72464ed0b..745e7f61b 100644 --- a/offline/kube-vip-ha-setup.md +++ b/offline/kube-vip-ha-setup.md @@ -578,22 +578,40 @@ kube-node #### Step 3: Deploy Kubernetes with kube-vip -For a **new cluster**: +For a **new cluster**, the recommended approach is to use the automated deployment script which handles the bootstrap timing correctly: ```bash -# Deploy full Kubernetes cluster with kube-vip -ansible-playbook -i ansible/inventory/offline/hosts.ini ansible/kubernetes.yml +# Automated deployment (recommended) +./bin/offline-deploy.sh ``` -For an **existing cluster** (adding kube-vip): +The script automatically: +1. Deploys Kubernetes without kube-vip first +2. Once API server is up, deploys kube-vip for HA +3. This avoids the chicken-and-egg problem during bootstrap + +For **manual deployment** or **existing cluster** (adding kube-vip): ```bash -# Deploy only kube-vip and update control plane +# For existing cluster: Deploy only kube-vip +ansible-playbook -i ansible/inventory/offline/hosts.ini \ + ansible/kubernetes.yml \ + --tags=kube-vip + +# For new cluster manual deployment: +# 1. Deploy cluster without kube-vip ansible-playbook -i ansible/inventory/offline/hosts.ini \ ansible/kubernetes.yml \ - --tags=node,kube-vip,master + --skip-tags=kube-vip + +# 2. Then deploy kube-vip after cluster is up +ansible-playbook -i ansible/inventory/offline/hosts.ini \ + ansible/kubernetes.yml \ + --tags=kube-vip ``` +**Why this order?** kube-vip needs the API server running to perform leader election. If deployed simultaneously during `kubeadm init`, it creates a chicken-and-egg problem: kube-vip can't start without the API server, and kubeadm times out waiting for the API server to respond on the VIP. + Expected output: ``` PLAY [Install Kubernetes nodes] ******************************************* From 23f14bee7c999a147c28897bdead4cb1812725a4 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Fri, 21 Nov 2025 12:33:57 +0100 Subject: [PATCH 08/23] Disable kube-vip for CI deployment --- bin/offline-cluster.sh | 6 ++++- .../3-deploy-builds/enable-ha-k8s-cluster | 2 +- offline/kube-vip-ha-setup.md | 4 +++- .../outputs.tf | 23 ++++--------------- 4 files changed, 13 insertions(+), 22 deletions(-) diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index a7c750c55..4615697f5 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -45,10 +45,14 @@ ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/sync_time.yml -v # Run the rest of kubespray. This should bootstrap a kubernetes cluster successfully: # Skip kube-vip during initial bootstrap to avoid chicken-and-egg problem with leader election -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip +# Override apiserver_loadbalancer_domain_name to empty so kubeadm uses node IP during bootstrap +ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ + --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip \ + -e "apiserver_loadbalancer_domain_name=" # Now that the API server is up, deploy kube-vip for HA # kube-vip can now successfully perform leader election since the API server is accessible +# This run will also reconfigure kubeconfig files and certificates to use the VIP ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml --tags kube-vip # Deploy all other services which don't run in kubernetes. diff --git a/changelog.d/3-deploy-builds/enable-ha-k8s-cluster b/changelog.d/3-deploy-builds/enable-ha-k8s-cluster index 30799a0b2..0ae854d4d 100644 --- a/changelog.d/3-deploy-builds/enable-ha-k8s-cluster +++ b/changelog.d/3-deploy-builds/enable-ha-k8s-cluster @@ -1 +1 @@ -Added: kube-vip v0.8.0 for high-availability Kubernetes control plane with automatic failover, including comprehensive documentation, offline build configuration, and Terraform integration for CI deployments +Added: kube-vip v0.8.0 for high-availability Kubernetes control plane with automatic failover in production deployments, including comprehensive documentation and offline build configuration (disabled by default for ephemeral CI clusters) diff --git a/offline/kube-vip-ha-setup.md b/offline/kube-vip-ha-setup.md index 745e7f61b..d1106012d 100644 --- a/offline/kube-vip-ha-setup.md +++ b/offline/kube-vip-ha-setup.md @@ -17,7 +17,9 @@ ## Overview -kube-vip provides Kubernetes clusters with a **Virtual IP (VIP)** for the control plane API server, enabling **High Availability (HA)** without requiring external load balancers. This is especially valuable for bare-metal, on-premises, and air-gapped deployments where cloud load balancers are unavailable. +kube-vip provides Kubernetes clusters with a **Virtual IP (VIP)** for the control plane API server, enabling **High Availability (HA)** without requiring external load balancers. This is especially valuable for bare-metal, on-premises, and air-gapped **production deployments** where cloud load balancers are unavailable. + +**Note**: kube-vip is designed for production environments that require HA. For development, testing, or ephemeral clusters (like CI), HA is not necessary and kube-vip can be disabled to simplify deployment. ### The Problem diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index 61068c2fb..56a36bb6a 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -100,25 +100,10 @@ output "static-inventory" { upstream_dns_servers = [tolist(hcloud_server.adminhost.network)[0].ip] # kube-vip configuration for control plane HA - # See: offline/kube-vip-ha-setup.md - kube_vip_enabled = true - kube_vip_controlplane_enabled = true - kube_vip_arp_enabled = true - kube_vip_services_enabled = false - kube_vip_interface = "enp7s0" - # VIP within the Hetzner private network subnet - kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, -2) - # Configure API server to use VIP - apiserver_loadbalancer_domain_name = cidrhost(hcloud_network_subnet.main.ip_range, -2) - loadbalancer_apiserver = { - address = cidrhost(hcloud_network_subnet.main.ip_range, -2) - port = 6443 - } - loadbalancer_apiserver_localhost = false - kube_proxy_strict_arp = true - supplementary_addresses_in_ssl_keys = [ - cidrhost(hcloud_network_subnet.main.ip_range, -2) - ] + # Disabled for CI as ephemeral test clusters don't need HA + # For production deployments, configure kube-vip in your inventory's group_vars + # See: offline/kube-vip-ha-setup.md and ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml + kube_vip_enabled = false } } cassandra = { From ebce003138512c9302dd0a924baf1865ed53deb8 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Fri, 21 Nov 2025 12:40:13 +0100 Subject: [PATCH 09/23] Try fix CI deployment --- .../3-deploy-builds/enable-ha-k8s-cluster | 2 +- offline/kube-vip-ha-setup.md | 2 +- .../outputs.tf | 22 ++++++++++++++++--- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/changelog.d/3-deploy-builds/enable-ha-k8s-cluster b/changelog.d/3-deploy-builds/enable-ha-k8s-cluster index 0ae854d4d..c8f23f645 100644 --- a/changelog.d/3-deploy-builds/enable-ha-k8s-cluster +++ b/changelog.d/3-deploy-builds/enable-ha-k8s-cluster @@ -1 +1 @@ -Added: kube-vip v0.8.0 for high-availability Kubernetes control plane with automatic failover in production deployments, including comprehensive documentation and offline build configuration (disabled by default for ephemeral CI clusters) +Added: kube-vip v0.8.0 for high-availability Kubernetes control plane with automatic failover, including comprehensive documentation and offline build configuration (enabled in CI to validate production deployment path) diff --git a/offline/kube-vip-ha-setup.md b/offline/kube-vip-ha-setup.md index d1106012d..741166e1b 100644 --- a/offline/kube-vip-ha-setup.md +++ b/offline/kube-vip-ha-setup.md @@ -19,7 +19,7 @@ kube-vip provides Kubernetes clusters with a **Virtual IP (VIP)** for the control plane API server, enabling **High Availability (HA)** without requiring external load balancers. This is especially valuable for bare-metal, on-premises, and air-gapped **production deployments** where cloud load balancers are unavailable. -**Note**: kube-vip is designed for production environments that require HA. For development, testing, or ephemeral clusters (like CI), HA is not necessary and kube-vip can be disabled to simplify deployment. +**Note**: kube-vip is enabled by default in wire-server-deploy to provide automatic failover for production deployments. The automated deployment scripts (`bin/offline-cluster.sh`) handle the bootstrap timing correctly to avoid initialization issues. CI also tests kube-vip to validate the production deployment path. ### The Problem diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index 56a36bb6a..f962437cf 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -100,10 +100,26 @@ output "static-inventory" { upstream_dns_servers = [tolist(hcloud_server.adminhost.network)[0].ip] # kube-vip configuration for control plane HA - # Disabled for CI as ephemeral test clusters don't need HA - # For production deployments, configure kube-vip in your inventory's group_vars + # Enabled for CI to test the production deployment path # See: offline/kube-vip-ha-setup.md and ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml - kube_vip_enabled = false + kube_vip_enabled = true + kube_vip_controlplane_enabled = true + kube_vip_arp_enabled = true + kube_vip_services_enabled = false + kube_vip_interface = "enp7s0" + # VIP within the Hetzner private network subnet (second-to-last IP) + kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, -2) + # Configure API server to use VIP + apiserver_loadbalancer_domain_name = cidrhost(hcloud_network_subnet.main.ip_range, -2) + loadbalancer_apiserver = { + address = cidrhost(hcloud_network_subnet.main.ip_range, -2) + port = 6443 + } + loadbalancer_apiserver_localhost = false + kube_proxy_strict_arp = true + supplementary_addresses_in_ssl_keys = [ + cidrhost(hcloud_network_subnet.main.ip_range, -2) + ] } } cassandra = { From 3bc2c20b315aabd206224c81f407388531685fc0 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Fri, 21 Nov 2025 14:41:11 +0100 Subject: [PATCH 10/23] fix ther bootstrapping by provding empty dic fo loadbalancer_apiserver --- bin/offline-cluster.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index 4615697f5..81f903a31 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -45,10 +45,10 @@ ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/sync_time.yml -v # Run the rest of kubespray. This should bootstrap a kubernetes cluster successfully: # Skip kube-vip during initial bootstrap to avoid chicken-and-egg problem with leader election -# Override apiserver_loadbalancer_domain_name to empty so kubeadm uses node IP during bootstrap +# Undefine loadbalancer_apiserver so kubeadm uses node IP during bootstrap ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip \ - -e "apiserver_loadbalancer_domain_name=" + -e "loadbalancer_apiserver={}" # Now that the API server is up, deploy kube-vip for HA # kube-vip can now successfully perform leader election since the API server is accessible From 6724e56419e3fdacc550127d2ba8b0377682d0e6 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Sun, 23 Nov 2025 12:49:52 +0100 Subject: [PATCH 11/23] Use two phase approach --- .../group_vars/k8s-cluster/k8s-cluster.yml | 42 ++++++++++++++----- bin/offline-cluster.sh | 29 +++++++++---- .../outputs.tf | 14 ++----- 3 files changed, 55 insertions(+), 30 deletions(-) diff --git a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml index 98ce70b7d..7cdb9e728 100644 --- a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml +++ b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml @@ -43,25 +43,47 @@ kube_vip_arp_enabled: true # For control plane HA only, keep this false kube_vip_services_enabled: false -# API server advertise address (use VIP for consistency) -# This is the address the API server advertises to clients -apiserver_loadbalancer_domain_name: "192.168.122.100" - # Required for kube-vip with ARP mode # Prevents kube-proxy from responding to ARP requests for the VIP kube_proxy_strict_arp: true +# ============================================================================== +# Bootstrap Strategy for kube-vip HA +# ============================================================================== +# +# IMPORTANT: The following configurations are COMMENTED OUT to avoid bootstrap +# chicken-and-egg problem during automated cluster deployment. +# +# For NEW cluster deployment via bin/offline-cluster.sh: +# - These remain commented out +# - Phase 1 bootstraps without loadbalancer_apiserver (kubeadm uses node IP) +# - Phase 2 passes loadbalancer_apiserver dynamically via -e flag +# +# For MANUAL kube-vip setup on EXISTING cluster: +# - Uncomment the sections below +# - Update the IP addresses to match your VIP +# - Run: ansible-playbook -i inventory/offline/hosts.ini kubernetes.yml --tags=node,kube-vip,master,client +# +# See: offline/kube-vip-ha-setup.md for detailed documentation +# +# Reference: kubespray's test approach in +# ansible/roles-external/kubespray/tests/files/packet_centos7-flannel-addons-ha.yml + +# API server advertise address (use VIP for consistency) +# This is the address the API server advertises to clients +# apiserver_loadbalancer_domain_name: "192.168.122.100" + # Configure API server endpoint to use VIP # This tells all Kubernetes components to connect via the VIP -loadbalancer_apiserver: - address: "192.168.122.100" - port: 6443 +# loadbalancer_apiserver: +# address: "192.168.122.100" +# port: 6443 # Disable localhost load balancer since we have VIP # When using kube-vip, we don't need the nginx localhost proxy -loadbalancer_apiserver_localhost: false +# loadbalancer_apiserver_localhost: false # Add VIP to API server SSL certificates # This ensures the API server certificate is valid for the VIP address -supplementary_addresses_in_ssl_keys: - - "192.168.122.100" +# supplementary_addresses_in_ssl_keys: +# - "192.168.122.100" diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index 81f903a31..6f0cb321f 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -44,16 +44,27 @@ ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/seed-offline-containerd.yml ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/sync_time.yml -v # Run the rest of kubespray. This should bootstrap a kubernetes cluster successfully: -# Skip kube-vip during initial bootstrap to avoid chicken-and-egg problem with leader election -# Undefine loadbalancer_apiserver so kubeadm uses node IP during bootstrap +# Phase 1: Bootstrap WITHOUT loadbalancer_apiserver so kubeadm uses node IP +# We skip kube-vip to avoid race condition with VIP ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ - --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip \ - -e "loadbalancer_apiserver={}" - -# Now that the API server is up, deploy kube-vip for HA -# kube-vip can now successfully perform leader election since the API server is accessible -# This run will also reconfigure kubeconfig files and certificates to use the VIP -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml --tags kube-vip + --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip + +# Phase 2: Deploy kube-vip AND configure loadbalancer_apiserver +# Now we define loadbalancer_apiserver via -e so kubeconfig gets updated to use VIP +# Extract VIP from inventory if defined, otherwise use a calculated value +VIP_ADDRESS=$(yq eval '.all.children.k8s-cluster.vars.kube_vip_address // ""' "$INVENTORY_FILE" 2>/dev/null || echo "") + +if [ -n "$VIP_ADDRESS" ] && [ "$VIP_ADDRESS" != "null" ]; then + echo "Deploying kube-vip with VIP: $VIP_ADDRESS" + ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ + --tags kube-vip,client \ + -e "{\"loadbalancer_apiserver\": {\"address\": \"$VIP_ADDRESS\", \"port\": 6443}}" \ + -e "apiserver_loadbalancer_domain_name=$VIP_ADDRESS" \ + -e "loadbalancer_apiserver_localhost=false" \ + -e "{\"supplementary_addresses_in_ssl_keys\": [\"$VIP_ADDRESS\"]}" +else + echo "No VIP configured, skipping kube-vip deployment" +fi # Deploy all other services which don't run in kubernetes. ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/cassandra.yml diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index f962437cf..3cdfcd91f 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -102,6 +102,8 @@ output "static-inventory" { # kube-vip configuration for control plane HA # Enabled for CI to test the production deployment path # See: offline/kube-vip-ha-setup.md and ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml + # Following kubespray's test approach: kube-vip vars only, NO loadbalancer_apiserver + # This avoids bootstrap chicken-and-egg problem. kubeadm uses node IP, kube-vip provides VIP. kube_vip_enabled = true kube_vip_controlplane_enabled = true kube_vip_arp_enabled = true @@ -109,17 +111,7 @@ output "static-inventory" { kube_vip_interface = "enp7s0" # VIP within the Hetzner private network subnet (second-to-last IP) kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, -2) - # Configure API server to use VIP - apiserver_loadbalancer_domain_name = cidrhost(hcloud_network_subnet.main.ip_range, -2) - loadbalancer_apiserver = { - address = cidrhost(hcloud_network_subnet.main.ip_range, -2) - port = 6443 - } - loadbalancer_apiserver_localhost = false - kube_proxy_strict_arp = true - supplementary_addresses_in_ssl_keys = [ - cidrhost(hcloud_network_subnet.main.ip_range, -2) - ] + kube_proxy_strict_arp = true } } cassandra = { From a8eefba2f51f455bd3d0cddab9ff7be95b6663c8 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Mon, 24 Nov 2025 09:22:46 +0100 Subject: [PATCH 12/23] fix k8s_cluster inventroy path logic --- bin/offline-cluster.sh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index 6f0cb321f..33d46400c 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -52,7 +52,21 @@ ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ # Phase 2: Deploy kube-vip AND configure loadbalancer_apiserver # Now we define loadbalancer_apiserver via -e so kubeconfig gets updated to use VIP # Extract VIP from inventory if defined, otherwise use a calculated value -VIP_ADDRESS=$(yq eval '.all.children.k8s-cluster.vars.kube_vip_address // ""' "$INVENTORY_FILE" 2>/dev/null || echo "") +# Handle different inventory formats by trying both paths: +# 1. YAML inventory with embedded vars: ."k8s-cluster".vars.kube_vip_address +# 2. INI inventory with group_vars: group_vars/k8s-cluster/k8s-cluster.yml +INVENTORY_DIR="$(dirname "$INVENTORY_FILE")" + +# Try to extract VIP from YAML inventory first (Terraform-generated format) +VIP_ADDRESS=$(yq eval '."k8s-cluster".vars.kube_vip_address // ""' "$INVENTORY_FILE" 2>/dev/null || echo "") + +# If not found, try group_vars file (static INI format) +if [ -z "$VIP_ADDRESS" ] || [ "$VIP_ADDRESS" = "null" ]; then + GROUP_VARS_FILE="$INVENTORY_DIR/group_vars/k8s-cluster/k8s-cluster.yml" + if [ -f "$GROUP_VARS_FILE" ]; then + VIP_ADDRESS=$(yq eval '.kube_vip_address // ""' "$GROUP_VARS_FILE" 2>/dev/null || echo "") + fi +fi if [ -n "$VIP_ADDRESS" ] && [ "$VIP_ADDRESS" != "null" ]; then echo "Deploying kube-vip with VIP: $VIP_ADDRESS" From 25fecf9812678233f9249785e397f577c39d760f Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Mon, 24 Nov 2025 13:26:14 +0100 Subject: [PATCH 13/23] remove fixed interface name --- 1_Build default profile.txt | 68419 ++++++++++++++++ .../outputs.tf | 4 +- 2 files changed, 68422 insertions(+), 1 deletion(-) create mode 100644 1_Build default profile.txt diff --git a/1_Build default profile.txt b/1_Build default profile.txt new file mode 100644 index 000000000..dfb0c749a --- /dev/null +++ b/1_Build default profile.txt @@ -0,0 +1,68419 @@ +2025-11-24T08:23:41.5351671Z Current runner version: '2.329.0' +2025-11-24T08:23:41.5361091Z Runner name: 'U22.04-4CPU-16Gig-150GB_719a4ce43e84' +2025-11-24T08:23:41.5363147Z Runner group name: 'wire-server-deploy' +2025-11-24T08:23:41.5365042Z Machine name: 'runnervmg1sw1' +2025-11-24T08:23:41.5389330Z ##[group]Operating System +2025-11-24T08:23:41.5391674Z Ubuntu +2025-11-24T08:23:41.5394441Z 24.04.3 +2025-11-24T08:23:41.5396681Z LTS +2025-11-24T08:23:41.5398833Z ##[endgroup] +2025-11-24T08:23:41.5401112Z ##[group]Runner Image +2025-11-24T08:23:41.5403585Z Image: ubuntu-24.04 +2025-11-24T08:23:41.5405718Z Version: 20251112.124.1 +2025-11-24T08:23:41.5408958Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20251112.124/images/ubuntu/Ubuntu2404-Readme.md +2025-11-24T08:23:41.5413346Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20251112.124 +2025-11-24T08:23:41.5416328Z ##[endgroup] +2025-11-24T08:23:41.5423462Z ##[group]GITHUB_TOKEN Permissions +2025-11-24T08:23:41.5428316Z Actions: write +2025-11-24T08:23:41.5430618Z ArtifactMetadata: write +2025-11-24T08:23:41.5433133Z Attestations: write +2025-11-24T08:23:41.5435384Z Checks: write +2025-11-24T08:23:41.5437534Z Contents: write +2025-11-24T08:23:41.5439740Z Deployments: write +2025-11-24T08:23:41.5441943Z Discussions: write +2025-11-24T08:23:41.5444254Z Issues: write +2025-11-24T08:23:41.5446354Z Metadata: read +2025-11-24T08:23:41.5448572Z Models: read +2025-11-24T08:23:41.5450612Z Packages: write +2025-11-24T08:23:41.5453060Z Pages: write +2025-11-24T08:23:41.5455485Z PullRequests: write +2025-11-24T08:23:41.5457755Z RepositoryProjects: write +2025-11-24T08:23:41.5460190Z SecurityEvents: write +2025-11-24T08:23:41.5462973Z Statuses: write +2025-11-24T08:23:41.5465078Z ##[endgroup] +2025-11-24T08:23:41.5469621Z Secret source: Actions +2025-11-24T08:23:41.5471909Z Prepare workflow directory +2025-11-24T08:23:41.5975371Z Prepare all required actions +2025-11-24T08:23:41.6098863Z Getting action download info +2025-11-24T08:23:41.9732286Z Download action repository 'actions/checkout@v2' (SHA:ee0669bd1cc54295c223e0bb666b733df41de1c5) +2025-11-24T08:23:42.1218218Z Download action repository 'cachix/install-nix-action@v27' (SHA:ba0dd844c9180cbf77aa72a116d6fbc515d0e87b) +2025-11-24T08:23:42.4076815Z Download action repository 'cachix/cachix-action@v15' (SHA:ad2ddac53f961de1989924296a1f236fcfbaa4fc) +2025-11-24T08:23:42.6744009Z Download action repository 'hashicorp/setup-terraform@v3' (SHA:b9cd54a3c349d3f38e8881555d616ced269862dd) +2025-11-24T08:23:43.3129306Z Complete job name: Build default profile +2025-11-24T08:23:43.4145490Z ##[group]Run actions/checkout@v2 +2025-11-24T08:23:43.4147997Z with: +2025-11-24T08:23:43.4149859Z submodules: true +2025-11-24T08:23:43.4151862Z repository: wireapp/wire-server-deploy +2025-11-24T08:23:43.4154756Z token: *** +2025-11-24T08:23:43.4156632Z ssh-strict: true +2025-11-24T08:23:43.4158604Z persist-credentials: true +2025-11-24T08:23:43.4160625Z clean: true +2025-11-24T08:23:43.4162461Z fetch-depth: 1 +2025-11-24T08:23:43.4164462Z lfs: false +2025-11-24T08:23:43.4166420Z set-safe-directory: true +2025-11-24T08:23:43.4168711Z ##[endgroup] +2025-11-24T08:23:43.5279858Z Syncing repository: wireapp/wire-server-deploy +2025-11-24T08:23:43.5287203Z ##[group]Getting Git version info +2025-11-24T08:23:43.5291868Z Working directory is '/home/runner/work/wire-server-deploy/wire-server-deploy' +2025-11-24T08:23:43.5298809Z [command]/usr/bin/git version +2025-11-24T08:23:43.6194719Z git version 2.51.2 +2025-11-24T08:23:43.6224605Z ##[endgroup] +2025-11-24T08:23:43.6238706Z Temporarily overriding HOME='/home/runner/work/_temp/357a22b0-977a-416c-855a-80702ff35157' before making global git config changes +2025-11-24T08:23:43.6243680Z Adding repository directory to the temporary git global config as a safe directory +2025-11-24T08:23:43.6247728Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/wire-server-deploy/wire-server-deploy +2025-11-24T08:23:43.6334147Z Deleting the contents of '/home/runner/work/wire-server-deploy/wire-server-deploy' +2025-11-24T08:23:43.6342355Z ##[group]Initializing the repository +2025-11-24T08:23:43.6347281Z [command]/usr/bin/git init /home/runner/work/wire-server-deploy/wire-server-deploy +2025-11-24T08:23:43.7259561Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-11-24T08:23:43.7263468Z hint: is subject to change. To configure the initial branch name to use in all +2025-11-24T08:23:43.7266710Z hint: of your new repositories, which will suppress this warning, call: +2025-11-24T08:23:43.7269288Z hint: +2025-11-24T08:23:43.7271355Z hint: git config --global init.defaultBranch +2025-11-24T08:23:43.7273964Z hint: +2025-11-24T08:23:43.7276223Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-11-24T08:23:43.7279288Z hint: 'development'. The just-created branch can be renamed via this command: +2025-11-24T08:23:43.7281847Z hint: +2025-11-24T08:23:43.7283940Z hint: git branch -m +2025-11-24T08:23:43.7285917Z hint: +2025-11-24T08:23:43.7288227Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-11-24T08:23:43.7306773Z Initialized empty Git repository in /home/runner/work/wire-server-deploy/wire-server-deploy/.git/ +2025-11-24T08:23:43.7318803Z [command]/usr/bin/git remote add origin https://github.com/wireapp/wire-server-deploy +2025-11-24T08:23:43.7440899Z ##[endgroup] +2025-11-24T08:23:43.7447116Z ##[group]Disabling automatic garbage collection +2025-11-24T08:23:43.7451372Z [command]/usr/bin/git config --local gc.auto 0 +2025-11-24T08:23:43.7457955Z ##[endgroup] +2025-11-24T08:23:43.7463670Z ##[group]Setting up auth +2025-11-24T08:23:43.7468173Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-11-24T08:23:43.7498153Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-11-24T08:23:44.0075254Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-11-24T08:23:44.0109691Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-11-24T08:23:44.0347225Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-11-24T08:23:44.0384868Z ##[endgroup] +2025-11-24T08:23:44.0387847Z ##[group]Fetching the repository +2025-11-24T08:23:44.0393834Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +8e9551337084771742ec8fc44c4955baa28a8a5c:refs/remotes/pull/829/merge +2025-11-24T08:23:44.3645256Z remote: Enumerating objects: 621, done. +2025-11-24T08:23:44.3648993Z remote: Counting objects: 0% (1/621) +2025-11-24T08:23:44.3651970Z remote: Counting objects: 1% (7/621) +2025-11-24T08:23:44.3655056Z remote: Counting objects: 2% (13/621) +2025-11-24T08:23:44.3657408Z remote: Counting objects: 3% (19/621) +2025-11-24T08:23:44.3659770Z remote: Counting objects: 4% (25/621) +2025-11-24T08:23:44.3662055Z remote: Counting objects: 5% (32/621) +2025-11-24T08:23:44.3664598Z remote: Counting objects: 6% (38/621) +2025-11-24T08:23:44.3666891Z remote: Counting objects: 7% (44/621) +2025-11-24T08:23:44.3669116Z remote: Counting objects: 8% (50/621) +2025-11-24T08:23:44.3671413Z remote: Counting objects: 9% (56/621) +2025-11-24T08:23:44.3673823Z remote: Counting objects: 10% (63/621) +2025-11-24T08:23:44.3676052Z remote: Counting objects: 11% (69/621) +2025-11-24T08:23:44.3678272Z remote: Counting objects: 12% (75/621) +2025-11-24T08:23:44.3680525Z remote: Counting objects: 13% (81/621) +2025-11-24T08:23:44.3682947Z remote: Counting objects: 14% (87/621) +2025-11-24T08:23:44.3685216Z remote: Counting objects: 15% (94/621) +2025-11-24T08:23:44.3687899Z remote: Counting objects: 16% (100/621) +2025-11-24T08:23:44.3690173Z remote: Counting objects: 17% (106/621) +2025-11-24T08:23:44.3692422Z remote: Counting objects: 18% (112/621) +2025-11-24T08:23:44.3695004Z remote: Counting objects: 19% (118/621) +2025-11-24T08:23:44.3697259Z remote: Counting objects: 20% (125/621) +2025-11-24T08:23:44.3699520Z remote: Counting objects: 21% (131/621) +2025-11-24T08:23:44.3701823Z remote: Counting objects: 22% (137/621) +2025-11-24T08:23:44.3704299Z remote: Counting objects: 23% (143/621) +2025-11-24T08:23:44.3706609Z remote: Counting objects: 24% (150/621) +2025-11-24T08:23:44.3708846Z remote: Counting objects: 25% (156/621) +2025-11-24T08:23:44.3711080Z remote: Counting objects: 26% (162/621) +2025-11-24T08:23:44.3713476Z remote: Counting objects: 27% (168/621) +2025-11-24T08:23:44.3715717Z remote: Counting objects: 28% (174/621) +2025-11-24T08:23:44.3717974Z remote: Counting objects: 29% (181/621) +2025-11-24T08:23:44.3720196Z remote: Counting objects: 30% (187/621) +2025-11-24T08:23:44.3722430Z remote: Counting objects: 31% (193/621) +2025-11-24T08:23:44.3724861Z remote: Counting objects: 32% (199/621) +2025-11-24T08:23:44.3727127Z remote: Counting objects: 33% (205/621) +2025-11-24T08:23:44.3729358Z remote: Counting objects: 34% (212/621) +2025-11-24T08:23:44.3731587Z remote: Counting objects: 35% (218/621) +2025-11-24T08:23:44.3733993Z remote: Counting objects: 36% (224/621) +2025-11-24T08:23:44.3736226Z remote: Counting objects: 37% (230/621) +2025-11-24T08:23:44.3738463Z remote: Counting objects: 38% (236/621) +2025-11-24T08:23:44.3740691Z remote: Counting objects: 39% (243/621) +2025-11-24T08:23:44.3743117Z remote: Counting objects: 40% (249/621) +2025-11-24T08:23:44.3745365Z remote: Counting objects: 41% (255/621) +2025-11-24T08:23:44.3747615Z remote: Counting objects: 42% (261/621) +2025-11-24T08:23:44.3749827Z remote: Counting objects: 43% (268/621) +2025-11-24T08:23:44.3752049Z remote: Counting objects: 44% (274/621) +2025-11-24T08:23:44.3754469Z remote: Counting objects: 45% (280/621) +2025-11-24T08:23:44.3756731Z remote: Counting objects: 46% (286/621) +2025-11-24T08:23:44.3758947Z remote: Counting objects: 47% (292/621) +2025-11-24T08:23:44.3761178Z remote: Counting objects: 48% (299/621) +2025-11-24T08:23:44.3763875Z remote: Counting objects: 49% (305/621) +2025-11-24T08:23:44.3766177Z remote: Counting objects: 50% (311/621) +2025-11-24T08:23:44.3768404Z remote: Counting objects: 51% (317/621) +2025-11-24T08:23:44.3770607Z remote: Counting objects: 52% (323/621) +2025-11-24T08:23:44.3773065Z remote: Counting objects: 53% (330/621) +2025-11-24T08:23:44.3775310Z remote: Counting objects: 54% (336/621) +2025-11-24T08:23:44.3777518Z remote: Counting objects: 55% (342/621) +2025-11-24T08:23:44.3779751Z remote: Counting objects: 56% (348/621) +2025-11-24T08:23:44.3781958Z remote: Counting objects: 57% (354/621) +2025-11-24T08:23:44.3784342Z remote: Counting objects: 58% (361/621) +2025-11-24T08:23:44.3786572Z remote: Counting objects: 59% (367/621) +2025-11-24T08:23:44.3788785Z remote: Counting objects: 60% (373/621) +2025-11-24T08:23:44.3791005Z remote: Counting objects: 61% (379/621) +2025-11-24T08:23:44.3794394Z remote: Counting objects: 62% (386/621) +2025-11-24T08:23:44.3797927Z remote: Counting objects: 63% (392/621) +2025-11-24T08:23:44.3801712Z remote: Counting objects: 64% (398/621) +2025-11-24T08:23:44.3805136Z remote: Counting objects: 65% (404/621) +2025-11-24T08:23:44.3807431Z remote: Counting objects: 66% (410/621) +2025-11-24T08:23:44.3809668Z remote: Counting objects: 67% (417/621) +2025-11-24T08:23:44.3813892Z remote: Counting objects: 68% (423/621) +2025-11-24T08:23:44.3817219Z remote: Counting objects: 69% (429/621) +2025-11-24T08:23:44.3821234Z remote: Counting objects: 70% (435/621) +2025-11-24T08:23:44.3823669Z remote: Counting objects: 71% (441/621) +2025-11-24T08:23:44.3826815Z remote: Counting objects: 72% (448/621) +2025-11-24T08:23:44.3828887Z remote: Counting objects: 73% (454/621) +2025-11-24T08:23:44.3832016Z remote: Counting objects: 74% (460/621) +2025-11-24T08:23:44.3835911Z remote: Counting objects: 75% (466/621) +2025-11-24T08:23:44.3838811Z remote: Counting objects: 76% (472/621) +2025-11-24T08:23:44.3841610Z remote: Counting objects: 77% (479/621) +2025-11-24T08:23:44.3843996Z remote: Counting objects: 78% (485/621) +2025-11-24T08:23:44.3846046Z remote: Counting objects: 79% (491/621) +2025-11-24T08:23:44.3848922Z remote: Counting objects: 80% (497/621) +2025-11-24T08:23:44.3851904Z remote: Counting objects: 81% (504/621) +2025-11-24T08:23:44.3855063Z remote: Counting objects: 82% (510/621) +2025-11-24T08:23:44.3857352Z remote: Counting objects: 83% (516/621) +2025-11-24T08:23:44.3859375Z remote: Counting objects: 84% (522/621) +2025-11-24T08:23:44.3861375Z remote: Counting objects: 85% (528/621) +2025-11-24T08:23:44.3864627Z remote: Counting objects: 86% (535/621) +2025-11-24T08:23:44.3867780Z remote: Counting objects: 87% (541/621) +2025-11-24T08:23:44.3870752Z remote: Counting objects: 88% (547/621) +2025-11-24T08:23:44.3873202Z remote: Counting objects: 89% (553/621) +2025-11-24T08:23:44.3875248Z remote: Counting objects: 90% (559/621) +2025-11-24T08:23:44.3877384Z remote: Counting objects: 91% (566/621) +2025-11-24T08:23:44.3879391Z remote: Counting objects: 92% (572/621) +2025-11-24T08:23:44.3881403Z remote: Counting objects: 93% (578/621) +2025-11-24T08:23:44.3883680Z remote: Counting objects: 94% (584/621) +2025-11-24T08:23:44.3885731Z remote: Counting objects: 95% (590/621) +2025-11-24T08:23:44.3887746Z remote: Counting objects: 96% (597/621) +2025-11-24T08:23:44.3889783Z remote: Counting objects: 97% (603/621) +2025-11-24T08:23:44.3891783Z remote: Counting objects: 98% (609/621) +2025-11-24T08:23:44.3893913Z remote: Counting objects: 99% (615/621) +2025-11-24T08:23:44.3895912Z remote: Counting objects: 100% (621/621) +2025-11-24T08:23:44.3898294Z remote: Counting objects: 100% (621/621), done. +2025-11-24T08:23:44.3900526Z remote: Compressing objects: 0% (1/513) +2025-11-24T08:23:44.3902571Z remote: Compressing objects: 1% (6/513) +2025-11-24T08:23:44.3904848Z remote: Compressing objects: 2% (11/513) +2025-11-24T08:23:44.3906828Z remote: Compressing objects: 3% (16/513) +2025-11-24T08:23:44.3908794Z remote: Compressing objects: 4% (21/513) +2025-11-24T08:23:44.3910751Z remote: Compressing objects: 5% (26/513) +2025-11-24T08:23:44.3912874Z remote: Compressing objects: 6% (31/513) +2025-11-24T08:23:44.3914835Z remote: Compressing objects: 7% (36/513) +2025-11-24T08:23:44.3916792Z remote: Compressing objects: 8% (42/513) +2025-11-24T08:23:44.3918739Z remote: Compressing objects: 9% (47/513) +2025-11-24T08:23:44.3920686Z remote: Compressing objects: 10% (52/513) +2025-11-24T08:23:44.3922798Z remote: Compressing objects: 11% (57/513) +2025-11-24T08:23:44.3924848Z remote: Compressing objects: 12% (62/513) +2025-11-24T08:23:44.3926819Z remote: Compressing objects: 13% (67/513) +2025-11-24T08:23:44.3928761Z remote: Compressing objects: 14% (72/513) +2025-11-24T08:23:44.3930706Z remote: Compressing objects: 15% (77/513) +2025-11-24T08:23:44.3932773Z remote: Compressing objects: 16% (83/513) +2025-11-24T08:23:44.3934739Z remote: Compressing objects: 17% (88/513) +2025-11-24T08:23:44.3936691Z remote: Compressing objects: 18% (93/513) +2025-11-24T08:23:44.3938884Z remote: Compressing objects: 19% (98/513) +2025-11-24T08:23:44.3940834Z remote: Compressing objects: 20% (103/513) +2025-11-24T08:23:44.3943052Z remote: Compressing objects: 21% (108/513) +2025-11-24T08:23:44.3945045Z remote: Compressing objects: 22% (113/513) +2025-11-24T08:23:44.3947221Z remote: Compressing objects: 23% (118/513) +2025-11-24T08:23:44.3950460Z remote: Compressing objects: 24% (124/513) +2025-11-24T08:23:44.3954145Z remote: Compressing objects: 25% (129/513) +2025-11-24T08:23:44.3957662Z remote: Compressing objects: 26% (134/513) +2025-11-24T08:23:44.3959794Z remote: Compressing objects: 27% (139/513) +2025-11-24T08:23:44.3961770Z remote: Compressing objects: 28% (144/513) +2025-11-24T08:23:44.3964006Z remote: Compressing objects: 29% (149/513) +2025-11-24T08:23:44.3967217Z remote: Compressing objects: 30% (154/513) +2025-11-24T08:23:44.3970085Z remote: Compressing objects: 31% (160/513) +2025-11-24T08:23:44.3972084Z remote: Compressing objects: 32% (165/513) +2025-11-24T08:23:44.3974190Z remote: Compressing objects: 33% (170/513) +2025-11-24T08:23:44.3976152Z remote: Compressing objects: 34% (175/513) +2025-11-24T08:23:44.3978176Z remote: Compressing objects: 35% (180/513) +2025-11-24T08:23:44.3980066Z remote: Compressing objects: 36% (185/513) +2025-11-24T08:23:44.3981942Z remote: Compressing objects: 37% (190/513) +2025-11-24T08:23:44.3984051Z remote: Compressing objects: 38% (195/513) +2025-11-24T08:23:44.3986644Z remote: Compressing objects: 39% (201/513) +2025-11-24T08:23:44.3988909Z remote: Compressing objects: 40% (206/513) +2025-11-24T08:23:44.3990795Z remote: Compressing objects: 41% (211/513) +2025-11-24T08:23:44.3992877Z remote: Compressing objects: 42% (216/513) +2025-11-24T08:23:44.3994748Z remote: Compressing objects: 43% (221/513) +2025-11-24T08:23:44.3996635Z remote: Compressing objects: 44% (226/513) +2025-11-24T08:23:44.3998493Z remote: Compressing objects: 45% (231/513) +2025-11-24T08:23:44.4000350Z remote: Compressing objects: 46% (236/513) +2025-11-24T08:23:44.4002195Z remote: Compressing objects: 47% (242/513) +2025-11-24T08:23:44.4004670Z remote: Compressing objects: 48% (247/513) +2025-11-24T08:23:44.4007161Z remote: Compressing objects: 49% (252/513) +2025-11-24T08:23:44.4009332Z remote: Compressing objects: 50% (257/513) +2025-11-24T08:23:44.4012120Z remote: Compressing objects: 51% (262/513) +2025-11-24T08:23:44.4014228Z remote: Compressing objects: 52% (267/513) +2025-11-24T08:23:44.4016106Z remote: Compressing objects: 53% (272/513) +2025-11-24T08:23:44.4017956Z remote: Compressing objects: 54% (278/513) +2025-11-24T08:23:44.4019804Z remote: Compressing objects: 55% (283/513) +2025-11-24T08:23:44.4023346Z remote: Compressing objects: 56% (288/513) +2025-11-24T08:23:44.4026473Z remote: Compressing objects: 57% (293/513) +2025-11-24T08:23:44.4028844Z remote: Compressing objects: 58% (298/513) +2025-11-24T08:23:44.4031746Z remote: Compressing objects: 59% (303/513) +2025-11-24T08:23:44.4035017Z remote: Compressing objects: 60% (308/513) +2025-11-24T08:23:44.4037447Z remote: Compressing objects: 61% (313/513) +2025-11-24T08:23:44.4040960Z remote: Compressing objects: 62% (319/513) +2025-11-24T08:23:44.4043582Z remote: Compressing objects: 63% (324/513) +2025-11-24T08:23:44.4047133Z remote: Compressing objects: 64% (329/513) +2025-11-24T08:23:44.4050702Z remote: Compressing objects: 65% (334/513) +2025-11-24T08:23:44.4054245Z remote: Compressing objects: 66% (339/513) +2025-11-24T08:23:44.4056205Z remote: Compressing objects: 67% (344/513) +2025-11-24T08:23:44.4058057Z remote: Compressing objects: 68% (349/513) +2025-11-24T08:23:44.4060629Z remote: Compressing objects: 69% (354/513) +2025-11-24T08:23:44.4063856Z remote: Compressing objects: 70% (360/513) +2025-11-24T08:23:44.4067010Z remote: Compressing objects: 71% (365/513) +2025-11-24T08:23:44.4069909Z remote: Compressing objects: 72% (370/513) +2025-11-24T08:23:44.4073231Z remote: Compressing objects: 73% (375/513) +2025-11-24T08:23:44.4076290Z remote: Compressing objects: 74% (380/513) +2025-11-24T08:23:44.4078871Z remote: Compressing objects: 75% (385/513) +2025-11-24T08:23:44.4081593Z remote: Compressing objects: 76% (390/513) +2025-11-24T08:23:44.4084291Z remote: Compressing objects: 77% (396/513) +2025-11-24T08:23:44.4085933Z remote: Compressing objects: 78% (401/513) +2025-11-24T08:23:44.4087607Z remote: Compressing objects: 79% (406/513) +2025-11-24T08:23:44.4089284Z remote: Compressing objects: 80% (411/513) +2025-11-24T08:23:44.4090923Z remote: Compressing objects: 81% (416/513) +2025-11-24T08:23:44.4092883Z remote: Compressing objects: 82% (421/513) +2025-11-24T08:23:44.4094599Z remote: Compressing objects: 83% (426/513) +2025-11-24T08:23:44.4096264Z remote: Compressing objects: 84% (431/513) +2025-11-24T08:23:44.4097498Z remote: Compressing objects: 85% (437/513) +2025-11-24T08:23:44.4098657Z remote: Compressing objects: 86% (442/513) +2025-11-24T08:23:44.4099853Z remote: Compressing objects: 87% (447/513) +2025-11-24T08:23:44.4101024Z remote: Compressing objects: 88% (452/513) +2025-11-24T08:23:44.4102467Z remote: Compressing objects: 89% (457/513) +2025-11-24T08:23:44.4103953Z remote: Compressing objects: 90% (462/513) +2025-11-24T08:23:44.4105116Z remote: Compressing objects: 91% (467/513) +2025-11-24T08:23:44.4106280Z remote: Compressing objects: 92% (472/513) +2025-11-24T08:23:44.4107424Z remote: Compressing objects: 93% (478/513) +2025-11-24T08:23:44.4108504Z remote: Compressing objects: 94% (483/513) +2025-11-24T08:23:44.4109808Z remote: Compressing objects: 95% (488/513) +2025-11-24T08:23:44.4110825Z remote: Compressing objects: 96% (493/513) +2025-11-24T08:23:44.4111712Z remote: Compressing objects: 97% (498/513) +2025-11-24T08:23:44.4112609Z remote: Compressing objects: 98% (503/513) +2025-11-24T08:23:44.4113831Z remote: Compressing objects: 99% (508/513) +2025-11-24T08:23:44.4114978Z remote: Compressing objects: 100% (513/513) +2025-11-24T08:23:44.4115920Z remote: Compressing objects: 100% (513/513), done. +2025-11-24T08:23:44.4267908Z Receiving objects: 0% (1/621) +2025-11-24T08:23:44.4269015Z Receiving objects: 1% (7/621) +2025-11-24T08:23:44.4273131Z Receiving objects: 2% (13/621) +2025-11-24T08:23:44.4275166Z Receiving objects: 3% (19/621) +2025-11-24T08:23:44.4280975Z Receiving objects: 4% (25/621) +2025-11-24T08:23:44.4283336Z Receiving objects: 5% (32/621) +2025-11-24T08:23:44.4286401Z Receiving objects: 6% (38/621) +2025-11-24T08:23:44.4287468Z Receiving objects: 7% (44/621) +2025-11-24T08:23:44.4292131Z Receiving objects: 8% (50/621) +2025-11-24T08:23:44.4293762Z Receiving objects: 9% (56/621) +2025-11-24T08:23:44.4295107Z Receiving objects: 10% (63/621) +2025-11-24T08:23:44.4296177Z Receiving objects: 11% (69/621) +2025-11-24T08:23:44.4297212Z Receiving objects: 12% (75/621) +2025-11-24T08:23:44.4303328Z Receiving objects: 13% (81/621) +2025-11-24T08:23:44.4305830Z Receiving objects: 14% (87/621) +2025-11-24T08:23:44.4308284Z Receiving objects: 15% (94/621) +2025-11-24T08:23:44.4309291Z Receiving objects: 16% (100/621) +2025-11-24T08:23:44.4310278Z Receiving objects: 17% (106/621) +2025-11-24T08:23:44.4311221Z Receiving objects: 18% (112/621) +2025-11-24T08:23:44.4330180Z Receiving objects: 19% (118/621) +2025-11-24T08:23:44.4331255Z Receiving objects: 20% (125/621) +2025-11-24T08:23:44.4332240Z Receiving objects: 21% (131/621) +2025-11-24T08:23:44.4333516Z Receiving objects: 22% (137/621) +2025-11-24T08:23:44.4334931Z Receiving objects: 23% (143/621) +2025-11-24T08:23:44.4335939Z Receiving objects: 24% (150/621) +2025-11-24T08:23:44.4336963Z Receiving objects: 25% (156/621) +2025-11-24T08:23:44.4337988Z Receiving objects: 26% (162/621) +2025-11-24T08:23:44.4339001Z Receiving objects: 27% (168/621) +2025-11-24T08:23:44.4340012Z Receiving objects: 28% (174/621) +2025-11-24T08:23:44.4341348Z Receiving objects: 29% (181/621) +2025-11-24T08:23:44.4343188Z Receiving objects: 30% (187/621) +2025-11-24T08:23:44.4344786Z Receiving objects: 31% (193/621) +2025-11-24T08:23:44.4346355Z Receiving objects: 32% (199/621) +2025-11-24T08:23:44.4347918Z Receiving objects: 33% (205/621) +2025-11-24T08:23:44.4349499Z Receiving objects: 34% (212/621) +2025-11-24T08:23:44.4351068Z Receiving objects: 35% (218/621) +2025-11-24T08:23:44.4353017Z Receiving objects: 36% (224/621) +2025-11-24T08:23:44.4372473Z Receiving objects: 37% (230/621) +2025-11-24T08:23:44.4373707Z Receiving objects: 38% (236/621) +2025-11-24T08:23:44.4374679Z Receiving objects: 39% (243/621) +2025-11-24T08:23:44.4375605Z Receiving objects: 40% (249/621) +2025-11-24T08:23:44.4376508Z Receiving objects: 41% (255/621) +2025-11-24T08:23:44.4377408Z Receiving objects: 42% (261/621) +2025-11-24T08:23:44.4378379Z Receiving objects: 43% (268/621) +2025-11-24T08:23:44.4379376Z Receiving objects: 44% (274/621) +2025-11-24T08:23:44.4380360Z Receiving objects: 45% (280/621) +2025-11-24T08:23:44.4405434Z Receiving objects: 46% (286/621) +2025-11-24T08:23:44.4409035Z Receiving objects: 47% (292/621) +2025-11-24T08:23:44.4427764Z Receiving objects: 48% (299/621) +2025-11-24T08:23:44.4431334Z Receiving objects: 49% (305/621) +2025-11-24T08:23:44.4434911Z Receiving objects: 50% (311/621) +2025-11-24T08:23:44.4435786Z Receiving objects: 51% (317/621) +2025-11-24T08:23:44.4440147Z Receiving objects: 52% (323/621) +2025-11-24T08:23:44.4441294Z Receiving objects: 53% (330/621) +2025-11-24T08:23:44.4442261Z Receiving objects: 54% (336/621) +2025-11-24T08:23:44.4443534Z Receiving objects: 55% (342/621) +2025-11-24T08:23:44.4444724Z Receiving objects: 56% (348/621) +2025-11-24T08:23:44.4452234Z Receiving objects: 57% (354/621) +2025-11-24T08:23:44.4454198Z Receiving objects: 58% (361/621) +2025-11-24T08:23:44.4479257Z Receiving objects: 59% (367/621) +2025-11-24T08:23:44.4485047Z Receiving objects: 60% (373/621) +2025-11-24T08:23:44.4512588Z Receiving objects: 61% (379/621) +2025-11-24T08:23:44.4518517Z Receiving objects: 62% (386/621) +2025-11-24T08:23:44.4520309Z Receiving objects: 63% (392/621) +2025-11-24T08:23:44.4522165Z Receiving objects: 64% (398/621) +2025-11-24T08:23:44.4526173Z Receiving objects: 65% (404/621) +2025-11-24T08:23:44.4527504Z Receiving objects: 66% (410/621) +2025-11-24T08:23:44.4528985Z Receiving objects: 67% (417/621) +2025-11-24T08:23:44.4529929Z Receiving objects: 68% (423/621) +2025-11-24T08:23:44.4531445Z Receiving objects: 69% (429/621) +2025-11-24T08:23:44.4533207Z Receiving objects: 70% (435/621) +2025-11-24T08:23:44.4534192Z Receiving objects: 71% (441/621) +2025-11-24T08:23:44.4536112Z Receiving objects: 72% (448/621) +2025-11-24T08:23:44.4537126Z Receiving objects: 73% (454/621) +2025-11-24T08:23:44.4538218Z Receiving objects: 74% (460/621) +2025-11-24T08:23:44.4539137Z Receiving objects: 75% (466/621) +2025-11-24T08:23:44.4540201Z Receiving objects: 76% (472/621) +2025-11-24T08:23:44.4541021Z Receiving objects: 77% (479/621) +2025-11-24T08:23:44.4542092Z Receiving objects: 78% (485/621) +2025-11-24T08:23:44.4543223Z Receiving objects: 79% (491/621) +2025-11-24T08:23:44.4544403Z Receiving objects: 80% (497/621) +2025-11-24T08:23:44.4545370Z Receiving objects: 81% (504/621) +2025-11-24T08:23:44.4556369Z Receiving objects: 82% (510/621) +2025-11-24T08:23:44.4559484Z Receiving objects: 83% (516/621) +2025-11-24T08:23:44.4560478Z Receiving objects: 84% (522/621) +2025-11-24T08:23:44.4561695Z remote: Total 621 (delta 71), reused 404 (delta 57), pack-reused 0 (from 0) +2025-11-24T08:23:44.4574614Z Receiving objects: 85% (528/621) +2025-11-24T08:23:44.4576588Z Receiving objects: 86% (535/621) +2025-11-24T08:23:44.4577778Z Receiving objects: 87% (541/621) +2025-11-24T08:23:44.4578735Z Receiving objects: 88% (547/621) +2025-11-24T08:23:44.4579677Z Receiving objects: 89% (553/621) +2025-11-24T08:23:44.4580642Z Receiving objects: 90% (559/621) +2025-11-24T08:23:44.4581564Z Receiving objects: 91% (566/621) +2025-11-24T08:23:44.4582479Z Receiving objects: 92% (572/621) +2025-11-24T08:23:44.4583592Z Receiving objects: 93% (578/621) +2025-11-24T08:23:44.4584564Z Receiving objects: 94% (584/621) +2025-11-24T08:23:44.4585474Z Receiving objects: 95% (590/621) +2025-11-24T08:23:44.4586411Z Receiving objects: 96% (597/621) +2025-11-24T08:23:44.4587340Z Receiving objects: 97% (603/621) +2025-11-24T08:23:44.4588319Z Receiving objects: 98% (609/621) +2025-11-24T08:23:44.4589304Z Receiving objects: 99% (615/621) +2025-11-24T08:23:44.4590238Z Receiving objects: 100% (621/621) +2025-11-24T08:23:44.4591313Z Receiving objects: 100% (621/621), 552.60 KiB | 13.16 MiB/s, done. +2025-11-24T08:23:44.4592509Z Resolving deltas: 0% (0/71) +2025-11-24T08:23:44.4593599Z Resolving deltas: 1% (1/71) +2025-11-24T08:23:44.4594524Z Resolving deltas: 2% (2/71) +2025-11-24T08:23:44.4600693Z Resolving deltas: 4% (3/71) +2025-11-24T08:23:44.4601933Z Resolving deltas: 5% (4/71) +2025-11-24T08:23:44.4603486Z Resolving deltas: 7% (5/71) +2025-11-24T08:23:44.4610489Z Resolving deltas: 8% (6/71) +2025-11-24T08:23:44.4615651Z Resolving deltas: 11% (8/71) +2025-11-24T08:23:44.4616812Z Resolving deltas: 12% (9/71) +2025-11-24T08:23:44.4623294Z Resolving deltas: 14% (10/71) +2025-11-24T08:23:44.4624345Z Resolving deltas: 15% (11/71) +2025-11-24T08:23:44.4625268Z Resolving deltas: 16% (12/71) +2025-11-24T08:23:44.4626199Z Resolving deltas: 18% (13/71) +2025-11-24T08:23:44.4627098Z Resolving deltas: 19% (14/71) +2025-11-24T08:23:44.4628004Z Resolving deltas: 21% (15/71) +2025-11-24T08:23:44.4635360Z Resolving deltas: 22% (16/71) +2025-11-24T08:23:44.4636386Z Resolving deltas: 23% (17/71) +2025-11-24T08:23:44.4637333Z Resolving deltas: 25% (18/71) +2025-11-24T08:23:44.4638236Z Resolving deltas: 26% (19/71) +2025-11-24T08:23:44.4639125Z Resolving deltas: 28% (20/71) +2025-11-24T08:23:44.4640132Z Resolving deltas: 29% (21/71) +2025-11-24T08:23:44.4641092Z Resolving deltas: 30% (22/71) +2025-11-24T08:23:44.4641987Z Resolving deltas: 32% (23/71) +2025-11-24T08:23:44.4643120Z Resolving deltas: 33% (24/71) +2025-11-24T08:23:44.4644087Z Resolving deltas: 35% (25/71) +2025-11-24T08:23:44.4645310Z Resolving deltas: 36% (26/71) +2025-11-24T08:23:44.4646229Z Resolving deltas: 38% (27/71) +2025-11-24T08:23:44.4647116Z Resolving deltas: 39% (28/71) +2025-11-24T08:23:44.4648007Z Resolving deltas: 40% (29/71) +2025-11-24T08:23:44.4648912Z Resolving deltas: 42% (30/71) +2025-11-24T08:23:44.4649832Z Resolving deltas: 43% (31/71) +2025-11-24T08:23:44.4653514Z Resolving deltas: 46% (33/71) +2025-11-24T08:23:44.4655134Z Resolving deltas: 47% (34/71) +2025-11-24T08:23:44.4656040Z Resolving deltas: 49% (35/71) +2025-11-24T08:23:44.4656964Z Resolving deltas: 50% (36/71) +2025-11-24T08:23:44.4662209Z Resolving deltas: 53% (38/71) +2025-11-24T08:23:44.4664010Z Resolving deltas: 56% (40/71) +2025-11-24T08:23:44.4665160Z Resolving deltas: 57% (41/71) +2025-11-24T08:23:44.4670783Z Resolving deltas: 59% (42/71) +2025-11-24T08:23:44.4672002Z Resolving deltas: 60% (43/71) +2025-11-24T08:23:44.4674406Z Resolving deltas: 61% (44/71) +2025-11-24T08:23:44.4676656Z Resolving deltas: 63% (45/71) +2025-11-24T08:23:44.4681262Z Resolving deltas: 64% (46/71) +2025-11-24T08:23:44.4684676Z Resolving deltas: 66% (47/71) +2025-11-24T08:23:44.4685383Z Resolving deltas: 67% (48/71) +2025-11-24T08:23:44.4686277Z Resolving deltas: 69% (49/71) +2025-11-24T08:23:44.4687238Z Resolving deltas: 71% (51/71) +2025-11-24T08:23:44.4688096Z Resolving deltas: 73% (52/71) +2025-11-24T08:23:44.4688953Z Resolving deltas: 74% (53/71) +2025-11-24T08:23:44.4689878Z Resolving deltas: 76% (54/71) +2025-11-24T08:23:44.4690750Z Resolving deltas: 77% (55/71) +2025-11-24T08:23:44.4691983Z Resolving deltas: 78% (56/71) +2025-11-24T08:23:44.4693090Z Resolving deltas: 80% (57/71) +2025-11-24T08:23:44.4694009Z Resolving deltas: 81% (58/71) +2025-11-24T08:23:44.4694882Z Resolving deltas: 83% (59/71) +2025-11-24T08:23:44.4695754Z Resolving deltas: 84% (60/71) +2025-11-24T08:23:44.4696568Z Resolving deltas: 85% (61/71) +2025-11-24T08:23:44.4697248Z Resolving deltas: 87% (62/71) +2025-11-24T08:23:44.4697837Z Resolving deltas: 88% (63/71) +2025-11-24T08:23:44.4698389Z Resolving deltas: 90% (64/71) +2025-11-24T08:23:44.4698938Z Resolving deltas: 91% (65/71) +2025-11-24T08:23:44.4699472Z Resolving deltas: 92% (66/71) +2025-11-24T08:23:44.4699994Z Resolving deltas: 94% (67/71) +2025-11-24T08:23:44.4700512Z Resolving deltas: 95% (68/71) +2025-11-24T08:23:44.4701036Z Resolving deltas: 97% (69/71) +2025-11-24T08:23:44.4701560Z Resolving deltas: 98% (70/71) +2025-11-24T08:23:44.4702080Z Resolving deltas: 100% (71/71) +2025-11-24T08:23:44.4702619Z Resolving deltas: 100% (71/71), done. +2025-11-24T08:23:44.4973702Z From https://github.com/wireapp/wire-server-deploy +2025-11-24T08:23:44.4975169Z * [new ref] 8e9551337084771742ec8fc44c4955baa28a8a5c -> pull/829/merge +2025-11-24T08:23:44.5056846Z ##[endgroup] +2025-11-24T08:23:44.5058031Z ##[group]Determining the checkout info +2025-11-24T08:23:44.5059238Z ##[endgroup] +2025-11-24T08:23:44.5060101Z ##[group]Checking out the ref +2025-11-24T08:23:44.5062362Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/829/merge +2025-11-24T08:23:44.5812471Z Note: switching to 'refs/remotes/pull/829/merge'. +2025-11-24T08:23:44.5813481Z +2025-11-24T08:23:44.5814072Z You are in 'detached HEAD' state. You can look around, make experimental +2025-11-24T08:23:44.5815370Z changes and commit them, and you can discard any commits you make in this +2025-11-24T08:23:44.5816651Z state without impacting any branches by switching back to a branch. +2025-11-24T08:23:44.5817385Z +2025-11-24T08:23:44.5817925Z If you want to create a new branch to retain commits you create, you may +2025-11-24T08:23:44.5818884Z do so (now or later) by using -c with the switch command. Example: +2025-11-24T08:23:44.5819321Z +2025-11-24T08:23:44.5819628Z git switch -c +2025-11-24T08:23:44.5819966Z +2025-11-24T08:23:44.5820216Z Or undo this operation with: +2025-11-24T08:23:44.5820529Z +2025-11-24T08:23:44.5820764Z git switch - +2025-11-24T08:23:44.5821038Z +2025-11-24T08:23:44.5821400Z Turn off this advice by setting config variable advice.detachedHead to false +2025-11-24T08:23:44.5822137Z +2025-11-24T08:23:44.5822987Z HEAD is now at 8e95513 Merge a8eefba2f51f455bd3d0cddab9ff7be95b6663c8 into e2a440009efcf0576da4d1161d44d740132b873b +2025-11-24T08:23:44.5824845Z ##[endgroup] +2025-11-24T08:23:44.5825706Z ##[group]Setting up auth for fetching submodules +2025-11-24T08:23:44.5829284Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-11-24T08:23:44.5870721Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf +2025-11-24T08:23:44.5898505Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: +2025-11-24T08:23:44.5927207Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-16047324@github.com: +2025-11-24T08:23:44.5953055Z ##[endgroup] +2025-11-24T08:23:44.5953925Z ##[group]Fetching submodules +2025-11-24T08:23:44.5956038Z [command]/usr/bin/git submodule sync +2025-11-24T08:23:44.6201151Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 +2025-11-24T08:23:44.6445807Z Submodule 'ansible/roles-external/ANXS.apt' (https://github.com/ANXS/apt.git) registered for path 'ansible/roles-external/ANXS.apt' +2025-11-24T08:23:44.6448666Z Submodule 'ansible/roles-external/admin_users' (https://github.com/cchurch/ansible-role-admin-users.git) registered for path 'ansible/roles-external/admin_users' +2025-11-24T08:23:44.6456733Z Submodule 'ansible/roles-external/andrewrothstein.unarchive-deps' (https://github.com/andrewrothstein/ansible-unarchive-deps) registered for path 'ansible/roles-external/andrewrothstein.unarchive-deps' +2025-11-24T08:23:44.6461783Z Submodule 'ansible/roles-external/ansible-cassandra' (https://github.com/wireapp/ansible-cassandra.git) registered for path 'ansible/roles-external/ansible-cassandra' +2025-11-24T08:23:44.6466631Z Submodule 'ansible/roles-external/ansible-minio' (https://github.com/wireapp/ansible-minio.git) registered for path 'ansible/roles-external/ansible-minio' +2025-11-24T08:23:44.6470952Z Submodule 'ansible/roles-external/ansible-ntp-verify' (https://github.com/wireapp/ansible-ntp-verify.git) registered for path 'ansible/roles-external/ansible-ntp-verify' +2025-11-24T08:23:44.6477740Z Submodule 'ansible/roles-external/ansible-role-java' (https://github.com/geerlingguy/ansible-role-java.git) registered for path 'ansible/roles-external/ansible-role-java' +2025-11-24T08:23:44.6482531Z Submodule 'ansible/roles-external/ansible-role-ntp' (https://github.com/geerlingguy/ansible-role-ntp.git) registered for path 'ansible/roles-external/ansible-role-ntp' +2025-11-24T08:23:44.6487758Z Submodule 'ansible/roles-external/ansible-tinc' (https://github.com/wireapp/ansible-tinc.git) registered for path 'ansible/roles-external/ansible-tinc' +2025-11-24T08:23:44.6494044Z Submodule 'ansible/roles-external/cloudalchemy.node-exporter' (https://github.com/cloudalchemy/ansible-node-exporter) registered for path 'ansible/roles-external/cloudalchemy.node-exporter' +2025-11-24T08:23:44.6498242Z Submodule 'ansible/roles-external/elasticsearch' (https://github.com/wireapp/wire-elasticsearch-fork.git) registered for path 'ansible/roles-external/elasticsearch' +2025-11-24T08:23:44.6504537Z Submodule 'ansible/roles-external/hostname' (https://github.com/ANXS/hostname.git) registered for path 'ansible/roles-external/hostname' +2025-11-24T08:23:44.6510178Z Submodule 'ansible/roles-external/kubespray' (https://github.com/kubernetes-sigs/kubespray.git) registered for path 'ansible/roles-external/kubespray' +2025-11-24T08:23:44.6514752Z Submodule 'ansible/roles-external/logrotate' (https://github.com/nickhammond/ansible-logrotate.git) registered for path 'ansible/roles-external/logrotate' +2025-11-24T08:23:44.6521003Z Submodule 'ansible/roles-external/sft' (https://github.com/wireapp/ansible-sft.git) registered for path 'ansible/roles-external/sft' +2025-11-24T08:23:44.6553624Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ANXS.apt'... +2025-11-24T08:23:44.9085309Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/admin_users'... +2025-11-24T08:23:45.1746651Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/andrewrothstein.unarchive-deps'... +2025-11-24T08:23:45.4294007Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-cassandra'... +2025-11-24T08:23:45.7354714Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-minio'... +2025-11-24T08:23:46.0183155Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-ntp-verify'... +2025-11-24T08:23:46.3202324Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-role-java'... +2025-11-24T08:23:46.6110983Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-role-ntp'... +2025-11-24T08:23:46.8576432Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-tinc'... +2025-11-24T08:23:47.1347237Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/cloudalchemy.node-exporter'... +2025-11-24T08:23:47.3936021Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/elasticsearch'... +2025-11-24T08:23:47.6835373Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/hostname'... +2025-11-24T08:23:47.9438993Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/kubespray'... +2025-11-24T08:23:48.4016288Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/logrotate'... +2025-11-24T08:23:48.6544526Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/sft'... +2025-11-24T08:23:49.4815883Z From https://github.com/ANXS/apt +2025-11-24T08:23:49.4817119Z * branch f602ba7e88abfbb3af6679a8ca47207dc3e9d9c4 -> FETCH_HEAD +2025-11-24T08:23:49.4943041Z Submodule path 'ansible/roles-external/ANXS.apt': checked out 'f602ba7e88abfbb3af6679a8ca47207dc3e9d9c4' +2025-11-24T08:23:50.1113290Z From https://github.com/cchurch/ansible-role-admin-users +2025-11-24T08:23:50.1512211Z * branch d5bcef7e925ee1acf4e42359f0a95ed788eea58f -> FETCH_HEAD +2025-11-24T08:23:50.1513945Z Submodule path 'ansible/roles-external/admin_users': checked out 'd5bcef7e925ee1acf4e42359f0a95ed788eea58f' +2025-11-24T08:23:50.7038181Z From https://github.com/andrewrothstein/ansible-unarchive-deps +2025-11-24T08:23:50.7039308Z * branch 4485543262cfe04170d1ec02c8ccb95c44a7a222 -> FETCH_HEAD +2025-11-24T08:23:50.7109381Z Submodule path 'ansible/roles-external/andrewrothstein.unarchive-deps': checked out '4485543262cfe04170d1ec02c8ccb95c44a7a222' +2025-11-24T08:23:51.2072138Z From https://github.com/wireapp/ansible-cassandra +2025-11-24T08:23:51.2073829Z * branch f5c2467f5df08361769603e4571bbf65b1267e53 -> FETCH_HEAD +2025-11-24T08:23:51.2149582Z Submodule path 'ansible/roles-external/ansible-cassandra': checked out 'f5c2467f5df08361769603e4571bbf65b1267e53' +2025-11-24T08:23:51.7210598Z From https://github.com/wireapp/ansible-minio +2025-11-24T08:23:51.7211824Z * branch 89803b5d0ed638ccf8e99f46f0dd4cc4f4bf5dcb -> FETCH_HEAD +2025-11-24T08:23:51.7316306Z Submodule path 'ansible/roles-external/ansible-minio': checked out '89803b5d0ed638ccf8e99f46f0dd4cc4f4bf5dcb' +2025-11-24T08:23:52.3053175Z From https://github.com/wireapp/ansible-ntp-verify +2025-11-24T08:23:52.3054712Z * branch 4c3d0c67d32d2d74444f4db45b2a4d2efdc7d590 -> FETCH_HEAD +2025-11-24T08:23:52.3126754Z Submodule path 'ansible/roles-external/ansible-ntp-verify': checked out '4c3d0c67d32d2d74444f4db45b2a4d2efdc7d590' +2025-11-24T08:23:52.8814380Z From https://github.com/geerlingguy/ansible-role-java +2025-11-24T08:23:52.8896175Z * branch e715e3c4b9bef3fc7716b7787daf95eafd8205fb -> FETCH_HEAD +2025-11-24T08:23:52.8897414Z Submodule path 'ansible/roles-external/ansible-role-java': checked out 'e715e3c4b9bef3fc7716b7787daf95eafd8205fb' +2025-11-24T08:23:53.4268206Z From https://github.com/geerlingguy/ansible-role-ntp +2025-11-24T08:23:53.4269402Z * branch af1ec62385c899a3e3f24407d8417adcdc9eea60 -> FETCH_HEAD +2025-11-24T08:23:53.4343199Z Submodule path 'ansible/roles-external/ansible-role-ntp': checked out 'af1ec62385c899a3e3f24407d8417adcdc9eea60' +2025-11-24T08:23:53.4422599Z Submodule path 'ansible/roles-external/ansible-tinc': checked out '42951a951f6381e387174178bf3bff228b6a5dc5' +2025-11-24T08:23:53.9803209Z From https://github.com/cloudalchemy/ansible-node-exporter +2025-11-24T08:23:53.9804496Z * branch 8dc13ae077e3da1a71c268b114cd4fb8103ced80 -> FETCH_HEAD +2025-11-24T08:23:53.9905517Z Submodule path 'ansible/roles-external/cloudalchemy.node-exporter': checked out '8dc13ae077e3da1a71c268b114cd4fb8103ced80' +2025-11-24T08:23:54.0201538Z Submodule path 'ansible/roles-external/elasticsearch': checked out '48ec1993336d1368f5915c0f0e5ba9e1df882b8a' +2025-11-24T08:23:54.0305098Z Submodule path 'ansible/roles-external/hostname': checked out 'da6f329b2984e84d2248d4251e0c679c53dfbb30' +2025-11-24T08:23:54.8075573Z From https://github.com/kubernetes-sigs/kubespray +2025-11-24T08:23:54.8076650Z * branch 781f02fddab7700817949c2adfd9dbda21cc68d8 -> FETCH_HEAD +2025-11-24T08:23:54.9065671Z Submodule path 'ansible/roles-external/kubespray': checked out '781f02fddab7700817949c2adfd9dbda21cc68d8' +2025-11-24T08:23:54.9150974Z Submodule path 'ansible/roles-external/logrotate': checked out '91d570f68c44261d2051a99a2b3c7d736306bf0d' +2025-11-24T08:23:55.4363918Z From https://github.com/wireapp/ansible-sft +2025-11-24T08:23:55.4365112Z * branch a11e1d91826ea3d8ffee2e1ba23eb0dfe7c333b5 -> FETCH_HEAD +2025-11-24T08:23:55.4446437Z Submodule path 'ansible/roles-external/sft': checked out 'a11e1d91826ea3d8ffee2e1ba23eb0dfe7c333b5' +2025-11-24T08:23:55.4460392Z [command]/usr/bin/git submodule foreach git config --local gc.auto 0 +2025-11-24T08:23:55.4690870Z Entering 'ansible/roles-external/ANXS.apt' +2025-11-24T08:23:55.4718568Z Entering 'ansible/roles-external/admin_users' +2025-11-24T08:23:55.4743240Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' +2025-11-24T08:23:55.4767650Z Entering 'ansible/roles-external/ansible-cassandra' +2025-11-24T08:23:55.4791447Z Entering 'ansible/roles-external/ansible-minio' +2025-11-24T08:23:55.4815754Z Entering 'ansible/roles-external/ansible-ntp-verify' +2025-11-24T08:23:55.4857251Z Entering 'ansible/roles-external/ansible-role-java' +2025-11-24T08:23:55.4864905Z Entering 'ansible/roles-external/ansible-role-ntp' +2025-11-24T08:23:55.4889101Z Entering 'ansible/roles-external/ansible-tinc' +2025-11-24T08:23:55.4913264Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' +2025-11-24T08:23:55.4936831Z Entering 'ansible/roles-external/elasticsearch' +2025-11-24T08:23:55.4960491Z Entering 'ansible/roles-external/hostname' +2025-11-24T08:23:55.4986225Z Entering 'ansible/roles-external/kubespray' +2025-11-24T08:23:55.5009977Z Entering 'ansible/roles-external/logrotate' +2025-11-24T08:23:55.5033908Z Entering 'ansible/roles-external/sft' +2025-11-24T08:23:55.5076704Z ##[endgroup] +2025-11-24T08:23:55.5077963Z ##[group]Persisting credentials for submodules +2025-11-24T08:23:55.5084223Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" +2025-11-24T08:23:55.5317900Z Entering 'ansible/roles-external/ANXS.apt' +2025-11-24T08:23:55.5364756Z Entering 'ansible/roles-external/admin_users' +2025-11-24T08:23:55.5415014Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' +2025-11-24T08:23:55.5459996Z Entering 'ansible/roles-external/ansible-cassandra' +2025-11-24T08:23:55.5503980Z Entering 'ansible/roles-external/ansible-minio' +2025-11-24T08:23:55.5548252Z Entering 'ansible/roles-external/ansible-ntp-verify' +2025-11-24T08:23:55.5593276Z Entering 'ansible/roles-external/ansible-role-java' +2025-11-24T08:23:55.5637476Z Entering 'ansible/roles-external/ansible-role-ntp' +2025-11-24T08:23:55.5681489Z Entering 'ansible/roles-external/ansible-tinc' +2025-11-24T08:23:55.5725964Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' +2025-11-24T08:23:55.5769129Z Entering 'ansible/roles-external/elasticsearch' +2025-11-24T08:23:55.5816026Z Entering 'ansible/roles-external/hostname' +2025-11-24T08:23:55.5860594Z Entering 'ansible/roles-external/kubespray' +2025-11-24T08:23:55.5910481Z Entering 'ansible/roles-external/logrotate' +2025-11-24T08:23:55.5953954Z Entering 'ansible/roles-external/sft' +2025-11-24T08:23:55.6010466Z [command]/usr/bin/git submodule foreach sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" +2025-11-24T08:23:55.6233113Z Entering 'ansible/roles-external/ANXS.apt' +2025-11-24T08:23:55.6271994Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ANXS.apt/config remote.origin.url +2025-11-24T08:23:55.6276483Z Entering 'ansible/roles-external/admin_users' +2025-11-24T08:23:55.6316758Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/admin_users/config remote.origin.url +2025-11-24T08:23:55.6321087Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' +2025-11-24T08:23:55.6361624Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/andrewrothstein.unarchive-deps/config remote.origin.url +2025-11-24T08:23:55.6365960Z Entering 'ansible/roles-external/ansible-cassandra' +2025-11-24T08:23:55.6410253Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-cassandra/config remote.origin.url +2025-11-24T08:23:55.6415181Z Entering 'ansible/roles-external/ansible-minio' +2025-11-24T08:23:55.6457171Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-minio/config remote.origin.url +2025-11-24T08:23:55.6461560Z Entering 'ansible/roles-external/ansible-ntp-verify' +2025-11-24T08:23:55.6503213Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-ntp-verify/config remote.origin.url +2025-11-24T08:23:55.6507044Z Entering 'ansible/roles-external/ansible-role-java' +2025-11-24T08:23:55.6546499Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-role-java/config remote.origin.url +2025-11-24T08:23:55.6550355Z Entering 'ansible/roles-external/ansible-role-ntp' +2025-11-24T08:23:55.6590224Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-role-ntp/config remote.origin.url +2025-11-24T08:23:55.6594279Z Entering 'ansible/roles-external/ansible-tinc' +2025-11-24T08:23:55.6634162Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-tinc/config remote.origin.url +2025-11-24T08:23:55.6638059Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' +2025-11-24T08:23:55.6678396Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/cloudalchemy.node-exporter/config remote.origin.url +2025-11-24T08:23:55.6682291Z Entering 'ansible/roles-external/elasticsearch' +2025-11-24T08:23:55.6721700Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/elasticsearch/config remote.origin.url +2025-11-24T08:23:55.6726703Z Entering 'ansible/roles-external/hostname' +2025-11-24T08:23:55.6765514Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/hostname/config remote.origin.url +2025-11-24T08:23:55.6769758Z Entering 'ansible/roles-external/kubespray' +2025-11-24T08:23:55.6808494Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/kubespray/config remote.origin.url +2025-11-24T08:23:55.6813571Z Entering 'ansible/roles-external/logrotate' +2025-11-24T08:23:55.6852064Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/logrotate/config remote.origin.url +2025-11-24T08:23:55.6855990Z Entering 'ansible/roles-external/sft' +2025-11-24T08:23:55.6895403Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/sft/config remote.origin.url +2025-11-24T08:23:55.6996016Z [command]/usr/bin/git submodule foreach git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' +2025-11-24T08:23:55.7221523Z Entering 'ansible/roles-external/ANXS.apt' +2025-11-24T08:23:55.7247394Z Entering 'ansible/roles-external/admin_users' +2025-11-24T08:23:55.7308588Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' +2025-11-24T08:23:55.7333139Z Entering 'ansible/roles-external/ansible-cassandra' +2025-11-24T08:23:55.7357073Z Entering 'ansible/roles-external/ansible-minio' +2025-11-24T08:23:55.7380634Z Entering 'ansible/roles-external/ansible-ntp-verify' +2025-11-24T08:23:55.7404030Z Entering 'ansible/roles-external/ansible-role-java' +2025-11-24T08:23:55.7427475Z Entering 'ansible/roles-external/ansible-role-ntp' +2025-11-24T08:23:55.7451817Z Entering 'ansible/roles-external/ansible-tinc' +2025-11-24T08:23:55.7475834Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' +2025-11-24T08:23:55.7499340Z Entering 'ansible/roles-external/elasticsearch' +2025-11-24T08:23:55.7523040Z Entering 'ansible/roles-external/hostname' +2025-11-24T08:23:55.7547842Z Entering 'ansible/roles-external/kubespray' +2025-11-24T08:23:55.7571788Z Entering 'ansible/roles-external/logrotate' +2025-11-24T08:23:55.7596024Z Entering 'ansible/roles-external/sft' +2025-11-24T08:23:55.7635646Z [command]/usr/bin/git submodule foreach git config --local --add 'url.https://github.com/.insteadOf' 'org-16047324@github.com:' +2025-11-24T08:23:55.7861295Z Entering 'ansible/roles-external/ANXS.apt' +2025-11-24T08:23:55.7888985Z Entering 'ansible/roles-external/admin_users' +2025-11-24T08:23:55.7911324Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' +2025-11-24T08:23:55.7936282Z Entering 'ansible/roles-external/ansible-cassandra' +2025-11-24T08:23:55.7961469Z Entering 'ansible/roles-external/ansible-minio' +2025-11-24T08:23:55.7989037Z Entering 'ansible/roles-external/ansible-ntp-verify' +2025-11-24T08:23:55.8013672Z Entering 'ansible/roles-external/ansible-role-java' +2025-11-24T08:23:55.8037498Z Entering 'ansible/roles-external/ansible-role-ntp' +2025-11-24T08:23:55.8063192Z Entering 'ansible/roles-external/ansible-tinc' +2025-11-24T08:23:55.8088459Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' +2025-11-24T08:23:55.8112552Z Entering 'ansible/roles-external/elasticsearch' +2025-11-24T08:23:55.8137184Z Entering 'ansible/roles-external/hostname' +2025-11-24T08:23:55.8161545Z Entering 'ansible/roles-external/kubespray' +2025-11-24T08:23:55.8186023Z Entering 'ansible/roles-external/logrotate' +2025-11-24T08:23:55.8209716Z Entering 'ansible/roles-external/sft' +2025-11-24T08:23:55.8244292Z ##[endgroup] +2025-11-24T08:23:55.8281883Z [command]/usr/bin/git log -1 --format='%H' +2025-11-24T08:23:55.8308788Z '8e9551337084771742ec8fc44c4955baa28a8a5c' +2025-11-24T08:23:55.8532582Z ##[group]Run cachix/install-nix-action@v27 +2025-11-24T08:23:55.8533338Z with: +2025-11-24T08:23:55.8533737Z enable_kvm: true +2025-11-24T08:23:55.8534148Z ##[endgroup] +2025-11-24T08:23:55.8632845Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh +2025-11-24T08:23:55.8633515Z ${GITHUB_ACTION_PATH}/install-nix.sh +2025-11-24T08:23:55.8672856Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-11-24T08:23:55.8673445Z env: +2025-11-24T08:23:55.8673846Z INPUT_EXTRA_NIX_CONFIG: +2025-11-24T08:23:55.8674281Z INPUT_GITHUB_ACCESS_TOKEN: +2025-11-24T08:23:55.8674711Z INPUT_INSTALL_OPTIONS: +2025-11-24T08:23:55.8675129Z INPUT_INSTALL_URL: +2025-11-24T08:23:55.8675527Z INPUT_NIX_PATH: +2025-11-24T08:23:55.8675937Z INPUT_ENABLE_KVM: true +2025-11-24T08:23:55.8676637Z GITHUB_TOKEN: *** +2025-11-24T08:23:55.8677053Z ##[endgroup] +2025-11-24T08:23:55.8787585Z ##[group]Enabling KVM support +2025-11-24T08:23:55.8856232Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" +2025-11-24T08:23:55.9181697Z Enabled KVM +2025-11-24T08:23:55.9183757Z ##[endgroup] +2025-11-24T08:23:55.9184789Z ##[group]Installing Nix +2025-11-24T08:23:55.9481397Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.OluKA9IjIC/nix.conf --daemon --daemon-user-count 8 +2025-11-24T08:23:56.0559377Z * Host releases.nixos.org:443 was resolved. +2025-11-24T08:23:56.0564653Z * IPv6: 2a04:4e42:83::347 +2025-11-24T08:23:56.0565192Z * IPv4: 146.75.77.91 +2025-11-24T08:23:56.0565628Z * Trying 146.75.77.91:443... +2025-11-24T08:23:56.0575265Z * Connected to releases.nixos.org (146.75.77.91) port 443 +2025-11-24T08:23:56.0589591Z * ALPN: curl offers h2,http/1.1 +2025-11-24T08:23:56.0590853Z } [5 bytes data] +2025-11-24T08:23:56.0591600Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): +2025-11-24T08:23:56.0592417Z } [512 bytes data] +2025-11-24T08:23:56.0806700Z * CAfile: /etc/ssl/certs/ca-certificates.crt +2025-11-24T08:23:56.0807626Z * CApath: /etc/ssl/certs +2025-11-24T08:23:56.0808320Z { [5 bytes data] +2025-11-24T08:23:56.0809205Z * TLSv1.3 (IN), TLS handshake, Server hello (2): +2025-11-24T08:23:56.0810029Z { [122 bytes data] +2025-11-24T08:23:56.0810802Z * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): +2025-11-24T08:23:56.0811912Z { [19 bytes data] +2025-11-24T08:23:56.0812422Z * TLSv1.3 (IN), TLS handshake, Certificate (11): +2025-11-24T08:23:56.0813265Z { [2591 bytes data] +2025-11-24T08:23:56.0815329Z * TLSv1.3 (IN), TLS handshake, CERT verify (15): +2025-11-24T08:23:56.0816200Z { [264 bytes data] +2025-11-24T08:23:56.0816930Z * TLSv1.3 (IN), TLS handshake, Finished (20): +2025-11-24T08:23:56.0817728Z { [36 bytes data] +2025-11-24T08:23:56.0818516Z * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): +2025-11-24T08:23:56.0819403Z } [1 bytes data] +2025-11-24T08:23:56.0820125Z * TLSv1.3 (OUT), TLS handshake, Finished (20): +2025-11-24T08:23:56.0820940Z } [36 bytes data] +2025-11-24T08:23:56.0821824Z * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 / X25519 / RSASSA-PSS +2025-11-24T08:23:56.0822988Z * ALPN: server accepted h2 +2025-11-24T08:23:56.0823735Z * Server certificate: +2025-11-24T08:23:56.0824200Z * subject: CN=releases.nixos.org +2025-11-24T08:23:56.0824660Z * start date: Nov 14 02:53:58 2025 GMT +2025-11-24T08:23:56.0825153Z * expire date: Feb 12 02:53:57 2026 GMT +2025-11-24T08:23:56.0825776Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" +2025-11-24T08:23:56.0826399Z * issuer: C=US; O=Let's Encrypt; CN=R13 +2025-11-24T08:23:56.0826874Z * SSL certificate verify ok. +2025-11-24T08:23:56.0844734Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-11-24T08:23:56.0846076Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-11-24T08:23:56.0846992Z * Certificate level 2: Public key type RSA (4096/152 Bits/secBits), signed using sha256WithRSAEncryption +2025-11-24T08:23:56.0848069Z { [5 bytes data] +2025-11-24T08:23:56.0848586Z * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): +2025-11-24T08:23:56.0849130Z { [201 bytes data] +2025-11-24T08:23:56.0849547Z * using HTTP/2 +2025-11-24T08:23:56.0850116Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.22.1/install +2025-11-24T08:23:56.0850741Z * [HTTP/2] [1] [:method: GET] +2025-11-24T08:23:56.0851184Z * [HTTP/2] [1] [:scheme: https] +2025-11-24T08:23:56.0851654Z * [HTTP/2] [1] [:authority: releases.nixos.org] +2025-11-24T08:23:56.0852172Z * [HTTP/2] [1] [:path: /nix/nix-2.22.1/install] +2025-11-24T08:23:56.0852905Z * [HTTP/2] [1] [user-agent: curl/8.5.0] +2025-11-24T08:23:56.0853448Z * [HTTP/2] [1] [accept: */*] +2025-11-24T08:23:56.0853882Z } [5 bytes data] +2025-11-24T08:23:56.0854296Z > GET /nix/nix-2.22.1/install HTTP/2 +2025-11-24T08:23:56.0854781Z > Host: releases.nixos.org +2025-11-24T08:23:56.0855226Z > User-Agent: curl/8.5.0 +2025-11-24T08:23:56.0855646Z > Accept: */* +2025-11-24T08:23:56.0856045Z > +2025-11-24T08:23:56.0856433Z { [5 bytes data] +2025-11-24T08:23:56.0856833Z < HTTP/2 200 +2025-11-24T08:23:56.0857254Z < last-modified: Fri, 10 May 2024 09:28:12 GMT +2025-11-24T08:23:56.0857772Z < etag: "d07247c3fa419cb02a37dcf14819c05a" +2025-11-24T08:23:56.0858522Z < x-amz-server-side-encryption: AES256 +2025-11-24T08:23:56.0859043Z < content-type: text/plain +2025-11-24T08:23:56.0859474Z < server: AmazonS3 +2025-11-24T08:23:56.0859894Z < via: 1.1 varnish, 1.1 varnish +2025-11-24T08:23:56.0860348Z < access-control-allow-origin: * +2025-11-24T08:23:56.0860812Z < accept-ranges: bytes +2025-11-24T08:23:56.0861232Z < date: Mon, 24 Nov 2025 08:23:56 GMT +2025-11-24T08:23:56.0861689Z < age: 88644 +2025-11-24T08:23:56.0862157Z < x-served-by: cache-dub4340-DUB, cache-chi-kigq8000118-CHI +2025-11-24T08:23:56.0862901Z < x-cache: HIT, HIT +2025-11-24T08:23:56.0863316Z < x-cache-hits: 10, 2 +2025-11-24T08:23:56.0863731Z < content-length: 4052 +2025-11-24T08:23:56.0864133Z < +2025-11-24T08:23:56.0864505Z { [4052 bytes data] +2025-11-24T08:23:56.0864968Z * Connection #0 to host releases.nixos.org left intact +2025-11-24T08:23:56.0929758Z downloading Nix 2.22.1 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.22.1/nix-2.22.1-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.zhh6lroztm'... +2025-11-24T08:23:56.0976715Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-11-24T08:23:56.0977690Z Dload Upload Total Spent Left Speed +2025-11-24T08:23:56.0978304Z +2025-11-24T08:23:56.1486238Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-11-24T08:23:56.2291438Z 20 21.9M 20 4494k 0 0 85.9M 0 --:--:-- --:--:-- --:--:-- 86.0M +2025-11-24T08:23:56.2292310Z 100 21.9M 100 21.9M 0 0 166M 0 --:--:-- --:--:-- --:--:-- 165M +2025-11-24T08:23:57.8070652Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation +2025-11-24T08:23:57.8081213Z Warning: the flag --darwin-use-unencrypted-nix-store-volume +2025-11-24T08:23:57.8082293Z is no longer needed and will be removed in the future. +2025-11-24T08:23:57.8083063Z +2025-11-24T08:23:57.8092352Z Switching to the Multi-user Installer +2025-11-24T08:23:57.8198582Z Welcome to the Multi-User Nix Installation +2025-11-24T08:23:57.8207944Z  +2025-11-24T08:23:57.8208669Z This installation tool will set up your computer with the Nix package +2025-11-24T08:23:57.8209731Z manager. This will happen in a few stages: +2025-11-24T08:23:57.8210267Z +2025-11-24T08:23:57.8210749Z 1. Make sure your computer doesn't already have Nix. If it does, I +2025-11-24T08:23:57.8211849Z will show you instructions on how to clean up your old install. +2025-11-24T08:23:57.8212401Z +2025-11-24T08:23:57.8212911Z 2. Show you what I am going to install and where. Then I will ask +2025-11-24T08:23:57.8213501Z if you are ready to continue. +2025-11-24T08:23:57.8213772Z +2025-11-24T08:23:57.8214555Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) +2025-11-24T08:23:57.8215255Z that the Nix daemon uses to run builds. To create system users +2025-11-24T08:23:57.8215868Z in a different range, exit and run this tool again with +2025-11-24T08:23:57.8216430Z NIX_FIRST_BUILD_UID set. +2025-11-24T08:23:57.8216682Z +2025-11-24T08:23:57.8216940Z 4. Perform the basic installation of the Nix files daemon. +2025-11-24T08:23:57.8217304Z +2025-11-24T08:23:57.8217594Z 5. Configure your shell to import special Nix Profile files, so you +2025-11-24T08:23:57.8218150Z can use Nix. +2025-11-24T08:23:57.8218369Z +2025-11-24T08:23:57.8218550Z 6. Start the Nix daemon. +2025-11-24T08:23:57.8218785Z +2025-11-24T08:23:57.8219288Z Would you like to see a more detailed list of what I will do? +2025-11-24T08:23:57.8219912Z No TTY, assuming you would say yes :) +2025-11-24T08:23:57.8220854Z +2025-11-24T08:23:57.8221152Z I will: +2025-11-24T08:23:57.8221497Z +2025-11-24T08:23:57.8221915Z - make sure your computer doesn't already have Nix files +2025-11-24T08:23:57.8223124Z (if it does, I will tell you how to clean them up.) +2025-11-24T08:23:57.8224137Z - create local users (see the list above for the users I'll make) +2025-11-24T08:23:57.8225098Z - create a local group (nixbld) +2025-11-24T08:23:57.8225857Z - install Nix in to /nix +2025-11-24T08:23:57.8226430Z - create a configuration file in /etc/nix +2025-11-24T08:23:57.8227062Z - set up the "default profile" by creating some Nix-related files in +2025-11-24T08:23:57.8227634Z /root +2025-11-24T08:23:57.8241940Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix +2025-11-24T08:23:57.8242913Z - update /etc/bash.bashrc to include some Nix configuration +2025-11-24T08:23:57.8254100Z - load and start a service (at /etc/systemd/system/nix-daemon.service +2025-11-24T08:23:57.8254870Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon +2025-11-24T08:23:57.8255484Z +2025-11-24T08:23:57.8256537Z Ready to continue? +2025-11-24T08:23:57.8257454Z No TTY, assuming you would say yes :) +2025-11-24T08:23:57.8286857Z +2025-11-24T08:23:57.8287677Z ---- let's talk about sudo ----------------------------------------------------- +2025-11-24T08:23:57.8298529Z This script is going to call sudo a lot. Normally, it would show you +2025-11-24T08:23:57.8300010Z exactly what commands it is running and why. However, the script is +2025-11-24T08:23:57.8301039Z run in a headless fashion, like this: +2025-11-24T08:23:57.8301537Z +2025-11-24T08:23:57.8301927Z $ curl -L https://nixos.org/nix/install | sh +2025-11-24T08:23:57.8302472Z +2025-11-24T08:23:57.8303114Z or maybe in a CI pipeline. Because of that, I'm going to skip the +2025-11-24T08:23:57.8304103Z verbose output in the interest of brevity. +2025-11-24T08:23:57.8304632Z +2025-11-24T08:23:57.8304936Z If you would like to +2025-11-24T08:23:57.8305631Z see the output, try like this: +2025-11-24T08:23:57.8306070Z +2025-11-24T08:23:57.8306487Z $ curl -L -o install-nix https://nixos.org/nix/install +2025-11-24T08:23:57.8307395Z $ sh ./install-nix +2025-11-24T08:23:57.8307848Z +2025-11-24T08:23:57.8307876Z +2025-11-24T08:23:57.8308438Z ~~> Checking for artifacts of previous installs +2025-11-24T08:23:57.8313812Z Before I try to install, I'll check for signs Nix already is or has +2025-11-24T08:23:57.8314472Z been installed on this system. +2025-11-24T08:23:57.8348473Z +2025-11-24T08:23:57.8349591Z ---- Nix config report --------------------------------------------------------- +2025-11-24T08:23:57.8350924Z  Temp Dir: /tmp/tmp.Iy8Dqx8k0A +2025-11-24T08:23:57.8351664Z  Nix Root: /nix +2025-11-24T08:23:57.8352473Z  Build Users: 8 +2025-11-24T08:23:57.8353463Z  Build Group ID: 30000 +2025-11-24T08:23:57.8354271Z Build Group Name: nixbld +2025-11-24T08:23:57.8354727Z +2025-11-24T08:23:57.8355086Z build users: +2025-11-24T08:23:57.8355801Z  Username: UID +2025-11-24T08:23:57.8717416Z  nixbld1: 30001 +2025-11-24T08:23:57.8726524Z  nixbld2: 30002 +2025-11-24T08:23:57.8736568Z  nixbld3: 30003 +2025-11-24T08:23:57.8746537Z  nixbld4: 30004 +2025-11-24T08:23:57.8756542Z  nixbld5: 30005 +2025-11-24T08:23:57.8766676Z  nixbld6: 30006 +2025-11-24T08:23:57.8776703Z  nixbld7: 30007 +2025-11-24T08:23:57.8786604Z  nixbld8: 30008 +2025-11-24T08:23:57.8787080Z +2025-11-24T08:23:57.8787492Z Ready to continue? +2025-11-24T08:23:57.8788341Z No TTY, assuming you would say yes :) +2025-11-24T08:23:57.8788831Z +2025-11-24T08:23:57.8789243Z ~~> Setting up the build group nixbld +2025-11-24T08:23:57.9092591Z  Created: Yes +2025-11-24T08:23:57.9120129Z +2025-11-24T08:23:57.9120711Z ~~> Setting up the build user nixbld1 +2025-11-24T08:23:57.9271607Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 +2025-11-24T08:23:57.9376898Z  Created: Yes +2025-11-24T08:23:57.9384215Z  Hidden: Yes +2025-11-24T08:23:57.9408088Z  Home Directory: /var/empty +2025-11-24T08:23:57.9428971Z  Note: Nix build user 1 +2025-11-24T08:23:57.9447870Z  Logins Disabled: Yes +2025-11-24T08:23:57.9477773Z  Member of nixbld: Yes +2025-11-24T08:23:57.9496989Z  PrimaryGroupID: 30000 +2025-11-24T08:23:57.9507986Z +2025-11-24T08:23:57.9508580Z ~~> Setting up the build user nixbld2 +2025-11-24T08:23:57.9651389Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 +2025-11-24T08:23:57.9757181Z  Created: Yes +2025-11-24T08:23:57.9762398Z  Hidden: Yes +2025-11-24T08:23:57.9785211Z  Home Directory: /var/empty +2025-11-24T08:23:57.9805844Z  Note: Nix build user 2 +2025-11-24T08:23:57.9824480Z  Logins Disabled: Yes +2025-11-24T08:23:57.9845684Z  Member of nixbld: Yes +2025-11-24T08:23:57.9864458Z  PrimaryGroupID: 30000 +2025-11-24T08:23:57.9876201Z +2025-11-24T08:23:57.9876678Z ~~> Setting up the build user nixbld3 +2025-11-24T08:23:58.0015295Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 +2025-11-24T08:23:58.0116298Z  Created: Yes +2025-11-24T08:23:58.0121755Z  Hidden: Yes +2025-11-24T08:23:58.0142257Z  Home Directory: /var/empty +2025-11-24T08:23:58.0163510Z  Note: Nix build user 3 +2025-11-24T08:23:58.0182867Z  Logins Disabled: Yes +2025-11-24T08:23:58.0203105Z  Member of nixbld: Yes +2025-11-24T08:23:58.0221957Z  PrimaryGroupID: 30000 +2025-11-24T08:23:58.0235989Z +2025-11-24T08:23:58.0236592Z ~~> Setting up the build user nixbld4 +2025-11-24T08:23:58.0375106Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 +2025-11-24T08:23:58.0483968Z  Created: Yes +2025-11-24T08:23:58.0489386Z  Hidden: Yes +2025-11-24T08:23:58.0510919Z  Home Directory: /var/empty +2025-11-24T08:23:58.0532284Z  Note: Nix build user 4 +2025-11-24T08:23:58.0551184Z  Logins Disabled: Yes +2025-11-24T08:23:58.0571985Z  Member of nixbld: Yes +2025-11-24T08:23:58.0592076Z  PrimaryGroupID: 30000 +2025-11-24T08:23:58.0603226Z +2025-11-24T08:23:58.0603971Z ~~> Setting up the build user nixbld5 +2025-11-24T08:23:58.0750735Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 +2025-11-24T08:23:58.0856053Z  Created: Yes +2025-11-24T08:23:58.0861508Z  Hidden: Yes +2025-11-24T08:23:58.0882864Z  Home Directory: /var/empty +2025-11-24T08:23:58.0903838Z  Note: Nix build user 5 +2025-11-24T08:23:58.0923188Z  Logins Disabled: Yes +2025-11-24T08:23:58.0943508Z  Member of nixbld: Yes +2025-11-24T08:23:58.0961544Z  PrimaryGroupID: 30000 +2025-11-24T08:23:58.0973276Z +2025-11-24T08:23:58.0974232Z ~~> Setting up the build user nixbld6 +2025-11-24T08:23:58.1111394Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 +2025-11-24T08:23:58.1219561Z  Created: Yes +2025-11-24T08:23:58.1224964Z  Hidden: Yes +2025-11-24T08:23:58.1245762Z  Home Directory: /var/empty +2025-11-24T08:23:58.1266994Z  Note: Nix build user 6 +2025-11-24T08:23:58.1286008Z  Logins Disabled: Yes +2025-11-24T08:23:58.1306561Z  Member of nixbld: Yes +2025-11-24T08:23:58.1325246Z  PrimaryGroupID: 30000 +2025-11-24T08:23:58.1336322Z +2025-11-24T08:23:58.1337081Z ~~> Setting up the build user nixbld7 +2025-11-24T08:23:58.1479869Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 +2025-11-24T08:23:58.1578169Z  Created: Yes +2025-11-24T08:23:58.1583585Z  Hidden: Yes +2025-11-24T08:23:58.1605726Z  Home Directory: /var/empty +2025-11-24T08:23:58.1626682Z  Note: Nix build user 7 +2025-11-24T08:23:58.1645983Z  Logins Disabled: Yes +2025-11-24T08:23:58.1669465Z  Member of nixbld: Yes +2025-11-24T08:23:58.1692473Z  PrimaryGroupID: 30000 +2025-11-24T08:23:58.1709372Z +2025-11-24T08:23:58.1710074Z ~~> Setting up the build user nixbld8 +2025-11-24T08:23:58.1852298Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 +2025-11-24T08:23:58.1953192Z  Created: Yes +2025-11-24T08:23:58.1958649Z  Hidden: Yes +2025-11-24T08:23:58.1979550Z  Home Directory: /var/empty +2025-11-24T08:23:58.2000556Z  Note: Nix build user 8 +2025-11-24T08:23:58.2033352Z  Logins Disabled: Yes +2025-11-24T08:23:58.2048664Z  Member of nixbld: Yes +2025-11-24T08:23:58.2067384Z  PrimaryGroupID: 30000 +2025-11-24T08:23:58.2067878Z +2025-11-24T08:23:58.2068311Z ~~> Setting up the basic directory structure +2025-11-24T08:23:58.2455690Z install: creating directory '/nix' +2025-11-24T08:23:58.2456549Z install: creating directory '/nix/var' +2025-11-24T08:23:58.2457099Z install: creating directory '/nix/var/log' +2025-11-24T08:23:58.2457673Z install: creating directory '/nix/var/log/nix' +2025-11-24T08:23:58.2458498Z install: creating directory '/nix/var/log/nix/drvs' +2025-11-24T08:23:58.2459568Z install: creating directory '/nix/var/nix' +2025-11-24T08:23:58.2460108Z install: creating directory '/nix/var/nix/db' +2025-11-24T08:23:58.2460662Z install: creating directory '/nix/var/nix/gcroots' +2025-11-24T08:23:58.2461234Z install: creating directory '/nix/var/nix/profiles' +2025-11-24T08:23:58.2461805Z install: creating directory '/nix/var/nix/temproots' +2025-11-24T08:23:58.2462340Z install: creating directory '/nix/var/nix/userpool' +2025-11-24T08:23:58.2463229Z install: creating directory '/nix/var/nix/daemon-socket' +2025-11-24T08:23:58.2463855Z install: creating directory '/nix/var/nix/gcroots/per-user' +2025-11-24T08:23:58.2464493Z install: creating directory '/nix/var/nix/profiles/per-user' +2025-11-24T08:23:58.2542820Z install: creating directory '/nix/store' +2025-11-24T08:23:58.2622429Z install: creating directory '/etc/nix' +2025-11-24T08:23:58.2632427Z +2025-11-24T08:23:58.2633305Z ~~> Installing Nix +2025-11-24T08:23:58.4655366Z  Alright! We have our first nix at /nix/store/6sfq258683sg0idsm9c5877pfm3q4y27-nix-2.22.1 +2025-11-24T08:23:58.5106097Z Just finished getting the nix database ready. +2025-11-24T08:23:58.5108704Z +2025-11-24T08:23:58.5110333Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc +2025-11-24T08:23:58.5273712Z  +2025-11-24T08:23:58.5274160Z # Nix +2025-11-24T08:23:58.5274988Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-11-24T08:23:58.5276207Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-11-24T08:23:58.5277163Z fi +2025-11-24T08:23:58.5277792Z # End Nix +2025-11-24T08:23:58.5278146Z +2025-11-24T08:23:58.5453911Z +2025-11-24T08:23:58.5454665Z # Nix +2025-11-24T08:23:58.5455670Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-11-24T08:23:58.5456872Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-11-24T08:23:58.5457790Z fi +2025-11-24T08:23:58.5458438Z # End Nix +2025-11-24T08:23:58.5458773Z +2025-11-24T08:23:58.5626147Z +2025-11-24T08:23:58.5626646Z # Nix +2025-11-24T08:23:58.5627481Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-11-24T08:23:58.5628692Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-11-24T08:23:58.5629653Z fi +2025-11-24T08:23:58.5630278Z # End Nix +2025-11-24T08:23:58.5630630Z +2025-11-24T08:23:58.5817146Z +2025-11-24T08:23:58.5817637Z # Nix +2025-11-24T08:23:58.5818394Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-11-24T08:23:58.5819628Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-11-24T08:23:58.5820588Z fi +2025-11-24T08:23:58.5821233Z # End Nix +2025-11-24T08:23:58.5821616Z +2025-11-24T08:23:58.5845026Z +2025-11-24T08:23:58.5846534Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish +2025-11-24T08:23:58.5932178Z  +2025-11-24T08:23:58.5933053Z ~~> Setting up the default profile +2025-11-24T08:23:58.6238490Z installing 'nix-2.22.1' +2025-11-24T08:23:58.6375887Z building '/nix/store/x8hfibkpb6as4rji91ln5xp5lnj02gn8-user-environment.drv'... +2025-11-24T08:23:58.6799671Z installing 'nss-cacert-3.95' +2025-11-24T08:23:58.6930822Z building '/nix/store/587h5kr3yj9bbsmjfqhagc94pp9kj2b7-user-environment.drv'... +2025-11-24T08:23:58.7148826Z  +2025-11-24T08:23:58.7149493Z ~~> Setting up the nix-daemon systemd service +2025-11-24T08:23:58.7436278Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. +2025-11-24T08:23:59.0236822Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-11-24T08:23:59.0239285Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-11-24T08:23:59.5979928Z Alright! We're done! +2025-11-24T08:23:59.6004238Z Try it! Open a new terminal, and type: +2025-11-24T08:23:59.6004837Z +2025-11-24T08:23:59.6005226Z $ nix-shell -p nix-info --run "nix-info -m" +2025-11-24T08:23:59.6025183Z +2025-11-24T08:23:59.6025739Z Thank you for using this installer. If you have any feedback or need +2025-11-24T08:23:59.6027228Z help, don't hesitate: +2025-11-24T08:23:59.6027505Z +2025-11-24T08:23:59.6027709Z You can open an issue at +2025-11-24T08:23:59.6028348Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md +2025-11-24T08:23:59.6028868Z +2025-11-24T08:23:59.6029255Z Or get in touch with the community: https://nixos.org/community +2025-11-24T08:23:59.6030279Z +2025-11-24T08:23:59.6032298Z ---- Reminders ----------------------------------------------------------------- +2025-11-24T08:23:59.6033541Z [ 1 ] +2025-11-24T08:23:59.6034308Z Nix won't work in active shell sessions until you restart them. +2025-11-24T08:23:59.6034896Z +2025-11-24T08:23:59.6757520Z ##[endgroup] +2025-11-24T08:23:59.6874790Z ##[group]Run cachix/cachix-action@v15 +2025-11-24T08:23:59.6875319Z with: +2025-11-24T08:23:59.6875721Z name: wire-server +2025-11-24T08:23:59.6876514Z signingKey: *** +2025-11-24T08:23:59.6876928Z skipPush: false +2025-11-24T08:23:59.6877343Z skipAddingSubstituter: false +2025-11-24T08:23:59.6877780Z useDaemon: true +2025-11-24T08:23:59.6878170Z env: +2025-11-24T08:23:59.6878562Z TMPDIR: /home/runner/work/_temp +2025-11-24T08:23:59.6879005Z ##[endgroup] +2025-11-24T08:23:59.7345374Z ##[group]Cachix: installing +2025-11-24T08:23:59.7389731Z [command]/usr/bin/bash -c nix-env --quiet -j8 -iA cachix -f https://cachix.org/api/v1/install +2025-11-24T08:24:01.9733282Z ##[endgroup] +2025-11-24T08:24:01.9734436Z ##[group]Cachix: checking version +2025-11-24T08:24:01.9741497Z [command]/home/runner/.nix-profile/bin/cachix --version +2025-11-24T08:24:02.0181290Z cachix 1.9.1 +2025-11-24T08:24:02.0229034Z ##[endgroup] +2025-11-24T08:24:02.0231839Z ##[group]Cachix: using cache wire-server +2025-11-24T08:24:02.0234148Z [command]/home/runner/.nix-profile/bin/cachix use wire-server +2025-11-24T08:24:02.2226224Z No config at /home/runner/.config/nix/nix.conf: +2025-11-24T08:24:02.2226857Z +2025-11-24T08:24:02.2227464Z /home/runner/.config/nix/nix.conf: openFile: does not exist (No such file or directory) +2025-11-24T08:24:02.2228226Z +2025-11-24T08:24:02.2229420Z Configured https://wire-server.cachix.org binary cache in /home/runner/.config/nix/nix.conf +2025-11-24T08:24:02.2330592Z ##[endgroup] +2025-11-24T08:24:02.2872293Z ##[group]Run nix-env -f default.nix -iA env +2025-11-24T08:24:02.2873996Z nix-env -f default.nix -iA env +2025-11-24T08:24:02.2923774Z shell: /usr/bin/bash -e {0} +2025-11-24T08:24:02.2924494Z env: +2025-11-24T08:24:02.2925170Z TMPDIR: /home/runner/work/_temp +2025-11-24T08:24:02.2926927Z CACHIX_SIGNING_KEY: *** +2025-11-24T08:24:02.2928233Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf +2025-11-24T08:24:02.2929746Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ +2025-11-24T08:24:02.2930688Z ##[endgroup] +2025-11-24T08:24:22.7655322Z installing 'wire-server-deploy' +2025-11-24T08:24:48.9979089Z these 612 paths will be fetched (747.43 MiB download, 3966.35 MiB unpacked): +2025-11-24T08:24:48.9980328Z /nix/store/ipwigvayp8b69rq24zkb4wfhix4a16zr-SDL-1.2.15 +2025-11-24T08:24:48.9981206Z /nix/store/rbr2xn0qjw8xl7vgmwssy3y2xsn250c9-SDL2-2.30.2 +2025-11-24T08:24:48.9982396Z /nix/store/3cbspxvq1fbgfp0wd9zvjbv14fn9aafm-aalib-1.4rc5 +2025-11-24T08:24:48.9983705Z /nix/store/mmy4fc1arb2ig642chgprgms27vk9hgn-acl-2.3.1 +2025-11-24T08:24:48.9984786Z /nix/store/80kzdbnl1bmnd8r8hphh1xzmgsvyyf6w-acl-2.3.2 +2025-11-24T08:24:48.9985846Z /nix/store/9r2if8vhzvzqlx6n5knx2ckjfcjpd3yr-alsa-lib-1.2.11 +2025-11-24T08:24:48.9987102Z /nix/store/iqga1xby2s1l6lx9riqicsqa2f88hnrj-alsa-topology-conf-1.2.5.1 +2025-11-24T08:24:48.9988169Z /nix/store/mlkzgivx42k092w0icqj2jdlldyni1vk-alsa-ucm-conf-1.2.11 +2025-11-24T08:24:48.9989877Z /nix/store/x73z9aq2iqzhwcvlxvs3y8mxqdkj93rx-apache-httpd-2.4.62 +2025-11-24T08:24:48.9991118Z /nix/store/irlvq4wkmbm2x94j843qg5qjbx8k9sm0-apache-httpd-2.4.62-man +2025-11-24T08:24:48.9992248Z /nix/store/ffimzi11j2zzj4d9s2h9cdy76nh754j6-apr-1.7.5 +2025-11-24T08:24:48.9993509Z /nix/store/qgy3d8m6d6sz3anf1bvp80kbjaima2g5-apr-util-1.6.3 +2025-11-24T08:24:48.9994569Z /nix/store/f8nqqxv0nzvwfwxyirf2k5y96y0g64zs-aptly-1.5.0 +2025-11-24T08:24:48.9995660Z /nix/store/am54j7wy47l77ssr2q84sr9xzmfi9n5l-at-spi2-core-2.52.0 +2025-11-24T08:24:48.9996693Z /nix/store/vbb1l2krfp75m5w3y2h52l0pbq6fydz8-attr-2.5.1 +2025-11-24T08:24:48.9997690Z /nix/store/s894wa8wzbf841myjr7dm4m85177f8rl-attr-2.5.2 +2025-11-24T08:24:48.9998746Z /nix/store/v5hzzgpnjwyaflp8cha905zs9pq1lx9b-audiofile-0.3.6 +2025-11-24T08:24:48.9999815Z /nix/store/a8vav5wzx1fd1zizxxr0vn4knhm8gmhr-audit-3.1.2 +2025-11-24T08:24:49.0000925Z /nix/store/26s529dd6j0dsl4z360zl5czr7kkf2s6-avahi-0.8 +2025-11-24T08:24:49.0002018Z /nix/store/9szvf186kqykdvy20h10958zk2rzngiy-aws-c-auth-0.7.18 +2025-11-24T08:24:49.0003350Z /nix/store/jk9x1h83240a9jdphqlyg6hvs07f43h9-aws-c-cal-0.6.12 +2025-11-24T08:24:49.0004549Z /nix/store/xjrmsmrg0i7bqkv3rwxrw7m7mhgy5c0b-aws-c-common-0.9.17 +2025-11-24T08:24:49.0005855Z /nix/store/yhkrb1hfbncqyrzras9jgdlp14c89jwp-aws-c-compression-0.2.18 +2025-11-24T08:24:49.0007618Z /nix/store/2r02maby1pwc1p04gjvpv2z0v488iksl-aws-c-event-stream-0.4.2 +2025-11-24T08:24:49.0008873Z /nix/store/rsgrkw4w2r9fbfc0f8xfgw6pvmff8apd-aws-c-http-0.8.1 +2025-11-24T08:24:49.0010063Z /nix/store/jgxc4mj836sfxzbyrk3p38ml162kr1gq-aws-c-io-0.14.7 +2025-11-24T08:24:49.0011614Z /nix/store/c5qjis3cm0qsp5vcji0b2m1sfx5r5dsc-aws-c-mqtt-0.10.4 +2025-11-24T08:24:49.0012947Z /nix/store/4xgqbqyg263kkf69mm2h792v9ahlsvj0-aws-c-s3-0.5.7 +2025-11-24T08:24:49.0014086Z /nix/store/3bkv1455nixz55fzjpmz2zs0mdwsb3q5-aws-c-sdkutils-0.1.16 +2025-11-24T08:24:49.0015264Z /nix/store/h0d1vp09i1riahbsjcvdq6fxh5f231a3-aws-checksums-0.1.18 +2025-11-24T08:24:49.0016479Z /nix/store/yvxndkfdzpv3y7bq6ndxny0yhqnvs2h7-aws-crt-cpp-0.26.8 +2025-11-24T08:24:49.0017268Z /nix/store/9vr5awg1y41akmi295cbf025b8m1k054-aws-sdk-cpp-1.11.318 +2025-11-24T08:24:49.0018321Z /nix/store/lamn5scbjgwq2n9qg1ai2kvyjvw6kjd2-awscli2-2.15.43 +2025-11-24T08:24:49.0019361Z /nix/store/q1c2flcykgr4wwg5a6h450hxbk4ch589-bash-5.2-p15 +2025-11-24T08:24:49.0020250Z /nix/store/1jzhbwq5rjjaqa75z88ws2b424vh7m53-bash-5.2p32 +2025-11-24T08:24:49.0021896Z /nix/store/hix5711xrj6fwg23qs03w8w7zy29whfw-bash-interactive-5.2p32 +2025-11-24T08:24:49.0043121Z /nix/store/bh5ifiy3iwvfqfxw5gf14y1235cp7d97-bcg729-1.1.1 +2025-11-24T08:24:49.0044220Z /nix/store/dyr7xzspc0z1ark0lc5ncxk676iqna42-blas-3 +2025-11-24T08:24:49.0045176Z /nix/store/3yv2aq8wkgal8m9m2ibnngkzdvsav0x7-blas-3-dev +2025-11-24T08:24:49.0046158Z /nix/store/79pgx9z1bylfrilpbrmscn7gafydnfv5-bluez-5.75 +2025-11-24T08:24:49.0047182Z /nix/store/ww46hbf56wlmcg5kbgk8bz9jsbxx88hy-boehm-gc-8.2.6 +2025-11-24T08:24:49.0048248Z /nix/store/nmkjwwbqbsa4nx3ljjxrp746kp53by51-brotli-1.1.0-lib +2025-11-24T08:24:49.0049566Z /nix/store/x11lxi08rrif8arf4j88hlcfivvag558-busybox-static-x86_64-unknown-linux-musl-1.36.1 +2025-11-24T08:24:49.0050849Z /nix/store/0s4k9fh17m2sx8ifj9xdflnjfgxrvbgp-bzip2-1.0.8 +2025-11-24T08:24:49.0051960Z /nix/store/155qsyx1mv11fsi48nz4dlc0vh1a3drx-bzip2-1.0.8 +2025-11-24T08:24:49.0053307Z /nix/store/8krchn3igfzz62fnirxj47l2hrz11sj9-bzip2-1.0.8-bin +2025-11-24T08:24:49.0054473Z /nix/store/7nyb4srcp8a2sij2dp2ajm8dam2vzl30-c-ares-1.27.0 +2025-11-24T08:24:49.0055628Z /nix/store/vppn7lhz5ljvydmbdppibfjg6xrfh0vx-cairo-1.18.0 +2025-11-24T08:24:49.0056868Z /nix/store/0zyxzx4g9knbqg9rjh4gs3dda57ir3lj-cdparanoia-III-10.2 +2025-11-24T08:24:49.0057968Z /nix/store/03365nil7n0s83mib1a0m04yj1r1s0b8-celt-0.11.3 +2025-11-24T08:24:49.0058757Z /nix/store/9qm1fssgi7s1sw397y4mdf0w2ii33sn0-chromaprint-1.5.1 +2025-11-24T08:24:49.0059869Z /nix/store/ii6k60vb5k7xfasw5zr7ckaym7fdsywd-containerd-1.7.16 +2025-11-24T08:24:49.0060965Z /nix/store/n9gh8gxx5xx51ihgll2l20ar9b2vmgzy-coreutils-9.5 +2025-11-24T08:24:49.0062457Z /nix/store/950jxlcd0zi3p0sjifs3v8i8y0nin140-cracklib-2.9.11 +2025-11-24T08:24:49.0063756Z /nix/store/pxl1pq9wl45cwp3q787gq62rz9gl1g35-create-build-entry +2025-11-24T08:24:49.0064930Z /nix/store/crk54hd03zf54g50441z386blj47rqbw-create-container-dump +2025-11-24T08:24:49.0066064Z /nix/store/87xgc04881wzdx7wnfn0d05gdx66jw73-cryptsetup-2.7.3 +2025-11-24T08:24:49.0067172Z /nix/store/aykqqwb1xmv2hfmswv7fgmlij28my0q0-cups-2.4.8-lib +2025-11-24T08:24:49.0068240Z /nix/store/fv1plv85qylnw87dlnxaqkgl06drgr1r-curl-8.7.1 +2025-11-24T08:24:49.0069201Z /nix/store/jaapy8mk67cbflvmj7gjpylgahl0pj69-curl-8.7.1-bin +2025-11-24T08:24:49.0070180Z /nix/store/fwnm0vr8bylbgwpmzic6xg07kl4prqzc-curl-8.7.1-man +2025-11-24T08:24:49.0071266Z /nix/store/svf1rly63z1wivpzm7q7d1xkb48pm3l2-cyrus-sasl-2.1.28 +2025-11-24T08:24:49.0072317Z /nix/store/28q4r7zcrl59qaxrbrfl65kx1wgkkay5-dav1d-1.4.1 +2025-11-24T08:24:49.0073572Z /nix/store/2cbbwpr4awcw7h5zys1vdsv5jyaizkbs-db-4.8.30 +2025-11-24T08:24:49.0074585Z /nix/store/0nl55z21knp8fq18zcyfkgra0i2hijyv-db-5.3.28 +2025-11-24T08:24:49.0075582Z /nix/store/i4rg4244x7fqvsbh6qbx848lfrhy3x3c-dbus-1.14.10 +2025-11-24T08:24:49.0076664Z /nix/store/dvrxm99hwicvwf8mg4b0gx6kpd6qxvdk-dbus-1.14.10-dev +2025-11-24T08:24:49.0077753Z /nix/store/c1pvi36v9d02by7s9fcx204qg3ic9xgh-dbus-1.14.10-lib +2025-11-24T08:24:49.0078826Z /nix/store/nb06pbh9j1b44ply234vvkaar1w3gvgi-dconf-0.40.0-lib +2025-11-24T08:24:49.0080000Z /nix/store/1mjlla0fc468wl9cphnn2ivpfx02mr7j-dejavu-fonts-minimal-2.37 +2025-11-24T08:24:49.0081152Z /nix/store/5kac9hw6x00l883wa4371da27na10mdv-directfb-1.7.7 +2025-11-24T08:24:49.0082314Z /nix/store/zr2gp0yli9vjsqfp28526jcajcivq2ag-dns-root-data-2023-11-27 +2025-11-24T08:24:49.0083813Z /nix/store/zcjkcknxsqafyx2y3f5x988pkb0fwclm-double-conversion-3.3.0 +2025-11-24T08:24:49.0084947Z /nix/store/i7190zhkrx6l6iqjqfdcsjblisqi5zn7-duktape-2.7.0 +2025-11-24T08:24:49.0086033Z /nix/store/vanxcdgcyw9racn9dphs67f0qxfb2bkd-editline-1.17.1 +2025-11-24T08:24:49.0087141Z /nix/store/jsizfglsm40vsjc81xnm3wa0rxshpnz0-elfutils-0.191 +2025-11-24T08:24:49.0088183Z /nix/store/b5d4fldmq2rf44ffml37m0zl3fdz2mkg-ell-0.64 +2025-11-24T08:24:49.0089205Z /nix/store/nbbg70f6gihj51p65kv19m0fnq8ik5kh-expat-2.6.4 +2025-11-24T08:24:49.0090314Z /nix/store/lvkrfaynswav193jkqc6vg7c6fijrbi4-expat-2.6.4-dev +2025-11-24T08:24:49.0091424Z /nix/store/zxa67zidllxq02wa2jcpdjs6a24c50gc-faad2-2.11.1 +2025-11-24T08:24:49.0093113Z /nix/store/5jm8r2l3axkpcsygz5hxz0h1jcc3p7c7-fdk-aac-2.0.3 +2025-11-24T08:24:49.0094206Z /nix/store/5fhcjl8ygadpn1vmmcv94y5xdj87ijvg-ffado-2.4.8 +2025-11-24T08:24:49.0095326Z /nix/store/4749l0nkfysbi06gq6arznxy0zb4ymvf-ffmpeg-6.1.2-data +2025-11-24T08:24:49.0096473Z /nix/store/995bvqfapid0yzx0jnqaq8l89pp2hd6w-ffmpeg-6.1.2-lib +2025-11-24T08:24:49.0097724Z /nix/store/lcrda0r4xylppfgmazzln221bxdk652m-ffmpeg-headless-6.1.2-data +2025-11-24T08:24:49.0099052Z /nix/store/aj3rs5lixcbvja00ypfbfy1ynqg3krk5-ffmpeg-headless-6.1.2-lib +2025-11-24T08:24:49.0100349Z /nix/store/pn1sn53pyp2vz9jhy0vb5pfbgk3fw16b-fftw-single-3.3.10 +2025-11-24T08:24:49.0101467Z /nix/store/1b4si7qr8f04lqpy5m7iis3w8jxhc2vq-file-5.45 +2025-11-24T08:24:49.0102453Z /nix/store/qdk6ds72q8xf5fzi16x7736bwz8aydic-findutils-4.9.0 +2025-11-24T08:24:49.0103406Z /nix/store/9z2k8x5ja4jwb0facp7zn0hv59yyhfxp-flac-1.4.3 +2025-11-24T08:24:49.0104285Z /nix/store/4n9b0fwpzs9anb2ga0v7r1dsdix4k0jq-flite-2.2 +2025-11-24T08:24:49.0105290Z /nix/store/xcbcbhk8zimngwiafywap158qjiwv9sk-fluidsynth-2.3.5 +2025-11-24T08:24:49.0105979Z /nix/store/7r4nw8z7wrf07mxk3m71rav47xlmj50m-fontconfig-2.15.0 +2025-11-24T08:24:49.0106665Z /nix/store/jfp0nybgag72xd2y9i0z16m6w8hpj8n8-fontconfig-2.15.0-bin +2025-11-24T08:24:49.0107383Z /nix/store/35kyrfkzrm1am5l91iz0srdp2wh8j1an-fontconfig-2.15.0-lib +2025-11-24T08:24:49.0108066Z /nix/store/zdn6ss261z463m14qyyi9s8775mghx7h-freepats-20060219 +2025-11-24T08:24:49.0108722Z /nix/store/0npkjmcmq2zjmwfr8n9qiphikhi0h27n-freetype-2.13.2 +2025-11-24T08:24:49.0109585Z /nix/store/jalq9yqbfprgkfm64g7hm0qdjf1p0vn9-fribidi-1.0.13 +2025-11-24T08:24:49.0110223Z /nix/store/19ia8qwxsk5hn0jhmpxlggg29jan2kk3-fuse-3.16.2 +2025-11-24T08:24:49.0110892Z /nix/store/4i19nk1w31wr6fnwy2crzvyxdjzsmm25-fuse-overlayfs-1.13 +2025-11-24T08:24:49.0111601Z /nix/store/b2y89hps3wp9kni162477cnwn3v1s0vc-game-music-emu-0.6.3 +2025-11-24T08:24:49.0112264Z /nix/store/jziybc6yn78sf0bbh0kmmx50bxjsnr15-gawk-5.2.2 +2025-11-24T08:24:49.0113129Z /nix/store/pqjdzrpm68zznzbamq3kda12qfn4mmfg-gawk-5.2.2-man +2025-11-24T08:24:49.0113778Z /nix/store/90yn7340r8yab8kxpb0p7y0c9j3snjam-gcc-13.2.0-lib +2025-11-24T08:24:49.0114430Z /nix/store/dd13q38yxm9qppjclsvwn10dscsf0l9w-gcc-13.2.0-libgcc +2025-11-24T08:24:49.0115073Z /nix/store/z7hrcpmiv2kxcmwmsh430w6kikpgfl3l-gd-2.3.3 +2025-11-24T08:24:49.0115679Z /nix/store/y8fzwmygqh9rl5rc8rvcydcskgszldpn-gdbm-1.23 +2025-11-24T08:24:49.0116320Z /nix/store/484qnnssg3n2md24vpxw3qk0dspkppsb-gdk-pixbuf-2.42.12 +2025-11-24T08:24:49.0116995Z /nix/store/bhdbni2bwgiy88iyh07yq2pw9r9x4r4h-generate-gpg1-key +2025-11-24T08:24:49.0117683Z /nix/store/1bzgjxzx4c6ni628qhl9v2lj7b7rx1bw-getent-glibc-2.39-52 +2025-11-24T08:24:49.0118333Z /nix/store/frc6vkc5qggx3hyxd91f9r054z5ridar-getopt-1.1.6 +2025-11-24T08:24:49.0118955Z /nix/store/6ds32jlmhqjvbkp2pd20dz1wi9anszls-gettext-0.21.1 +2025-11-24T08:24:49.0119616Z /nix/store/7w7yin9a870lg40gap1r2qpx0dygwbll-gfortran-13.2.0-lib +2025-11-24T08:24:49.0120317Z /nix/store/shj3d9r31bhxbv0lnv9iwa147ldg86iw-gfortran-13.2.0-libgcc +2025-11-24T08:24:49.0121016Z /nix/store/xzcf7d64zqhpnk9lh3s73804fjvwdijn-giflib-5.2.2 +2025-11-24T08:24:49.0121625Z /nix/store/3c275grvmby79gqgnjych830sld6bziw-glib-2.80.2 +2025-11-24T08:24:49.0122249Z /nix/store/q1zjgn2pwl07vkgxgax0v453y40lxkyg-glib-2.80.2-bin +2025-11-24T08:24:49.0123134Z /nix/store/xq2isr2v4jlwjpmv9z8nd2vsys060kqf-glib-2.80.2-dev +2025-11-24T08:24:49.0123782Z /nix/store/qn3ggz5sf3hkjs2c797xf7nan3amdxmp-glibc-2.38-27 +2025-11-24T08:24:49.0124404Z /nix/store/pf5avvvl4ssd6kylcvg2g23hcjp71h19-glibc-2.39-52 +2025-11-24T08:24:49.0125059Z /nix/store/94gaw2ngsnpf3ybxjsg89lf3hf3d55y2-glibc-2.39-52-bin +2025-11-24T08:24:49.0125713Z /nix/store/jig62nn8174n4dlk05lqwsvs5wd2c64r-glibc-2.39-52-dev +2025-11-24T08:24:49.0126401Z /nix/store/mq2lm1hbxzsdyjk7admb17kzx3zwqcfv-glibc-2.39-52-getent +2025-11-24T08:24:49.0127080Z /nix/store/6cvlfg9drxk3mlr4pmf71zwg1fdpfsr3-glibc-iconv-2.39 +2025-11-24T08:24:49.0127728Z /nix/store/1hqv10fp1iyrjbrc02x2frchj89givpk-glibmm-2.66.7 +2025-11-24T08:24:49.0128492Z /nix/store/rsy0dx70bpz0lbdcdp7b1nzxri272jcv-glu-9.0.3 +2025-11-24T08:24:49.0129142Z /nix/store/0pkjhzncyjkvhq8lwmdkzvl4cs4vh0yb-gmp-with-cxx-6.3.0 +2025-11-24T08:24:49.0129809Z /nix/store/s8q3rch0wd3shdnznz9bcj8mj6pvz1gr-gmp-with-cxx-6.3.0 +2025-11-24T08:24:49.0130496Z /nix/store/mwqnsdm4kcx3b4zk23i8196j1y492kn3-gmp-with-cxx-6.3.0-dev +2025-11-24T08:24:49.0131153Z /nix/store/8nss7h1yk4jihkmr4xj5ihrbdkv4y1wy-gnugrep-3.11 +2025-11-24T08:24:49.0131773Z /nix/store/az1vlcldx7vaqq533a8x31vvqa6dvqgb-gnum4-1.4.19 +2025-11-24T08:24:49.0132405Z /nix/store/vqgpb0anqqfnhb5ww3y8rf1jaxpphqwg-gnumake-4.4.1 +2025-11-24T08:24:49.0133340Z /nix/store/s3ar5dw359pybk1zx4discj2v3yl8j66-gnumake-4.4.1-man +2025-11-24T08:24:49.0133979Z /nix/store/4jy677ypizvv6vnyn3j3nhzp7rg32a75-gnupg-1.4.23 +2025-11-24T08:24:49.0134598Z /nix/store/0filj1ph0ddsc6bnhdhcjrqdvhvjdjiw-gnupg-2.4.5 +2025-11-24T08:24:49.0135210Z /nix/store/vl4mvms46802yzsj59h314wf7l26gilw-gnupg-2.4.5 +2025-11-24T08:24:49.0135854Z /nix/store/64h8qw6865mkmws9jswhg7z5kq6rsrzw-gnupg1compat-2.4.5 +2025-11-24T08:24:49.0136490Z /nix/store/5jnr7m8y3gkd9559mf14sw43fb2s5w0m-gnuplot-6.0.0 +2025-11-24T08:24:49.0137093Z /nix/store/y8br765djcj51ls9lb3kylkrvc2wan3p-gnused-4.9 +2025-11-24T08:24:49.0137697Z /nix/store/llalnjlyrj2zv12q5bjy8cagqv70j73y-gnutar-1.35 +2025-11-24T08:24:49.0138310Z /nix/store/xpidksbd07in3nd4sjx79ybwwy81b338-gnutar-1.35 +2025-11-24T08:24:49.0138924Z /nix/store/hqll9vi4g6krj2yfxc4vqndvsfssas7x-gnutls-3.8.5 +2025-11-24T08:24:49.0139550Z /nix/store/j1vqg67pzqw44qnigcd3ra6kn5fr97cr-gnutls-3.8.5-bin +2025-11-24T08:24:49.0140382Z /nix/store/c3aszilvmbj96ln5a5mbhr80sr86nbvb-gnutls-3.8.5-dev +2025-11-24T08:24:49.0141093Z /nix/store/fhfza8gyfnrqn3q605w5cw327gn0hz5s-gobject-introspection-1.80.1 +2025-11-24T08:24:49.0141789Z /nix/store/0yrrqjkh0qj51wyaghwqzx0gc0l6lf5a-gpgme-1.23.2 +2025-11-24T08:24:49.0142419Z /nix/store/hxw38czbsfvnx1wl8vckv2b6k1rbmcpy-graphene-1.10.8 +2025-11-24T08:24:49.0143347Z /nix/store/9q6wjrav2m5ikwf3yznj96fxmxvdz02v-graphite2-1.3.14 +2025-11-24T08:24:49.0144005Z /nix/store/y21ngpz8djf6429rjml06pwwfibr0d87-graphviz-10.0.1 +2025-11-24T08:24:49.0144631Z /nix/store/0sq3jcykin6q788jgpma14n0sg8bwn7z-groff-1.23.0 +2025-11-24T08:24:49.0145333Z /nix/store/1rr497fk0jmibaj65983i7nipz2knmc8-gsettings-desktop-schemas-46.0 +2025-11-24T08:24:49.0146017Z /nix/store/xn47v1hva7pcfkim3lqly4ya0mkb1k2y-gsm-1.0.22 +2025-11-24T08:24:49.0146633Z /nix/store/66brm5ms6jb8ayp23j39k68kvfdjgbra-gssdp-1.4.1 +2025-11-24T08:24:49.0147270Z /nix/store/warlq6qs5s6q2s6xj7b3dsba70x3aq0c-gst-libav-1.24.10 +2025-11-24T08:24:49.0147989Z /nix/store/96jf0b3vnx0z05a4ny8z0sp1hws6gmcf-gst-plugins-bad-1.24.10 +2025-11-24T08:24:49.0148732Z /nix/store/vjbnls7fds0dn0dpbrql2ll64x1g3lc8-gst-plugins-base-1.24.10 +2025-11-24T08:24:49.0149497Z /nix/store/clx6j1x1dhi3bnj41cbsnggxisaz8sir-gst-plugins-good-1.24.10 +2025-11-24T08:24:49.0150196Z /nix/store/ss1mxd1xaajzkryys2nhjxri7bm4zlf5-gstreamer-1.24.10 +2025-11-24T08:24:49.0150893Z /nix/store/g2ym73n8p60pmz31i2cjzzc2maxsjnr2-gstreamer-vaapi-1.24.10 +2025-11-24T08:24:49.0151572Z /nix/store/hdn2gb5xa3amcpn4g90hscplwbnk56bz-gtk+3-3.24.43 +2025-11-24T08:24:49.0152185Z /nix/store/r467qyv4aamq2hg9xsq72vignslcrm5q-gts-0.7.6 +2025-11-24T08:24:49.0153140Z /nix/store/ymabnglmak4mdqfm7gis35j0glikxh0w-gupnp-1.4.4 +2025-11-24T08:24:49.0153913Z /nix/store/in5f9jxkky4xnhb9nvwxs70x0pdlr7gh-gupnp-igd-1.2.0 +2025-11-24T08:24:49.0154533Z /nix/store/r6apkwli4s0xhzn1bdi9nrkmvqc5arrj-gzip-1.13 +2025-11-24T08:24:49.0155150Z /nix/store/wazdn869j9x8g36w1mvpcpicd7p97lpw-harfbuzz-8.4.0 +2025-11-24T08:24:49.0155775Z /nix/store/mrfhd1z4dq1yn535pnn3j6ih70lbgxv9-helm-3.15.0 +2025-11-24T08:24:49.0156405Z /nix/store/9y4ha6gkpasclbz0ai4nxrxyadm5cm4k-helm-diff-3.9.5 +2025-11-24T08:24:49.0157095Z /nix/store/3nhbs4jxf6qayllzsbygjlsfam0fd5cf-helm-mapkubeapis-0.1.0 +2025-11-24T08:24:49.0157767Z /nix/store/24794mg7xgg2d6lra3ac2asw20vs39sw-helm-plugins +2025-11-24T08:24:49.0158393Z /nix/store/sk8n88qna3hscvlrczdg5cg4l2ychf8z-helm-s3-0.16.0 +2025-11-24T08:24:49.0159237Z /nix/store/c0nwsn94zwz38jmx533k3w5msd9qnwg5-helm-secrets-4.6.0 +2025-11-24T08:24:49.0159891Z /nix/store/44396d1dacgadwysbq3fqf9bd69jc9c8-helmfile-0.162.0 +2025-11-24T08:24:49.0160524Z /nix/store/xq62ams06wq8ix1qb5rd6ygjlwvw0q76-hwdata-0.382 +2025-11-24T08:24:49.0161162Z /nix/store/hwd8j670is918b951h0hwnapfzwr05ny-iana-etc-20240318 +2025-11-24T08:24:49.0161792Z /nix/store/a2qxya11zd3xdn5df34n6axfd6fhgzql-icu4c-73.2 +2025-11-24T08:24:49.0162400Z /nix/store/wlh7hfyvzz29qprxihwshada259awrdb-imath-3.1.11 +2025-11-24T08:24:49.0163268Z /nix/store/7yqrkq8ff0s9xysk3kj2lf76wvyjk2wn-iptables-1.8.10 +2025-11-24T08:24:49.0163915Z /nix/store/zx2wnh4wp39mkc9rx4jlzd3jljnhcwb5-iso-codes-4.16.0 +2025-11-24T08:24:49.0164530Z /nix/store/2b81ihj7pcsr6pkr02vaajprjx9gfpq6-jq-1.7.1 +2025-11-24T08:24:49.0165121Z /nix/store/xylb1pgqnnd2qj9lsy1w2r9p8lmir8qs-jq-1.7.1-bin +2025-11-24T08:24:49.0165734Z /nix/store/p3ks31bnd9fhvh2cp1wmcalm4bs2bkwq-jq-1.7.1-doc +2025-11-24T08:24:49.0166348Z /nix/store/bwxp1bkaa4cgz20mrk1hqm8azvv1skif-jq-1.7.1-lib +2025-11-24T08:24:49.0166957Z /nix/store/xrmh72ajmjxlgnncilm9mg6ww8nsff5m-jq-1.7.1-man +2025-11-24T08:24:49.0167559Z /nix/store/kh4996rfh9sm32l026igm88ipz34ivvb-json-c-0.17 +2025-11-24T08:24:49.0168183Z /nix/store/i7avvg2mbw505cd6jx9k5admny6v9k8d-json-glib-1.8.0 +2025-11-24T08:24:49.0168802Z /nix/store/mgrsh2jnmxwv384q810fkgm2bzp3fwvz-kbd-2.6.4 +2025-11-24T08:24:49.0169435Z /nix/store/afmksdmk6b1zvg6i0arpn3q9xkzsnd9v-kexec-tools-2.0.28 +2025-11-24T08:24:49.0170096Z /nix/store/0b5z0wf3k9y3s3qadnkwsm78avax4jlk-keyutils-1.6.3-lib +2025-11-24T08:24:49.0170851Z /nix/store/w6zi8q7la3f5vpl9gl81b0dvfq4wj8p0-kmod-31 +2025-11-24T08:24:49.0171453Z /nix/store/n9h67rrlpqq6lk7piw059ddxiydlfzbd-kmod-31-lib +2025-11-24T08:24:49.0172106Z /nix/store/g6xy81k0vwflzsjgrdj1ak7mniiq4g56-kubernetes-1.29.10 +2025-11-24T08:24:49.0172943Z /nix/store/9gbl10a8driqq6sbqgwqv3p3sgc4443q-kubernetes-helm-3.15.0 +2025-11-24T08:24:49.0173621Z /nix/store/1yhzp59gq3bfdfys8z2q9wkrc9mqh003-lame-3.100-lib +2025-11-24T08:24:49.0174634Z /nix/store/702y72g4yqmylqs1niks1dzm1vh6vaqh-lcms2-2.16 +2025-11-24T08:24:49.0175632Z /nix/store/dh60g7bp466jd3m1sb0y79mm15rg25gk-ldacBT-2.0.2.3 +2025-11-24T08:24:49.0176484Z /nix/store/rcazl4zhbdvc9w357vlwk95v8gcfjhr2-lerc-4.0.0 +2025-11-24T08:24:49.0177257Z /nix/store/0dna4dy4276xq9bfm6kapg56sb6xnmsp-less-643 +2025-11-24T08:24:49.0177976Z /nix/store/xc9l92rl3ndvhwi8a6yj01icn1d8vfp9-libGL-1.7.0 +2025-11-24T08:24:49.0178792Z /nix/store/qkcd83z90018bfkdimzq0yz00fw14c59-libICE-1.1.1 +2025-11-24T08:24:49.0179636Z /nix/store/fkxpblx53z0gbh5iripmciwwbcavp216-libSM-1.2.4 +2025-11-24T08:24:49.0180305Z /nix/store/5z1p38q7crvid944wrhmiiglvvald0j4-libX11-1.8.9 +2025-11-24T08:24:49.0181150Z /nix/store/vsknwh2l5cxipfpz84gl3bd774k43g17-libXScrnSaver-1.2.4 +2025-11-24T08:24:49.0181970Z /nix/store/hfy39pxmyvs4sjbwqv4si92ixmj2crx5-libXau-1.0.11 +2025-11-24T08:24:49.0182937Z /nix/store/ibc28k85i5va38ilqn44z9y7a174x9xs-libXcomposite-0.4.6 +2025-11-24T08:24:49.0183686Z /nix/store/l6cqv0aflnlvlshkxfchik6gnafqm24g-libXcursor-1.2.2 +2025-11-24T08:24:49.0184366Z /nix/store/wlfigacigim7vsr0j9macqgzga40wi51-libXdamage-1.1.6 +2025-11-24T08:24:49.0185020Z /nix/store/4b5w9n7781c99pwa0qvsg25my65i0zq9-libXdmcp-1.1.5 +2025-11-24T08:24:49.0185647Z /nix/store/298lasn37whh7042pbfz0jxp403pai76-libXext-1.3.6 +2025-11-24T08:24:49.0186289Z /nix/store/j3irb77rvrqsn57y88mjlppwsim5ldx4-libXfixes-6.0.1 +2025-11-24T08:24:49.0186922Z /nix/store/p4brhgwc11hfk13vwad4ix5xr7vkavhx-libXft-2.3.8 +2025-11-24T08:24:49.0187536Z /nix/store/r5j717nmw6yg894a885r3a9wb2kj8sk2-libXi-1.8.1 +2025-11-24T08:24:49.0188170Z /nix/store/d6w4gyllmnp26i2vjydylbz27x5mrbww-libXinerama-1.1.5 +2025-11-24T08:24:49.0188814Z /nix/store/qa0w8kji1jrkw2a8baxnd49dczci9bf8-libXpm-3.5.17 +2025-11-24T08:24:49.0189817Z /nix/store/acw4dh5a3dwbm5w8fdgiq9hxd7sd6a0v-libXrandr-1.5.4 +2025-11-24T08:24:49.0190846Z /nix/store/2ffppfzsjcp1q3bdxn96a2hqdlkijvr8-libXrender-0.9.11 +2025-11-24T08:24:49.0191641Z /nix/store/vl868md5gc199rcrfdc7cl4mi5kb9jq9-libXtst-1.2.4 +2025-11-24T08:24:49.0192994Z /nix/store/s9qgv87lgzw1mgkvn17sj6vcdhvg8ir5-libXv-1.0.12 +2025-11-24T08:24:49.0193794Z /nix/store/jscdp3lvxp32zp5v6isv041zzc763h6k-libXxf86vm-1.1.5 +2025-11-24T08:24:49.0194592Z /nix/store/jxzfajll1sk4pyhpnyfd35y7vh3w8c1g-libao-1.2.2 +2025-11-24T08:24:49.0195372Z /nix/store/bwcshjy7xk875nw3qd0zch639bfc2v3v-libaom-3.9.0 +2025-11-24T08:24:49.0196155Z /nix/store/l0v5pkl7cv999ns3jawq1hx53jj3p1qk-libapparmor-3.1.7 +2025-11-24T08:24:49.0197000Z /nix/store/fbkbkqb1cp46jwgk2lv6g28ik57r764i-libarchive-3.7.7-lib +2025-11-24T08:24:49.0198019Z /nix/store/czcrq1nad23isbaikj0qi6xyxv0b34vw-libargon2-20190702 +2025-11-24T08:24:49.0198854Z /nix/store/xy1iyna81kvjvpv3mhfpqr3vfh4p1kkl-libass-0.17.1 +2025-11-24T08:24:49.0199517Z /nix/store/xc1aw6cjm3hj8qdaj8x9g089lm4abrr9-libassuan-2.5.7 +2025-11-24T08:24:49.0200549Z /nix/store/rsb77bpsahd583rzqwf510d5mzd1sdln-libavc1394-0.5.4 +2025-11-24T08:24:49.0201496Z /nix/store/hw3hwpk0gmcmhajsjsvhxk2vn9h30bq7-libavif-1.0.4 +2025-11-24T08:24:49.0202271Z /nix/store/ywj3g79vpya72rw2xbrg656ir0x25hdi-libb2-0.98.1 +2025-11-24T08:24:49.0203049Z /nix/store/xs3gk42g7dlsndzwgx72c71h76clzfsv-libbpf-1.4.2 +2025-11-24T08:24:49.0203823Z /nix/store/gsi7vwam9z972mxrmrvkw08l864lfwvr-libbs2b-3.1.0 +2025-11-24T08:24:49.0204585Z /nix/store/k8f3hragii2jbkka3d59lamj6apvqrzz-libbsd-0.11.8 +2025-11-24T08:24:49.0205374Z /nix/store/sggw61w356qbggr7p22ndijhkw6nk6nc-libcaca-0.99.beta20 +2025-11-24T08:24:49.0206181Z /nix/store/0y447vkbnzkdm714dnfwmxa37lfxqj81-libcamera-0.2.0 +2025-11-24T08:24:49.0207455Z /nix/store/03b059n120bjy9czjkfhckyy16vxcff4-libcanberra-0.30 +2025-11-24T08:24:49.0208129Z /nix/store/j67whcybdcm598p442ja0x5idiknsvyc-libcap-2.69-lib +2025-11-24T08:24:49.0208770Z /nix/store/49jrxd6mcc6ckwrm5sk35gapva0zw221-libcap-ng-0.8.5 +2025-11-24T08:24:49.0209777Z /nix/store/s3w5cr4c4s6ydfgw17l4wgxs0yr0vxwd-libcbor-0.11.0 +2025-11-24T08:24:49.0210918Z /nix/store/d73x8ky2dlxa6ky50gj5f63gc3dvmhp3-libcerf-2.4 +2025-11-24T08:24:49.0211808Z /nix/store/isvmi5n4y67jikxrbwi9837920swcig6-libconfig-1.7.3 +2025-11-24T08:24:49.0212615Z /nix/store/ggzxnrg5a2zy0bdk9csby7mlbzyk1fc0-libcpuid-0.6.5 +2025-11-24T08:24:49.0213484Z /nix/store/y9qvkwvhaqvk5i4h82smlrlml8mkbk7x-libdaemon-0.14 +2025-11-24T08:24:49.0214279Z /nix/store/2g8q946s9ngv63ssh93i3p4mc0z5q054-libdatrie-2019-12-20-lib +2025-11-24T08:24:49.0215079Z /nix/store/1m2m6q2pjlhmhz4g589rfs91i8gmyrcf-libdc1394-2.2.7 +2025-11-24T08:24:49.0215818Z /nix/store/lhw8k224lnh45564770rira6f2fz7pkg-libde265-1.0.15 +2025-11-24T08:24:49.0216587Z /nix/store/3abb189d4igphsd7dj9iykmvz2wp0lif-libdecor-0.2.2 +2025-11-24T08:24:49.0217338Z /nix/store/dcdhs0cqc45ryd2836yvjv34z6jxfc3l-libdeflate-1.20 +2025-11-24T08:24:49.0217979Z /nix/store/vsfikrk5xcncbg89qx5a2n0jylkzx2cg-libdrm-2.4.120 +2025-11-24T08:24:49.0218610Z /nix/store/4z8r1xfr898z62dw8fz9fj2lzd0iq0wx-libdv-1.0.0 +2025-11-24T08:24:49.0219353Z /nix/store/mldlqbciwfv3ldvvwfyvj55x1fjv9pqh-libdvdcss-1.4.3 +2025-11-24T08:24:49.0220011Z /nix/store/63chsm1g9pbfqp072cc1kv5j4j5pmsna-libdvdnav-6.1.1 +2025-11-24T08:24:49.0220658Z /nix/store/ikpcy0aqjdlgn7j9m4291yy3fzk313vl-libdvdread-6.1.3 +2025-11-24T08:24:49.0221451Z /nix/store/g9h3w8nvry6ciwq6dbfiq4g0y2lmlsdd-libepoxy-1.5.10 +2025-11-24T08:24:49.0222201Z /nix/store/bfi5yfjprczappbx6z7shqsz4mckqr4s-libevdev-1.13.1 +2025-11-24T08:24:49.0223107Z /nix/store/pm7i9hd073plr28fppi417najx3vx2vv-libevent-2.1.12 +2025-11-24T08:24:49.0224254Z /nix/store/gniy4ab9wcijxjpcciddgpzdwq3v3dnb-libffi-3.4.6 +2025-11-24T08:24:49.0225059Z /nix/store/lhzxnmigwry6za5n0jwmzrc6mdmlss92-libffi-3.4.6-dev +2025-11-24T08:24:49.0226047Z /nix/store/71mk6wddlb93pwc36gw6qwssgf1xp0yn-libfido2-1.14.0 +2025-11-24T08:24:49.0226865Z /nix/store/zqy22zkr1a6xb9cf5rm38p26qgicis82-libfreeaptx-0.1.1 +2025-11-24T08:24:49.0227561Z /nix/store/pffh6d501fj27h886lmbj8x3l80y93d3-libgcrypt-1.10.3 +2025-11-24T08:24:49.0228370Z /nix/store/2bs7zc57z3lw3fmmvdbw1q3mchqyv6hr-libgcrypt-1.10.3-dev +2025-11-24T08:24:49.0229186Z /nix/store/6lzcb4zv3lysq4yjhmgi1dkc6fqrgphy-libglvnd-1.7.0 +2025-11-24T08:24:49.0230143Z /nix/store/p3ls8qj9db0zxqyh1yl1xhza2007ydyg-libgpg-error-1.48 +2025-11-24T08:24:49.0231022Z /nix/store/9anvd217j8v5skm2lpbv2wc1r4s422z9-libgpg-error-1.48-dev +2025-11-24T08:24:49.0231830Z /nix/store/pn7vakwcmzq4i7m4yjcjk4z9ylwx1mhr-libgudev-238 +2025-11-24T08:24:49.0232603Z /nix/store/bcy2747bv7g8hc10dx19plabi7gd4wgg-libical-3.0.18 +2025-11-24T08:24:49.0233534Z /nix/store/08n25j4vxyjidjf93fyc15icxwrxm2p8-libidn2-2.3.4 +2025-11-24T08:24:49.0234492Z /nix/store/9jivp79yv91fl1i6ayq2107a78q7k43i-libidn2-2.3.7 +2025-11-24T08:24:49.0235771Z /nix/store/52i0az8insvqdrg8q094xd9d89fx365s-libiec61883-1.2.0 +2025-11-24T08:24:49.0236936Z /nix/store/47jrm08jdl2ipwy2qs6378x4gwdgm5q5-libimagequant-4.3.0 +2025-11-24T08:24:49.0238748Z /nix/store/33l0xjnbva59rpq8v8msj14zws7867kr-libinput-1.25.0 +2025-11-24T08:24:49.0239960Z /nix/store/6k5ldmkp36y02gbk2qm83sfab4mh6mrj-libjack2-1.9.22 +2025-11-24T08:24:49.0240839Z /nix/store/rrw0d53ykhyzwbqayrqzx28hm53krb7i-libjpeg-turbo-3.0.3 +2025-11-24T08:24:49.0241575Z /nix/store/2vv5dpcgl9hzcpzf1syjnrld69kfhkfm-libkrb5-1.21.3 +2025-11-24T08:24:49.0242568Z /nix/store/877i4v0nlmsj8cgdmbqiszymplyvd5qx-libksba-1.6.6 +2025-11-24T08:24:49.0243635Z /nix/store/xbpmy64387amikknbh7dwfarggzqjgif-liblc3-1.1.1 +2025-11-24T08:24:49.0244305Z /nix/store/49lcgk66mgdlgn3vggh9yahqcsjvilcd-libmad-0.15.1b +2025-11-24T08:24:49.0245333Z /nix/store/1kvwypvmzkql34dlmq1fxnf736v67i7s-libmaxminddb-1.9.1 +2025-11-24T08:24:49.0246539Z /nix/store/r97fx69ff4awjpzh1q153mlyc5q58pbz-libmd-1.1.0 +2025-11-24T08:24:49.0248284Z /nix/store/4gzp3wr5mi1k4fvlynci0y7n6qip0kkv-libmicrohttpd-0.9.77 +2025-11-24T08:24:49.0249546Z /nix/store/dx0m5lpqxsfd6f96nwxb6zj08gq36jqg-libmnl-1.0.5 +2025-11-24T08:24:49.0250794Z /nix/store/wfr1j6ap7889zlfqjparrgkndj6dylp9-libmodplug-0.8.9.0 +2025-11-24T08:24:49.0252866Z /nix/store/lfj2avpyaf4f66icz7xnqxakwp0fvphb-libmpg123-1.32.9 +2025-11-24T08:24:49.0254744Z /nix/store/zh2fss3schzb6zxh1912ng9pqwg3g6ls-libmysofa-1.3.2 +2025-11-24T08:24:49.0256129Z /nix/store/w4rnk5xnvg07jlazglxzn2iikdvclj9m-libnetfilter_conntrack-1.0.9 +2025-11-24T08:24:49.0257435Z /nix/store/mwn21av99yxvf4jhs0xf6hq1dfd4fzky-libnfnetlink-1.0.2 +2025-11-24T08:24:49.0258577Z /nix/store/1rg4zjc4zqabzd3wa1l2inzvyj3s441p-libnftnl-1.2.6 +2025-11-24T08:24:49.0259940Z /nix/store/iq8a89wf8y9qbzj6z374b83v6z30kz5a-libnice-0.1.22 +2025-11-24T08:24:49.0261666Z /nix/store/i16ggyd7qbfwx0b9vyfjpay990lcjlc7-libnl-3.8.0 +2025-11-24T08:24:49.0262954Z /nix/store/gw29icd5xx6sj39xad9gg2bxr7r340hw-libogg-1.3.5 +2025-11-24T08:24:49.0264085Z /nix/store/d72g65ck8hym47pk33qj81bigx8aj33b-libopenmpt-0.7.9 +2025-11-24T08:24:49.0265409Z /nix/store/maayqcn0wnchzb5f47k6ykhb2x84bbmy-libopus-1.5.2 +2025-11-24T08:24:49.0266833Z /nix/store/ak0iy34rfd9r0x62gm7144gp15gisbwh-libossp-uuid-1.6.2 +2025-11-24T08:24:49.0268021Z /nix/store/707q2pscclhgmmfr33xhbr0qbw3p2hmg-libpcap-1.10.5 +2025-11-24T08:24:49.0269162Z /nix/store/lh0b381npmiyg4x6b7v3q487pz2nzk0y-libpcap-1.10.5 +2025-11-24T08:24:49.0270364Z /nix/store/10m6hxl5zxb1c3nbdnfgcmsyy49gw2rf-libpciaccess-0.18.1 +2025-11-24T08:24:49.0271580Z /nix/store/xz6qa1y8a7nm544iqkh3nx9pgysnpl0j-libpng-apng-1.6.43 +2025-11-24T08:24:49.0272936Z /nix/store/hka0v51svlrj0p8pfjv4q0jyif6blxiv-libproxy-0.5.6 +2025-11-24T08:24:49.0274534Z /nix/store/apjs9l6fsvv3d6d5dacinrhy8qj57jgx-libpsl-0.21.5 +2025-11-24T08:24:49.0276050Z /nix/store/3xkb74fkjrj00ivfxmzmx41d9ag889bg-libpulseaudio-17.0 +2025-11-24T08:24:49.0303020Z /nix/store/3jp4h3hmz4bqv3rrj439lpkzkmxqxdwi-libpwquality-1.4.5-lib +2025-11-24T08:24:49.0304335Z /nix/store/k2q0sl6rw1gzcipz98jswm6linvnk1k8-libraw1394-2.1.2 +2025-11-24T08:24:49.0305471Z /nix/store/z9s16g5zsywlnlv07gfg9qwkqvisrbk7-librsvg-2.58.1 +2025-11-24T08:24:49.0306629Z /nix/store/j6jdzd249rj80lvwbp22gj3f17mwv1z4-libsamplerate-0.2.2 +2025-11-24T08:24:49.0307839Z /nix/store/7ssrf0drpxh2dkg7y6q4l5fnscr9a7hn-libseccomp-2.5.5-lib +2025-11-24T08:24:49.0309005Z /nix/store/5vgxahzhcvsxvgq6qjw4f09bnc07mq3c-libselinux-3.6 +2025-11-24T08:24:49.0310330Z /nix/store/xd02d5pq9zlqizwjlxjbialw4lhccbjp-libshout-2.4.6 +2025-11-24T08:24:49.0311452Z /nix/store/hb209596gpyy93xias3rd0ig0pvcb9ya-libsigc++-2.12.1 +2025-11-24T08:24:49.0312540Z /nix/store/6wk140rmq7xcwk0qrri7cg2l3wqfnsf6-libsmi-0.5.0 +2025-11-24T08:24:49.0314051Z /nix/store/4d3k6g6sscr3xbpxybgwfrkx880kabas-libsndfile-1.2.2 +2025-11-24T08:24:49.0315236Z /nix/store/302ncx9jpsj9ip869nx98as9drlbjqpn-libsodium-1.0.19 +2025-11-24T08:24:49.0316394Z /nix/store/an0kn9gd4z0k4qr7mi9975fa2mqs9248-libsoup-2.74.3 +2025-11-24T08:24:49.0317535Z /nix/store/vwlfmr1i7idc0s32ay6r00wy4b8a4rx7-libsoup-3.4.4 +2025-11-24T08:24:49.0318689Z /nix/store/8jg3rj9hffzsrfh3kd1jf4syjx6py4sg-libsrtp-2.6.0 +2025-11-24T08:24:49.0319792Z /nix/store/n9a33c5kmnigl0m8dmpzbq0wziy69q69-libssh-0.10.6 +2025-11-24T08:24:49.0320957Z /nix/store/jcv2dm4lis9g72qh580am3sg1x9vl80b-libssh2-1.11.0 +2025-11-24T08:24:49.0322091Z /nix/store/9ll9fqfsdjqwy2ibrnd5sni1mg60lzah-libtasn1-4.19.0 +2025-11-24T08:24:49.0323393Z /nix/store/z04c92z7f7pp1r3g58fg8wcxjf4pak8w-libthai-0.1.29 +2025-11-24T08:24:49.0324511Z /nix/store/r2dsg8cxrn78jq83bdjgn1nihjw1r931-libtheora-1.1.1 +2025-11-24T08:24:49.0325620Z /nix/store/ass5rpw3li6xxyjp0cykfx5l6yjcj400-libtiff-4.6.0 +2025-11-24T08:24:49.0326783Z /nix/store/fv20wfhs3bh97mhrff67lvbdqn8v0k4y-libtool-2.4.7-lib +2025-11-24T08:24:49.0327949Z /nix/store/s2f1sqfsdi4pmh23nfnrh42v17zsvi5y-libunistring-1.1 +2025-11-24T08:24:49.0328891Z /nix/store/zvwpisszhpkkk8spqyya8n3bpm7wj39p-libunistring-1.1 +2025-11-24T08:24:49.0329565Z /nix/store/66aanq01bcmxzb4j9fj5j2slbbpr6n8r-libunwind-1.8.1 +2025-11-24T08:24:49.0330441Z /nix/store/82927nf2zj1h2skjdancji1i2dsnqc1g-libusb-1.0.27 +2025-11-24T08:24:49.0331092Z /nix/store/a4x20x15w3r6iic9pllkzsikdr1ci8zr-libuv-1.48.0 +2025-11-24T08:24:49.0331719Z /nix/store/66xxwyk14nyb0w92kblq2fvlyc80lajg-libva-2.21.0 +2025-11-24T08:24:49.0332615Z /nix/store/w96x630iywdwf7q161aphnli54szspwr-libva-minimal-2.21.0 +2025-11-24T08:24:49.0333546Z /nix/store/n02ac8gfyvcrvfp70x8ycxsk2w6n5avl-libvdpau-1.5 +2025-11-24T08:24:49.0334397Z /nix/store/idk29ffgl1gh0w9mqzflw5ih2qa746cr-libvisual-0.4.1 +2025-11-24T08:24:49.0335418Z /nix/store/3lanyd7681hn1mg7imzzbk9a3vvbd6w5-libvmaf-3.0.0 +2025-11-24T08:24:49.0336074Z /nix/store/k8j5p8d02fx0smh17zzxp87vg5clcn10-libvorbis-1.3.7 +2025-11-24T08:24:49.0337189Z /nix/store/6jlh2g3half9sbvvngr28aa15cajv0zs-libvpx-1.14.1 +2025-11-24T08:24:49.0337882Z /nix/store/25c315nh12y4qsb7ajdmxirrzvixk0sz-libwacom-2.11.0 +2025-11-24T08:24:49.0338508Z /nix/store/mdl97z9dp8dhjdim472qiqqwd94bhp0j-libwebp-1.4.0 +2025-11-24T08:24:49.0339662Z /nix/store/9dkh8lhl686qjdf364myq9haklz3qpzv-libxcb-1.17.0 +2025-11-24T08:24:49.0340347Z /nix/store/bb99dclcsv3r0a8q967bnvga02qicxsf-libxcrypt-4.4.36 +2025-11-24T08:24:49.0341278Z /nix/store/m4r9jmsvgv8k0vsb72vkq91667yjdf9h-libxkbcommon-1.7.0 +2025-11-24T08:24:49.0342013Z /nix/store/lgnp0aj260v73xfnp1cz236cg3lq2lzv-libxml++-3.0.1 +2025-11-24T08:24:49.0343281Z /nix/store/ssy9mnlc9pfkdn6msnirki0yfji4nqjv-libxml2-2.12.9 +2025-11-24T08:24:49.0343944Z /nix/store/fvl7p1xahc21wmzyzri4c515fzgyx516-libxslt-1.1.39 +2025-11-24T08:24:49.0344573Z /nix/store/5pd8825vnd563qbvbv0p5p29hqirvw5c-libyaml-0.2.5 +2025-11-24T08:24:49.0345185Z /nix/store/crl81hy8cnqs4g5gn68s8sjqd1b3r0ps-libyuv-1787 +2025-11-24T08:24:49.0345805Z /nix/store/2433idnxmkvd2xl7qgvn7gxi46jz072j-lilv-0.24.24 +2025-11-24T08:24:49.0346442Z /nix/store/d7vji37yjnbji14m4waa5rn35f10jzya-linux-headers-6.7 +2025-11-24T08:24:49.0347160Z /nix/store/falcaavkhml14j79g95mvqbd2ci4g12j-linux-pam-1.6.1 +2025-11-24T08:24:49.0347856Z /nix/store/l3di8ckamifz9kkv38i3krrr7iyczaab-list-helm-containers +2025-11-24T08:24:49.0348541Z /nix/store/8qjzrbbrgvpprwynj6lbdxznp16figxg-llhttp-9.2.1 +2025-11-24T08:24:49.0349209Z /nix/store/iq8y3vz3qmsa55g4vhhcd4d2zd8p37bf-lowdown-1.1.0-lib +2025-11-24T08:24:49.0349848Z /nix/store/c0jdcx8v5dw4p4bgwg4ql03r41m47jll-lrdf-0.6.1 +2025-11-24T08:24:49.0350577Z /nix/store/iq1sblpaznf0z8g3izg690nc2d5xghnv-lttng-ust-2.13.8 +2025-11-24T08:24:49.0351415Z /nix/store/kxf38s6127l98iwhwcjcclj8yy28k1p5-lua-5.2.4 +2025-11-24T08:24:49.0352208Z /nix/store/w3iakl1f2p0b9rj1kbr7ilh69jhq6jgz-lvm2-2.03.23-lib +2025-11-24T08:24:49.0353514Z /nix/store/38kw4yvj4v2irnwg47f9pkkq50wcldcz-lynx-2.9.0dev.12 +2025-11-24T08:24:49.0354163Z /nix/store/gms3c80sldm4r0pyxj987227y49lx1ks-lz4-1.9.4 +2025-11-24T08:24:49.0354781Z /nix/store/v68clh8wa74xxblx0b748vr50gl7xnzc-mailcap-2.1.53 +2025-11-24T08:24:49.0355907Z /nix/store/jwwrmilpbv6fbpvhf9mhwa79fgwh8l92-mariadb-connector-c-3.3.5 +2025-11-24T08:24:49.0356608Z /nix/store/qhmdwfb0c32rl9pjk7cv94lxc0c7rqgl-md4c-0.5.2-lib +2025-11-24T08:24:49.0357928Z /nix/store/pycn43wvdlpfaxc1lw8n80bxdf7swx2v-minizip-1.3.1 +2025-11-24T08:24:49.0358598Z /nix/store/j6rmgmg38fr1iglrf1qrsvi5sasz1mpr-mirror-apt-jammy +2025-11-24T08:24:49.0359305Z /nix/store/6ya2hs4s51k9sj3islgdnxx0nar66jzx-mjpegtools-2.2.1-lib +2025-11-24T08:24:49.0359982Z /nix/store/2zz1kvy3hx3ly067s9266ijnxnda682w-moreutils-0.69 +2025-11-24T08:24:49.0360618Z /nix/store/6x0n8ksnajz1kf7n6q0farmyrc6af4mz-mpdecimal-4.0.0 +2025-11-24T08:24:49.0361278Z /nix/store/hixcpq22ik94b0wfs0xng4r4q18pi687-mpg123-1.32.9 +2025-11-24T08:24:49.0361903Z /nix/store/31n6bq6cw25zhcv9mavavrvi560qd9gp-mtdev-1.1.7 +2025-11-24T08:24:49.0362524Z /nix/store/90nwq55nj0nr3qgrsrk396ziazzyjh06-ncompress-5.0 +2025-11-24T08:24:49.0363408Z /nix/store/5i51nfixxx3p3gshkfsjj4bzp7wajwxz-ncurses-6.4 +2025-11-24T08:24:49.0364019Z /nix/store/zmi2nlx42h1qrs2v7yn142dq4zjq30im-ncurses-6.4 +2025-11-24T08:24:49.0364631Z /nix/store/21fbki69x6a50az3pzdf99s17y4izzki-neon-0.32.5 +2025-11-24T08:24:49.0365416Z /nix/store/9yir03i6l4c3pv54q86k57p50mc3jnh4-nettle-3.9.1 +2025-11-24T08:24:49.0366060Z /nix/store/16y3mk7wpjxpkqd5nc0jh1k6rxk2pmyc-nettle-3.9.1-dev +2025-11-24T08:24:49.0366734Z /nix/store/j17zmzz6z8fi8rd2yqk36n5jy8whzfhy-nghttp2-1.61.0-lib +2025-11-24T08:24:49.0367383Z /nix/store/kg4y3flpnkcfhxvi9cin6c81xfivcc7g-nghttp3-1.2.0 +2025-11-24T08:24:49.0367999Z /nix/store/6l271354hyg3q634vfwgwrsq6x7r965g-niv-0.2.22-bin +2025-11-24T08:24:49.0368609Z /nix/store/l9xhiy5wqs3cflxsfhxk0isbjv96rhd1-nix-2.18.8 +2025-11-24T08:24:49.0369217Z /nix/store/h2cx0dl7zcq91l31bmbnv1774mwy6v0f-nix-2.18.8-man +2025-11-24T08:24:49.0369874Z /nix/store/fmi1wn75kn5dlay0njwfa965b6lyjgw5-nix-prefetch-docker +2025-11-24T08:24:49.0370520Z /nix/store/hw4kkx5bzx5srw17x9gkyakis1ipqcl7-npth-1.7 +2025-11-24T08:24:49.0371140Z /nix/store/jb2mh4asq1klvf3nzj9blr2q6dyhwkrb-nss-cacert-3.107 +2025-11-24T08:24:49.0371780Z /nix/store/a6prrfmmr6kkbkwk6v3vq4zd96mcc5g4-numactl-2.0.18 +2025-11-24T08:24:49.0372449Z /nix/store/925hihdxx9ybs57cxvh59flm8sxddimh-oniguruma-6.9.9-lib +2025-11-24T08:24:49.0373428Z /nix/store/z6ar801axm9vcxqmkvwfqmg51vwgj7hw-openal-soft-1.23.1 +2025-11-24T08:24:49.0374109Z /nix/store/mdaawsi6fs91dr8dn2ygig1mpsddqrg3-openblas-0.3.27 +2025-11-24T08:24:49.0374792Z /nix/store/nzbzmzr7njbvajwk9xv59iyrg3r7q187-opencore-amr-0.1.6 +2025-11-24T08:24:49.0375454Z /nix/store/28a8mqa7xax040vqk3hzyl174r8z7bpw-openexr-3.2.4 +2025-11-24T08:24:49.0376101Z /nix/store/4lwqz5vrb0dn4r78zr8sd56bnkri0rag-openfec-1.4.2.9 +2025-11-24T08:24:49.0376761Z /nix/store/mfmhl6hdwp77gqkm734zip34pw53gfcm-openh264-2.4.1 +2025-11-24T08:24:49.0377886Z /nix/store/9i494hk4xxsp2adah2yi31537hr8bzdy-openjpeg-2.5.2 +2025-11-24T08:24:49.0378524Z /nix/store/8sx26kvcn36kz7b3bimr9pdq2mc4ag0j-openldap-2.6.9 +2025-11-24T08:24:49.0379744Z /nix/store/p8hw2h465g0byxwpamnk6gv6mp5gnqn2-openssl-3.0.14 +2025-11-24T08:24:49.0380519Z /nix/store/i6phx7d2fzzjrp9cq3y95ysqn85cj1y4-openssl-3.0.14-bin +2025-11-24T08:24:49.0381195Z /nix/store/kbpgc9xng17b038b5avmnp8vdl5azwhx-openssl-3.0.14-man +2025-11-24T08:24:49.0381844Z /nix/store/m3c894cml080iz9bbs18b8ci6b40yk59-opentofu-1.7.1 +2025-11-24T08:24:49.0382474Z /nix/store/wml2l9ga9iphp6v7af300g6s50xn2466-opusfile-0.12 +2025-11-24T08:24:49.0383453Z /nix/store/r6v1j4l34i98fczx1pdjpy5jv67w4bwm-orc-0.4.39 +2025-11-24T08:24:49.0384076Z /nix/store/mk838fcw7xqf597q6milpp400fq2wrb5-p11-kit-0.25.3 +2025-11-24T08:24:49.0384706Z /nix/store/45alyjrs2xflv0fyy08ng2qy62klrash-pango-1.52.2 +2025-11-24T08:24:49.0387152Z /nix/store/jk99vx5dhv57zldl5j0id3n23igbj269-pcre2-10.43 +2025-11-24T08:24:49.0387867Z /nix/store/7iny0ax59ib0pgfgkcph49zxg8zym30w-pcsclite-2.1.0-lib +2025-11-24T08:24:49.0388522Z /nix/store/mdadnfhlp7m6778zhlmpbn9qy37xkrmh-perl-5.38.2 +2025-11-24T08:24:49.0389231Z /nix/store/9nn6ysg3jz7z1blskqysd27ximim8dqc-perl5.38.2-IO-Tty-1.17 +2025-11-24T08:24:49.0390000Z /nix/store/vrpm28prnm6ahcmcl1y333xp40fn6bk6-perl5.38.2-IPC-Run-20231003.0 +2025-11-24T08:24:49.0390784Z /nix/store/sgss28baa4r7kcz5fqvdr2vcdkr0rwq7-perl5.38.2-Time-Duration-1.21 +2025-11-24T08:24:49.0391550Z /nix/store/za4zp2sff6p86j0mmbd874qipbiads43-perl5.38.2-TimeDate-2.33 +2025-11-24T08:24:49.0392442Z /nix/store/3lix6srcn4i99gdxbwmgf4rsxg78i9r9-pipewire-1.0.9 +2025-11-24T08:24:49.0393667Z /nix/store/gv406dcs0265ydgc6nnjzhw8s3yl5bpa-pixman-0.43.4 +2025-11-24T08:24:49.0394355Z /nix/store/qhwavx7kpnazsmfdbbvvafs0vsnkn49p-pkg-config-0.29.2 +2025-11-24T08:24:49.0395644Z /nix/store/dr2969ydf41s2i345dg751cabi9wnksn-pkg-config-wrapper-0.29.2 +2025-11-24T08:24:49.0396374Z /nix/store/6qwg3xkr5b9j5hwjacn69652j769w1y7-popt-1.19 +2025-11-24T08:24:49.0397030Z /nix/store/rsxw8yx21701xp3x6n0yfg517k29s2qf-postgresql-15.10-lib +2025-11-24T08:24:49.0397681Z /nix/store/nl15aj2izjnq21jdn0wr8q5yqdln35xp-profile-env +2025-11-24T08:24:49.0398435Z /nix/store/bmjdb3wc1z2nh78k23p9akgqiabi2way-publicsuffix-list-0-unstable-2024-01-07 +2025-11-24T08:24:49.0399191Z /nix/store/s0p1kr5mvs0j42dq5r08kgqbi0k028f2-python3-3.11.10 +2025-11-24T08:24:49.0399850Z /nix/store/yqjvmy66v82yc5zzp8nkrx6cc470nq5v-python3-3.11.10-env +2025-11-24T08:24:49.0400795Z /nix/store/9yh3jkmkx04rw9j0k6sdnf00n9i67arp-python3.11-aiodns-3.2.0 +2025-11-24T08:24:49.0402983Z /nix/store/7v3brfiljp0cx7yp6s0va8rwi5cn3pvz-python3.11-aiohttp-3.9.5 +2025-11-24T08:24:49.0403742Z /nix/store/jspq5y3k8fbj22h6mngcca8cvihym60w-python3.11-aiosignal-1.3.1 +2025-11-24T08:24:49.0404505Z /nix/store/cjpsg9jpxys91x4plnais8v6sklpqzp9-python3.11-ansible-9.5.1 +2025-11-24T08:24:49.0405271Z /nix/store/7ic5w44dss0x88lx4r4c7k18z064jxc1-python3.11-ansible-core-2.16.5 +2025-11-24T08:24:49.0406064Z /nix/store/1x447rf8y43bs2w9rhad8dw09rj98v6s-python3.11-ansible-pylibssh-1.1.0 +2025-11-24T08:24:49.0408039Z /nix/store/ibjg6c4n6snpj4jcirkxxy8bixphq0pa-python3.11-appdirs-1.4.4 +2025-11-24T08:24:49.0408821Z /nix/store/6m8wv5c2r6hlyg3848nmbkly7zx4bp81-python3.11-async-timeout-4.0.3 +2025-11-24T08:24:49.0409599Z /nix/store/dqy4qig88gc2kx8lj35xx3vhy9imi0v2-python3.11-attrs-23.2.0 +2025-11-24T08:24:49.0411222Z /nix/store/lzw7mb26a78av1mak89kys985h3v033p-python3.11-awscrt-0.20.9 +2025-11-24T08:24:49.0412399Z /nix/store/2lkwl19dmy90zfazaq40khbmh2fdqz75-python3.11-bcdoc-0.16.0 +2025-11-24T08:24:49.0414162Z /nix/store/g4ls15szfimvi8pinpizlp5d2zbd887b-python3.11-bcrypt-4.1.2 +2025-11-24T08:24:49.0416245Z /nix/store/24c8m4saz1k6c6qd428n3wbwmz1q2ipa-python3.11-boto3-1.34.58 +2025-11-24T08:24:49.0417652Z /nix/store/bqh6p3pb0larlzxv4kcak10lrcl0is2g-python3.11-botocore-1.34.87 +2025-11-24T08:24:49.0420065Z /nix/store/k3ifaazz09vbb1kbcxg3p7l71zd3iypr-python3.11-botocore-1.34.87 +2025-11-24T08:24:49.0421732Z /nix/store/jf4p4n3gq44pvaxpfizvaq1nanbs5n96-python3.11-brotli-1.1.0 +2025-11-24T08:24:49.0424588Z /nix/store/n4zlr84jxb49dxkhdr1vvcdq89d88n7d-python3.11-brotlicffi-1.1.0.0 +2025-11-24T08:24:49.0426111Z /nix/store/bcdyrxykwil83yfy12apxwxig1khyky3-python3.11-cerberus-1.3.5 +2025-11-24T08:24:49.0427464Z /nix/store/1nk7nm700qa1c7zmsvs077v6h7d8ssx9-python3.11-certifi-2024.02.02 +2025-11-24T08:24:49.0429888Z /nix/store/74s9dw7ksnmlkwypk69hs01w5j4lc569-python3.11-cffi-1.16.0 +2025-11-24T08:24:49.0431815Z /nix/store/nknn7vcyaf982lv13zi1p15q3x02wm82-python3.11-charset-normalizer-3.3.2 +2025-11-24T08:24:49.0433786Z /nix/store/c9b2c5gakdnqakspr3phy0ld4b9p93z5-python3.11-click-8.1.7 +2025-11-24T08:24:49.0435032Z /nix/store/4vyv8rg50k6sz8hfnj7qj771abcnjkbf-python3.11-colorama-0.4.6 +2025-11-24T08:24:49.0436991Z /nix/store/agc5rqsjl4k52ywmrq39sahyg3gsqx5z-python3.11-configparser-6.0.1 +2025-11-24T08:24:49.0438508Z /nix/store/7kb58pc7vb0svbzqcs72mq4hv1jl0lfg-python3.11-contourpy-1.2.0 +2025-11-24T08:24:49.0440624Z /nix/store/7jnfmks5w5dgz2igpr4cag6p4j46vfyi-python3.11-cryptography-42.0.5 +2025-11-24T08:24:49.0443348Z /nix/store/b4j4n3sk20ra940lw04cr2v9r915q9pi-python3.11-cycler-0.12.1 +2025-11-24T08:24:49.0445262Z /nix/store/wk70gs18myaldgap2vjm0n7p1r3js0dh-python3.11-deepdiff-6.7.1 +2025-11-24T08:24:49.0447361Z /nix/store/wckh5hrr8va8sx714lwjbkg1cg2ijzmi-python3.11-defusedxml-0.7.1 +2025-11-24T08:24:49.0449377Z /nix/store/acrn3dsrwhmjblghgs4dj0pg272vs9mj-python3.11-distro-1.9.0 +2025-11-24T08:24:49.0451212Z /nix/store/j6jn7ba5mkjf5p21zfyj4rc2mxzajd3x-python3.11-docutils-0.21.2 +2025-11-24T08:24:49.0453000Z /nix/store/mgk6k7yaysrqpgm66aljjikdp35wzi2f-python3.11-elementpath-4.4.0 +2025-11-24T08:24:49.0454779Z /nix/store/mn2ccb2xmjbjr94kq6hb5f4nwl94vdvw-python3.11-et-xmlfile-1.1 +2025-11-24T08:24:49.0456063Z /nix/store/5hn9mx5nmhfsglx8x61yn3r0kvxjrqm7-python3.11-fonttools-4.51.0 +2025-11-24T08:24:49.0458115Z /nix/store/3q0jknp16h3jn44751dh19hsvk1igazx-python3.11-frozenlist-1.4.1 +2025-11-24T08:24:49.0459375Z /nix/store/gdd5rv6qvww712khiklk4jibp79ra8wl-python3.11-future-1.0.0 +2025-11-24T08:24:49.0460625Z /nix/store/p6xbq5nvlmgp9w2xwphp7ayf74a5ip5c-python3.11-geoip2-4.8.0 +2025-11-24T08:24:49.0461889Z /nix/store/adhq1qdhlbasy8cbbcg5bd0s9lsrqxnr-python3.11-idna-3.7 +2025-11-24T08:24:49.0463354Z /nix/store/a8mlb0kbbqysshbyxfkqgrkbn2vp049l-python3.11-jinja2-3.1.5 +2025-11-24T08:24:49.0464691Z /nix/store/19132c15q1fma85mmzqly21kmpk1x1ka-python3.11-jmespath-1.0.1 +2025-11-24T08:24:49.0466179Z /nix/store/i5vfc651q58m2ni0v41jfmizb2cf65ps-python3.11-jsonschema-4.21.1 +2025-11-24T08:24:49.0467733Z /nix/store/8ginfdrqzxq2xhv3mcdmp6rj4s7q8qar-python3.11-jsonschema-specifications-2023.12.1 +2025-11-24T08:24:49.0469246Z /nix/store/fnw7g76rmwnicy2a72isa6kmdpmmn1vj-python3.11-junit-xml-1.9 +2025-11-24T08:24:49.0470523Z /nix/store/2jjil1lrarm7sdj53wa8ri7lq2pk09yr-python3.11-jxmlease-1.0.3 +2025-11-24T08:24:49.0471805Z /nix/store/r1w71f7h4qv1kann93nh461mbh8wjfnl-python3.11-kiwisolver-1.4.5 +2025-11-24T08:24:49.0473212Z /nix/store/ldivr42wg9qa3z4jy4xka9ayfxnvgxcn-python3.11-lxml-5.1.0 +2025-11-24T08:24:49.0474907Z /nix/store/d0xn2r1x1904pdvbv1j52g2xi2h2m589-python3.11-markupsafe-2.1.5 +2025-11-24T08:24:49.0476858Z /nix/store/siad80zvk177vzqc8ykzp8xj9cr6j0db-python3.11-matplotlib-3.8.4 +2025-11-24T08:24:49.0478167Z /nix/store/0sp1psidkajzrp2xpci18sfhy3gaclcw-python3.11-maxminddb-2.6.1 +2025-11-24T08:24:49.0479452Z /nix/store/glynd0r4a83bvh4np68bns6pgf6m7238-python3.11-multidict-6.0.5 +2025-11-24T08:24:49.0480735Z /nix/store/qx2czf60f0r5awy5jlrgc1d1dngbkapv-python3.11-ncclient-0.6.15 +2025-11-24T08:24:49.0482010Z /nix/store/nijbfdbdhpch630cjk5vcmjj8ji0xqsx-python3.11-netaddr-1.2.1 +2025-11-24T08:24:49.0483424Z /nix/store/i393zgdy9dm3jlri8dv29p8jrbdm9g50-python3.11-netmiko-4.3.0 +2025-11-24T08:24:49.0484709Z /nix/store/igif2w5949flbj5j3dqmgh6xjm7fj9qv-python3.11-ntc-templates-4.4.0 +2025-11-24T08:24:49.0486010Z /nix/store/5yyizx1n2586v6k2jip2w1hw5qr5k78y-python3.11-numpy-1.26.4 +2025-11-24T08:24:49.0487243Z /nix/store/p270n0ac6dln5nnxz5mndqziw2mphvd3-python3.11-olefile-0.47 +2025-11-24T08:24:49.0488511Z /nix/store/4zil6nfl9fr9rjw7kswy6ymf6jp2mbys-python3.11-openpyxl-3.1.2 +2025-11-24T08:24:49.0489816Z /nix/store/g3x1fjwa1bdnzb3mcby713ygvswl763x-python3.11-ordered-set-4.1.0 +2025-11-24T08:24:49.0491094Z /nix/store/gb03knn5wp9ja25vki55vd32x4rxhs0x-python3.11-orjson-3.10.1 +2025-11-24T08:24:49.0492339Z /nix/store/dkphwn70lhdmazrl4zdnj63gy0yw4qfj-python3.11-packaging-24.0 +2025-11-24T08:24:49.0493770Z /nix/store/i5cq7lcc4xziddyk4dbjnj62mvndnvhb-python3.11-paramiko-3.4.0 +2025-11-24T08:24:49.0495035Z /nix/store/bhm6c6slxs1jf4dcki1kr2znjwl7vg6p-python3.11-passlib-1.7.4 +2025-11-24T08:24:49.0496290Z /nix/store/yb31qbgf96qysi6a0xs0fv9bcq1fyjqx-python3.11-pexpect-4.9.0 +2025-11-24T08:24:49.0497532Z /nix/store/xxyix63xkfs3xsm3nrvs7z4xzijmqryc-python3.11-pillow-10.3.0 +2025-11-24T08:24:49.0498813Z /nix/store/gcvwz821dqndjvssi82vkg5j8df6ix1j-python3.11-poetry-core-1.9.0 +2025-11-24T08:24:49.0500348Z /nix/store/2vsiqam9g9nx1g0icfwsqqrfkcrggbyq-python3.11-prompt-toolkit-3.0.43 +2025-11-24T08:24:49.0501683Z /nix/store/iicn1k28l5a3fqbsbl5xfh0nzah19djm-python3.11-psutil-5.9.8 +2025-11-24T08:24:49.0503140Z /nix/store/3kri9vcnscsrwpx1gyisycikf2cnyxbb-python3.11-ptyprocess-0.7.0 +2025-11-24T08:24:49.0504393Z /nix/store/hd285sw3n0vgnm5z2naf1z6518yz3071-python3.11-py-1.11.0 +2025-11-24T08:24:49.0505586Z /nix/store/0rxqk46midfpng871sqwm9wfq1r51qzn-python3.11-pyasn1-0.6.0 +2025-11-24T08:24:49.0506846Z /nix/store/7pgjxq3qpqypmdax6wasvzdd5vbx200p-python3.11-pycares-4.4.0 +2025-11-24T08:24:49.0508109Z /nix/store/hif151ccxw4yq0bshn36wb53z5rq0k91-python3.11-pycparser-2.22 +2025-11-24T08:24:49.0509383Z /nix/store/7igc74nhll3nsyxzb7yg7fajs3dhhzsm-python3.11-pycrypto-3.20.0 +2025-11-24T08:24:49.0510713Z /nix/store/2j0fjyjkl5l3b1rslif0p2gjapgvig0n-python3.11-pycryptodome-3.20.0 +2025-11-24T08:24:49.0512008Z /nix/store/cbjs14f3fwqzcjbawa3j980z96bfi1j2-python3.11-pynacl-1.5.0 +2025-11-24T08:24:49.0513457Z /nix/store/3mvrj72xmxxkln74dpx75nnycn2v5wpm-python3.11-pyparsing-3.1.2 +2025-11-24T08:24:49.0514743Z /nix/store/b01lghv79qpiz96zdifyi8hiix798c0g-python3.11-pyserial-3.5 +2025-11-24T08:24:49.0516030Z /nix/store/rk675ihaz563jvfnabw1px0mdcmz23bg-python3.11-pyshark-0.6 +2025-11-24T08:24:49.0517364Z /nix/store/23d61nnrgf4n4a0dnr32gv0mpkf0h0lv-python3.11-python-dateutil-2.8.2 +2025-11-24T08:24:49.0518859Z /nix/store/qfrngq5f1mywvwqw5hnzfywd9w1smbnz-python3.11-python-dateutil-2.9.0.post0 +2025-11-24T08:24:49.0520476Z /nix/store/mw95cn98zv3q2s43382x066zhh3kvq7h-python3.11-pyyaml-6.0.1 +2025-11-24T08:24:49.0521825Z /nix/store/47429mwg02qfk6fc3zxq09cl5a1194pn-python3.11-referencing-0.34.0 +2025-11-24T08:24:49.0523312Z /nix/store/d7kgb4kwyq1v6v4hgijwvab397h050ib-python3.11-requests-2.31.0 +2025-11-24T08:24:49.0524587Z /nix/store/hc04777l1g4n6s2h4vp5dn49dxdg3pk2-python3.11-resolvelib-1.0.1 +2025-11-24T08:24:49.0525859Z /nix/store/iy60xppafv2mq4mdrjkaavpyiw3lavah-python3.11-rpds-py-0.17.1 +2025-11-24T08:24:49.0527190Z /nix/store/pjh9mrhs2mlgy6z3wwbwy5jks2yxkgqf-python3.11-ruamel-base-1.0.0 +2025-11-24T08:24:49.0528527Z /nix/store/gjw08v4xpvs3mslqdwdvwfj3hqdvjpl2-python3.11-ruamel-yaml-0.18.6 +2025-11-24T08:24:49.0529894Z /nix/store/lrgiqzn4w85xld40ka0pvwsdl5608vw1-python3.11-ruamel-yaml-clib-0.2.7 +2025-11-24T08:24:49.0531237Z /nix/store/bwmaj4f9s7xyc3z88lcz12wi80pha5wm-python3.11-s3transfer-0.10.1 +2025-11-24T08:24:49.0532482Z /nix/store/3d3mwc3i8gcw7chv5ksf1icfs6nz0r40-python3.11-scp-0.14.5 +2025-11-24T08:24:49.0533912Z /nix/store/d4g6qjk1j8x3ir8ypsdrgyxw36hhsg09-python3.11-setuptools-69.5.1 +2025-11-24T08:24:49.0535154Z /nix/store/739k8d7canirs7pxhhyn7c4wgijdg8l7-python3.11-six-1.16.0 +2025-11-24T08:24:49.0536375Z /nix/store/jdh1q15l9bgvyn0qwghkb461k3wxxd97-python3.11-tabulate-0.9.0 +2025-11-24T08:24:49.0537642Z /nix/store/d02k3l4gpwmah8gf4jbjdrv7vg505cc1-python3.11-termcolor-2.4.0 +2025-11-24T08:24:49.0538915Z /nix/store/dyvj8cwfrjgjaxxkj2zrxws4qm9piwsl-python3.11-textfsm-1.1.3 +2025-11-24T08:24:49.0540591Z /nix/store/c2f2klzcyad5gbgg74632spacdna7a8k-python3.11-tkinter-3.11.10 +2025-11-24T08:24:49.0541814Z /nix/store/xk3h01xmv8zbbvxgrlw4g3mdjd2b2a2y-python3.11-ttp-0.9.5 +2025-11-24T08:24:49.0543276Z /nix/store/18yiwdazlwkndhqlg3zp0m2zf20qhxzw-python3.11-typing-extensions-4.11.0 +2025-11-24T08:24:49.0544655Z /nix/store/w1wxyra2cbpfzbl134fablnzmvv2s98h-python3.11-urllib3-1.26.18 +2025-11-24T08:24:49.0545908Z /nix/store/glkkwb0lzdf40a7828j0wa3ab65nh4l6-python3.11-urllib3-2.2.2 +2025-11-24T08:24:49.0547142Z /nix/store/nhbsgg6j1nd747r2410nvsz98s1xa3ac-python3.11-wcwidth-0.2.13 +2025-11-24T08:24:49.0548419Z /nix/store/kyvaa6038fvh70wmb6dafphdy64phwqr-python3.11-xmltodict-0.13.0 +2025-11-24T08:24:49.0549707Z /nix/store/rn3zszzcrqiqdkmnh276fpqxrzmi9p2q-python3.11-yangson-1.5.2 +2025-11-24T08:24:49.0550946Z /nix/store/bnr11wfr6inwb7dhcc24g085y5w4088j-python3.11-yarl-1.9.4 +2025-11-24T08:24:49.0552052Z /nix/store/gcrlngyxs3s7hvzha8aj5xfy3hcr90nn-qhull-2020.2 +2025-11-24T08:24:49.0553480Z /nix/store/a47zkhmy1lpql508q65vkxfm3c52hxhs-qrencode-4.1.1 +2025-11-24T08:24:49.0554599Z /nix/store/d0isvsqa3bh3lk8pmz3frjkq9ry7fmq1-qt5compat-6.7.2 +2025-11-24T08:24:49.0555673Z /nix/store/jz42kg5j7i4nkk968nsqxp8mcfsxg2j8-qtbase-6.7.2 +2025-11-24T08:24:49.0556780Z /nix/store/m6j2adssvl3fchxhr7qycz0jby2bb87n-qtdeclarative-6.7.2 +2025-11-24T08:24:49.0557979Z /nix/store/s19242qlqm08kk7ihnay8anpcrnfhslc-qtlanguageserver-6.7.2 +2025-11-24T08:24:49.0559153Z /nix/store/ff17xx8xcdff3lpljz0j67nggz0afs5l-qtmultimedia-6.7.2 +2025-11-24T08:24:49.0560280Z /nix/store/k79dvlj19fvcyylp0gy9ww5vyg7flcqg-qtquick3d-6.7.2 +2025-11-24T08:24:49.0561413Z /nix/store/fs4yrpbzh3znk63vsh03jmxc3fkxlpvz-qtshadertools-6.7.2 +2025-11-24T08:24:49.0562521Z /nix/store/asawim4b8sb0dxndxywln4fhxc7w9cpa-qtsvg-6.7.2 +2025-11-24T08:24:49.0563746Z /nix/store/fm0i918nrvqwg4zsrc8wzjbkaxskgpxw-qttools-6.7.2 +2025-11-24T08:24:49.0564889Z /nix/store/8mppawvvnrp44bsfx9w3hvz3b4gbf6cr-qttranslations-6.7.2 +2025-11-24T08:24:49.0566034Z /nix/store/amjqsmg6fqjmbkxqs1phxk05hj7zs0dn-qtwayland-6.7.2 +2025-11-24T08:24:49.0567252Z /nix/store/kbxpqmqbwq38rjiak7m7q5vp10h81l39-raptor2-unstable-2022-06-06 +2025-11-24T08:24:49.0568488Z /nix/store/yrml8d394c72yffxqwpm4wl4ycfha4wr-readline-8.2p1 +2025-11-24T08:24:49.0569638Z /nix/store/rafcl7sl3f9757z4m5hl7vaklppi8xkr-readline-8.2p10 +2025-11-24T08:24:49.0570755Z /nix/store/4i17d3s0khq8psc9h4kx4yxkzf0rwrf7-roc-toolkit-0.3.0 +2025-11-24T08:24:49.0572027Z /nix/store/7cyfghd954nz098qwr6rj47h2kqnzh8h-rtmpdump-unstable-2021-02-19 +2025-11-24T08:24:49.0573672Z /nix/store/541wacdk2allzgpp1rddwa4im5j8ngn3-s2n-tls-1.4.12 +2025-11-24T08:24:49.0574729Z /nix/store/slyvajz7wkwgd663m6fh3gyig0c06ifk-sbc-2.0 +2025-11-24T08:24:49.0575747Z /nix/store/ncq52j271vqxarh5cs6ld7xxf5h05a8w-serd-0.30.16 +2025-11-24T08:24:49.0576798Z /nix/store/azaijwkx7y71a0wwylsznca97gfhl281-shadow-4.14.6 +2025-11-24T08:24:49.0577926Z /nix/store/lih83v9dmk1kd665aq901dsrq97wyqdx-shellcheck-0.10.0-bin +2025-11-24T08:24:49.0579127Z /nix/store/j7sc48w6msbh7jf1hds75wys5ympk3f1-shellcheck-0.10.0-doc +2025-11-24T08:24:49.0580320Z /nix/store/92497zcqhg9mlfldirvq6yd8rzxjyawj-shellcheck-0.10.0-man +2025-11-24T08:24:49.0581449Z /nix/store/igsld4sykvr6zn07jwhabza978jbiymv-skopeo-1.15.1 +2025-11-24T08:24:49.0582541Z /nix/store/kpnrq81zjxh7fb5nwxar4qsxq532inal-skopeo-1.15.1-man +2025-11-24T08:24:49.0583785Z /nix/store/5s5d99s54qhd1mnkzzglg7zc6vfi1kji-snappy-1.2.0 +2025-11-24T08:24:49.0584812Z /nix/store/vwyx4y609p5b1ym0izimdlbmji26rz08-sops-3.8.1 +2025-11-24T08:24:49.0585832Z /nix/store/8c59a30a01x0rpp7w12yhn8iq9nj3zgb-sord-0.16.16 +2025-11-24T08:24:49.0586903Z /nix/store/5zx4fbl0agr7nq6hxdmczkfw6dl36zmj-soundtouch-2.3.3 +2025-11-24T08:24:49.0588108Z /nix/store/4m7rpgfp12qgslzbw17badzybzhh0vss-sox-unstable-2021-05-09-lib +2025-11-24T08:24:49.0589269Z /nix/store/rkv9qb6nalqqblsyi7x4fl86hzvalxij-soxr-0.1.3 +2025-11-24T08:24:49.0590311Z /nix/store/kz63kc0l997568pqzrh5ibbfg3fb92nc-spandsp-0.0.6 +2025-11-24T08:24:49.0591371Z /nix/store/qk1lrb5a0drx0d4d8rc2xcx0ak0sg478-spandsp-3.0.0 +2025-11-24T08:24:49.0592397Z /nix/store/iiskn765hbwliw5jq6vbm288168b72y4-speex-1.2.1 +2025-11-24T08:24:49.0593587Z /nix/store/xzlkv5dm0g3672n0iqiy145r5wjgsghy-speexdsp-1.2.1 +2025-11-24T08:24:49.0594653Z /nix/store/0pjc3s5k0zlc56xs2z0cmvq885zkij9h-sqlite-3.45.3 +2025-11-24T08:24:49.0595696Z /nix/store/b51xi5pl9l27xl6kdi5jp0z27lz1jijf-sratom-0.6.16 +2025-11-24T08:24:49.0596714Z /nix/store/9836si2b8mi0hw57x0nfaphxi4hjaz8p-srt-1.5.3 +2025-11-24T08:24:49.0597714Z /nix/store/9qly1ip9gdwv6brf58hcil55lqhih8ab-svt-av1-2.0.0 +2025-11-24T08:24:49.0598784Z /nix/store/rhq3rwyghbqq4lnkmdf4vsrazr2aa5a7-systemd-255.9 +2025-11-24T08:24:49.0599922Z /nix/store/f77zp1fs5gblzrhz96mpicrqzb09r555-systemd-minimal-255.9 +2025-11-24T08:24:49.0601155Z /nix/store/azc06066h201z880m78k002cgq02h5a1-systemd-minimal-libs-255.9 +2025-11-24T08:24:49.0602299Z /nix/store/5nymsx64wskcfmwszlzcq89xlzxvfh6g-taglib-1.13.1 +2025-11-24T08:24:49.0624408Z /nix/store/b267yj2svrb24vsiaydc3ibs2g81278g-tcb-1.2 +2025-11-24T08:24:49.0625817Z /nix/store/yjwjwpm4az2b247w4wrrv9g8xkwn928x-tcl-8.6.13 +2025-11-24T08:24:49.0626920Z /nix/store/2p4grjy2h8zl1mn6bsmqjphnxmign8id-tk-8.6.13 +2025-11-24T08:24:49.0627990Z /nix/store/ihjg8v8902jly2i3xnbj3714i135pqf4-tpm2-tss-4.1.1 +2025-11-24T08:24:49.0629110Z /nix/store/58n0pnldj7w7szplmgaxjz6ycvff19rh-tracker-3.7.3 +2025-11-24T08:24:49.0630329Z /nix/store/1vjc1n3v6zm010x5n8lby5mc8kds1v65-tremor-unstable-2018-03-16 +2025-11-24T08:24:49.0631589Z /nix/store/kvxzigllixh8ami7d1wmgiyf2iym8yi8-twolame-2017-09-27 +2025-11-24T08:24:49.0632907Z /nix/store/vil8wqacfkz8qx09aymahxv48d1zq3g2-tzdata-2024b +2025-11-24T08:24:49.0634077Z /nix/store/myr5cqynx2nh0x4f68pprg4jgps9ivcl-unbound-1.20.0-lib +2025-11-24T08:24:49.0635206Z /nix/store/hp6bg5zs7nzcc8al4i99lfbrvqs9f6rs-unixODBC-2.3.12 +2025-11-24T08:24:49.0636444Z /nix/store/k1rc6g2c6vammbwi963vvh28rgvbv6c4-util-linux-minimal-2.39.4-bin +2025-11-24T08:24:49.0637755Z /nix/store/ixlnf1frsa2df5jjm82n0gs8h3wi6lby-util-linux-minimal-2.39.4-lib +2025-11-24T08:24:49.0639121Z /nix/store/hh2gg2hcslfrgrszc7lxqb43i5lmalxq-util-linux-minimal-2.39.4-login +2025-11-24T08:24:49.0640491Z /nix/store/gv9sis616azky4gydszlqckiwbpqk5yn-util-linux-minimal-2.39.4-mount +2025-11-24T08:24:49.0641839Z /nix/store/g9qxpv2q2bvr4g8ziay97baqniir3ksf-util-linux-minimal-2.39.4-swap +2025-11-24T08:24:49.0643220Z /nix/store/r7kg1hpd8i2qijkcr6ifqa3fz7xfdf17-v4l-utils-1.24.1 +2025-11-24T08:24:49.0644299Z /nix/store/ipnndsw24ar8mvn2ib4hrcxphpl7v958-vault-1.16.2 +2025-11-24T08:24:49.0645599Z /nix/store/hdypr3jgarr6n48w5mg5ai12s4kx8ma7-vo-aacenc-0.1.3 +2025-11-24T08:24:49.0646788Z /nix/store/191vrvkiswdkyqigjnynfv22mm98nrqx-vulkan-loader-1.3.283.0 +2025-11-24T08:24:49.0647949Z /nix/store/95lvnrimmgkn5l0k9iq2mh70hg7nkzi4-wavpack-5.7.0 +2025-11-24T08:24:49.0649029Z /nix/store/aqc10czb2whr64agvcpihg96im5i7mi6-wayland-1.22.0 +2025-11-24T08:24:49.0650242Z /nix/store/a115p1125g01r6vcmxcmw4iiif3d8pq3-webrtc-audio-processing-1.3 +2025-11-24T08:24:49.0651425Z /nix/store/8xvsv53s07hxqrycr9cd07sgw1vk93pr-wildmidi-0.4.6 +2025-11-24T08:24:49.0652492Z /nix/store/b0ws7iizbchnvkqnhv1nb8r1xx1jryp8-wildmidi.cfg +2025-11-24T08:24:49.0653759Z /nix/store/bbh6750da4dmnbizgwzh5q2g5z6njd81-wire-server-deploy +2025-11-24T08:24:49.0654919Z /nix/store/3ba19yig9wyh44wyz5xqj1a26nlq2j0w-wireshark-cli-4.2.8 +2025-11-24T08:24:49.0656114Z /nix/store/1b8lnibgkaaclzs0a88h99z21m9b3mri-wireshark-cli-4.2.8-dev +2025-11-24T08:24:49.0657291Z /nix/store/7f6amjb8sj237q13bkbl9yi18g8jvvym-wireshark-qt-4.2.8 +2025-11-24T08:24:49.0658538Z /nix/store/f4gg5ww5yz1qf48jsdq1qb5hga9j4y43-x264-0-unstable-2023-10-01-lib +2025-11-24T08:24:49.0659676Z /nix/store/izsm29za8x8kbm0wl09hd6ghb1i9gzzy-x265-3.5 +2025-11-24T08:24:49.0660708Z /nix/store/gb81wj5hpf0rg7gsgrx0yq71l5k40aci-xcb-util-0.4.1 +2025-11-24T08:24:49.0661849Z /nix/store/j0jmblhsvp9np7n78a6zvdmsar6ls9i5-xcb-util-cursor-0.1.5 +2025-11-24T08:24:49.0663220Z /nix/store/12px4lqxdn2rd117lvw00l1c2yj916sz-xcb-util-image-0.4.1 +2025-11-24T08:24:49.0664427Z /nix/store/wnnxni1b617a1w7ralb2i4b8ygqi6s38-xcb-util-keysyms-0.4.1 +2025-11-24T08:24:49.0665703Z /nix/store/9880gzbdjhflab6g24gamxxy0hv4jv8m-xcb-util-renderutil-0.3.10 +2025-11-24T08:24:49.0666922Z /nix/store/ih9fysqqf3d4ym0x5gs4i4smg40kilv2-xcb-util-wm-0.4.2 +2025-11-24T08:24:49.0668104Z /nix/store/lmidwx4id2q87f4z9aj79xwb03gsmq5j-xgcc-12.3.0-libgcc +2025-11-24T08:24:49.0669276Z /nix/store/2y852kcvb7shrj8f3z8j22pa0iybcbgj-xgcc-13.2.0-libgcc +2025-11-24T08:24:49.0670476Z /nix/store/lr7988lx4zrrcf67dhjd8ckpqw89vsi7-xkeyboard-config-2.41 +2025-11-24T08:24:49.0671633Z /nix/store/1hkh6d21k98x6ymzn6m43nadv8vqhagb-xvidcore-1.3.7 +2025-11-24T08:24:49.0673830Z /nix/store/p1m1hbbfyvix5390xgslhq3d30zzhp7f-xz-5.4.7 +2025-11-24T08:24:49.0674885Z /nix/store/1h4vhcpa6nqln9x0w03dy5i1x97z8svc-xz-5.4.7-bin +2025-11-24T08:24:49.0676368Z /nix/store/nk5ykhi1vy4wvn2b0gakhm189aypn60d-yq-go-4.44.1 +2025-11-24T08:24:49.0677514Z /nix/store/zzqs9b81ihxdpwh9728zwsnpq1z5d5lv-zimg-3.0.5 +2025-11-24T08:24:49.0678903Z /nix/store/xcsh72xshyawb0mqicf675ryffc13vjv-zix-0.4.2 +2025-11-24T08:24:49.0679592Z /nix/store/6ghariqqf33l5xqn7alx58dys7kz2wm5-zlib-1.3.1 +2025-11-24T08:24:49.0680245Z /nix/store/i44dhfrwi3qaz3f8xkxiva6zqkq3f65v-zlib-1.3.1-dev +2025-11-24T08:24:49.0680882Z /nix/store/c1hff4nzawfkzvjmqn609pfdc3m3dk5z-zstd-1.5.6 +2025-11-24T08:24:49.0681502Z /nix/store/g7kjsdrig65ykzi0056abrb84dxm1mqv-zstd-1.5.6-bin +2025-11-24T08:24:49.0682145Z /nix/store/nr9ypm2pi838cf2qrxrk8pwdc0alkx7f-zxing-cpp-2.2.1 +2025-11-24T08:24:49.0683605Z copying path '/nix/store/irlvq4wkmbm2x94j843qg5qjbx8k9sm0-apache-httpd-2.4.62-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0684739Z copying path '/nix/store/fwnm0vr8bylbgwpmzic6xg07kl4prqzc-curl-8.7.1-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0686085Z copying path '/nix/store/pqjdzrpm68zznzbamq3kda12qfn4mmfg-gawk-5.2.2-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0687117Z copying path '/nix/store/s3ar5dw359pybk1zx4discj2v3yl8j66-gnumake-4.4.1-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0688279Z copying path '/nix/store/xrmh72ajmjxlgnncilm9mg6ww8nsff5m-jq-1.7.1-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0689412Z copying path '/nix/store/kbpgc9xng17b038b5avmnp8vdl5azwhx-openssl-3.0.14-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0690541Z copying path '/nix/store/nl15aj2izjnq21jdn0wr8q5yqdln35xp-profile-env' from 'https://wire-server.cachix.org'... +2025-11-24T08:24:49.0691681Z copying path '/nix/store/j7sc48w6msbh7jf1hds75wys5ympk3f1-shellcheck-0.10.0-doc' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0693138Z copying path '/nix/store/kpnrq81zjxh7fb5nwxar4qsxq532inal-skopeo-1.15.1-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0694588Z copying path '/nix/store/92497zcqhg9mlfldirvq6yd8rzxjyawj-shellcheck-0.10.0-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0696565Z copying path '/nix/store/1rr497fk0jmibaj65983i7nipz2knmc8-gsettings-desktop-schemas-46.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0698445Z copying path '/nix/store/hwd8j670is918b951h0hwnapfzwr05ny-iana-etc-20240318' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0700222Z copying path '/nix/store/p3ks31bnd9fhvh2cp1wmcalm4bs2bkwq-jq-1.7.1-doc' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0701939Z copying path '/nix/store/2b81ihj7pcsr6pkr02vaajprjx9gfpq6-jq-1.7.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0704993Z copying path '/nix/store/v68clh8wa74xxblx0b748vr50gl7xnzc-mailcap-2.1.53' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.0708020Z copying path '/nix/store/sgss28baa4r7kcz5fqvdr2vcdkr0rwq7-perl5.38.2-Time-Duration-1.21' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1075944Z copying path '/nix/store/iqga1xby2s1l6lx9riqicsqa2f88hnrj-alsa-topology-conf-1.2.5.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1078096Z copying path '/nix/store/mlkzgivx42k092w0icqj2jdlldyni1vk-alsa-ucm-conf-1.2.11' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1080302Z copying path '/nix/store/x11lxi08rrif8arf4j88hlcfivvag558-busybox-static-x86_64-unknown-linux-musl-1.36.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1082407Z copying path '/nix/store/zr2gp0yli9vjsqfp28526jcajcivq2ag-dns-root-data-2023-11-27' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1084641Z copying path '/nix/store/lcrda0r4xylppfgmazzln221bxdk652m-ffmpeg-headless-6.1.2-data' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1090276Z copying path '/nix/store/shj3d9r31bhxbv0lnv9iwa147ldg86iw-gfortran-13.2.0-libgcc' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1093081Z copying path '/nix/store/1mjlla0fc468wl9cphnn2ivpfx02mr7j-dejavu-fonts-minimal-2.37' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1095506Z copying path '/nix/store/zdn6ss261z463m14qyyi9s8775mghx7h-freepats-20060219' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1097613Z copying path '/nix/store/dd13q38yxm9qppjclsvwn10dscsf0l9w-gcc-13.2.0-libgcc' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1099676Z copying path '/nix/store/s2f1sqfsdi4pmh23nfnrh42v17zsvi5y-libunistring-1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1101168Z copying path '/nix/store/zx2wnh4wp39mkc9rx4jlzd3jljnhcwb5-iso-codes-4.16.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1103166Z copying path '/nix/store/4749l0nkfysbi06gq6arznxy0zb4ymvf-ffmpeg-6.1.2-data' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1107654Z copying path '/nix/store/xq62ams06wq8ix1qb5rd6ygjlwvw0q76-hwdata-0.382' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1281670Z copying path '/nix/store/zvwpisszhpkkk8spqyya8n3bpm7wj39p-libunistring-1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1504850Z copying path '/nix/store/d7vji37yjnbji14m4waa5rn35f10jzya-linux-headers-6.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1553774Z copying path '/nix/store/h2cx0dl7zcq91l31bmbnv1774mwy6v0f-nix-2.18.8-man' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1578626Z copying path '/nix/store/bmjdb3wc1z2nh78k23p9akgqiabi2way-publicsuffix-list-0-unstable-2024-01-07' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1606260Z copying path '/nix/store/za4zp2sff6p86j0mmbd874qipbiads43-perl5.38.2-TimeDate-2.33' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1609590Z copying path '/nix/store/8mppawvvnrp44bsfx9w3hvz3b4gbf6cr-qttranslations-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1611459Z copying path '/nix/store/jb2mh4asq1klvf3nzj9blr2q6dyhwkrb-nss-cacert-3.107' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.1837673Z copying path '/nix/store/vil8wqacfkz8qx09aymahxv48d1zq3g2-tzdata-2024b' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.2034906Z copying path '/nix/store/7r4nw8z7wrf07mxk3m71rav47xlmj50m-fontconfig-2.15.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.2108665Z copying path '/nix/store/08n25j4vxyjidjf93fyc15icxwrxm2p8-libidn2-2.3.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.2406241Z copying path '/nix/store/lmidwx4id2q87f4z9aj79xwb03gsmq5j-xgcc-12.3.0-libgcc' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.3544480Z copying path '/nix/store/2y852kcvb7shrj8f3z8j22pa0iybcbgj-xgcc-13.2.0-libgcc' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.4185567Z copying path '/nix/store/lr7988lx4zrrcf67dhjd8ckpqw89vsi7-xkeyboard-config-2.41' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.4226213Z copying path '/nix/store/9jivp79yv91fl1i6ayq2107a78q7k43i-libidn2-2.3.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.6281246Z copying path '/nix/store/g6xy81k0vwflzsjgrdj1ak7mniiq4g56-kubernetes-1.29.10' from 'https://wire-server.cachix.org'... +2025-11-24T08:24:49.7008239Z copying path '/nix/store/qn3ggz5sf3hkjs2c797xf7nan3amdxmp-glibc-2.38-27' from 'https://cache.nixos.org'... +2025-11-24T08:24:49.8331578Z copying path '/nix/store/pf5avvvl4ssd6kylcvg2g23hcjp71h19-glibc-2.39-52' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.6405562Z copying path '/nix/store/vbb1l2krfp75m5w3y2h52l0pbq6fydz8-attr-2.5.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.6407416Z copying path '/nix/store/q1c2flcykgr4wwg5a6h450hxbk4ch589-bash-5.2-p15' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.6411211Z copying path '/nix/store/155qsyx1mv11fsi48nz4dlc0vh1a3drx-bzip2-1.0.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.6413330Z copying path '/nix/store/5i51nfixxx3p3gshkfsjj4bzp7wajwxz-ncurses-6.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7973221Z copying path '/nix/store/9r2if8vhzvzqlx6n5knx2ckjfcjpd3yr-alsa-lib-1.2.11' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7979458Z copying path '/nix/store/ffimzi11j2zzj4d9s2h9cdy76nh754j6-apr-1.7.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7982010Z copying path '/nix/store/nmkjwwbqbsa4nx3ljjxrp746kp53by51-brotli-1.1.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7983967Z copying path '/nix/store/s894wa8wzbf841myjr7dm4m85177f8rl-attr-2.5.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7986070Z copying path '/nix/store/bh5ifiy3iwvfqfxw5gf14y1235cp7d97-bcg729-1.1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7987925Z copying path '/nix/store/xjrmsmrg0i7bqkv3rwxrw7m7mhgy5c0b-aws-c-common-0.9.17' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7989755Z copying path '/nix/store/7nyb4srcp8a2sij2dp2ajm8dam2vzl30-c-ares-1.27.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7990928Z copying path '/nix/store/0zyxzx4g9knbqg9rjh4gs3dda57ir3lj-cdparanoia-III-10.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7992312Z copying path '/nix/store/1jzhbwq5rjjaqa75z88ws2b424vh7m53-bash-5.2p32' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.7993833Z copying path '/nix/store/0s4k9fh17m2sx8ifj9xdflnjfgxrvbgp-bzip2-1.0.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.8289884Z copying path '/nix/store/ii6k60vb5k7xfasw5zr7ckaym7fdsywd-containerd-1.7.16' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.8307520Z copying path '/nix/store/mmy4fc1arb2ig642chgprgms27vk9hgn-acl-2.3.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.8633225Z copying path '/nix/store/28q4r7zcrl59qaxrbrfl65kx1wgkkay5-dav1d-1.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:50.9785676Z copying path '/nix/store/i7190zhkrx6l6iqjqfdcsjblisqi5zn7-duktape-2.7.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.0463052Z copying path '/nix/store/vanxcdgcyw9racn9dphs67f0qxfb2bkd-editline-1.17.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.0477585Z copying path '/nix/store/80kzdbnl1bmnd8r8hphh1xzmgsvyyf6w-acl-2.3.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.0515790Z copying path '/nix/store/8krchn3igfzz62fnirxj47l2hrz11sj9-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.0609929Z copying path '/nix/store/b5d4fldmq2rf44ffml37m0zl3fdz2mkg-ell-0.64' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.0691137Z copying path '/nix/store/nbbg70f6gihj51p65kv19m0fnq8ik5kh-expat-2.6.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.0694068Z copying path '/nix/store/zxa67zidllxq02wa2jcpdjs6a24c50gc-faad2-2.11.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.1093119Z copying path '/nix/store/5jm8r2l3axkpcsygz5hxz0h1jcc3p7c7-fdk-aac-2.0.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.1267253Z copying path '/nix/store/yhkrb1hfbncqyrzras9jgdlp14c89jwp-aws-c-compression-0.2.18' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.1378788Z copying path '/nix/store/a8vav5wzx1fd1zizxxr0vn4knhm8gmhr-audit-3.1.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.1417185Z copying path '/nix/store/3bkv1455nixz55fzjpmz2zs0mdwsb3q5-aws-c-sdkutils-0.1.16' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.1419121Z copying path '/nix/store/h0d1vp09i1riahbsjcvdq6fxh5f231a3-aws-checksums-0.1.18' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.1853645Z copying path '/nix/store/jalq9yqbfprgkfm64g7hm0qdjf1p0vn9-fribidi-1.0.13' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.2159247Z copying path '/nix/store/jziybc6yn78sf0bbh0kmmx50bxjsnr15-gawk-5.2.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.3313619Z copying path '/nix/store/90yn7340r8yab8kxpb0p7y0c9j3snjam-gcc-13.2.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.3988322Z copying path '/nix/store/y8fzwmygqh9rl5rc8rvcydcskgszldpn-gdbm-1.23' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.4050565Z copying path '/nix/store/frc6vkc5qggx3hyxd91f9r054z5ridar-getopt-1.1.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.4135756Z copying path '/nix/store/7w7yin9a870lg40gap1r2qpx0dygwbll-gfortran-13.2.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.4165580Z copying path '/nix/store/lvkrfaynswav193jkqc6vg7c6fijrbi4-expat-2.6.4-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.4325170Z copying path '/nix/store/xzcf7d64zqhpnk9lh3s73804fjvwdijn-giflib-5.2.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.4368845Z copying path '/nix/store/94gaw2ngsnpf3ybxjsg89lf3hf3d55y2-glibc-2.39-52-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.4636593Z copying path '/nix/store/mq2lm1hbxzsdyjk7admb17kzx3zwqcfv-glibc-2.39-52-getent' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.5918319Z copying path '/nix/store/vqgpb0anqqfnhb5ww3y8rf1jaxpphqwg-gnumake-4.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.5923365Z copying path '/nix/store/az1vlcldx7vaqq533a8x31vvqa6dvqgb-gnum4-1.4.19' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.5926123Z copying path '/nix/store/y8br765djcj51ls9lb3kylkrvc2wan3p-gnused-4.9' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.6045471Z copying path '/nix/store/llalnjlyrj2zv12q5bjy8cagqv70j73y-gnutar-1.35' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.6118614Z copying path '/nix/store/xpidksbd07in3nd4sjx79ybwwy81b338-gnutar-1.35' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.6518917Z copying path '/nix/store/xn47v1hva7pcfkim3lqly4ya0mkb1k2y-gsm-1.0.22' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.8665103Z copying path '/nix/store/r6apkwli4s0xhzn1bdi9nrkmvqc5arrj-gzip-1.13' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.8685663Z copying path '/nix/store/1bzgjxzx4c6ni628qhl9v2lj7b7rx1bw-getent-glibc-2.39-52' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.8775529Z copying path '/nix/store/9y4ha6gkpasclbz0ai4nxrxyadm5cm4k-helm-diff-3.9.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.8814554Z copying path '/nix/store/3nhbs4jxf6qayllzsbygjlsfam0fd5cf-helm-mapkubeapis-0.1.0' from 'https://wire-server.cachix.org'... +2025-11-24T08:24:51.8927071Z copying path '/nix/store/sk8n88qna3hscvlrczdg5cg4l2ychf8z-helm-s3-0.16.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.8982492Z copying path '/nix/store/44396d1dacgadwysbq3fqf9bd69jc9c8-helmfile-0.162.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.9331610Z copying path '/nix/store/v5hzzgpnjwyaflp8cha905zs9pq1lx9b-audiofile-0.3.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:51.9862198Z copying path '/nix/store/ww46hbf56wlmcg5kbgk8bz9jsbxx88hy-boehm-gc-8.2.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.0113699Z copying path '/nix/store/2cbbwpr4awcw7h5zys1vdsv5jyaizkbs-db-4.8.30' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.0262966Z copying path '/nix/store/0nl55z21knp8fq18zcyfkgra0i2hijyv-db-5.3.28' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.0353556Z copying path '/nix/store/zcjkcknxsqafyx2y3f5x988pkb0fwclm-double-conversion-3.3.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.0606137Z copying path '/nix/store/pn1sn53pyp2vz9jhy0vb5pfbgk3fw16b-fftw-single-3.3.10' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.0644785Z copying path '/nix/store/6ds32jlmhqjvbkp2pd20dz1wi9anszls-gettext-0.21.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.1316322Z copying path '/nix/store/jig62nn8174n4dlk05lqwsvs5wd2c64r-glibc-2.39-52-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.1646204Z copying path '/nix/store/0pkjhzncyjkvhq8lwmdkzvl4cs4vh0yb-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.2372189Z copying path '/nix/store/s8q3rch0wd3shdnznz9bcj8mj6pvz1gr-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.2496566Z copying path '/nix/store/9q6wjrav2m5ikwf3yznj96fxmxvdz02v-graphite2-1.3.14' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.4486262Z copying path '/nix/store/0sq3jcykin6q788jgpma14n0sg8bwn7z-groff-1.23.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.7278488Z copying path '/nix/store/a2qxya11zd3xdn5df34n6axfd6fhgzql-icu4c-73.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.8066190Z copying path '/nix/store/wlh7hfyvzz29qprxihwshada259awrdb-imath-3.1.11' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.8610579Z copying path '/nix/store/n9gh8gxx5xx51ihgll2l20ar9b2vmgzy-coreutils-9.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.8936448Z copying path '/nix/store/kh4996rfh9sm32l026igm88ipz34ivvb-json-c-0.17' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.9110859Z copying path '/nix/store/0b5z0wf3k9y3s3qadnkwsm78avax4jlk-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:52.9410742Z copying path '/nix/store/6cvlfg9drxk3mlr4pmf71zwg1fdpfsr3-glibc-iconv-2.39' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.0598577Z copying path '/nix/store/9gbl10a8driqq6sbqgwqv3p3sgc4443q-kubernetes-helm-3.15.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.0601077Z copying path '/nix/store/1yhzp59gq3bfdfys8z2q9wkrc9mqh003-lame-3.100-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.1005758Z copying path '/nix/store/702y72g4yqmylqs1niks1dzm1vh6vaqh-lcms2-2.16' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.1940143Z copying path '/nix/store/mwqnsdm4kcx3b4zk23i8196j1y492kn3-gmp-with-cxx-6.3.0-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.5895971Z copying path '/nix/store/dh60g7bp466jd3m1sb0y79mm15rg25gk-ldacBT-2.0.2.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.7087806Z copying path '/nix/store/qkcd83z90018bfkdimzq0yz00fw14c59-libICE-1.1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.7093668Z copying path '/nix/store/rcazl4zhbdvc9w357vlwk95v8gcfjhr2-lerc-4.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.7196977Z copying path '/nix/store/hfy39pxmyvs4sjbwqv4si92ixmj2crx5-libXau-1.0.11' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.7232612Z copying path '/nix/store/4b5w9n7781c99pwa0qvsg25my65i0zq9-libXdmcp-1.1.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.7516170Z copying path '/nix/store/l0v5pkl7cv999ns3jawq1hx53jj3p1qk-libapparmor-3.1.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.7646479Z copying path '/nix/store/czcrq1nad23isbaikj0qi6xyxv0b34vw-libargon2-20190702' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.7713173Z copying path '/nix/store/ywj3g79vpya72rw2xbrg656ir0x25hdi-libb2-0.98.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:53.7965830Z copying path '/nix/store/j67whcybdcm598p442ja0x5idiknsvyc-libcap-2.69-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.2525677Z copying path '/nix/store/qdk6ds72q8xf5fzi16x7736bwz8aydic-findutils-4.9.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4250938Z copying path '/nix/store/49jrxd6mcc6ckwrm5sk35gapva0zw221-libcap-ng-0.8.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4274672Z copying path '/nix/store/s3w5cr4c4s6ydfgw17l4wgxs0yr0vxwd-libcbor-0.11.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4278130Z copying path '/nix/store/d73x8ky2dlxa6ky50gj5f63gc3dvmhp3-libcerf-2.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4282287Z copying path '/nix/store/isvmi5n4y67jikxrbwi9837920swcig6-libconfig-1.7.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4284466Z copying path '/nix/store/ggzxnrg5a2zy0bdk9csby7mlbzyk1fc0-libcpuid-0.6.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4309821Z copying path '/nix/store/y9qvkwvhaqvk5i4h82smlrlml8mkbk7x-libdaemon-0.14' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4313829Z copying path '/nix/store/2g8q946s9ngv63ssh93i3p4mc0z5q054-libdatrie-2019-12-20-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4328298Z copying path '/nix/store/lhw8k224lnh45564770rira6f2fz7pkg-libde265-1.0.15' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4392296Z copying path '/nix/store/dcdhs0cqc45ryd2836yvjv34z6jxfc3l-libdeflate-1.20' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.4527417Z copying path '/nix/store/mldlqbciwfv3ldvvwfyvj55x1fjv9pqh-libdvdcss-1.4.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.8725832Z copying path '/nix/store/bfi5yfjprczappbx6z7shqsz4mckqr4s-libevdev-1.13.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9303285Z copying path '/nix/store/pm7i9hd073plr28fppi417najx3vx2vv-libevent-2.1.12' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9355137Z copying path '/nix/store/p3ls8qj9db0zxqyh1yl1xhza2007ydyg-libgpg-error-1.48' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9357137Z copying path '/nix/store/gniy4ab9wcijxjpcciddgpzdwq3v3dnb-libffi-3.4.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9365054Z copying path '/nix/store/zqy22zkr1a6xb9cf5rm38p26qgicis82-libfreeaptx-0.1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9419781Z copying path '/nix/store/rrw0d53ykhyzwbqayrqzx28hm53krb7i-libjpeg-turbo-3.0.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9444123Z copying path '/nix/store/47jrm08jdl2ipwy2qs6378x4gwdgm5q5-libimagequant-4.3.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9473877Z copying path '/nix/store/ikpcy0aqjdlgn7j9m4291yy3fzk313vl-libdvdread-6.1.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9476985Z copying path '/nix/store/49lcgk66mgdlgn3vggh9yahqcsjvilcd-libmad-0.15.1b' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9479094Z copying path '/nix/store/2vv5dpcgl9hzcpzf1syjnrld69kfhkfm-libkrb5-1.21.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9497089Z copying path '/nix/store/xbpmy64387amikknbh7dwfarggzqjgif-liblc3-1.1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9498913Z copying path '/nix/store/1kvwypvmzkql34dlmq1fxnf736v67i7s-libmaxminddb-1.9.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:54.9685632Z copying path '/nix/store/r97fx69ff4awjpzh1q153mlyc5q58pbz-libmd-1.1.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.0891866Z copying path '/nix/store/dx0m5lpqxsfd6f96nwxb6zj08gq36jqg-libmnl-1.0.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.1749629Z copying path '/nix/store/wfr1j6ap7889zlfqjparrgkndj6dylp9-libmodplug-0.8.9.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3231927Z copying path '/nix/store/lhzxnmigwry6za5n0jwmzrc6mdmlss92-libffi-3.4.6-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3234352Z copying path '/nix/store/mwn21av99yxvf4jhs0xf6hq1dfd4fzky-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3236236Z copying path '/nix/store/lfj2avpyaf4f66icz7xnqxakwp0fvphb-libmpg123-1.32.9' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3238617Z copying path '/nix/store/i16ggyd7qbfwx0b9vyfjpay990lcjlc7-libnl-3.8.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3286022Z copying path '/nix/store/gw29icd5xx6sj39xad9gg2bxr7r340hw-libogg-1.3.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3294932Z copying path '/nix/store/k8f3hragii2jbkka3d59lamj6apvqrzz-libbsd-0.11.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3317871Z copying path '/nix/store/maayqcn0wnchzb5f47k6ykhb2x84bbmy-libopus-1.5.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3345166Z copying path '/nix/store/ak0iy34rfd9r0x62gm7144gp15gisbwh-libossp-uuid-1.6.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3369352Z copying path '/nix/store/apjs9l6fsvv3d6d5dacinrhy8qj57jgx-libpsl-0.21.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3374509Z copying path '/nix/store/63chsm1g9pbfqp072cc1kv5j4j5pmsna-libdvdnav-6.1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3555280Z copying path '/nix/store/xc1aw6cjm3hj8qdaj8x9g089lm4abrr9-libassuan-2.5.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.3941313Z copying path '/nix/store/pffh6d501fj27h886lmbj8x3l80y93d3-libgcrypt-1.10.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4172497Z copying path '/nix/store/9anvd217j8v5skm2lpbv2wc1r4s422z9-libgpg-error-1.48-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4284370Z copying path '/nix/store/877i4v0nlmsj8cgdmbqiszymplyvd5qx-libksba-1.6.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4321892Z copying path '/nix/store/w4rnk5xnvg07jlazglxzn2iikdvclj9m-libnetfilter_conntrack-1.0.9' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4324833Z copying path '/nix/store/1rg4zjc4zqabzd3wa1l2inzvyj3s441p-libnftnl-1.2.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4470752Z copying path '/nix/store/k2q0sl6rw1gzcipz98jswm6linvnk1k8-libraw1394-2.1.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4527144Z copying path '/nix/store/hb209596gpyy93xias3rd0ig0pvcb9ya-libsigc++-2.12.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4536202Z copying path '/nix/store/03365nil7n0s83mib1a0m04yj1r1s0b8-celt-0.11.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4563567Z copying path '/nix/store/9z2k8x5ja4jwb0facp7zn0hv59yyhfxp-flac-1.4.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4569409Z copying path '/nix/store/7ssrf0drpxh2dkg7y6q4l5fnscr9a7hn-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4578324Z copying path '/nix/store/j6jdzd249rj80lvwbp22gj3f17mwv1z4-libsamplerate-0.2.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4734916Z copying path '/nix/store/302ncx9jpsj9ip869nx98as9drlbjqpn-libsodium-1.0.19' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4737736Z copying path '/nix/store/6wk140rmq7xcwk0qrri7cg2l3wqfnsf6-libsmi-0.5.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4787081Z copying path '/nix/store/9ll9fqfsdjqwy2ibrnd5sni1mg60lzah-libtasn1-4.19.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4835851Z copying path '/nix/store/z04c92z7f7pp1r3g58fg8wcxjf4pak8w-libthai-0.1.29' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4838410Z copying path '/nix/store/1m2m6q2pjlhmhz4g589rfs91i8gmyrcf-libdc1394-2.2.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4864343Z copying path '/nix/store/rsb77bpsahd583rzqwf510d5mzd1sdln-libavc1394-0.5.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4882331Z copying path '/nix/store/52i0az8insvqdrg8q094xd9d89fx365s-libiec61883-1.2.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4884355Z copying path '/nix/store/r2dsg8cxrn78jq83bdjgn1nihjw1r931-libtheora-1.1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4886166Z copying path '/nix/store/fv20wfhs3bh97mhrff67lvbdqn8v0k4y-libtool-2.4.7-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.4999484Z copying path '/nix/store/a4x20x15w3r6iic9pllkzsikdr1ci8zr-libuv-1.48.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5269019Z copying path '/nix/store/idk29ffgl1gh0w9mqzflw5ih2qa746cr-libvisual-0.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5291366Z copying path '/nix/store/3lanyd7681hn1mg7imzzbk9a3vvbd6w5-libvmaf-3.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5306371Z copying path '/nix/store/k8j5p8d02fx0smh17zzxp87vg5clcn10-libvorbis-1.3.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5352346Z copying path '/nix/store/9dkh8lhl686qjdf364myq9haklz3qpzv-libxcb-1.17.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5385971Z copying path '/nix/store/6jlh2g3half9sbvvngr28aa15cajv0zs-libvpx-1.14.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5475650Z copying path '/nix/store/bb99dclcsv3r0a8q967bnvga02qicxsf-libxcrypt-4.4.36' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5505744Z copying path '/nix/store/707q2pscclhgmmfr33xhbr0qbw3p2hmg-libpcap-1.10.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5535884Z copying path '/nix/store/crl81hy8cnqs4g5gn68s8sjqd1b3r0ps-libyuv-1787' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5559019Z copying path '/nix/store/5pd8825vnd563qbvbv0p5p29hqirvw5c-libyaml-0.2.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5562286Z copying path '/nix/store/lh0b381npmiyg4x6b7v3q487pz2nzk0y-libpcap-1.10.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5621886Z copying path '/nix/store/8qjzrbbrgvpprwynj6lbdxznp16figxg-llhttp-9.2.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5630604Z copying path '/nix/store/iq8y3vz3qmsa55g4vhhcd4d2zd8p37bf-lowdown-1.1.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.5662567Z copying path '/nix/store/gms3c80sldm4r0pyxj987227y49lx1ks-lz4-1.9.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6015497Z copying path '/nix/store/2bs7zc57z3lw3fmmvdbw1q3mchqyv6hr-libgcrypt-1.10.3-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6275279Z copying path '/nix/store/qhmdwfb0c32rl9pjk7cv94lxc0c7rqgl-md4c-0.5.2-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6431856Z copying path '/nix/store/6x0n8ksnajz1kf7n6q0farmyrc6af4mz-mpdecimal-4.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6606922Z copying path '/nix/store/31n6bq6cw25zhcv9mavavrvi560qd9gp-mtdev-1.1.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6667118Z copying path '/nix/store/90nwq55nj0nr3qgrsrk396ziazzyjh06-ncompress-5.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6764045Z copying path '/nix/store/zmi2nlx42h1qrs2v7yn142dq4zjq30im-ncurses-6.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6839999Z copying path '/nix/store/9yir03i6l4c3pv54q86k57p50mc3jnh4-nettle-3.9.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6841819Z copying path '/nix/store/j17zmzz6z8fi8rd2yqk36n5jy8whzfhy-nghttp2-1.61.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6925800Z copying path '/nix/store/falcaavkhml14j79g95mvqbd2ci4g12j-linux-pam-1.6.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6927641Z copying path '/nix/store/hw4kkx5bzx5srw17x9gkyakis1ipqcl7-npth-1.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6929420Z copying path '/nix/store/a6prrfmmr6kkbkwk6v3vq4zd96mcc5g4-numactl-2.0.18' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6931218Z copying path '/nix/store/kg4y3flpnkcfhxvi9cin6c81xfivcc7g-nghttp3-1.2.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.6975272Z copying path '/nix/store/4d3k6g6sscr3xbpxybgwfrkx880kabas-libsndfile-1.2.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7115741Z copying path '/nix/store/925hihdxx9ybs57cxvh59flm8sxddimh-oniguruma-6.9.9-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7195415Z copying path '/nix/store/mdaawsi6fs91dr8dn2ygig1mpsddqrg3-openblas-0.3.27' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7245125Z copying path '/nix/store/28a8mqa7xax040vqk3hzyl174r8z7bpw-openexr-3.2.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7249354Z copying path '/nix/store/nzbzmzr7njbvajwk9xv59iyrg3r7q187-opencore-amr-0.1.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7315989Z copying path '/nix/store/0filj1ph0ddsc6bnhdhcjrqdvhvjdjiw-gnupg-2.4.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7369362Z copying path '/nix/store/5z1p38q7crvid944wrhmiiglvvald0j4-libX11-1.8.9' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7409258Z copying path '/nix/store/bwcshjy7xk875nw3qd0zch639bfc2v3v-libaom-3.9.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7550718Z copying path '/nix/store/iq1sblpaznf0z8g3izg690nc2d5xghnv-lttng-ust-2.13.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7605446Z copying path '/nix/store/7yqrkq8ff0s9xysk3kj2lf76wvyjk2wn-iptables-1.8.10' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7776029Z copying path '/nix/store/16y3mk7wpjxpkqd5nc0jh1k6rxk2pmyc-nettle-3.9.1-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7779634Z copying path '/nix/store/gsi7vwam9z972mxrmrvkw08l864lfwvr-libbs2b-3.1.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7782911Z copying path '/nix/store/bwxp1bkaa4cgz20mrk1hqm8azvv1skif-jq-1.7.1-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.7911671Z copying path '/nix/store/4lwqz5vrb0dn4r78zr8sd56bnkri0rag-openfec-1.4.2.9' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.8259442Z copying path '/nix/store/mfmhl6hdwp77gqkm734zip34pw53gfcm-openh264-2.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.8776925Z copying path '/nix/store/p8hw2h465g0byxwpamnk6gv6mp5gnqn2-openssl-3.0.14' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.8784047Z copying path '/nix/store/m3c894cml080iz9bbs18b8ci6b40yk59-opentofu-1.7.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.9385885Z copying path '/nix/store/r6v1j4l34i98fczx1pdjpy5jv67w4bwm-orc-0.4.39' from 'https://cache.nixos.org'... +2025-11-24T08:24:55.9924923Z copying path '/nix/store/3cbspxvq1fbgfp0wd9zvjbv14fn9aafm-aalib-1.4rc5' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.0137077Z copying path '/nix/store/mk838fcw7xqf597q6milpp400fq2wrb5-p11-kit-0.25.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.0341003Z copying path '/nix/store/jk99vx5dhv57zldl5j0id3n23igbj269-pcre2-10.43' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.0548621Z copying path '/nix/store/7iny0ax59ib0pgfgkcph49zxg8zym30w-pcsclite-2.1.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.0627636Z copying path '/nix/store/xylb1pgqnnd2qj9lsy1w2r9p8lmir8qs-jq-1.7.1-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.0805569Z copying path '/nix/store/9nn6ysg3jz7z1blskqysd27ximim8dqc-perl5.38.2-IO-Tty-1.17' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.0814684Z copying path '/nix/store/gv406dcs0265ydgc6nnjzhw8s3yl5bpa-pixman-0.43.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.1166950Z copying path '/nix/store/qhwavx7kpnazsmfdbbvvafs0vsnkn49p-pkg-config-0.29.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.1295105Z copying path '/nix/store/6qwg3xkr5b9j5hwjacn69652j769w1y7-popt-1.19' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.1407136Z copying path '/nix/store/gcrlngyxs3s7hvzha8aj5xfy3hcr90nn-qhull-2020.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.1688735Z copying path '/nix/store/a47zkhmy1lpql508q65vkxfm3c52hxhs-qrencode-4.1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.2404908Z copying path '/nix/store/ibc28k85i5va38ilqn44z9y7a174x9xs-libXcomposite-0.4.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.2603907Z copying path '/nix/store/298lasn37whh7042pbfz0jxp403pai76-libXext-1.3.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.2624969Z copying path '/nix/store/j3irb77rvrqsn57y88mjlppwsim5ldx4-libXfixes-6.0.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.2783089Z copying path '/nix/store/qa0w8kji1jrkw2a8baxnd49dczci9bf8-libXpm-3.5.17' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.2949015Z copying path '/nix/store/jk9x1h83240a9jdphqlyg6hvs07f43h9-aws-c-cal-0.6.12' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.3206353Z copying path '/nix/store/dyr7xzspc0z1ark0lc5ncxk676iqna42-blas-3' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.3591891Z copying path '/nix/store/svf1rly63z1wivpzm7q7d1xkb48pm3l2-cyrus-sasl-2.1.28' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.4914818Z copying path '/nix/store/0dna4dy4276xq9bfm6kapg56sb6xnmsp-less-643' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.4916656Z copying path '/nix/store/8nss7h1yk4jihkmr4xj5ihrbdkv4y1wy-gnugrep-3.11' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.4921295Z copying path '/nix/store/2ffppfzsjcp1q3bdxn96a2hqdlkijvr8-libXrender-0.9.11' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.4985207Z copying path '/nix/store/pxl1pq9wl45cwp3q787gq62rz9gl1g35-create-build-entry' from 'https://wire-server.cachix.org'... +2025-11-24T08:24:56.5010760Z copying path '/nix/store/5vgxahzhcvsxvgq6qjw4f09bnc07mq3c-libselinux-3.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.5025438Z copying path '/nix/store/8jg3rj9hffzsrfh3kd1jf4syjx6py4sg-libsrtp-2.6.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.5058466Z copying path '/nix/store/4z8r1xfr898z62dw8fz9fj2lzd0iq0wx-libdv-1.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.5665195Z copying path '/nix/store/38kw4yvj4v2irnwg47f9pkkq50wcldcz-lynx-2.9.0dev.12' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.5973749Z copying path '/nix/store/i6phx7d2fzzjrp9cq3y95ysqn85cj1y4-openssl-3.0.14-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.5981151Z copying path '/nix/store/wml2l9ga9iphp6v7af300g6s50xn2466-opusfile-0.12' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.5983876Z copying path '/nix/store/vsknwh2l5cxipfpz84gl3bd774k43g17-libXScrnSaver-1.2.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.7594439Z copying path '/nix/store/wlfigacigim7vsr0j9macqgzga40wi51-libXdamage-1.1.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.7597068Z copying path '/nix/store/r5j717nmw6yg894a885r3a9wb2kj8sk2-libXi-1.8.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.7678591Z copying path '/nix/store/d6w4gyllmnp26i2vjydylbz27x5mrbww-libXinerama-1.1.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.9219244Z copying path '/nix/store/s9qgv87lgzw1mgkvn17sj6vcdhvg8ir5-libXv-1.0.12' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.9267492Z copying path '/nix/store/l6cqv0aflnlvlshkxfchik6gnafqm24g-libXcursor-1.2.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.9296189Z copying path '/nix/store/acw4dh5a3dwbm5w8fdgiq9hxd7sd6a0v-libXrandr-1.5.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.9306244Z copying path '/nix/store/jscdp3lvxp32zp5v6isv041zzc763h6k-libXxf86vm-1.1.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.9519714Z copying path '/nix/store/6lzcb4zv3lysq4yjhmgi1dkc6fqrgphy-libglvnd-1.7.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.9523538Z copying path '/nix/store/n02ac8gfyvcrvfp70x8ycxsk2w6n5avl-libvdpau-1.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:56.9882065Z copying path '/nix/store/6ya2hs4s51k9sj3islgdnxx0nar66jzx-mjpegtools-2.2.1-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.0264580Z copying path '/nix/store/8sx26kvcn36kz7b3bimr9pdq2mc4ag0j-openldap-2.6.9' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.0269775Z copying path '/nix/store/vrpm28prnm6ahcmcl1y333xp40fn6bk6-perl5.38.2-IPC-Run-20231003.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.0479440Z copying path '/nix/store/dr2969ydf41s2i345dg751cabi9wnksn-pkg-config-wrapper-0.29.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.1827122Z copying path '/nix/store/yrml8d394c72yffxqwpm4wl4ycfha4wr-readline-8.2p1' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.1840730Z copying path '/nix/store/rafcl7sl3f9757z4m5hl7vaklppi8xkr-readline-8.2p10' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.1852468Z copying path '/nix/store/541wacdk2allzgpp1rddwa4im5j8ngn3-s2n-tls-1.4.12' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.1874012Z copying path '/nix/store/slyvajz7wkwgd663m6fh3gyig0c06ifk-sbc-2.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.2483147Z copying path '/nix/store/vl868md5gc199rcrfdc7cl4mi5kb9jq9-libXtst-1.2.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.2512593Z copying path '/nix/store/ncq52j271vqxarh5cs6ld7xxf5h05a8w-serd-0.30.16' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.2537519Z copying path '/nix/store/5s5d99s54qhd1mnkzzglg7zc6vfi1kji-snappy-1.2.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.2539293Z copying path '/nix/store/vwyx4y609p5b1ym0izimdlbmji26rz08-sops-3.8.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.2547686Z copying path '/nix/store/5zx4fbl0agr7nq6hxdmczkfw6dl36zmj-soundtouch-2.3.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.2628593Z copying path '/nix/store/rkv9qb6nalqqblsyi7x4fl86hzvalxij-soxr-0.1.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.2838240Z copying path '/nix/store/iiskn765hbwliw5jq6vbm288168b72y4-speex-1.2.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.3214516Z copying path '/nix/store/xc9l92rl3ndvhwi8a6yj01icn1d8vfp9-libGL-1.7.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4046856Z copying path '/nix/store/3yv2aq8wkgal8m9m2ibnngkzdvsav0x7-blas-3-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4050493Z copying path '/nix/store/xzlkv5dm0g3672n0iqiy145r5wjgsghy-speexdsp-1.2.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4142092Z copying path '/nix/store/rsy0dx70bpz0lbdcdp7b1nzxri272jcv-glu-9.0.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4257348Z copying path '/nix/store/g9h3w8nvry6ciwq6dbfiq4g0y2lmlsdd-libepoxy-1.5.10' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4282529Z copying path '/nix/store/yjwjwpm4az2b247w4wrrv9g8xkwn928x-tcl-8.6.13' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4287329Z copying path '/nix/store/9836si2b8mi0hw57x0nfaphxi4hjaz8p-srt-1.5.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4289141Z copying path '/nix/store/azc06066h201z880m78k002cgq02h5a1-systemd-minimal-libs-255.9' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4294814Z copying path '/nix/store/1vjc1n3v6zm010x5n8lby5mc8kds1v65-tremor-unstable-2018-03-16' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4298103Z copying path '/nix/store/b267yj2svrb24vsiaydc3ibs2g81278g-tcb-1.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4307880Z copying path '/nix/store/9qly1ip9gdwv6brf58hcil55lqhih8ab-svt-av1-2.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4342600Z copying path '/nix/store/kvxzigllixh8ami7d1wmgiyf2iym8yi8-twolame-2017-09-27' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4346336Z copying path '/nix/store/xd02d5pq9zlqizwjlxjbialw4lhccbjp-libshout-2.4.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4405957Z copying path '/nix/store/myr5cqynx2nh0x4f68pprg4jgps9ivcl-unbound-1.20.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4686383Z copying path '/nix/store/hix5711xrj6fwg23qs03w8w7zy29whfw-bash-interactive-5.2p32' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4745838Z copying path '/nix/store/kxf38s6127l98iwhwcjcclj8yy28k1p5-lua-5.2.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4755880Z copying path '/nix/store/hp6bg5zs7nzcc8al4i99lfbrvqs9f6rs-unixODBC-2.3.12' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4781172Z copying path '/nix/store/azaijwkx7y71a0wwylsznca97gfhl281-shadow-4.14.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4855802Z copying path '/nix/store/ixlnf1frsa2df5jjm82n0gs8h3wi6lby-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.4926475Z copying path '/nix/store/4jy677ypizvv6vnyn3j3nhzp7rg32a75-gnupg-1.4.23' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.5190748Z copying path '/nix/store/jgxc4mj836sfxzbyrk3p38ml162kr1gq-aws-c-io-0.14.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.5366850Z copying path '/nix/store/hh2gg2hcslfrgrszc7lxqb43i5lmalxq-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.5578698Z copying path '/nix/store/ipnndsw24ar8mvn2ib4hrcxphpl7v958-vault-1.16.2' from 'https://wire-server.cachix.org'... +2025-11-24T08:24:57.6005781Z copying path '/nix/store/82927nf2zj1h2skjdancji1i2dsnqc1g-libusb-1.0.27' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.6279461Z copying path '/nix/store/qgy3d8m6d6sz3anf1bvp80kbjaima2g5-apr-util-1.6.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.6286091Z copying path '/nix/store/w3iakl1f2p0b9rj1kbr7ilh69jhq6jgz-lvm2-2.03.23-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.6934510Z copying path '/nix/store/r7kg1hpd8i2qijkcr6ifqa3fz7xfdf17-v4l-utils-1.24.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.7223099Z copying path '/nix/store/hdypr3jgarr6n48w5mg5ai12s4kx8ma7-vo-aacenc-0.1.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.7416863Z copying path '/nix/store/191vrvkiswdkyqigjnynfv22mm98nrqx-vulkan-loader-1.3.283.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.7692175Z copying path '/nix/store/2r02maby1pwc1p04gjvpv2z0v488iksl-aws-c-event-stream-0.4.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.7959549Z copying path '/nix/store/rsgrkw4w2r9fbfc0f8xfgw6pvmff8apd-aws-c-http-0.8.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.8960749Z copying path '/nix/store/95lvnrimmgkn5l0k9iq2mh70hg7nkzi4-wavpack-5.7.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9140119Z copying path '/nix/store/aqc10czb2whr64agvcpihg96im5i7mi6-wayland-1.22.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9197875Z copying path '/nix/store/b0ws7iizbchnvkqnhv1nb8r1xx1jryp8-wildmidi.cfg' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9199801Z copying path '/nix/store/a115p1125g01r6vcmxcmw4iiif3d8pq3-webrtc-audio-processing-1.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9229874Z copying path '/nix/store/f4gg5ww5yz1qf48jsdq1qb5hga9j4y43-x264-0-unstable-2023-10-01-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9290371Z copying path '/nix/store/izsm29za8x8kbm0wl09hd6ghb1i9gzzy-x265-3.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9453643Z copying path '/nix/store/gb81wj5hpf0rg7gsgrx0yq71l5k40aci-xcb-util-0.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9586070Z copying path '/nix/store/8xvsv53s07hxqrycr9cd07sgw1vk93pr-wildmidi-0.4.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9587962Z copying path '/nix/store/wnnxni1b617a1w7ralb2i4b8ygqi6s38-xcb-util-keysyms-0.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9593613Z copying path '/nix/store/ih9fysqqf3d4ym0x5gs4i4smg40kilv2-xcb-util-wm-0.4.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9645090Z copying path '/nix/store/9880gzbdjhflab6g24gamxxy0hv4jv8m-xcb-util-renderutil-0.3.10' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9700626Z copying path '/nix/store/1hkh6d21k98x6ymzn6m43nadv8vqhagb-xvidcore-1.3.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9736049Z copying path '/nix/store/p1m1hbbfyvix5390xgslhq3d30zzhp7f-xz-5.4.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9752409Z copying path '/nix/store/9szvf186kqykdvy20h10958zk2rzngiy-aws-c-auth-0.7.18' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9805884Z copying path '/nix/store/c5qjis3cm0qsp5vcji0b2m1sfx5r5dsc-aws-c-mqtt-0.10.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:57.9956250Z copying path '/nix/store/12px4lqxdn2rd117lvw00l1c2yj916sz-xcb-util-image-0.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0117376Z copying path '/nix/store/fkxpblx53z0gbh5iripmciwwbcavp216-libSM-1.2.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0123621Z copying path '/nix/store/gv9sis616azky4gydszlqckiwbpqk5yn-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0165513Z copying path '/nix/store/87xgc04881wzdx7wnfn0d05gdx66jw73-cryptsetup-2.7.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0333833Z copying path '/nix/store/g9qxpv2q2bvr4g8ziay97baqniir3ksf-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0344247Z copying path '/nix/store/nk5ykhi1vy4wvn2b0gakhm189aypn60d-yq-go-4.44.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0440360Z copying path '/nix/store/j0jmblhsvp9np7n78a6zvdmsar6ls9i5-xcb-util-cursor-0.1.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0591316Z copying path '/nix/store/4xgqbqyg263kkf69mm2h792v9ahlsvj0-aws-c-s3-0.5.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0593492Z copying path '/nix/store/c1hff4nzawfkzvjmqn609pfdc3m3dk5z-zstd-1.5.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0595248Z copying path '/nix/store/zzqs9b81ihxdpwh9728zwsnpq1z5d5lv-zimg-3.0.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0609291Z copying path '/nix/store/xcsh72xshyawb0mqicf675ryffc13vjv-zix-0.4.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0621599Z copying path '/nix/store/6ghariqqf33l5xqn7alx58dys7kz2wm5-zlib-1.3.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0623626Z copying path '/nix/store/66aanq01bcmxzb4j9fj5j2slbbpr6n8r-libunwind-1.8.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0632924Z copying path '/nix/store/1h4vhcpa6nqln9x0w03dy5i1x97z8svc-xz-5.4.7-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.0670621Z copying path '/nix/store/nr9ypm2pi838cf2qrxrk8pwdc0alkx7f-zxing-cpp-2.2.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.1276927Z copying path '/nix/store/bhdbni2bwgiy88iyh07yq2pw9r9x4r4h-generate-gpg1-key' from 'https://wire-server.cachix.org'... +2025-11-24T08:24:58.2775222Z copying path '/nix/store/8c59a30a01x0rpp7w12yhn8iq9nj3zgb-sord-0.16.16' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.2844078Z copying path '/nix/store/yvxndkfdzpv3y7bq6ndxny0yhqnvs2h7-aws-crt-cpp-0.26.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.2932997Z copying path '/nix/store/sggw61w356qbggr7p22ndijhkw6nk6nc-libcaca-0.99.beta20' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.2941222Z copying path '/nix/store/1b4si7qr8f04lqpy5m7iis3w8jxhc2vq-file-5.45' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.2944534Z copying path '/nix/store/3c275grvmby79gqgnjych830sld6bziw-glib-2.80.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.2946289Z copying path '/nix/store/hqll9vi4g6krj2yfxc4vqndvsfssas7x-gnutls-3.8.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.2991410Z copying path '/nix/store/afmksdmk6b1zvg6i0arpn3q9xkzsnd9v-kexec-tools-2.0.28' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.3014159Z copying path '/nix/store/b2y89hps3wp9kni162477cnwn3v1s0vc-game-music-emu-0.6.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.3037950Z copying path '/nix/store/950jxlcd0zi3p0sjifs3v8i8y0nin140-cracklib-2.9.11' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.3114263Z copying path '/nix/store/71mk6wddlb93pwc36gw6qwssgf1xp0yn-libfido2-1.14.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.3175207Z copying path '/nix/store/10m6hxl5zxb1c3nbdnfgcmsyy49gw2rf-libpciaccess-0.18.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.3230727Z copying path '/nix/store/zh2fss3schzb6zxh1912ng9pqwg3g6ls-libmysofa-1.3.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.3349629Z copying path '/nix/store/xz6qa1y8a7nm544iqkh3nx9pgysnpl0j-libpng-apng-1.6.43' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.3606194Z copying path '/nix/store/w6zi8q7la3f5vpl9gl81b0dvfq4wj8p0-kmod-31' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.4025626Z copying path '/nix/store/vsfikrk5xcncbg89qx5a2n0jylkzx2cg-libdrm-2.4.120' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.4076572Z copying path '/nix/store/n9h67rrlpqq6lk7piw059ddxiydlfzbd-kmod-31-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.4236047Z copying path '/nix/store/n9a33c5kmnigl0m8dmpzbq0wziy69q69-libssh-0.10.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.4353970Z copying path '/nix/store/jcv2dm4lis9g72qh580am3sg1x9vl80b-libssh2-1.11.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.4725612Z copying path '/nix/store/ass5rpw3li6xxyjp0cykfx5l6yjcj400-libtiff-4.6.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.4896673Z copying path '/nix/store/ssy9mnlc9pfkdn6msnirki0yfji4nqjv-libxml2-2.12.9' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.5287630Z copying path '/nix/store/pycn43wvdlpfaxc1lw8n80bxdf7swx2v-minizip-1.3.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.5289009Z copying path '/nix/store/mdadnfhlp7m6778zhlmpbn9qy37xkrmh-perl-5.38.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.5474902Z copying path '/nix/store/j1vqg67pzqw44qnigcd3ra6kn5fr97cr-gnutls-3.8.5-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.5500008Z copying path '/nix/store/4gzp3wr5mi1k4fvlynci0y7n6qip0kkv-libmicrohttpd-0.9.77' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.5505244Z copying path '/nix/store/7cyfghd954nz098qwr6rj47h2kqnzh8h-rtmpdump-unstable-2021-02-19' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.6359553Z copying path '/nix/store/0pjc3s5k0zlc56xs2z0cmvq885zkij9h-sqlite-3.45.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.6384547Z copying path '/nix/store/b51xi5pl9l27xl6kdi5jp0z27lz1jijf-sratom-0.6.16' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.6398334Z copying path '/nix/store/0npkjmcmq2zjmwfr8n9qiphikhi0h27n-freetype-2.13.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.6520489Z copying path '/nix/store/5nymsx64wskcfmwszlzcq89xlzxvfh6g-taglib-1.13.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.6642823Z copying path '/nix/store/fv1plv85qylnw87dlnxaqkgl06drgr1r-curl-8.7.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.6673150Z copying path '/nix/store/66xxwyk14nyb0w92kblq2fvlyc80lajg-libva-2.21.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.6774841Z copying path '/nix/store/w96x630iywdwf7q161aphnli54szspwr-libva-minimal-2.21.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.7566089Z copying path '/nix/store/mdl97z9dp8dhjdim472qiqqwd94bhp0j-libwebp-1.4.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.7592261Z copying path '/nix/store/9i494hk4xxsp2adah2yi31537hr8bzdy-openjpeg-2.5.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.7605506Z copying path '/nix/store/kz63kc0l997568pqzrh5ibbfg3fb92nc-spandsp-0.0.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.7758915Z copying path '/nix/store/qk1lrb5a0drx0d4d8rc2xcx0ak0sg478-spandsp-3.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.7848112Z copying path '/nix/store/nb06pbh9j1b44ply234vvkaar1w3gvgi-dconf-0.40.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.7895704Z copying path '/nix/store/484qnnssg3n2md24vpxw3qk0dspkppsb-gdk-pixbuf-2.42.12' from 'https://cache.nixos.org'... +2025-11-24T08:24:58.7946081Z copying path '/nix/store/q1zjgn2pwl07vkgxgax0v453y40lxkyg-glib-2.80.2-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.0049590Z copying path '/nix/store/1hqv10fp1iyrjbrc02x2frchj89givpk-glibmm-2.66.7' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.0517120Z copying path '/nix/store/c3aszilvmbj96ln5a5mbhr80sr86nbvb-gnutls-3.8.5-dev' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2304044Z copying path '/nix/store/35kyrfkzrm1am5l91iz0srdp2wh8j1an-fontconfig-2.15.0-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2369290Z copying path '/nix/store/hxw38czbsfvnx1wl8vckv2b6k1rbmcpy-graphene-1.10.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2372490Z copying path '/nix/store/r467qyv4aamq2hg9xsq72vignslcrm5q-gts-0.7.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2415461Z copying path '/nix/store/wazdn869j9x8g36w1mvpcpicd7p97lpw-harfbuzz-8.4.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2788298Z copying path '/nix/store/fbkbkqb1cp46jwgk2lv6g28ik57r764i-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2790265Z copying path '/nix/store/i7avvg2mbw505cd6jx9k5admny6v9k8d-json-glib-1.8.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2819135Z copying path '/nix/store/jaapy8mk67cbflvmj7gjpylgahl0pj69-curl-8.7.1-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2838747Z copying path '/nix/store/9vr5awg1y41akmi295cbf025b8m1k054-aws-sdk-cpp-1.11.318' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2846589Z copying path '/nix/store/jsizfglsm40vsjc81xnm3wa0rxshpnz0-elfutils-0.191' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2885854Z copying path '/nix/store/pn7vakwcmzq4i7m4yjcjk4z9ylwx1mhr-libgudev-238' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.2955472Z copying path '/nix/store/bcy2747bv7g8hc10dx19plabi7gd4wgg-libical-3.0.18' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.3196939Z copying path '/nix/store/hka0v51svlrj0p8pfjv4q0jyif6blxiv-libproxy-0.5.6' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.4157627Z copying path '/nix/store/3jp4h3hmz4bqv3rrj439lpkzkmxqxdwi-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.4179751Z copying path '/nix/store/an0kn9gd4z0k4qr7mi9975fa2mqs9248-libsoup-2.74.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.4181504Z copying path '/nix/store/hw3hwpk0gmcmhajsjsvhxk2vn9h30bq7-libavif-1.0.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.4214394Z copying path '/nix/store/vwlfmr1i7idc0s32ay6r00wy4b8a4rx7-libsoup-3.4.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.4268267Z copying path '/nix/store/25c315nh12y4qsb7ajdmxirrzvixk0sz-libwacom-2.11.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.5605542Z copying path '/nix/store/vppn7lhz5ljvydmbdppibfjg6xrfh0vx-cairo-1.18.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.5707093Z copying path '/nix/store/jfp0nybgag72xd2y9i0z16m6w8hpj8n8-fontconfig-2.15.0-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.5736371Z copying path '/nix/store/p4brhgwc11hfk13vwad4ix5xr7vkavhx-libXft-2.3.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.5738330Z copying path '/nix/store/m4r9jmsvgv8k0vsb72vkq91667yjdf9h-libxkbcommon-1.7.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.5864566Z copying path '/nix/store/fvl7p1xahc21wmzyzri4c515fzgyx516-libxslt-1.1.39' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.5871168Z copying path '/nix/store/lgnp0aj260v73xfnp1cz236cg3lq2lzv-libxml++-3.0.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.6024670Z copying path '/nix/store/xs3gk42g7dlsndzwgx72c71h76clzfsv-libbpf-1.4.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.6314961Z copying path '/nix/store/2433idnxmkvd2xl7qgvn7gxi46jz072j-lilv-0.24.24' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.6847160Z copying path '/nix/store/jwwrmilpbv6fbpvhf9mhwa79fgwh8l92-mariadb-connector-c-3.3.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.6879553Z copying path '/nix/store/xy1iyna81kvjvpv3mhfpqr3vfh4p1kkl-libass-0.17.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.6881340Z copying path '/nix/store/21fbki69x6a50az3pzdf99s17y4izzki-neon-0.32.5' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7005312Z copying path '/nix/store/l9xhiy5wqs3cflxsfhxk0isbjv96rhd1-nix-2.18.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7011054Z copying path '/nix/store/5fhcjl8ygadpn1vmmcv94y5xdj87ijvg-ffado-2.4.8' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7013201Z copying path '/nix/store/rsxw8yx21701xp3x6n0yfg517k29s2qf-postgresql-15.10-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7015070Z copying path '/nix/store/s0p1kr5mvs0j42dq5r08kgqbi0k028f2-python3-3.11.10' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7084042Z copying path '/nix/store/33l0xjnbva59rpq8v8msj14zws7867kr-libinput-1.25.0' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7099905Z copying path '/nix/store/z7hrcpmiv2kxcmwmsh430w6kikpgfl3l-gd-2.3.3' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7182981Z copying path '/nix/store/kbxpqmqbwq38rjiak7m7q5vp10h81l39-raptor2-unstable-2022-06-06' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7186150Z copying path '/nix/store/66brm5ms6jb8ayp23j39k68kvfdjgbra-gssdp-1.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7499249Z copying path '/nix/store/lih83v9dmk1kd665aq901dsrq97wyqdx-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7576288Z copying path '/nix/store/fhfza8gyfnrqn3q605w5cw327gn0hz5s-gobject-introspection-1.80.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7679485Z copying path '/nix/store/45alyjrs2xflv0fyy08ng2qy62klrash-pango-1.52.2' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7872073Z copying path '/nix/store/2p4grjy2h8zl1mn6bsmqjphnxmign8id-tk-8.6.13' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.7881680Z copying path '/nix/store/ymabnglmak4mdqfm7gis35j0glikxh0w-gupnp-1.4.4' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.8405059Z copying path '/nix/store/aj3rs5lixcbvja00ypfbfy1ynqg3krk5-ffmpeg-headless-6.1.2-lib' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.8407485Z copying path '/nix/store/x73z9aq2iqzhwcvlxvs3y8mxqdkj93rx-apache-httpd-2.4.62' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.8590346Z copying path '/nix/store/2zz1kvy3hx3ly067s9266ijnxnda682w-moreutils-0.69' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.8705575Z copying path '/nix/store/ihjg8v8902jly2i3xnbj3714i135pqf4-tpm2-tss-4.1.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.9841477Z copying path '/nix/store/c0jdcx8v5dw4p4bgwg4ql03r41m47jll-lrdf-0.6.1' from 'https://cache.nixos.org'... +2025-11-24T08:24:59.9885362Z copying path '/nix/store/k1rc6g2c6vammbwi963vvh28rgvbv6c4-util-linux-minimal-2.39.4-bin' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.0037145Z copying path '/nix/store/3ba19yig9wyh44wyz5xqj1a26nlq2j0w-wireshark-cli-4.2.8' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.0064116Z copying path '/nix/store/in5f9jxkky4xnhb9nvwxs70x0pdlr7gh-gupnp-igd-1.2.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.0270204Z copying path '/nix/store/i44dhfrwi3qaz3f8xkxiva6zqkq3f65v-zlib-1.3.1-dev' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.0360104Z copying path '/nix/store/5jnr7m8y3gkd9559mf14sw43fb2s5w0m-gnuplot-6.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.0482777Z copying path '/nix/store/y21ngpz8djf6429rjml06pwwfibr0d87-graphviz-10.0.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.2274413Z copying path '/nix/store/z9s16g5zsywlnlv07gfg9qwkqvisrbk7-librsvg-2.58.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.2846687Z copying path '/nix/store/g7kjsdrig65ykzi0056abrb84dxm1mqv-zstd-1.5.6-bin' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.3187205Z copying path '/nix/store/6l271354hyg3q634vfwgwrsq6x7r965g-niv-0.2.22-bin' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.4007514Z copying path '/nix/store/vl4mvms46802yzsj59h314wf7l26gilw-gnupg-2.4.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.7131698Z copying path '/nix/store/mgrsh2jnmxwv384q810fkgm2bzp3fwvz-kbd-2.6.4' from 'https://cache.nixos.org'... +2025-11-24T08:25:00.7288100Z copying path '/nix/store/19ia8qwxsk5hn0jhmpxlggg29jan2kk3-fuse-3.16.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:01.0296436Z copying path '/nix/store/4i19nk1w31wr6fnwy2crzvyxdjzsmm25-fuse-overlayfs-1.13' from 'https://cache.nixos.org'... +2025-11-24T08:25:01.1350188Z copying path '/nix/store/c0nwsn94zwz38jmx533k3w5msd9qnwg5-helm-secrets-4.6.0' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:01.2269502Z copying path '/nix/store/f77zp1fs5gblzrhz96mpicrqzb09r555-systemd-minimal-255.9' from 'https://cache.nixos.org'... +2025-11-24T08:25:01.2275104Z copying path '/nix/store/rhq3rwyghbqq4lnkmdf4vsrazr2aa5a7-systemd-255.9' from 'https://cache.nixos.org'... +2025-11-24T08:25:01.2939432Z copying path '/nix/store/64h8qw6865mkmws9jswhg7z5kq6rsrzw-gnupg1compat-2.4.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:01.2952163Z copying path '/nix/store/f8nqqxv0nzvwfwxyirf2k5y96y0g64zs-aptly-1.5.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:01.2957050Z copying path '/nix/store/0yrrqjkh0qj51wyaghwqzx0gc0l6lf5a-gpgme-1.23.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:01.6984463Z copying path '/nix/store/24794mg7xgg2d6lra3ac2asw20vs39sw-helm-plugins' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:01.8877340Z copying path '/nix/store/igsld4sykvr6zn07jwhabza978jbiymv-skopeo-1.15.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:01.9240286Z copying path '/nix/store/mrfhd1z4dq1yn535pnn3j6ih70lbgxv9-helm-3.15.0' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:02.2549046Z copying path '/nix/store/l3di8ckamifz9kkv38i3krrr7iyczaab-list-helm-containers' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:02.3648771Z copying path '/nix/store/c1pvi36v9d02by7s9fcx204qg3ic9xgh-dbus-1.14.10-lib' from 'https://cache.nixos.org'... +2025-11-24T08:25:02.6035908Z copying path '/nix/store/j6rmgmg38fr1iglrf1qrsvi5sasz1mpr-mirror-apt-jammy' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:02.9587455Z copying path '/nix/store/79pgx9z1bylfrilpbrmscn7gafydnfv5-bluez-5.75' from 'https://cache.nixos.org'... +2025-11-24T08:25:02.9589538Z copying path '/nix/store/am54j7wy47l77ssr2q84sr9xzmfi9n5l-at-spi2-core-2.52.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:02.9592268Z copying path '/nix/store/i4rg4244x7fqvsbh6qbx848lfrhy3x3c-dbus-1.14.10' from 'https://cache.nixos.org'... +2025-11-24T08:25:02.9597360Z copying path '/nix/store/26s529dd6j0dsl4z360zl5czr7kkf2s6-avahi-0.8' from 'https://cache.nixos.org'... +2025-11-24T08:25:02.9605304Z copying path '/nix/store/6k5ldmkp36y02gbk2qm83sfab4mh6mrj-libjack2-1.9.22' from 'https://cache.nixos.org'... +2025-11-24T08:25:02.9607103Z copying path '/nix/store/3xkb74fkjrj00ivfxmzmx41d9ag889bg-libpulseaudio-17.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.3704508Z copying path '/nix/store/crk54hd03zf54g50441z386blj47rqbw-create-container-dump' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:03.3706818Z copying path '/nix/store/fmi1wn75kn5dlay0njwfa965b6lyjgw5-nix-prefetch-docker' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.4473362Z copying path '/nix/store/dvrxm99hwicvwf8mg4b0gx6kpd6qxvdk-dbus-1.14.10-dev' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.4936888Z copying path '/nix/store/aykqqwb1xmv2hfmswv7fgmlij28my0q0-cups-2.4.8-lib' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.4942087Z copying path '/nix/store/58n0pnldj7w7szplmgaxjz6ycvff19rh-tracker-3.7.3' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5576607Z copying path '/nix/store/ipwigvayp8b69rq24zkb4wfhix4a16zr-SDL-1.2.15' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5598646Z copying path '/nix/store/4n9b0fwpzs9anb2ga0v7r1dsdix4k0jq-flite-2.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5675797Z copying path '/nix/store/xcbcbhk8zimngwiafywap158qjiwv9sk-fluidsynth-2.3.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5679625Z copying path '/nix/store/jxzfajll1sk4pyhpnyfd35y7vh3w8c1g-libao-1.2.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5702584Z copying path '/nix/store/ss1mxd1xaajzkryys2nhjxri7bm4zlf5-gstreamer-1.24.10' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5706862Z copying path '/nix/store/ibjg6c4n6snpj4jcirkxxy8bixphq0pa-python3.11-appdirs-1.4.4' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5713744Z copying path '/nix/store/1x447rf8y43bs2w9rhad8dw09rj98v6s-python3.11-ansible-pylibssh-1.1.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5715862Z copying path '/nix/store/lzw7mb26a78av1mak89kys985h3v033p-python3.11-awscrt-0.20.9' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5717939Z copying path '/nix/store/dqy4qig88gc2kx8lj35xx3vhy9imi0v2-python3.11-attrs-23.2.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.5719755Z copying path '/nix/store/hixcpq22ik94b0wfs0xng4r4q18pi687-mpg123-1.32.9' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.6447804Z copying path '/nix/store/2lkwl19dmy90zfazaq40khbmh2fdqz75-python3.11-bcdoc-0.16.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.6941190Z copying path '/nix/store/g4ls15szfimvi8pinpizlp5d2zbd887b-python3.11-bcrypt-4.1.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.6974700Z copying path '/nix/store/jf4p4n3gq44pvaxpfizvaq1nanbs5n96-python3.11-brotli-1.1.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.7254313Z copying path '/nix/store/hdn2gb5xa3amcpn4g90hscplwbnk56bz-gtk+3-3.24.43' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.7987292Z copying path '/nix/store/1nk7nm700qa1c7zmsvs077v6h7d8ssx9-python3.11-certifi-2024.02.02' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.8013766Z copying path '/nix/store/nknn7vcyaf982lv13zi1p15q3x02wm82-python3.11-charset-normalizer-3.3.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.8850643Z copying path '/nix/store/5kac9hw6x00l883wa4371da27na10mdv-directfb-1.7.7' from 'https://cache.nixos.org'... +2025-11-24T08:25:03.9004122Z copying path '/nix/store/c9b2c5gakdnqakspr3phy0ld4b9p93z5-python3.11-click-8.1.7' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.1015273Z copying path '/nix/store/4vyv8rg50k6sz8hfnj7qj771abcnjkbf-python3.11-colorama-0.4.6' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.1060585Z copying path '/nix/store/agc5rqsjl4k52ywmrq39sahyg3gsqx5z-python3.11-configparser-6.0.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.1075192Z copying path '/nix/store/acrn3dsrwhmjblghgs4dj0pg272vs9mj-python3.11-distro-1.9.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.1077867Z copying path '/nix/store/b4j4n3sk20ra940lw04cr2v9r915q9pi-python3.11-cycler-0.12.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.1114414Z copying path '/nix/store/wckh5hrr8va8sx714lwjbkg1cg2ijzmi-python3.11-defusedxml-0.7.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.1267183Z copying path '/nix/store/d72g65ck8hym47pk33qj81bigx8aj33b-libopenmpt-0.7.9' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.1379923Z copying path '/nix/store/j6jn7ba5mkjf5p21zfyj4rc2mxzajd3x-python3.11-docutils-0.21.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.1645966Z copying path '/nix/store/mgk6k7yaysrqpgm66aljjikdp35wzi2f-python3.11-elementpath-4.4.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.2217274Z copying path '/nix/store/mn2ccb2xmjbjr94kq6hb5f4nwl94vdvw-python3.11-et-xmlfile-1.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.2490406Z copying path '/nix/store/vjbnls7fds0dn0dpbrql2ll64x1g3lc8-gst-plugins-base-1.24.10' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.3230699Z copying path '/nix/store/03b059n120bjy9czjkfhckyy16vxcff4-libcanberra-0.30' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.3273778Z copying path '/nix/store/iq8a89wf8y9qbzj6z374b83v6z30kz5a-libnice-0.1.22' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.4169548Z copying path '/nix/store/5hn9mx5nmhfsglx8x61yn3r0kvxjrqm7-python3.11-fonttools-4.51.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.6641741Z copying path '/nix/store/3q0jknp16h3jn44751dh19hsvk1igazx-python3.11-frozenlist-1.4.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.6644106Z copying path '/nix/store/gdd5rv6qvww712khiklk4jibp79ra8wl-python3.11-future-1.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.6674870Z copying path '/nix/store/adhq1qdhlbasy8cbbcg5bd0s9lsrqxnr-python3.11-idna-3.7' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.6804322Z copying path '/nix/store/19132c15q1fma85mmzqly21kmpk1x1ka-python3.11-jmespath-1.0.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.6863037Z copying path '/nix/store/r1w71f7h4qv1kann93nh461mbh8wjfnl-python3.11-kiwisolver-1.4.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.6868401Z copying path '/nix/store/ldivr42wg9qa3z4jy4xka9ayfxnvgxcn-python3.11-lxml-5.1.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.8121203Z copying path '/nix/store/d0xn2r1x1904pdvbv1j52g2xi2h2m589-python3.11-markupsafe-2.1.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.9636416Z copying path '/nix/store/0sp1psidkajzrp2xpci18sfhy3gaclcw-python3.11-maxminddb-2.6.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.9658256Z copying path '/nix/store/jspq5y3k8fbj22h6mngcca8cvihym60w-python3.11-aiosignal-1.3.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.9660365Z copying path '/nix/store/nijbfdbdhpch630cjk5vcmjj8ji0xqsx-python3.11-netaddr-1.2.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:04.9664288Z copying path '/nix/store/glynd0r4a83bvh4np68bns6pgf6m7238-python3.11-multidict-6.0.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.0534284Z copying path '/nix/store/5yyizx1n2586v6k2jip2w1hw5qr5k78y-python3.11-numpy-1.26.4' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.0624820Z copying path '/nix/store/p270n0ac6dln5nnxz5mndqziw2mphvd3-python3.11-olefile-0.47' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.0736804Z copying path '/nix/store/4zil6nfl9fr9rjw7kswy6ymf6jp2mbys-python3.11-openpyxl-3.1.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.1038104Z copying path '/nix/store/g3x1fjwa1bdnzb3mcby713ygvswl763x-python3.11-ordered-set-4.1.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.1293294Z copying path '/nix/store/gb03knn5wp9ja25vki55vd32x4rxhs0x-python3.11-orjson-3.10.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.1295384Z copying path '/nix/store/dkphwn70lhdmazrl4zdnj63gy0yw4qfj-python3.11-packaging-24.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.1321743Z copying path '/nix/store/a8mlb0kbbqysshbyxfkqgrkbn2vp049l-python3.11-jinja2-3.1.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.1400178Z copying path '/nix/store/bhm6c6slxs1jf4dcki1kr2znjwl7vg6p-python3.11-passlib-1.7.4' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.1410774Z copying path '/nix/store/xxyix63xkfs3xsm3nrvs7z4xzijmqryc-python3.11-pillow-10.3.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.1666406Z copying path '/nix/store/gcvwz821dqndjvssi82vkg5j8df6ix1j-python3.11-poetry-core-1.9.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.2337462Z copying path '/nix/store/iicn1k28l5a3fqbsbl5xfh0nzah19djm-python3.11-psutil-5.9.8' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.2840800Z copying path '/nix/store/3kri9vcnscsrwpx1gyisycikf2cnyxbb-python3.11-ptyprocess-0.7.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.2904073Z copying path '/nix/store/warlq6qs5s6q2s6xj7b3dsba70x3aq0c-gst-libav-1.24.10' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.3390300Z copying path '/nix/store/clx6j1x1dhi3bnj41cbsnggxisaz8sir-gst-plugins-good-1.24.10' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.3991013Z copying path '/nix/store/0y447vkbnzkdm714dnfwmxa37lfxqj81-libcamera-0.2.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.4180182Z copying path '/nix/store/3abb189d4igphsd7dj9iykmvz2wp0lif-libdecor-0.2.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.5409898Z copying path '/nix/store/2jjil1lrarm7sdj53wa8ri7lq2pk09yr-python3.11-jxmlease-1.0.3' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.5420315Z copying path '/nix/store/hd285sw3n0vgnm5z2naf1z6518yz3071-python3.11-py-1.11.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.5791842Z copying path '/nix/store/0rxqk46midfpng871sqwm9wfq1r51qzn-python3.11-pyasn1-0.6.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.6673813Z copying path '/nix/store/hif151ccxw4yq0bshn36wb53z5rq0k91-python3.11-pycparser-2.22' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.6776116Z copying path '/nix/store/yb31qbgf96qysi6a0xs0fv9bcq1fyjqx-python3.11-pexpect-4.9.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.6812308Z copying path '/nix/store/2j0fjyjkl5l3b1rslif0p2gjapgvig0n-python3.11-pycryptodome-3.20.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.7176162Z copying path '/nix/store/xq2isr2v4jlwjpmv9z8nd2vsys060kqf-glib-2.80.2-dev' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.7424904Z copying path '/nix/store/3mvrj72xmxxkln74dpx75nnycn2v5wpm-python3.11-pyparsing-3.1.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.7774122Z copying path '/nix/store/b01lghv79qpiz96zdifyi8hiix798c0g-python3.11-pyserial-3.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.7853379Z copying path '/nix/store/mw95cn98zv3q2s43382x066zhh3kvq7h-python3.11-pyyaml-6.0.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.8016035Z copying path '/nix/store/hc04777l1g4n6s2h4vp5dn49dxdg3pk2-python3.11-resolvelib-1.0.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.8018771Z copying path '/nix/store/iy60xppafv2mq4mdrjkaavpyiw3lavah-python3.11-rpds-py-0.17.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.8501571Z copying path '/nix/store/wk70gs18myaldgap2vjm0n7p1r3js0dh-python3.11-deepdiff-6.7.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.8519048Z copying path '/nix/store/pjh9mrhs2mlgy6z3wwbwy5jks2yxkgqf-python3.11-ruamel-base-1.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.8571352Z copying path '/nix/store/d4g6qjk1j8x3ir8ypsdrgyxw36hhsg09-python3.11-setuptools-69.5.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.8606191Z copying path '/nix/store/lrgiqzn4w85xld40ka0pvwsdl5608vw1-python3.11-ruamel-yaml-clib-0.2.7' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.8666995Z copying path '/nix/store/739k8d7canirs7pxhhyn7c4wgijdg8l7-python3.11-six-1.16.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.8685287Z copying path '/nix/store/jdh1q15l9bgvyn0qwghkb461k3wxxd97-python3.11-tabulate-0.9.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9008040Z copying path '/nix/store/d02k3l4gpwmah8gf4jbjdrv7vg505cc1-python3.11-termcolor-2.4.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9117623Z copying path '/nix/store/c2f2klzcyad5gbgg74632spacdna7a8k-python3.11-tkinter-3.11.10' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9254663Z copying path '/nix/store/fnw7g76rmwnicy2a72isa6kmdpmmn1vj-python3.11-junit-xml-1.9' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9271737Z copying path '/nix/store/23d61nnrgf4n4a0dnr32gv0mpkf0h0lv-python3.11-python-dateutil-2.8.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9288975Z copying path '/nix/store/qfrngq5f1mywvwqw5hnzfywd9w1smbnz-python3.11-python-dateutil-2.9.0.post0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9326152Z copying path '/nix/store/74s9dw7ksnmlkwypk69hs01w5j4lc569-python3.11-cffi-1.16.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9356109Z copying path '/nix/store/47429mwg02qfk6fc3zxq09cl5a1194pn-python3.11-referencing-0.34.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9409422Z copying path '/nix/store/dyvj8cwfrjgjaxxkj2zrxws4qm9piwsl-python3.11-textfsm-1.1.3' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9426219Z copying path '/nix/store/18yiwdazlwkndhqlg3zp0m2zf20qhxzw-python3.11-typing-extensions-4.11.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9435323Z copying path '/nix/store/gjw08v4xpvs3mslqdwdvwfj3hqdvjpl2-python3.11-ruamel-yaml-0.18.6' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9562508Z copying path '/nix/store/glkkwb0lzdf40a7828j0wa3ab65nh4l6-python3.11-urllib3-2.2.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9615301Z copying path '/nix/store/w1wxyra2cbpfzbl134fablnzmvv2s98h-python3.11-urllib3-1.26.18' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9831374Z copying path '/nix/store/nhbsgg6j1nd747r2410nvsz98s1xa3ac-python3.11-wcwidth-0.2.13' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9977032Z copying path '/nix/store/6m8wv5c2r6hlyg3848nmbkly7zx4bp81-python3.11-async-timeout-4.0.3' from 'https://cache.nixos.org'... +2025-11-24T08:25:05.9979735Z copying path '/nix/store/kyvaa6038fvh70wmb6dafphdy64phwqr-python3.11-xmltodict-0.13.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0071408Z copying path '/nix/store/8ginfdrqzxq2xhv3mcdmp6rj4s7q8qar-python3.11-jsonschema-specifications-2023.12.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0085850Z copying path '/nix/store/bnr11wfr6inwb7dhcc24g085y5w4088j-python3.11-yarl-1.9.4' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0200987Z copying path '/nix/store/jz42kg5j7i4nkk968nsqxp8mcfsxg2j8-qtbase-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0280623Z copying path '/nix/store/igif2w5949flbj5j3dqmgh6xjm7fj9qv-python3.11-ntc-templates-4.4.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0336947Z copying path '/nix/store/4m7rpgfp12qgslzbw17badzybzhh0vss-sox-unstable-2021-05-09-lib' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0371261Z copying path '/nix/store/2vsiqam9g9nx1g0icfwsqqrfkcrggbyq-python3.11-prompt-toolkit-3.0.43' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0376274Z copying path '/nix/store/i5vfc651q58m2ni0v41jfmizb2cf65ps-python3.11-jsonschema-4.21.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0872617Z copying path '/nix/store/n4zlr84jxb49dxkhdr1vvcdq89d88n7d-python3.11-brotlicffi-1.1.0.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0875026Z copying path '/nix/store/bqh6p3pb0larlzxv4kcak10lrcl0is2g-python3.11-botocore-1.34.87' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0877161Z copying path '/nix/store/7jnfmks5w5dgz2igpr4cag6p4j46vfyi-python3.11-cryptography-42.0.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.0946019Z copying path '/nix/store/7pgjxq3qpqypmdax6wasvzdd5vbx200p-python3.11-pycares-4.4.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.1079805Z copying path '/nix/store/k3ifaazz09vbb1kbcxg3p7l71zd3iypr-python3.11-botocore-1.34.87' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.1147792Z copying path '/nix/store/cbjs14f3fwqzcjbawa3j980z96bfi1j2-python3.11-pynacl-1.5.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.1149819Z copying path '/nix/store/4i17d3s0khq8psc9h4kx4yxkzf0rwrf7-roc-toolkit-0.3.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.2681967Z copying path '/nix/store/7igc74nhll3nsyxzb7yg7fajs3dhhzsm-python3.11-pycrypto-3.20.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.2764772Z copying path '/nix/store/7kb58pc7vb0svbzqcs72mq4hv1jl0lfg-python3.11-contourpy-1.2.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.2816067Z copying path '/nix/store/1b8lnibgkaaclzs0a88h99z21m9b3mri-wireshark-cli-4.2.8-dev' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.2946550Z copying path '/nix/store/bcdyrxykwil83yfy12apxwxig1khyky3-python3.11-cerberus-1.3.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.2947824Z copying path '/nix/store/rn3zszzcrqiqdkmnh276fpqxrzmi9p2q-python3.11-yangson-1.5.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.6906401Z copying path '/nix/store/d7kgb4kwyq1v6v4hgijwvab397h050ib-python3.11-requests-2.31.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.6986616Z copying path '/nix/store/9yh3jkmkx04rw9j0k6sdnf00n9i67arp-python3.11-aiodns-3.2.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.8693147Z copying path '/nix/store/siad80zvk177vzqc8ykzp8xj9cr6j0db-python3.11-matplotlib-3.8.4' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.9042342Z copying path '/nix/store/i5cq7lcc4xziddyk4dbjnj62mvndnvhb-python3.11-paramiko-3.4.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:06.9328007Z copying path '/nix/store/3lix6srcn4i99gdxbwmgf4rsxg78i9r9-pipewire-1.0.9' from 'https://cache.nixos.org'... +2025-11-24T08:25:07.1714846Z copying path '/nix/store/rk675ihaz563jvfnabw1px0mdcmz23bg-python3.11-pyshark-0.6' from 'https://cache.nixos.org'... +2025-11-24T08:25:07.3787553Z copying path '/nix/store/7v3brfiljp0cx7yp6s0va8rwi5cn3pvz-python3.11-aiohttp-3.9.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:07.7007722Z copying path '/nix/store/qx2czf60f0r5awy5jlrgc1d1dngbkapv-python3.11-ncclient-0.6.15' from 'https://cache.nixos.org'... +2025-11-24T08:25:07.7009945Z copying path '/nix/store/lamn5scbjgwq2n9qg1ai2kvyjvw6kjd2-awscli2-2.15.43' from 'https://cache.nixos.org'... +2025-11-24T08:25:07.7011955Z copying path '/nix/store/3d3mwc3i8gcw7chv5ksf1icfs6nz0r40-python3.11-scp-0.14.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:07.9246658Z copying path '/nix/store/rbr2xn0qjw8xl7vgmwssy3y2xsn250c9-SDL2-2.30.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:07.9254782Z copying path '/nix/store/z6ar801axm9vcxqmkvwfqmg51vwgj7hw-openal-soft-1.23.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.0064788Z copying path '/nix/store/bwmaj4f9s7xyc3z88lcz12wi80pha5wm-python3.11-s3transfer-0.10.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.0838115Z copying path '/nix/store/s19242qlqm08kk7ihnay8anpcrnfhslc-qtlanguageserver-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.0842289Z copying path '/nix/store/fs4yrpbzh3znk63vsh03jmxc3fkxlpvz-qtshadertools-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.0844523Z copying path '/nix/store/asawim4b8sb0dxndxywln4fhxc7w9cpa-qtsvg-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.0846273Z copying path '/nix/store/p6xbq5nvlmgp9w2xwphp7ayf74a5ip5c-python3.11-geoip2-4.8.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.4015337Z copying path '/nix/store/i393zgdy9dm3jlri8dv29p8jrbdm9g50-python3.11-netmiko-4.3.0' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.7181877Z copying path '/nix/store/24c8m4saz1k6c6qd428n3wbwmz1q2ipa-python3.11-boto3-1.34.58' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.7570989Z copying path '/nix/store/m6j2adssvl3fchxhr7qycz0jby2bb87n-qtdeclarative-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.7736164Z copying path '/nix/store/995bvqfapid0yzx0jnqaq8l89pp2hd6w-ffmpeg-6.1.2-lib' from 'https://cache.nixos.org'... +2025-11-24T08:25:08.8902605Z copying path '/nix/store/xk3h01xmv8zbbvxgrlw4g3mdjd2b2a2y-python3.11-ttp-0.9.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:09.1908565Z copying path '/nix/store/cjpsg9jpxys91x4plnais8v6sklpqzp9-python3.11-ansible-9.5.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:09.7110625Z copying path '/nix/store/9qm1fssgi7s1sw397y4mdf0w2ii33sn0-chromaprint-1.5.1' from 'https://cache.nixos.org'... +2025-11-24T08:25:10.6892163Z copying path '/nix/store/96jf0b3vnx0z05a4ny8z0sp1hws6gmcf-gst-plugins-bad-1.24.10' from 'https://cache.nixos.org'... +2025-11-24T08:25:11.5392426Z copying path '/nix/store/d0isvsqa3bh3lk8pmz3frjkq9ry7fmq1-qt5compat-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:11.5394622Z copying path '/nix/store/k79dvlj19fvcyylp0gy9ww5vyg7flcqg-qtquick3d-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:11.5396505Z copying path '/nix/store/amjqsmg6fqjmbkxqs1phxk05hj7zs0dn-qtwayland-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:11.5398496Z copying path '/nix/store/fm0i918nrvqwg4zsrc8wzjbkaxskgpxw-qttools-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:11.8818469Z copying path '/nix/store/g2ym73n8p60pmz31i2cjzzc2maxsjnr2-gstreamer-vaapi-1.24.10' from 'https://cache.nixos.org'... +2025-11-24T08:25:12.9209308Z copying path '/nix/store/ff17xx8xcdff3lpljz0j67nggz0afs5l-qtmultimedia-6.7.2' from 'https://cache.nixos.org'... +2025-11-24T08:25:13.6106917Z copying path '/nix/store/7f6amjb8sj237q13bkbl9yi18g8jvvym-wireshark-qt-4.2.8' from 'https://cache.nixos.org'... +2025-11-24T08:25:15.5435789Z copying path '/nix/store/7ic5w44dss0x88lx4r4c7k18z064jxc1-python3.11-ansible-core-2.16.5' from 'https://cache.nixos.org'... +2025-11-24T08:25:16.3205043Z copying path '/nix/store/yqjvmy66v82yc5zzp8nkrx6cc470nq5v-python3-3.11.10-env' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:16.7860581Z copying path '/nix/store/bbh6750da4dmnbizgwzh5q2g5z6njd81-wire-server-deploy' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:17.8498133Z copying path '/nix/store/4yxpbgsy6amj1ba860w52rhzqcvy2rw8-user-environment' from 'https://wire-server.cachix.org'... +2025-11-24T08:25:18.0951737Z ##[group]Run echo "UPLOAD_NAME=$GITHUB_SHA" >> $GITHUB_OUTPUT +2025-11-24T08:25:18.0952455Z echo "UPLOAD_NAME=$GITHUB_SHA" >> $GITHUB_OUTPUT +2025-11-24T08:25:18.1020099Z shell: /usr/bin/bash -e {0} +2025-11-24T08:25:18.1020858Z env: +2025-11-24T08:25:18.1021548Z TMPDIR: /home/runner/work/_temp +2025-11-24T08:25:18.1023261Z CACHIX_SIGNING_KEY: *** +2025-11-24T08:25:18.1024556Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf +2025-11-24T08:25:18.1026000Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ +2025-11-24T08:25:18.1026928Z ##[endgroup] +2025-11-24T08:25:18.1211315Z ##[group]Run ./offline/default-build/build.sh +2025-11-24T08:25:18.1211907Z ./offline/default-build/build.sh +2025-11-24T08:25:18.1265116Z shell: /usr/bin/bash -e {0} +2025-11-24T08:25:18.1265571Z env: +2025-11-24T08:25:18.1265968Z TMPDIR: /home/runner/work/_temp +2025-11-24T08:25:18.1266856Z CACHIX_SIGNING_KEY: *** +2025-11-24T08:25:18.1267965Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf +2025-11-24T08:25:18.1268826Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ +2025-11-24T08:25:18.1286688Z GPG_PRIVATE_KEY: *** +2025-11-24T08:25:18.1287394Z DOCKER_LOGIN: *** +2025-11-24T08:25:18.1287807Z ##[endgroup] +2025-11-24T08:25:18.1610231Z Pulling Helm charts in /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output +2025-11-24T08:25:18.1647085Z Excluding following charts from the release: [ +2025-11-24T08:25:18.1647647Z "inbucket", +2025-11-24T08:25:18.1648178Z "wire-server-enterprise", +2025-11-24T08:25:18.1648629Z "postgresql" +2025-11-24T08:25:18.1649077Z ] +2025-11-24T08:25:18.1653481Z Pulling charts into /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts ... +2025-11-24T08:25:18.1709587Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-11-24T08:25:18.1710725Z Dload Upload Total Spent Left Speed +2025-11-24T08:25:18.1711336Z +2025-11-24T08:25:18.2650063Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-11-24T08:25:18.2651292Z 100 15272 100 15272 0 0 158k 0 --:--:-- --:--:-- --:--:-- 158k +2025-11-24T08:25:18.2673609Z account-pages https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-webapp 0.9.0-pre.1 +2025-11-24T08:25:19.2625744Z "repo_1" has been added to your repositories +2025-11-24T08:25:19.3028477Z Hang tight while we grab the latest from your chart repositories... +2025-11-24T08:25:20.1951119Z ...Successfully got an update from the "repo_1" chart repository +2025-11-24T08:25:20.1952138Z Update Complete. ⎈Happy Helming!⎈ +2025-11-24T08:25:20.7166890Z sftd https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-avs 0.130.0 +2025-11-24T08:25:21.2197908Z "repo_2" has been added to your repositories +2025-11-24T08:25:21.2604661Z Hang tight while we grab the latest from your chart repositories... +2025-11-24T08:25:21.6793140Z ...Successfully got an update from the "repo_2" chart repository +2025-11-24T08:25:21.6794523Z Update Complete. ⎈Happy Helming!⎈ +2025-11-24T08:25:22.0801357Z wire-server https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:23.2505559Z "repo_3" has been added to your repositories +2025-11-24T08:25:23.2916854Z Hang tight while we grab the latest from your chart repositories... +2025-11-24T08:25:24.4272056Z ...Successfully got an update from the "repo_3" chart repository +2025-11-24T08:25:24.4273290Z Update Complete. ⎈Happy Helming!⎈ +2025-11-24T08:25:25.2639644Z redis-ephemeral https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:26.0898510Z redis-cluster https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:26.9406233Z rabbitmq https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:27.6516400Z rabbitmq-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:28.3356091Z databases-ephemeral https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:29.2010309Z fake-aws https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:29.9284798Z fake-aws-s3 https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:30.6045040Z fake-aws-sqs https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:31.3114386Z aws-ingress https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:31.9844110Z fluent-bit https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:32.6376065Z kibana https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:33.2806147Z backoffice https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:33.9102933Z calling-test https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:34.5526915Z demo-smtp https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:35.1965135Z elasticsearch-curator https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:35.8788926Z elasticsearch-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:36.5064130Z elasticsearch-ephemeral https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:37.1408629Z minio-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:37.8055396Z cassandra-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:38.4877329Z nginx-ingress-controller https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.18.0 +2025-11-24T08:25:39.1610117Z ingress-nginx-controller https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:39.8839479Z nginx-ingress-services https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:40.5007734Z reaper https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:41.1125422Z restund https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:41.7739959Z coturn https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 4.6.2-federation-wireapp.43 +2025-11-24T08:25:42.4285482Z k8ssandra-test-cluster https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:43.1123786Z webapp https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-webapp 0.8.0-pre.1876 +2025-11-24T08:25:43.5743479Z team-settings https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-webapp 0.11.0 +2025-11-24T08:25:44.0487881Z ldap-scim-bridge https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 +2025-11-24T08:25:44.6814495Z smallstep-accomp https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 6.0.11 +2025-11-24T08:25:45.4130171Z k8ssandra-operator https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 1.16.0 +2025-11-24T08:25:46.3988220Z openebs https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 3.10.0 +2025-11-24T08:25:47.5566595Z keycloakx https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 2.3.0 +2025-11-24T08:25:48.2174198Z step-certificates https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 1.25.0 +2025-11-24T08:25:48.9400883Z cert-manager https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 1.16.3 +2025-11-24T08:25:49.8849806Z kube-prometheus-stack https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 0.1.5 +2025-11-24T08:25:51.0196537Z migrate-features https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 0.1.0 +2025-11-24T08:25:51.6379515Z smtp https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 1.0.4 +2025-11-24T08:25:52.2711436Z wire-utility https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 0.1.2 +2025-11-24T08:25:52.8997161Z postgresql-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 0.0.44 +2025-11-24T08:25:53.5208966Z Pulling charts done. +2025-11-24T08:25:53.5334494Z + VALUES_DIR= +2025-11-24T08:25:53.5335250Z + HELM_VALUES_EXCLUDE_LIST= +2025-11-24T08:25:53.5336030Z + VALUES_TYPE=prod +2025-11-24T08:25:53.5336738Z + for arg in "$@" +2025-11-24T08:25:53.5337405Z + case $arg in +2025-11-24T08:25:53.5338479Z + VALUES_DIR=/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values +2025-11-24T08:25:53.5339645Z + for arg in "$@" +2025-11-24T08:25:53.5340283Z + case $arg in +2025-11-24T08:25:53.5340954Z + HELM_VALUES_EXCLUDE_LIST=postgresql +2025-11-24T08:25:53.5341632Z + for arg in "$@" +2025-11-24T08:25:53.5342045Z + case $arg in +2025-11-24T08:25:53.5342474Z + VALUES_TYPE=prod +2025-11-24T08:25:53.5343928Z + [[ -z /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values ]] +2025-11-24T08:25:53.5345104Z + echo 'Running pre-clean values process script 1 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values ...' +2025-11-24T08:25:53.5345957Z + IFS=, +2025-11-24T08:25:53.5346343Z + read -r -a EXCLUDE_ARRAY +2025-11-24T08:25:53.5346935Z + for CHART in "${EXCLUDE_ARRAY[@]}" +2025-11-24T08:25:53.5347694Z + CHART_DIR=/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql +2025-11-24T08:25:53.5348685Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql ]] +2025-11-24T08:25:53.5349744Z + echo 'Removing values directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql' +2025-11-24T08:25:53.5350809Z + rm -rf /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql +2025-11-24T08:25:53.5352359Z Running pre-clean values process script 1 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values ... +2025-11-24T08:25:53.5353978Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5355131Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages ]] +2025-11-24T08:25:53.5356217Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages' +2025-11-24T08:25:53.5357449Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5358660Z Removing values directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql +2025-11-24T08:25:53.5359769Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages +2025-11-24T08:25:53.5376096Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages/demo-values.example.yaml' +2025-11-24T08:25:53.5378935Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5380137Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress ]] +2025-11-24T08:25:53.5381957Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress' +2025-11-24T08:25:53.5383558Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5384824Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress +2025-11-24T08:25:53.5401351Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress/demo-values.example.yaml' +2025-11-24T08:25:53.5404515Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5405789Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cassandra-external ]] +2025-11-24T08:25:53.5406946Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cassandra-external' +2025-11-24T08:25:53.5408283Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cassandra-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5409565Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cassandra-external +2025-11-24T08:25:53.5418668Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5419773Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager ]] +2025-11-24T08:25:53.5421134Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager' +2025-11-24T08:25:53.5422388Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5423911Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager +2025-11-24T08:25:53.5441899Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager/demo-values.example.yaml' +2025-11-24T08:25:53.5444927Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5446023Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn ]] +2025-11-24T08:25:53.5447713Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn' +2025-11-24T08:25:53.5449613Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5450986Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn +2025-11-24T08:25:53.5467840Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn/demo-values.example.yaml' +2025-11-24T08:25:53.5470762Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5471940Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral ]] +2025-11-24T08:25:53.5473403Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral' +2025-11-24T08:25:53.5474751Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5476077Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral +2025-11-24T08:25:53.5492855Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral/demo-values.example.yaml' +2025-11-24T08:25:53.5496326Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5497533Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/elasticsearch-external ]] +2025-11-24T08:25:53.5498740Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/elasticsearch-external' +2025-11-24T08:25:53.5500094Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/elasticsearch-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5501423Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/elasticsearch-external +2025-11-24T08:25:53.5510011Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5511139Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws ]] +2025-11-24T08:25:53.5512194Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws' +2025-11-24T08:25:53.5513587Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5514768Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws +2025-11-24T08:25:53.5532563Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws/demo-values.example.yaml' +2025-11-24T08:25:53.5538217Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5539495Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fluent-bit ]] +2025-11-24T08:25:53.5541010Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fluent-bit' +2025-11-24T08:25:53.5542378Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fluent-bit -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5544465Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fluent-bit +2025-11-24T08:25:53.5552298Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5553794Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller ]] +2025-11-24T08:25:53.5555418Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller' +2025-11-24T08:25:53.5556856Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5558213Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller +2025-11-24T08:25:53.5576691Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller/demo-values.example.yaml' +2025-11-24T08:25:53.5589258Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller/hetzner-ci.example.yaml' +2025-11-24T08:25:53.5592351Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5593833Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-operator ]] +2025-11-24T08:25:53.5595692Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-operator' +2025-11-24T08:25:53.5597830Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-operator -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5599930Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-operator +2025-11-24T08:25:53.5661126Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5662475Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-test-cluster ]] +2025-11-24T08:25:53.5664817Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-test-cluster' +2025-11-24T08:25:53.5667273Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-test-cluster -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5668960Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5670158Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/keycloakx ]] +2025-11-24T08:25:53.5672022Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/keycloakx' +2025-11-24T08:25:53.5674478Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/keycloakx -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5676065Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5677404Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/kube-prometheus-stack ]] +2025-11-24T08:25:53.5679012Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/kube-prometheus-stack' +2025-11-24T08:25:53.5681462Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/kube-prometheus-stack -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5683298Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5684119Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge ]] +2025-11-24T08:25:53.5685271Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge' +2025-11-24T08:25:53.5686761Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5687699Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5688432Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/minio-external ]] +2025-11-24T08:25:53.5689537Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/minio-external' +2025-11-24T08:25:53.5690800Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/minio-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5692066Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-test-cluster +2025-11-24T08:25:53.5693501Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/keycloakx +2025-11-24T08:25:53.5694645Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/kube-prometheus-stack +2025-11-24T08:25:53.5695960Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge +2025-11-24T08:25:53.5697711Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge/values-prod.example.yaml' +2025-11-24T08:25:53.5698911Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/minio-external +2025-11-24T08:25:53.5699710Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5700460Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services ]] +2025-11-24T08:25:53.5701612Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services' +2025-11-24T08:25:53.5703197Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5704500Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services +2025-11-24T08:25:53.5720286Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services/demo-values.example.yaml' +2025-11-24T08:25:53.5731920Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services/demo-secrets.example.yaml' +2025-11-24T08:25:53.5734961Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5736169Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external ]] +2025-11-24T08:25:53.5737495Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external' +2025-11-24T08:25:53.5738833Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5740135Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external +2025-11-24T08:25:53.5760235Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external/demo-values.example.yaml' +2025-11-24T08:25:53.5761693Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5763045Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq ]] +2025-11-24T08:25:53.5764550Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq' +2025-11-24T08:25:53.5765851Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5767071Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq +2025-11-24T08:25:53.5784972Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq/demo-values.example.yaml' +2025-11-24T08:25:53.5796178Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq/demo-secrets.example.yaml' +2025-11-24T08:25:53.5798866Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5800036Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq-external ]] +2025-11-24T08:25:53.5801391Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq-external' +2025-11-24T08:25:53.5802901Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5804212Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq-external +2025-11-24T08:25:53.5812569Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5813855Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper ]] +2025-11-24T08:25:53.5815031Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper' +2025-11-24T08:25:53.5816253Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5817431Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper +2025-11-24T08:25:53.5835318Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper/demo-values.example.yaml' +2025-11-24T08:25:53.5838103Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5839254Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/redis-ephemeral ]] +2025-11-24T08:25:53.5840549Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/redis-ephemeral' +2025-11-24T08:25:53.5841849Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/redis-ephemeral -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5843350Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/redis-ephemeral +2025-11-24T08:25:53.5851694Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5853077Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/restund ]] +2025-11-24T08:25:53.5854294Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/restund' +2025-11-24T08:25:53.5855512Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/restund -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5856935Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/restund +2025-11-24T08:25:53.5866475Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5867621Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd +2025-11-24T08:25:53.5868842Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd ]] +2025-11-24T08:25:53.5870111Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd' +2025-11-24T08:25:53.5871291Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5889248Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd/demo-values.example.yaml' +2025-11-24T08:25:53.5892324Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5893682Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp ]] +2025-11-24T08:25:53.5894985Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp' +2025-11-24T08:25:53.5896309Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5897586Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp +2025-11-24T08:25:53.5915794Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp/demo-values.example.yaml' +2025-11-24T08:25:53.5918697Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5919807Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp ]] +2025-11-24T08:25:53.5921002Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp' +2025-11-24T08:25:53.5922212Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5923651Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp +2025-11-24T08:25:53.5941350Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp/demo-values.example.yaml' +2025-11-24T08:25:53.5945236Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5946403Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates ]] +2025-11-24T08:25:53.5947728Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates' +2025-11-24T08:25:53.5949066Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5950341Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates +2025-11-24T08:25:53.5968092Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates/demo-values.example.yaml' +2025-11-24T08:25:53.5970856Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.5972027Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings ]] +2025-11-24T08:25:53.5973479Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings' +2025-11-24T08:25:53.5974970Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.5976219Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings +2025-11-24T08:25:53.5993874Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings/demo-values.example.yaml' +2025-11-24T08:25:53.6006546Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings/demo-secrets.example.yaml' +2025-11-24T08:25:53.6008024Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.6009179Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp ]] +2025-11-24T08:25:53.6010511Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp' +2025-11-24T08:25:53.6011755Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.6013178Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp +2025-11-24T08:25:53.6029985Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp/demo-values.example.yaml' +2025-11-24T08:25:53.6033987Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.6035117Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server ]] +2025-11-24T08:25:53.6036381Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server' +2025-11-24T08:25:53.6037644Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.6038902Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server +2025-11-24T08:25:53.6055795Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server/demo-values.example.yaml' +2025-11-24T08:25:53.6067415Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server/demo-secrets.example.yaml' +2025-11-24T08:25:53.6071116Z + for DIR in "$VALUES_DIR"/* +2025-11-24T08:25:53.6072249Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-utility ]] +2025-11-24T08:25:53.6073796Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-utility' +2025-11-24T08:25:53.6075096Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-utility -type f '!' -name 'prod*' -exec rm -v '{}' ';' +2025-11-24T08:25:53.6076343Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-utility +2025-11-24T08:25:53.6110112Z + OUTPUT_DIR= +2025-11-24T08:25:53.6110768Z + VALUES_TYPE=prod +2025-11-24T08:25:53.6111430Z + for arg in "$@" +2025-11-24T08:25:53.6112064Z + case $arg in +2025-11-24T08:25:53.6113179Z + OUTPUT_DIR=/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output +2025-11-24T08:25:53.6114257Z + [[ -z /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ]] +2025-11-24T08:25:53.6115358Z + echo 'Running pre-chart process script 0 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output with values type prod' +2025-11-24T08:25:53.6116597Z Running pre-chart process script 0 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output with values type prod +2025-11-24T08:25:53.6118155Z + sed -i -Ee 's/federation: false/federation: true/' /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server/prod-values.example.yaml +2025-11-24T08:25:53.6139060Z + sed -i -Ee 's/useSharedFederatorSecret: false/useSharedFederatorSecret: true/' /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/wire-server/charts/federator/values.yaml +2025-11-24T08:25:53.6163956Z + rm -v /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/step-certificates/charts/step-certificates/templates/tests/test-connection.yaml +2025-11-24T08:25:53.6173973Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/step-certificates/charts/step-certificates/templates/tests/test-connection.yaml' +2025-11-24T08:25:53.6201138Z Processing Helm charts in /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output with VALUES_TYPE=prod +2025-11-24T08:25:53.6202067Z Excluding images matching the pattern: .^ +2025-11-24T08:25:53.6259959Z [1] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/account-pages… +2025-11-24T08:25:53.7022993Z [2] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/aws-ingress… +2025-11-24T08:25:53.7563728Z [3] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/backoffice… +2025-11-24T08:25:53.8331638Z [4] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/calling-test… +2025-11-24T08:25:53.9127832Z [5] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/cassandra-external… +2025-11-24T08:25:53.9674045Z [6] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/cert-manager… +2025-11-24T08:25:54.1998958Z [7] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/coturn… +2025-11-24T08:25:54.2793335Z [8] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/databases-ephemeral… +2025-11-24T08:25:54.3995054Z [9] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/demo-smtp… +2025-11-24T08:25:54.4759203Z [10] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/elasticsearch-curator… +2025-11-24T08:25:54.5548816Z [11] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/elasticsearch-ephemeral… +2025-11-24T08:25:54.6311495Z [12] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/elasticsearch-external… +2025-11-24T08:25:54.6855760Z [13] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/fake-aws… +2025-11-24T08:25:54.7677249Z [14] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/fake-aws-s3… +2025-11-24T08:25:54.8596472Z [15] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/fake-aws-sqs… +2025-11-24T08:25:54.9411466Z [16] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/fluent-bit… +2025-11-24T08:25:55.0062259Z Container busybox:latest with a latest tag found. Fix this chart. not compatible with offline. Components need explicit tags for that +2025-11-24T08:25:55.0270524Z [17] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/ingress-nginx-controller… +2025-11-24T08:25:55.1303711Z [18] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/k8ssandra-operator… +2025-11-24T08:25:55.2345695Z [19] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/k8ssandra-test-cluster… +2025-11-24T08:25:55.3154324Z [20] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/keycloakx… +2025-11-24T08:25:55.4044660Z [21] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/kibana… +2025-11-24T08:25:55.4858873Z [22] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/kube-prometheus-stack… +2025-11-24T08:25:55.7033492Z [23] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/ldap-scim-bridge… +2025-11-24T08:25:55.7837476Z [24] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/migrate-features… +2025-11-24T08:25:55.8625547Z [25] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/minio-external… +2025-11-24T08:25:55.9200719Z [26] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/nginx-ingress-controller… +2025-11-24T08:25:56.0075501Z [27] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/nginx-ingress-services… +2025-11-24T08:25:56.0645624Z [28] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/openebs… +2025-11-24T08:25:56.1996336Z [29] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/postgresql-external… +2025-11-24T08:25:56.2781799Z [30] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/rabbitmq… +2025-11-24T08:25:56.3839612Z [31] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/rabbitmq-external… +2025-11-24T08:25:56.4381457Z [32] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/reaper… +2025-11-24T08:25:56.5158989Z [33] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/redis-cluster… +2025-11-24T08:25:56.6206714Z [34] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/redis-ephemeral… +2025-11-24T08:25:56.7377239Z [35] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/restund… +2025-11-24T08:25:56.8186787Z [36] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/sftd… +2025-11-24T08:25:56.9027737Z [37] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/smallstep-accomp… +2025-11-24T08:25:57.3473666Z [38] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/smtp… +2025-11-24T08:25:57.4277055Z [39] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/step-certificates… +2025-11-24T08:25:57.4918539Z Container busybox:latest with a latest tag found. Fix this chart. not compatible with offline. Components need explicit tags for that +2025-11-24T08:25:57.5136096Z [40] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/team-settings… +2025-11-24T08:25:57.5931751Z [41] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/webapp… +2025-11-24T08:25:57.6724737Z [42] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/wire-server… +2025-11-24T08:25:57.8561133Z [43] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/wire-utility… +2025-11-24T08:25:57.9557739Z Fetching alpine_3.21.3… +2025-11-24T08:25:58.3903432Z Getting image source signatures +2025-11-24T08:25:58.3905190Z Copying blob sha256:f18232174bc91741fdf3da96d85011092101a032a93a388b79e99e69c2d5c870 +2025-11-24T08:25:58.5427481Z Copying config sha256:aded1e1a5b3705116fa0a92ba074a5e0b0031647d9c315983ccba2ee5428ec8b +2025-11-24T08:25:58.5879369Z Writing manifest to image destination +2025-11-24T08:25:58.6117378Z Fetching bitnamilegacy_kubectl_1.29.11… +2025-11-24T08:25:58.9521915Z Getting image source signatures +2025-11-24T08:25:58.9523273Z Copying blob sha256:7cda2918fa74ddd83c6737412dfb50e2c90a0c2634b980af04c624f04d2eb1d2 +2025-11-24T08:26:01.2584081Z Copying config sha256:720de1036a827bc8183821b91f2866c0ea47cbe3bc4fb87ed2fb187b07695e14 +2025-11-24T08:26:01.5275582Z Writing manifest to image destination +2025-11-24T08:26:01.5572341Z Fetching busybox_1.36.1… +2025-11-24T08:26:01.9178399Z Getting image source signatures +2025-11-24T08:26:01.9179728Z Copying blob sha256:91347574b77ee0e381e6518794e0a81e1b6eba076c13896f69518cca1c1214a4 +2025-11-24T08:26:02.0291115Z Copying config sha256:f0fd628b15e8cf167f7d467e031c1a15193d7db6e75c61b4fe9965d88e461a4a +2025-11-24T08:26:02.0889365Z Writing manifest to image destination +2025-11-24T08:26:02.1198692Z Fetching cassandra_3.11… +2025-11-24T08:26:02.4552905Z Getting image source signatures +2025-11-24T08:26:02.4554238Z Copying blob sha256:7e49dc6156b0b532730614d83a65ae5e7ce61e966b0498703d333b4d03505e4f +2025-11-24T08:26:03.1183237Z Copying blob sha256:7e27b670a0f5423b1022e278f7a378f8f36d0cf41ecab6025d51111829df44f9 +2025-11-24T08:26:03.4806875Z Copying blob sha256:5d42da29b2619c195f2d196f0bc64cf7347c4ac72d8618648296410ba20c837a +2025-11-24T08:26:04.3271801Z Copying blob sha256:fa94125d190e370b5bc6035d26b8d573a9f94fb5489af0d5b4e898ac6a7523eb +2025-11-24T08:26:04.3771538Z Copying blob sha256:c53675a133c6bc8e493090499c6df5a23837a682556eaf29bce46837a8957367 +2025-11-24T08:26:04.4301368Z Copying blob sha256:0497a703e222c5835fe08749190d55fac6103c9a062d4ae0818259e79882643b +2025-11-24T08:26:04.4937893Z Copying blob sha256:5a2e2c2fe7e2c5607f25cc84e204445eb3d224305d3fb76ae1286acfcab6e189 +2025-11-24T08:26:04.7507853Z Copying blob sha256:bf175d9fcc0a3d8bf4e3952b633982ac2c1d4dc6e4100caa857d004f6784244d +2025-11-24T08:26:04.8198325Z Copying blob sha256:9aca2daeac752ebefeeaddcfbf331a2241192ce2a19818f54860c070c0e3a9d4 +2025-11-24T08:26:05.3004789Z Copying blob sha256:c39795272d2d1ebd5bee6120232036b38678e4dc1bcab29725f54d27da2e8134 +2025-11-24T08:26:05.3580698Z Copying blob sha256:c5ca755942a51ad9179e4389f80e0918e98f87870551102c7a103d92548bd702 +2025-11-24T08:26:05.4158730Z Copying config sha256:597351c0039f440d0e27e80405d6290131a51535c5da3a7af6d5a4da243c99d6 +2025-11-24T08:26:05.4727725Z Writing manifest to image destination +2025-11-24T08:26:05.5036608Z Fetching cr.fluentbit.io_fluent_fluent-bit_3.0.2… +2025-11-24T08:26:06.5719862Z Getting image source signatures +2025-11-24T08:26:06.5721745Z Copying blob sha256:16100daf795a61c7588657ad2b6afc6eef7300de0c874b6c3d4def1796e28081 +2025-11-24T08:26:06.9044740Z Copying blob sha256:e33bce57de289fffd2380f73997dfb7e1ec193877904bed99f28c715d071fdc4 +2025-11-24T08:26:07.1937990Z Copying blob sha256:473d8557b1b27974f7dc7c4b4e1a209df0e27e8cae1e3e33b7bb45c969b6fc7e +2025-11-24T08:26:07.4705928Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 +2025-11-24T08:26:07.7286918Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:26:07.8025225Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 +2025-11-24T08:26:08.0539958Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:26:08.1268658Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 +2025-11-24T08:26:08.3951082Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:26:08.4699370Z Copying blob sha256:9ef7d74bdfdf3c517b28bd694a9159e94e5f53ff1ca87b39f8ca1ac0be2ed317 +2025-11-24T08:26:08.7820896Z Copying blob sha256:9112d77ee5b16873acaa186b816c3c61f5f8eba40730e729e9614a27f40211e0 +2025-11-24T08:26:09.2598281Z Copying blob sha256:59e6e6563fee04c9590afd06f4a732b9af37f4804248e5ee49305b6e268de8e5 +2025-11-24T08:26:09.6129057Z Copying blob sha256:a4ba90834fb4abf3d80bbdaaaef36560ab1bb682f5279d44114d768e119639b9 +2025-11-24T08:26:10.2306162Z Copying blob sha256:df368711b36276ed02b2040d3e3296b919042d2a05a2bbe9f758e708436c12cf +2025-11-24T08:26:10.5096033Z Copying blob sha256:e89169bec965f3b73bc8a6cf650d362a1da8ae571c5fdccccf7bab8194c03c47 +2025-11-24T08:26:10.7698702Z Copying blob sha256:7f3501c931c2f262add9c59a46b7469c09f862cfcdb005d9187bc4f8f9964724 +2025-11-24T08:26:11.2828384Z Copying blob sha256:88934a1bc18c35762f0009512e7a775aec9e1d9531a1781a0caf81013a67ab94 +2025-11-24T08:26:11.6020178Z Copying blob sha256:58572de96fcfaaee0ae5de3eec19d639d2235ba1d9294363238f44adf064929f +2025-11-24T08:26:11.9908295Z Copying blob sha256:136d0d682b34896578ad59bd6f18682a29ec76383ab57c239caddbc49616776d +2025-11-24T08:26:12.2567436Z Copying blob sha256:0b7bc45542fdcee1616faf51049bf40072b939e60d051930ad667c6af6ed0e81 +2025-11-24T08:26:12.9538580Z Copying config sha256:2007231667469ee1d653bdad65e55cc5f300985f10d7c4dffd6de0a5e76ff078 +2025-11-24T08:26:13.1946374Z Writing manifest to image destination +2025-11-24T08:26:13.2254439Z Fetching cr.k8ssandra.io_k8ssandra_cass-operator_v1.20.0… +2025-11-24T08:26:14.1966917Z Getting image source signatures +2025-11-24T08:26:14.1968349Z Copying blob sha256:0e019b285e0d2979b67152f7e92e6947d6189d4998135c97b6dbd8f598bbc0de +2025-11-24T08:26:14.7035783Z Copying blob sha256:a663d2d273ec4687ef18297a5e0d4d692c7ebce1b270fad0f2e6ed7eb44b8182 +2025-11-24T08:26:15.3517797Z Copying blob sha256:51b19c842600e464b904132a1081bff8006089f2b2d368005ea2e8f76d18d64b +2025-11-24T08:26:15.6408655Z Copying config sha256:f182609c58ab319c4174989d065f00c3d97adfecb9446eac6bf62851434897b8 +2025-11-24T08:26:15.9196372Z Writing manifest to image destination +2025-11-24T08:26:15.9491062Z Fetching cr.k8ssandra.io_k8ssandra_k8ssandra-operator_v1.16.0… +2025-11-24T08:26:16.9391356Z Getting image source signatures +2025-11-24T08:26:16.9398216Z Copying blob sha256:b2ce0e0660777651a7a188ae1128acc61d01aca10a035a8b1faa2cdd8bbf0785 +2025-11-24T08:26:17.2671402Z Copying blob sha256:e8d9a567199d7a318c875f2558a679ba8a924f817afacbb428afc3ffe6be6828 +2025-11-24T08:26:17.5523461Z Copying blob sha256:058cf3d8c2ba04ad7c064698c08c5e886a8623c0ad6171b8d72684253534417d +2025-11-24T08:26:17.8496370Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 +2025-11-24T08:26:17.9632990Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:26:18.0656648Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 +2025-11-24T08:26:18.1699148Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:26:18.2716702Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 +2025-11-24T08:26:18.3896203Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:26:18.4970065Z Copying blob sha256:da7816fa955ea24533c388143c78804c28682eef99b4ee3723b548c70148bba6 +2025-11-24T08:26:18.6069180Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 +2025-11-24T08:26:18.7160298Z Copying blob sha256:0b129597b2c75ebfb842ecfea418a800b9cc429bd4014186b2cd6c9d6f007c4a +2025-11-24T08:26:19.4705520Z Copying config sha256:20bb222dbc5a192918c8f3b80602723c515e56b5e5eb934e3d2332fb4e94c441 +2025-11-24T08:26:19.7585096Z Writing manifest to image destination +2025-11-24T08:26:19.7894609Z Fetching cr.step.sm_smallstep_step-ca_0.25.3-rc7… +2025-11-24T08:26:20.6669950Z Getting image source signatures +2025-11-24T08:26:20.6671098Z Copying blob sha256:661ff4d9561e3fd050929ee5097067c34bafc523ee60f5294a37fd08056a73ca +2025-11-24T08:26:20.8835285Z Copying blob sha256:07a3a0958d5d81b355b10f8c25552c8952c39cd316893543e623fde24bbeea43 +2025-11-24T08:26:21.1137157Z Copying blob sha256:99a3a7f5703a9e1557fb46b4f1ae4225a08adc6445b76226a35edb10ed9a1cbb +2025-11-24T08:26:21.4527612Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:26:21.5266217Z Copying blob sha256:859dd081a6c374b7e2d4e3bd0afe062900e14309518289cbc24778884205eb15 +2025-11-24T08:26:21.8968633Z Copying blob sha256:db045f559b870377e8a93251efcac16a3eef0f7dbf839f65ed1d8e2e02dd6d04 +2025-11-24T08:26:22.1513628Z Copying blob sha256:948a5b50a06b2b08ac0da063b2599f9f1d213d8ec88d6f775efada004de858e4 +2025-11-24T08:26:22.2390157Z Copying config sha256:b2c26b6e463243926e3000e7b762e9570f411047d18c2e16b4368adb89246609 +2025-11-24T08:26:22.3174233Z Writing manifest to image destination +2025-11-24T08:26:22.3476436Z Fetching docker.elastic.co_kibana_kibana_6.8.18… +2025-11-24T08:26:22.8130990Z Getting image source signatures +2025-11-24T08:26:22.8132327Z Copying blob sha256:a4f595742a5b0a76289f5927f75d63ef61a88d2ff5aaad78eed16e50c925cc5d +2025-11-24T08:26:24.6132332Z Copying blob sha256:eb1001476f095f78a906ef1139e2bce0d5991b1416a7efee0a2e171cac7695c2 +2025-11-24T08:26:25.9906820Z Copying blob sha256:b6c14b25d595fc327287506c32c78afd16cb6a39d2e5656c87a9cf19c88654f8 +2025-11-24T08:26:29.3046514Z Copying blob sha256:c7c6a72f6bc97aa43144aa0a96e13dca84edab258f02ba0c8b358ce622dba3e3 +2025-11-24T08:26:29.5296932Z Copying blob sha256:cf57274b688f4d7d012d97d4a491c8dbbb4bf258afa6fc3bd8ad26733293cdd7 +2025-11-24T08:26:29.7792537Z Copying blob sha256:a316b3c3f6a3e00c52b606cec84cbdfe29305cd695a041cee320f4516dfd8441 +2025-11-24T08:26:30.0925751Z Copying blob sha256:fe40aba787d10dee58a1a826c957a1eb273183482420de1b8d74895a34d93f92 +2025-11-24T08:26:30.2990791Z Copying blob sha256:4414599d74c88a81757677488f9da8e96847a73a9169beb02b7d04649d241ebb +2025-11-24T08:26:30.5194118Z Copying config sha256:2728cb7ee745241970ac8d99d09c8df96468eb75b0378e99ddb94dcaff80298d +2025-11-24T08:26:30.7204947Z Writing manifest to image destination +2025-11-24T08:26:30.7529374Z Fetching docker.io_bitnamilegacy_kubectl_1.32.4… +2025-11-24T08:26:31.0839099Z Getting image source signatures +2025-11-24T08:26:31.0840516Z Copying blob sha256:e0d839ace7d2fb1953be96b2dd468fba713e781df4769d2f287dc0320fc214a9 +2025-11-24T08:26:33.4981193Z Copying config sha256:dde77b5346a7a6fc0f049f78b91c470c7267bc2e41ef0eaf07fcee7fc67d158d +2025-11-24T08:26:33.5507368Z Writing manifest to image destination +2025-11-24T08:26:33.5812383Z Fetching docker.io_bitnamilegacy_nginx_1.27.3-debian-12-r5… +2025-11-24T08:26:33.9655660Z Getting image source signatures +2025-11-24T08:26:33.9656825Z Copying blob sha256:71bd7d98fb50b9b615d8ff4b064430085d0d0d7c99c0b28ca4b568741a6101d9 +2025-11-24T08:26:35.5955364Z Copying config sha256:f5c585c24508977ff8290cb471e12f9c4ffdfdb94f0bfd4f739f9a76d71c3dd0 +2025-11-24T08:26:35.7607354Z Writing manifest to image destination +2025-11-24T08:26:35.7905660Z Fetching docker.io_bitnamilegacy_nginx_1.27.3-debian-12-r5@sha256_c02e18884badbd9482fd731668f75a3033124c748bc709651fb06062d0ab38c1… +2025-11-24T08:26:36.1195551Z Getting image source signatures +2025-11-24T08:26:36.1197305Z Copying blob sha256:71bd7d98fb50b9b615d8ff4b064430085d0d0d7c99c0b28ca4b568741a6101d9 +2025-11-24T08:26:37.4905117Z Copying config sha256:f5c585c24508977ff8290cb471e12f9c4ffdfdb94f0bfd4f739f9a76d71c3dd0 +2025-11-24T08:26:37.5345185Z Writing manifest to image destination +2025-11-24T08:26:37.5650469Z Fetching docker.io_bitnamilegacy_rabbitmq_3.13.7-debian-12-r2… +2025-11-24T08:26:37.9467036Z Getting image source signatures +2025-11-24T08:26:37.9474839Z Copying blob sha256:5dc9d5c1c8a4502783597c6c5759105050380aa7eda5aad093cd6d60dc75d49d +2025-11-24T08:26:40.2964671Z Copying config sha256:a92343dfda71333294dcca9ed52237fea2446d89ea1da1899082e34d84479558 +2025-11-24T08:26:40.3454609Z Writing manifest to image destination +2025-11-24T08:26:40.3742440Z Fetching docker.io_bitnamilegacy_redis-cluster_6.2.7-debian-11-r9… +2025-11-24T08:26:40.6926203Z Getting image source signatures +2025-11-24T08:26:40.6927983Z Copying blob sha256:f772582a4b9e96f3bb800fc0644838bbd66f1413da84aca4bdb210cae66e1a7b +2025-11-24T08:26:41.3896214Z Copying blob sha256:348ec0934a15ba2476014721a2a78164128f44e90c496183aec967bb8c1234ed +2025-11-24T08:26:41.5820747Z Copying blob sha256:6383e8d5b0583137b07f19bfbae8e14dc1947380bdab83892eb3f02f66ec1a95 +2025-11-24T08:26:41.9007557Z Copying blob sha256:29047bba0e3e28e179f20747b4f372aa66e33d476692c2f133816d1ab071e970 +2025-11-24T08:26:42.1295793Z Copying blob sha256:6200e0b2585897b18e2be16082990e9d34df1beea195af537afb3d023f252cac +2025-11-24T08:26:42.3244748Z Copying blob sha256:ba296674b64c73fb5e5037045138ec1ff726f1630596c7aac420a3827a909f19 +2025-11-24T08:26:42.3833225Z Copying blob sha256:ba8bb427e26753a2177caa9a32ba96d99601b6fce55d962fda16bd597b86673f +2025-11-24T08:26:42.5865257Z Copying blob sha256:d494366f0ae375e9b60893458eda17d2c7624123ff004c18ff550745621a5f61 +2025-11-24T08:26:42.8896598Z Copying blob sha256:7dbe76ae31ce3a36bd32ef1cc4e8d37d0a275858523f422d2eb22d5548b80691 +2025-11-24T08:26:43.1507884Z Copying config sha256:45ee465d17439ec3c2ed3ba65b149e189943e75fb5d6b82b15413b09c28ddf4a +2025-11-24T08:26:43.3559774Z Writing manifest to image destination +2025-11-24T08:26:43.3859845Z Fetching docker.io_bitnamilegacy_redis_7.2.5… +2025-11-24T08:26:43.7258863Z Getting image source signatures +2025-11-24T08:26:43.7260146Z Copying blob sha256:656a19fb2de8787c82600cf5816e7495815fc8339fecef18a5e5b7ee3f7e9a0b +2025-11-24T08:26:44.7960773Z Copying config sha256:3d7539dd4cb6005992aca4624a48d91da5e2bb468948963625c58996019175a6 +2025-11-24T08:26:44.8447371Z Writing manifest to image destination +2025-11-24T08:26:44.8745349Z Fetching docker.io_k8ssandra_k8ssandra-tools_1.6.0-20240328143453-c6f39dad… +2025-11-24T08:26:45.2895027Z Getting image source signatures +2025-11-24T08:26:45.2896245Z Copying blob sha256:6b16ad2aede1c00fe5f9765419c2165fd72902e768db3126ee68d127cae394ea +2025-11-24T08:26:45.5996402Z Copying blob sha256:fe5ca62666f04366c8e7f605aa82997d71320183e99962fa76b3209fdfbb8b58 +2025-11-24T08:26:45.6512305Z Copying blob sha256:be1681d2fb7c6bc072dddd952d4fa0428a3a3c60b53cdde852e30aaa86f7e1ab +2025-11-24T08:26:45.7165836Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 +2025-11-24T08:26:45.7648906Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:26:45.8094990Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 +2025-11-24T08:26:45.8587015Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:26:45.9054344Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 +2025-11-24T08:26:45.9604960Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:26:46.0102559Z Copying blob sha256:9ef7d74bdfdf3c517b28bd694a9159e94e5f53ff1ca87b39f8ca1ac0be2ed317 +2025-11-24T08:26:46.0644454Z Copying blob sha256:9112d77ee5b16873acaa186b816c3c61f5f8eba40730e729e9614a27f40211e0 +2025-11-24T08:26:46.1173521Z Copying blob sha256:c706efbd1040f48e91d2729c37aaa5c2fa1267ce6697781e9ce6923d54080127 +2025-11-24T08:26:46.7203965Z Copying blob sha256:1a4947865d97957b4da182b9c3f9191fd87ac11344143606ae9230f14c66eeac +2025-11-24T08:26:46.9630607Z Copying config sha256:e0ae82d79209430dd0c65142ce22de37b25072309230a1dce02f33beea105314 +2025-11-24T08:26:47.1622854Z Writing manifest to image destination +2025-11-24T08:26:47.1919555Z Fetching elasticsearch_6.8.23… +2025-11-24T08:26:47.5246952Z Getting image source signatures +2025-11-24T08:26:47.5248391Z Copying blob sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc +2025-11-24T08:26:49.3939812Z Copying blob sha256:52d2262411d0f2af035c2e0f0c62814960b3e7d77eecab02eba9f97819d00d2e +2025-11-24T08:26:52.6485481Z Copying blob sha256:affa3bfe04943870deba40892398c3fc9d08da9825ea7953984632c74e4994bd +2025-11-24T08:26:53.8344948Z Copying blob sha256:f2e780d91c9f56dc0a05ae8916a4e8d6738cf94ed5cf924534d41236da5fb38f +2025-11-24T08:26:53.8895909Z Copying blob sha256:2471af457050139c5057c781433abadb769786df91ecbe6ed2a59b5f85e50369 +2025-11-24T08:26:56.2628574Z Copying blob sha256:ca890dfc68d05cdbdd9a7f528fbe8707c05d71e8c0c985307da6797ad204eb49 +2025-11-24T08:26:56.3138021Z Copying blob sha256:cd85b0b895822b5794063d98df42deeb3f0110f505b79fff7abc26f54f70a9c5 +2025-11-24T08:26:56.3628358Z Copying config sha256:9a2652c5f453b2f21ac32f841a6ed1897097741d69a1a4cc1947f58fae0d04b4 +2025-11-24T08:26:56.4092155Z Writing manifest to image destination +2025-11-24T08:26:56.4383723Z Fetching k8s.gcr.io_defaultbackend-amd64_1.5… +2025-11-24T08:26:56.7988656Z Getting image source signatures +2025-11-24T08:26:56.7989795Z Copying blob sha256:65f4220de95d2e3d12484679abe7bb33323b1fd3ef681d878f1d2bc5abc8ee06 +2025-11-24T08:26:57.0577871Z Copying config sha256:b5af743e598496e8ebd7a6eb3fea76a6464041581520d1c2315c95f993287303 +2025-11-24T08:26:57.1335722Z Writing manifest to image destination +2025-11-24T08:26:57.1646028Z Fetching localstack_localstack_0.8.7… +2025-11-24T08:26:57.4462099Z Getting image source signatures +2025-11-24T08:26:57.4463416Z Copying blob sha256:33eb6260f5a6f6a2e00290a5ede5c39b73d7bbc202d3d4644d2ab8ed83181b12 +2025-11-24T08:27:02.4035688Z Copying blob sha256:4326155b8912821cc050345007bc33b5e52cbaa3ba4bfd1566d851493a9dd974 +2025-11-24T08:27:02.4598143Z Copying blob sha256:b32eeecb9181e626e37b8b160365d6b6944310b8d7e1485d4ea48bcf2ba1a05f +2025-11-24T08:27:02.5128296Z Copying blob sha256:cf96b2b7bf583cfd721c9caddae23bfd8f582ddf3814ecb880122563d7e6dd7a +2025-11-24T08:27:02.5637319Z Copying blob sha256:f2dd71e782147264c49e6dad7327c2130c66dc47ed482f3b1cf0663861bcba19 +2025-11-24T08:27:02.6228313Z Copying blob sha256:c44b1186f75f9cae5f9c3116a621cffd78f4ffd802d2fbe66ec17522e53d5d61 +2025-11-24T08:27:02.6698875Z Copying blob sha256:7093662adad1fbadc36d9076647df92ebe7f342a827d6d43dcf77c603cc12c20 +2025-11-24T08:27:02.7217063Z Copying blob sha256:3792a7db89b54a26ab4f2d060bc8c8d66e0042a773aad43395aac53408b96503 +2025-11-24T08:27:02.7805688Z Copying blob sha256:af692bdc9f0e6493da72ce7d3930548544741bce451a9d6ab1160a3fa6cb427c +2025-11-24T08:27:03.7574445Z Copying blob sha256:03653cd683332602b932f2f06dab634366abfdc3b635dfea6218e55a6adc43f4 +2025-11-24T08:27:03.8066341Z Copying blob sha256:5d533ab397e60d694f5db0be4b382be1578b65058cbddc78c07b7c3c2eddca2d +2025-11-24T08:27:03.8564829Z Copying blob sha256:b4949a310e1300bbf757b3d9ea755b210183c8f79ce4e1f9d303032561b87386 +2025-11-24T08:27:04.4504410Z Copying blob sha256:4ccd8b683c4e88af39133180243484fbb898c2f7c39e3759480d5f14aca5c0fb +2025-11-24T08:27:04.5855766Z Copying blob sha256:fdc881d263da48cc252d6af2030ce3332a56bebe8da693f658c10c6002fe32fb +2025-11-24T08:27:04.6448173Z Copying blob sha256:8bdcad79999d8efe9cf937dc11a4b733ca2dd1f24b7cdd7421491f5dbcccf5d0 +2025-11-24T08:27:04.7356321Z Copying blob sha256:b513149f2dba72febc0ab6eb50d6403af0283bf95c589fa38122aa14165bac37 +2025-11-24T08:27:07.1970282Z Copying blob sha256:55f6148344e82c142f16b7f636507ce4ca1cc4668c298c8a573f1981ea70514e +2025-11-24T08:27:07.2541654Z Copying blob sha256:1038e66ad4c814701dbda9a7c0e1a98b39503f4287ce23b7e60a05488159dd7b +2025-11-24T08:27:07.3248728Z Copying config sha256:ac1af9b263a0e0a62a3316f585cf4804fabf0f97233e2c6d1cb4161ec192568c +2025-11-24T08:27:07.3719296Z Writing manifest to image destination +2025-11-24T08:27:07.4052538Z Fetching mesosphere_aws-cli_1.14.5… +2025-11-24T08:27:07.6683214Z Getting image source signatures +2025-11-24T08:27:07.6684528Z Copying blob sha256:605ce1bd3f3164f2949a30501cc596f52a72de05da1306ab360055f0d7130c32 +2025-11-24T08:27:07.7795697Z Copying blob sha256:003136ce7764dfd83890e987ebf4d2a33f1e42c8cef8bf7687fdcc046c8ebfc4 +2025-11-24T08:27:08.3709971Z Copying blob sha256:f17b7537093ddf2cf7935586ed9fc53f1c5d21f3a6d4914193fd90b3be3515e9 +2025-11-24T08:27:08.4288160Z Copying config sha256:31f4e23ae3d69dbec6050f284e743792c0a1033d627e9044bec4e499935cee68 +2025-11-24T08:27:08.7503152Z Writing manifest to image destination +2025-11-24T08:27:08.7808873Z Fetching openebs_node-disk-manager_2.1.0… +2025-11-24T08:27:09.2189070Z Getting image source signatures +2025-11-24T08:27:09.2190219Z Copying blob sha256:677076032cca0a2362d25cf3660072e738d1b96fe860409a33ce901d695d7ee8 +2025-11-24T08:27:10.1517645Z Copying blob sha256:ad137abb16a479d974731cfa6f0df5e0d43150f5cf0d01a27d54c7fa980e7c91 +2025-11-24T08:27:10.5202938Z Copying blob sha256:a7b30f76157f16246b8a8f984c678157be2b7084a091f994bc530bb99226e7ea +2025-11-24T08:27:10.5788767Z Copying config sha256:297e6f2690c4337350601d4be0b21ffe8fdd3f921ea2eaf277c2352a9eb03d03 +2025-11-24T08:27:10.6293578Z Writing manifest to image destination +2025-11-24T08:27:10.6611374Z Fetching openebs_node-disk-operator_2.1.0… +2025-11-24T08:27:10.9883739Z Getting image source signatures +2025-11-24T08:27:10.9884859Z Copying blob sha256:677076032cca0a2362d25cf3660072e738d1b96fe860409a33ce901d695d7ee8 +2025-11-24T08:27:11.6657112Z Copying blob sha256:fbdf6356176edbe3e585992daa0534eaa34efc0cdf04e9ee88bfab5a06840913 +2025-11-24T08:27:12.0140209Z Copying config sha256:f9669ba5fa2b80451d172dedc0eb9ecc80678904a6c7cca736005e6e26106dac +2025-11-24T08:27:12.0608619Z Writing manifest to image destination +2025-11-24T08:27:12.0913739Z Fetching openebs_provisioner-localpv_3.5.0… +2025-11-24T08:27:12.4652101Z Getting image source signatures +2025-11-24T08:27:12.4653473Z Copying blob sha256:c7ed990a2339ee598662849de4f56e2241399f5a32340c8c4a7bbd5378a12b5f +2025-11-24T08:27:12.5858522Z Copying blob sha256:2d3b74a8a687038e7d2573b1a53ec05b267ae7c76a98247542125b75021ffeed +2025-11-24T08:27:12.7190721Z Copying blob sha256:ff07456b2c587888eee25ad7a9827c8e8285b14a68d35f3d811f7629e4e2c95d +2025-11-24T08:27:13.2974952Z Copying config sha256:7dfaa48c970d27e427b5aaee116688c394d77c15489dbf6fa5efb5fc72409890 +2025-11-24T08:27:13.3515635Z Writing manifest to image destination +2025-11-24T08:27:13.3813531Z Fetching quay.io_jetstack_cert-manager-cainjector_v1.16.3… +2025-11-24T08:27:13.7507647Z Getting image source signatures +2025-11-24T08:27:13.7508760Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e +2025-11-24T08:27:13.8308139Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:27:13.9112264Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 +2025-11-24T08:27:13.9717121Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:27:14.0180214Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:27:14.0667206Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:27:14.1154962Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:27:14.1645726Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:27:14.2125674Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:27:14.2637229Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:27:14.3044508Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:27:14.3558463Z Copying blob sha256:1aa0540810224901d8cb3638d2f916af752cb65b5a178b794cd7945b3037db75 +2025-11-24T08:27:14.7914894Z Copying blob sha256:a345aba268ae5fe90dbc43121cae1a772fc7c0e12f17fc02be0816254b1c86ac +2025-11-24T08:27:15.0757339Z Copying blob sha256:401d2d02970d98c06becea33967d192f282f72ea225d9053809b10e1c3032796 +2025-11-24T08:27:15.1850169Z Copying config sha256:ce7242a2b54beda8b4a2079d5d783a823af40d6d56d6a51decc8acc01c22849f +2025-11-24T08:27:15.2428190Z Writing manifest to image destination +2025-11-24T08:27:15.2799323Z Fetching quay.io_jetstack_cert-manager-controller_v1.16.3… +2025-11-24T08:27:15.7110956Z Getting image source signatures +2025-11-24T08:27:15.7112188Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e +2025-11-24T08:27:15.7897683Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:27:15.8484841Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 +2025-11-24T08:27:15.9130036Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:27:15.9821052Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:27:16.0473720Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:27:16.0948711Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:27:16.1487324Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:27:16.2006182Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:27:16.2568589Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:27:16.3025424Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:27:16.3512167Z Copying blob sha256:463a4d7bd9093d82535cdbe61ae1eca85f2cd2207c7a4987a6fad24d1cf465f4 +2025-11-24T08:27:16.8569633Z Copying blob sha256:ba9e915126ef65cde90869ea19b3f39799ddc0f3f92e5f9630968de06a5d6d2e +2025-11-24T08:27:16.9440777Z Copying blob sha256:401d2d02970d98c06becea33967d192f282f72ea225d9053809b10e1c3032796 +2025-11-24T08:27:17.0317431Z Copying config sha256:27ebcc620bde4c43ac64f806f158db24396a214799e386c2fc74a5a310cbe497 +2025-11-24T08:27:17.0665277Z Writing manifest to image destination +2025-11-24T08:27:17.1020590Z Fetching quay.io_jetstack_cert-manager-startupapicheck_v1.16.3… +2025-11-24T08:27:17.4628723Z Getting image source signatures +2025-11-24T08:27:17.4630086Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e +2025-11-24T08:27:17.5996637Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:27:17.6467935Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 +2025-11-24T08:27:17.7887608Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:27:17.9137419Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:27:17.9834709Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:27:18.0843329Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:27:18.1313280Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:27:18.1798109Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:27:18.2230254Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:27:18.2716501Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:27:18.3668292Z Copying blob sha256:ed9d74fe3f43cfd57b281fbc2d0b7259be1e30644500cc06f569029448c4db3c +2025-11-24T08:27:18.7584762Z Copying blob sha256:f337015610d918db9f28625e0522a65553721879b7e26c0b1aee63b17cce7bc8 +2025-11-24T08:27:18.8719163Z Copying blob sha256:0381129cf2590e0cb552b4b458960847d3e410791dfe9701cf52ca6bffca9cb4 +2025-11-24T08:27:19.0438949Z Copying config sha256:361dc433e4fbd87505da3c7a5b0179e9ff0fe070950809aeb08fdc90d59e0218 +2025-11-24T08:27:19.1500910Z Writing manifest to image destination +2025-11-24T08:27:19.1837060Z Fetching quay.io_jetstack_cert-manager-webhook_v1.16.3… +2025-11-24T08:27:19.5402966Z Getting image source signatures +2025-11-24T08:27:19.5404575Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e +2025-11-24T08:27:19.6088843Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:27:19.6824764Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 +2025-11-24T08:27:19.7379071Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:27:19.7928125Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:27:19.8534594Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:27:19.9026919Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:27:19.9458493Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:27:20.0129676Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:27:20.1166023Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:27:20.1645476Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:27:20.2227156Z Copying blob sha256:489ca288d73032b835c7468a5b211cacb7d126fc47b92635530135fc7818dbb2 +2025-11-24T08:27:20.8025032Z Copying blob sha256:6bbf7e6890da395925b0f834abca6f762e37b8b54d9cedec672af6ae4096cf5d +2025-11-24T08:27:20.9103816Z Copying blob sha256:39d87579bed9b6c4e041e7b3b28c25bd2359e66e99edb87fe7c93d7f4cbf1c94 +2025-11-24T08:27:21.0390898Z Copying config sha256:d995a297967012c97f18ca941dc0ebeebc94722ba00c758cf87edcb540782f22 +2025-11-24T08:27:21.1205903Z Writing manifest to image destination +2025-11-24T08:27:21.1525995Z Fetching quay.io_keycloak_keycloak_22.0.4… +2025-11-24T08:27:21.5443852Z Getting image source signatures +2025-11-24T08:27:21.5445006Z Copying blob sha256:9e167103aefa56af4c39359687f54fdd263ca85bc946e770d92c054df7ada57c +2025-11-24T08:27:21.8835559Z Copying blob sha256:139b6b161a2f250f2d681753028510d391da42fd60ce3404582f53795e4a17af +2025-11-24T08:27:23.9476604Z Copying blob sha256:fc65979ef8be73a3fb8c59ee66f26d261537963bc0670dbff0d7134489e519a2 +2025-11-24T08:27:26.6378996Z Copying blob sha256:160dfdb51fefe875e1bff71f46e04f457f235df333e195212c2f70e029ee7822 +2025-11-24T08:27:26.7529368Z Copying config sha256:8ef105ff6a8d4a6f58978e20e0cdf14fb1dadbe830ba8a68123ac575d8d8e339 +2025-11-24T08:27:26.8816838Z Writing manifest to image destination +2025-11-24T08:27:26.9126724Z Fetching quay.io_kubernetes-ingress-controller_nginx-ingress-controller_0.30.0… +2025-11-24T08:27:27.2207061Z Getting image source signatures +2025-11-24T08:27:27.2208592Z Copying blob sha256:c9b1b535fdd91a9855fb7f82348177e5f019329a58c53c47272962dd60f71fc9 +2025-11-24T08:27:27.4168433Z Copying blob sha256:45ba4c9483202ddb8d244b042839be4cdd81398fc1282768e503fc62afad3855 +2025-11-24T08:27:30.0487498Z Copying blob sha256:70c24c20a56958dcd2b2ac3e3f14576160019088b7330e1043964baa5d67c699 +2025-11-24T08:27:30.3187089Z Copying blob sha256:58acda238271f26b1afd95abae7ca19fe45799ede5910403fca8a6c2b7de1323 +2025-11-24T08:27:30.8717272Z Copying blob sha256:7873cb07ba9128a83e56ed59a0280ef1d742fec854d51e01b87c9dfec6249724 +2025-11-24T08:27:31.3024294Z Copying blob sha256:3572b831a7ad1ed59991e07ee83a7478588dc221f73fa93d36dd304a59dc2b21 +2025-11-24T08:27:31.5164460Z Copying blob sha256:2e4b94d88c7a5762b4d5483e94f739075742c56df8f493ec4ac448f3d8c32710 +2025-11-24T08:27:31.7457403Z Copying blob sha256:73d054fe61621abf88cfe4a987667a55441a1a7e393713dddfea33cca1555b51 +2025-11-24T08:27:32.3016883Z Copying blob sha256:72107c0475b32fa4366f53b8768c16b3ccb1a1076e763110a27f37c301381988 +2025-11-24T08:27:32.5238910Z Copying blob sha256:0920fa00bdafe1face45bd8ca522cd36b2cc28d7066b6df5c71be27bf10d9329 +2025-11-24T08:27:33.1185737Z Copying blob sha256:bbc4231b0eed56a2ccf724d1c72cdb4a86d28074ef0c5cfc5f3558efdc9faaf0 +2025-11-24T08:27:33.6419253Z Copying blob sha256:1a0d8e7b84e84a0a0348441402c3ec36f5d708ab57fe46471c0e23a375e0f072 +2025-11-24T08:27:33.8848505Z Copying config sha256:89ccad40ce8e413ff4ceba362de33a81da1f1c5b4c909200c37898781236ef30 +2025-11-24T08:27:34.1417682Z Writing manifest to image destination +2025-11-24T08:27:34.1743554Z Fetching quay.io_minio_mc_RELEASE.2023-06-28T21-54-17Z… +2025-11-24T08:27:34.5564441Z Getting image source signatures +2025-11-24T08:27:34.5565687Z Copying blob sha256:28ff5ee6facbc15dc879cb26daf949072ec01118d3463efd1f991d9b92e175ef +2025-11-24T08:27:35.6111583Z Copying blob sha256:8c7e034bbeb33e9025767782e834218d80bc0b142685465386236f0cf2d48f86 +2025-11-24T08:27:35.9123596Z Copying blob sha256:3b3eb31575e6b579c1dae7010fc5bf660922007217127d16cf97089fce9bbb09 +2025-11-24T08:27:36.1507126Z Copying blob sha256:e7f16c65b72207d4d5edd1d36ddfe230729e22015c0caad44d8d334b2289edb9 +2025-11-24T08:27:39.2555289Z Copying config sha256:ad56b1e35ffe086b303a8ea34496b539cf6f74862c71e05790e0b0a8e3e06eef +2025-11-24T08:27:39.4608417Z Writing manifest to image destination +2025-11-24T08:27:39.4911837Z Fetching quay.io_minio_minio_RELEASE.2023-07-07T07-13-57Z… +2025-11-24T08:27:39.9248506Z Getting image source signatures +2025-11-24T08:27:39.9251197Z Copying blob sha256:5329d7039f252afc1c5d69521ef7e674f71c36b50db99b369cbb52aa9e0a6782 +2025-11-24T08:27:40.7939272Z Copying blob sha256:2b3707fd3b24cc1a4c08b7f199ed1f0bf5439a39fd47afdb2daacd7d716f066a +2025-11-24T08:27:40.9087824Z Copying blob sha256:5206d1e7147f4a5a26c5b73f4a0e16678de06ee62b69140aafb24d86a736dceb +2025-11-24T08:27:41.0415927Z Copying blob sha256:33feab5fa1c593df0b8b276b0c4dca07969f27aea39ebebc7c007824006bb460 +2025-11-24T08:27:41.1446975Z Copying blob sha256:5cd9e0eb62e54cb66a1aed56edbd1e7eb2aca73fd33eae89bdbd6f7ec7f17058 +2025-11-24T08:27:41.2555429Z Copying blob sha256:34f92c74bdafb322d35322666786b424fcca0eff8c94f9e16851707ffe1bf21f +2025-11-24T08:27:43.0006229Z Copying config sha256:09b7752e26c27cbeccf9f4e9c3bb7bfc91fa1d2fc5c59bfdc27105201f533545 +2025-11-24T08:27:43.1428232Z Writing manifest to image destination +2025-11-24T08:27:43.1731522Z Fetching quay.io_pires_docker-elasticsearch-curator_5.5.4… +2025-11-24T08:27:43.4949528Z Getting image source signatures +2025-11-24T08:27:43.4956627Z Copying blob sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28 +2025-11-24T08:27:43.7004063Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 +2025-11-24T08:27:43.8104293Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 +2025-11-24T08:27:43.8628200Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 +2025-11-24T08:27:43.9049107Z Copying blob sha256:471170bb1257626389ed5fd16962cdec310ab3af264ffef445df2773e7420b92 +2025-11-24T08:27:44.2305841Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 +2025-11-24T08:27:44.2827118Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 +2025-11-24T08:27:44.4355103Z Copying blob sha256:a92899abaf426b4fc95700ecc8dee0153d4a7374e7c5fa6586fcc2e2b326db41 +2025-11-24T08:27:46.0661103Z Copying blob sha256:2699438859de183d00dd84d486f6b57bbbc172bf905399e814c500e6c50d04c7 +2025-11-24T08:27:46.2751903Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 +2025-11-24T08:27:46.3232983Z Copying blob sha256:d278818cf042d33ced356d1a90b8e7b6ab2f9d020ae1c35c0db5385c9b0d9489 +2025-11-24T08:27:46.7467318Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 +2025-11-24T08:27:46.7927729Z Copying blob sha256:20263cea3e4427f4793ffae8bba30316948ebe2d13a2c74a8a48dc52b949c71f +2025-11-24T08:27:48.0234014Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 +2025-11-24T08:27:48.0731938Z Copying config sha256:0e258de6c0a3953c83a2fa35d3e7f90b6311ae29e9ef8ce012b029077cf10576 +2025-11-24T08:27:48.0753897Z Writing manifest to image destination +2025-11-24T08:27:48.1044546Z Fetching quay.io_prometheus-operator_prometheus-operator_v0.83.0… +2025-11-24T08:27:48.5308595Z Getting image source signatures +2025-11-24T08:27:48.5309657Z Copying blob sha256:9fa9226be034e47923c0457d916aa68474cdfb23af8d4525e9baeebc4760977a +2025-11-24T08:27:48.6296243Z Copying blob sha256:1617e25568b2231fdd0d5caff63b06f6f7738d8d961f031c80e47d35aaec9733 +2025-11-24T08:27:48.6826191Z Copying blob sha256:fa4e7c59a0d45243912d0f662d1befc7470f0db1ec2728184ced5fa6b62db0c5 +2025-11-24T08:27:49.1607903Z Copying config sha256:08ab5c2b4b7f58f032e7808d127bf6071b0de38404664617a438dc5a2448ed0e +2025-11-24T08:27:49.2155212Z Writing manifest to image destination +2025-11-24T08:27:49.2457606Z Fetching quay.io_prometheus_node-exporter_v1.9.1… +2025-11-24T08:27:49.6113132Z Getting image source signatures +2025-11-24T08:27:49.6114592Z Copying blob sha256:9fa9226be034e47923c0457d916aa68474cdfb23af8d4525e9baeebc4760977a +2025-11-24T08:27:49.6863145Z Copying blob sha256:1617e25568b2231fdd0d5caff63b06f6f7738d8d961f031c80e47d35aaec9733 +2025-11-24T08:27:49.7445960Z Copying blob sha256:c6e37428e3b36731b2b7a99979e0dbb27ce0849df0c23fb2b73e99bdbcd7ca33 +2025-11-24T08:27:49.9548366Z Copying config sha256:255ec253085fb105696533b31864a5e3b64f1f1e2147b5ec368100cbf3ec9b80 +2025-11-24T08:27:50.1418659Z Writing manifest to image destination +2025-11-24T08:27:50.1730032Z Fetching quay.io_prometheus_prometheus_v3.4.2… +2025-11-24T08:27:50.7225925Z Getting image source signatures +2025-11-24T08:27:50.7227509Z Copying blob sha256:9fa9226be034e47923c0457d916aa68474cdfb23af8d4525e9baeebc4760977a +2025-11-24T08:27:50.7984356Z Copying blob sha256:1617e25568b2231fdd0d5caff63b06f6f7738d8d961f031c80e47d35aaec9733 +2025-11-24T08:27:50.8656485Z Copying blob sha256:0185f950e16a571f988fa25b82090a906b4a959a83d6dca0650c10dcf8b75de1 +2025-11-24T08:27:52.7028747Z Copying blob sha256:158b50c376bfe354acb5444ce9630b78f1cf7339dd1b2ff78284d436e67656ad +2025-11-24T08:27:54.2045719Z Copying blob sha256:d809dcb8449def6608068854f943a9a3582063c8ad3a3de562b620d003be2ef3 +2025-11-24T08:27:54.3111579Z Copying blob sha256:ab5dc859c1b736fc450d61d9c59018fe1ec50e6574e5d45ff578db7808b151b4 +2025-11-24T08:27:54.4327898Z Copying blob sha256:d8261d2395d6634541d6647b662633b1e469a740423233b61468a5ae6ed22c9f +2025-11-24T08:27:54.5637328Z Copying blob sha256:7bde2424dadc49168bba400f88e657e68e7b7210b3aa6553313f48b9fb14b747 +2025-11-24T08:27:54.6853462Z Copying blob sha256:f1456f6dac0fc994ef529abaaacb76458672e57308dbcec36d210f3e2280e35b +2025-11-24T08:27:54.7979797Z Copying blob sha256:4d90f494fa797fa27f4785e7a5829694e0faa661902f6bc63949fb1698b98780 +2025-11-24T08:27:54.8977254Z Copying config sha256:9e24e9a9806cb72de9b148ff4f22e77b0b926e015c80bad5460e46db9056b80a +2025-11-24T08:27:54.9915755Z Writing manifest to image destination +2025-11-24T08:27:55.0226496Z Fetching quay.io_wire_account_2.9.0-v0.31.35-bad8a6a… +2025-11-24T08:27:55.3444224Z Getting image source signatures +2025-11-24T08:27:55.3446875Z Copying blob sha256:2d35ebdb57d9971fea0cac1582aa78935adf8058b2cc32db163c98822e5dfa1b +2025-11-24T08:27:55.5748131Z Copying blob sha256:9682177f5dda1fd55072217f7077e1c680daaa4e23e02a3cb1274868a8aa082e +2025-11-24T08:27:57.0510616Z Copying blob sha256:e910c7b62cc771efdec5776c0a1f50d1730a1c9c9acbdfb67c2de365f5e99d2e +2025-11-24T08:27:57.1836446Z Copying blob sha256:eb9e06b66aaed551c8dd195ece4a1bb9a96da16cb8d4d6fc9321919008650303 +2025-11-24T08:27:57.3037667Z Copying blob sha256:73eaa5a820182423981abbe77eae14f58b3c4e4786b85ebb1310ba874e1594ff +2025-11-24T08:27:58.0215554Z Copying blob sha256:9afa8f018d44c355a90a82499469eaa79700fed760dabe49aa8e3a4c27f9347d +2025-11-24T08:28:02.1069857Z Copying blob sha256:669d10042e1a8c2d51e22518a2d4767f0c0a09a29bfcca80c282a8828db76d15 +2025-11-24T08:28:02.3902606Z Copying blob sha256:b78f8d04609c16fa6bd5983f12de67fd9456658dd9a6900be602df4165197d8b +2025-11-24T08:28:04.8098407Z Copying config sha256:c242b10f4c1651c0a3cd42a607cf71c1af86c02f52d45005fe99c951a3d951a8 +2025-11-24T08:28:05.0435050Z Writing manifest to image destination +2025-11-24T08:28:05.0757566Z Fetching quay.io_wire_avs-nwtesttool_1.0.14… +2025-11-24T08:28:05.4021618Z Getting image source signatures +2025-11-24T08:28:05.4023044Z Copying blob sha256:4167d3e149762ea326c26fc2fd4e36fdeb7d4e639408ad30f37b8f25ac285a98 +2025-11-24T08:28:05.7246665Z Copying blob sha256:01b5d6afdecdb19ecc579f932e47ba26ffa54842946f11327fcad277ff158898 +2025-11-24T08:28:06.7946316Z Copying blob sha256:b8eff93b79f3d63e4ee0c73d0aa29e6deeec588544592767ada9536205022f81 +2025-11-24T08:28:07.0695711Z Copying blob sha256:f0f5a2d56f7c187f0cfbb4ca0b4f611114fe9e9e5234e333d8eded8825a22226 +2025-11-24T08:28:07.3177367Z Copying blob sha256:0489dc61c56b3b27c852187300ca6ca65279325ab5c5004e1d59a7f180ae4c42 +2025-11-24T08:28:07.5328466Z Copying config sha256:82d82f7da5326337f7bbbff9839006e1e211cdba30c24464aa7b8f58b25b9410 +2025-11-24T08:28:07.8397427Z Writing manifest to image destination +2025-11-24T08:28:07.8713174Z Fetching quay.io_wire_background-worker_5.23.0… +2025-11-24T08:28:08.2019675Z Getting image source signatures +2025-11-24T08:28:08.2020956Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:28:08.4169935Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:28:08.5387641Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:28:08.9442204Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:28:09.6978528Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:28:09.9648402Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:28:10.3449653Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:28:10.7273622Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:28:11.1674570Z Copying blob sha256:e4a6e4b9e0f63ac2627268775cf902a89dc4dfa4fed9a875e233d0a966ad10c0 +2025-11-24T08:28:15.0367398Z Copying blob sha256:91e68e387e18e44c96bb28821f334ec8035034f8cd43b82f27a445d32d46c793 +2025-11-24T08:28:15.2819669Z Copying config sha256:c4509670499e32cf5faf776f5dae07a6cdd2522d3f41492d95a8e70b58e09a47 +2025-11-24T08:28:15.5156300Z Writing manifest to image destination +2025-11-24T08:28:15.5463392Z Fetching quay.io_wire_brig-index_5.23.0… +2025-11-24T08:28:15.8935461Z Getting image source signatures +2025-11-24T08:28:15.8937091Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:28:16.0462237Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:28:16.1643215Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:28:16.2630846Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:28:16.6164233Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:28:16.7295980Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:28:16.9487178Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:28:17.2401707Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:28:17.3751936Z Copying blob sha256:315bd9cf2840fa401838867e49ef7427f72a78079f6659d72e6fb2983e58a72e +2025-11-24T08:28:22.5574233Z Copying blob sha256:b7aead1fa3419fd7218687396f2a3aa9cf41a1107e779f6b25d8d270b16a72a6 +2025-11-24T08:28:22.8286248Z Copying config sha256:9e207c4628aebc7f9b927382632b1441871e4f08ea2f0f14d5849d3fec8c0d18 +2025-11-24T08:28:23.0505426Z Writing manifest to image destination +2025-11-24T08:28:23.0994920Z Fetching quay.io_wire_brig-schema_5.23.0… +2025-11-24T08:28:23.5041235Z Getting image source signatures +2025-11-24T08:28:23.5042484Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:28:23.6944847Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:28:23.8316940Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:28:23.9322253Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:28:24.4185730Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:28:24.5357828Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:28:24.7709450Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:28:24.9954779Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:28:25.1870944Z Copying blob sha256:e95cd6aa3251e2deccc19c147575b32cbc55a7b8ca2c19942bcaf68e02da6afe +2025-11-24T08:28:30.9516771Z Copying blob sha256:d0488f5e77ab59d602fde920f3dd5e24eff72b74b8162ac92baa86614a893d2f +2025-11-24T08:28:31.2176931Z Copying config sha256:43610ad1d7d9fe837eaa0ff4090fa3abb8a0f668966ea77b9a91b80e6ba89f14 +2025-11-24T08:28:31.4905795Z Writing manifest to image destination +2025-11-24T08:28:31.5204343Z Fetching quay.io_wire_brig_5.23.0… +2025-11-24T08:28:31.8858730Z Getting image source signatures +2025-11-24T08:28:31.8861671Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:28:32.1292111Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:28:32.2636753Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:28:32.3831297Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:28:32.7465924Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:28:32.8376341Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:28:33.0406546Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:28:33.2616418Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:28:33.4396207Z Copying blob sha256:fcbacf7b9ed7edd355d1e40f6e0da97c0a62de10e3c9595d44d9d7d740c22b7d +2025-11-24T08:28:40.0474735Z Copying blob sha256:2b79a95384e923a9549e63773f5434e3d4d08f5286977f87605ab1784f383916 +2025-11-24T08:28:40.3105277Z Copying config sha256:0da865a95a5eb7631cc6eae7511f0104e3b96a064960b82c23fb2cd797ead676 +2025-11-24T08:28:40.5372541Z Writing manifest to image destination +2025-11-24T08:28:40.5698739Z Fetching quay.io_wire_cannon_5.23.0… +2025-11-24T08:28:40.9198834Z Getting image source signatures +2025-11-24T08:28:40.9207265Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:28:41.0559298Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:28:41.2005773Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:28:41.2939506Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:28:41.7043429Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:28:41.8065905Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:28:41.9879321Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:28:42.2128289Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:28:42.3459007Z Copying blob sha256:196eb713d4d792a1967a614e9b2a222b642280fafbbfcdf7dba572fe03d1f580 +2025-11-24T08:28:47.1504204Z Copying blob sha256:a0f11a8f90b45ae3b084b274d7701004ad2b70a0863a4d8c8400db953de57a55 +2025-11-24T08:28:47.3901354Z Copying config sha256:b770b59dcfad98d0f44685f0fc84ec0f5593052f90872050991a2911ac23da7e +2025-11-24T08:28:47.5705516Z Writing manifest to image destination +2025-11-24T08:28:47.6005771Z Fetching quay.io_wire_cargohold_5.23.0… +2025-11-24T08:28:47.9451111Z Getting image source signatures +2025-11-24T08:28:47.9452575Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:28:48.1448320Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:28:48.2471796Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:28:48.3464392Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:28:48.7596770Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:28:48.8935883Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:28:49.1135546Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:28:49.3095282Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:28:49.4537096Z Copying blob sha256:2b5edf4ddec3e9f931c2bf4558195c9f3ac5c404cee3353bb36a6511decc9c9a +2025-11-24T08:28:53.9969921Z Copying blob sha256:be412d118d3d87d0b5ffdb8b1520dcf8b3d863d6472d3ca20ee8e6fd386e9d14 +2025-11-24T08:28:54.2860260Z Copying config sha256:c0a49fe4f98b14985898bef9737901bd4b7353458f8e895c21c4f022da9496d2 +2025-11-24T08:28:54.5499261Z Writing manifest to image destination +2025-11-24T08:28:54.5809985Z Fetching quay.io_wire_coturn_4.6.2-federation-wireapp.43… +2025-11-24T08:28:54.9215360Z Getting image source signatures +2025-11-24T08:28:54.9216816Z Copying blob sha256:4eb1dd59a73886acc6a3cc9d4c8f8e66d1fd6ba6d6195b05ce21c22b0658aab8 +2025-11-24T08:28:56.7052147Z Copying blob sha256:d290e8ee3db6e288cb867ce2c1d9a1188d50f60e313ff1e418594f8a236e4d01 +2025-11-24T08:28:57.6749943Z Copying blob sha256:71d7cebe1ea4c3c83bd800c5f7b3d5c4d7ddc971fc8138c40e2313b642d1e772 +2025-11-24T08:28:57.9933039Z Copying blob sha256:4483b866b3c309956a508f909bd6c257925ec846377131b1f8b87a29be2cdf4e +2025-11-24T08:28:58.2769209Z Copying blob sha256:6126860a78d63271cdf8cb8057ef6c34776926ff7591280701dd06d76efd60bb +2025-11-24T08:28:59.3295427Z Copying blob sha256:29912616726e3fa32a7d84a87c7b4b449fd86c29a06d48759d027d38ea49c457 +2025-11-24T08:28:59.5069580Z Copying blob sha256:d0ec18f34189316556d4f8dc7503de2d0c7913f3a6af3f5310d6d8bfe50ed3ee +2025-11-24T08:28:59.6748895Z Copying config sha256:58fb705d4ac823e14913b482dbd25f79ab0160779bb4ad4f12254006d4dbdbb7 +2025-11-24T08:28:59.8216545Z Writing manifest to image destination +2025-11-24T08:28:59.8536149Z Fetching quay.io_wire_federator_5.23.0… +2025-11-24T08:29:00.2716949Z Getting image source signatures +2025-11-24T08:29:00.2719917Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:29:00.4749077Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:29:00.5834082Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:29:00.7085724Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:29:01.2707170Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:29:01.3855351Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:29:01.6197662Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:29:01.8554932Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:29:02.0448101Z Copying blob sha256:9e2687397e50ab643997bbf40d247021dd8d62dc5ab51e6d9653d88ab62fc727 +2025-11-24T08:29:06.7456499Z Copying blob sha256:5fe38810daf349ffdee60179d11f9a4ee35b9d8b0f534088fa4c1e024e2035c9 +2025-11-24T08:29:07.0413333Z Copying config sha256:38d1da6b54540165b65fee0ec9b431c536396d39380fcd07ab67c683ae01e9ef +2025-11-24T08:29:07.2563149Z Writing manifest to image destination +2025-11-24T08:29:07.2883819Z Fetching quay.io_wire_galley-migrate-data_5.23.0… +2025-11-24T08:29:07.6196949Z Getting image source signatures +2025-11-24T08:29:07.6198287Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:29:07.7586142Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:29:07.8790229Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:29:07.9758759Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:29:08.2707379Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:29:08.3845354Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:29:08.5524424Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:29:08.8443749Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:29:08.9655598Z Copying blob sha256:af3c3923acf99543cbc46ce66df16dbaffdfe0ba1bd86271644573dde56988fe +2025-11-24T08:29:13.0977367Z Copying blob sha256:efbd2341cbc992853adb81ba34ae04fb3eb0d520a78d7312eed17b11585de2d5 +2025-11-24T08:29:13.3383934Z Copying config sha256:f76cb40d1b97ffe16848390e7a376ca04369362b1caeeef9c997a92c7728a47c +2025-11-24T08:29:13.5687336Z Writing manifest to image destination +2025-11-24T08:29:13.6014929Z Fetching quay.io_wire_galley-schema_5.23.0… +2025-11-24T08:29:13.9734410Z Getting image source signatures +2025-11-24T08:29:13.9735650Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:29:14.1552365Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:29:14.2789247Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:29:14.3943876Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:29:14.8653096Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:29:14.9987162Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:29:15.1976261Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:29:15.4809463Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:29:15.6205033Z Copying blob sha256:febba50b4d4a3eeb182061d195c3b03bc224eabcdbbf58d9bc58873aa5d85332 +2025-11-24T08:29:20.3068163Z Copying blob sha256:c2da6ffedc8d39994c028b29cc9df8a74223a27824305d2cd3cc1d5a8af72acc +2025-11-24T08:29:20.6102490Z Copying config sha256:7f389aa6b4acf2f4466a8eb12a98de3dbeb9b9099c25b738ebbfc889af4c86c7 +2025-11-24T08:29:20.8239526Z Writing manifest to image destination +2025-11-24T08:29:20.8577875Z Fetching quay.io_wire_galley_5.23.0… +2025-11-24T08:29:21.3123927Z Getting image source signatures +2025-11-24T08:29:21.3125158Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:29:21.4537161Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:29:21.5557660Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:29:21.6490487Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:29:21.9449561Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:29:22.0642316Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:29:22.3157053Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:29:22.4725806Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:29:22.6019323Z Copying blob sha256:0d01635fb251629eb0b558036b57498993374e35eb6b598830d0a4a67cadd2a7 +2025-11-24T08:29:27.8167043Z Copying blob sha256:3ef5523d07fbd8878593c295c3fd5d6e61531401d81c4bd882fdd11274c6c05c +2025-11-24T08:29:28.0240635Z Copying config sha256:2d83f1caaac2650f5ef755f065ea4889431e55f0b2612b9cf3a4afe3b1b50cea +2025-11-24T08:29:28.2970841Z Writing manifest to image destination +2025-11-24T08:29:28.3270607Z Fetching quay.io_wire_gundeck-migrate-data_5.23.0… +2025-11-24T08:29:28.6914472Z Getting image source signatures +2025-11-24T08:29:28.6916032Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:29:28.8381827Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:29:28.9753442Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:29:29.1252502Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:29:29.5361682Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:29:29.6459295Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:29:29.9923476Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:29:30.2667389Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:29:30.4138328Z Copying blob sha256:098c82b2b1c72263c1d30c22e0fe8bddd108de20145776a726bfe31855dc9f9a +2025-11-24T08:29:34.9603755Z Copying blob sha256:6e7e28d30ba86aea59ae3d8b5329350c89efe43ae0fa56122fb1d70a30c42258 +2025-11-24T08:29:35.1740713Z Copying config sha256:098053a804f6c0c77a2e8a640f2ac71053f8b92a70948d7895b9ecb37b7c785f +2025-11-24T08:29:35.3946190Z Writing manifest to image destination +2025-11-24T08:29:35.4243594Z Fetching quay.io_wire_gundeck-schema_5.23.0… +2025-11-24T08:29:35.9010239Z Getting image source signatures +2025-11-24T08:29:35.9011402Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:29:36.0901156Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:29:36.2288713Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:29:36.3493900Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:29:36.8559067Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:29:37.0265632Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:29:37.2502316Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:29:37.4876145Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:29:37.6807888Z Copying blob sha256:07d75523f468c8b22a9c974f8b5c2e2c20d5001bf1af12ac8206337f4c612e3f +2025-11-24T08:29:43.2098100Z Copying blob sha256:dcf5745b358dc186c18fbd6091b8df0ec33f3b08cf059bd2a659ed39a5841084 +2025-11-24T08:29:43.5061468Z Copying config sha256:0f8b9d1058abe2985e5d2a68d22f89f1cda6ed080deae121d75a992469846c6c +2025-11-24T08:29:43.7511977Z Writing manifest to image destination +2025-11-24T08:29:43.7816327Z Fetching quay.io_wire_gundeck_5.23.0… +2025-11-24T08:29:44.1441233Z Getting image source signatures +2025-11-24T08:29:44.1442532Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:29:44.4328537Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:29:44.6813687Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:29:44.8067825Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:29:45.4103775Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:29:45.5614405Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:29:45.8813646Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:29:46.0997256Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:29:46.2527150Z Copying blob sha256:276de32d44b1874b542a0d8b9563c83ff99c97e6efd7204b1dc4c3ec068fa3b1 +2025-11-24T08:29:51.0508154Z Copying blob sha256:9b4acb4b6e659c5fc4c809d17cc4d3e2f741e63fa0d7cf657232dd74a298db60 +2025-11-24T08:29:51.2453307Z Copying config sha256:f145ef0d9b91c36ca472bf600cddc2f6a112b410dac2693ddc370a12fe088052 +2025-11-24T08:29:51.5395017Z Writing manifest to image destination +2025-11-24T08:29:51.5711758Z Fetching quay.io_wire_ixdotai-smtp_v0.5.2… +2025-11-24T08:29:51.9990877Z Getting image source signatures +2025-11-24T08:29:51.9992234Z Copying blob sha256:d812d0c7c96b7031537ddbf0850bf286a5adf68b055c9bf19b2955cb88df77ea +2025-11-24T08:29:53.4446875Z Copying blob sha256:d46a5d55279a68bcb8ce12b86390f8ff5d0ac713f6a34667209192509ac3b532 +2025-11-24T08:29:53.9929171Z Copying blob sha256:51ecd249c2194974329fb092404b491c7d93d070da71a7a5ffdbde739b5d63b0 +2025-11-24T08:29:54.2208097Z Copying config sha256:6fc2f5b2c12a7208a99b39dd0ab10a0c8783adf235e6ebe1f6b9c1ac5adbc8e9 +2025-11-24T08:29:54.6884090Z Writing manifest to image destination +2025-11-24T08:29:54.7186286Z Fetching quay.io_wire_ldap-scim-bridge_0.10.4… +2025-11-24T08:29:55.0720979Z Getting image source signatures +2025-11-24T08:29:55.0722144Z Copying blob sha256:67e31b0ca439c17b894631ab935337913f1c2407a68d9c97f203e5013306e56a +2025-11-24T08:29:56.8730980Z Copying config sha256:d6bef225d22760bb4d00fadb2d52580274b36f489c3deb15af17f4b461ca37c8 +2025-11-24T08:29:57.1248545Z Writing manifest to image destination +2025-11-24T08:29:57.1554445Z Fetching quay.io_wire_migrate-features_5.12.0… +2025-11-24T08:29:57.5574483Z Getting image source signatures +2025-11-24T08:29:57.5576948Z Copying blob sha256:10e45524ca1cb6342b5f367db06fafe6c39c1e39fdcee114ffd003a931546c1e +2025-11-24T08:29:57.9048826Z Copying blob sha256:87197915c18d3842cff7140a0097f2ea4d72bee104c4f00c31fc1b5ede9ab61b +2025-11-24T08:29:58.2133394Z Copying blob sha256:3375c174bfc716975107d2743b4ae3693004596c42d6a2da7349b305612531b2 +2025-11-24T08:29:58.4056971Z Copying blob sha256:cb52c0b7d468d452bb3af01ce72ad6603b4cce684c347f077eba02f36049c4df +2025-11-24T08:29:59.4910999Z Copying blob sha256:c775c061e819b049cfa1a0e5a3aa2b17b650d7ed9b16ae8a286bd0d4757933e5 +2025-11-24T08:29:59.7186238Z Copying blob sha256:95b18c5e2fb6ab5f2e8eda52f41f3c8ee7d5009f3ad9ee986d2d83d5d5a60145 +2025-11-24T08:30:00.0145975Z Copying blob sha256:3fc3b2252010d4fd24ff02e21962d7e2b0b5b80afdc7865bef6d1cfaa6509d01 +2025-11-24T08:30:00.4020069Z Copying blob sha256:e07f43e582c2b6c948ac307df157e3a1b9bcb465d4ec7f209cbf85c7052c0300 +2025-11-24T08:30:00.7206143Z Copying blob sha256:ed3e8570657567ffe2e7a39df74fa6b9d35ed815d9176370642ef7f97d48d629 +2025-11-24T08:30:05.7483370Z Copying blob sha256:46e350af963f016ae24afabfe12f23fea3e31648c6fb6ea8bd25eefd2d6176e1 +2025-11-24T08:30:06.0339187Z Copying config sha256:74ea1a76df932a896926c81d0aa0f25ccf7549657c1319c58327eee0c6824709 +2025-11-24T08:30:06.2553634Z Writing manifest to image destination +2025-11-24T08:30:06.2868156Z Fetching quay.io_wire_nginz_5.23.0… +2025-11-24T08:30:06.6120906Z Getting image source signatures +2025-11-24T08:30:06.6122562Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:30:06.8209196Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:30:07.1906584Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:30:07.3308222Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:30:07.8902508Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:30:08.0606144Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:30:08.3308247Z Copying blob sha256:a708248316ae981a6a971aef535841e9e7e82794f37937ae0e3e2eabd8f7be4e +2025-11-24T08:30:08.6345031Z Copying blob sha256:970949d4ca953847b1e648839ef0d36544bb156739acb17c716e676d6bff1022 +2025-11-24T08:30:08.8655422Z Copying blob sha256:b954ce62e9e5fd78e5addc438ce19696688c8533b925ffccf73a5afb829f1cfd +2025-11-24T08:30:44.9004117Z Copying blob sha256:c100fc6934d8365a24ad69d858b7e7a4d7d713da0410158e3596877849674cee +2025-11-24T08:30:45.0325613Z Copying config sha256:77e35b56af24dc73cf5a0f89463932678a815b839743d1ed4d65e9b6f56e83f2 +2025-11-24T08:30:45.2587785Z Writing manifest to image destination +2025-11-24T08:30:45.2921178Z Fetching quay.io_wire_postgres-endpoint-manager_1.0.0… +2025-11-24T08:30:45.7769251Z Getting image source signatures +2025-11-24T08:30:45.7772510Z Copying blob sha256:456a3213e1b1f193dc759cd05f6f8422428b8c4bd45ef40fbf41ba43bdce8570 +2025-11-24T08:30:48.2257037Z Copying blob sha256:c4e5d28285983dfee4b3d8dad2c20e0b95580babc17f6353343d2bc3319072ca +2025-11-24T08:30:49.5348105Z Copying blob sha256:eafdc9111b763c6e783929991b7db9c9b1ea7854c4238111f21aa6e76a90823d +2025-11-24T08:30:49.7599509Z Copying blob sha256:f8340aa9889469d304478750143e223805e7b4fc409f467fbe79766166c5eb9b +2025-11-24T08:30:50.2236616Z Copying blob sha256:bc640365b51b27a9ae863c62018a85c42367da9e6f2de274599667548d930a3c +2025-11-24T08:30:50.4699124Z Copying blob sha256:672adf445015619a92573484931114379a1b3e20f8b1b9b01ffcb7700b8a834c +2025-11-24T08:30:50.6969648Z Copying config sha256:3c9e4ffd0a17882a6d539a8685e1c5769b50ab57670e695d70dbb5079f5f6109 +2025-11-24T08:30:51.1149577Z Writing manifest to image destination +2025-11-24T08:30:51.1447580Z Fetching quay.io_wire_restund_v0.6.0-rc.1… +2025-11-24T08:30:51.4880273Z Getting image source signatures +2025-11-24T08:30:51.4881919Z Copying blob sha256:7b1a6ab2e44dbac178598dabe7cff59bd67233dba0b27e4fbd1f9d4b3c877a54 +2025-11-24T08:30:52.9634436Z Copying blob sha256:81efb940cd1317c5988b7f4ec7862866832bc2af3791fd281086d525b3c2a253 +2025-11-24T08:30:56.8699593Z Copying blob sha256:415cd2fed11186c810b6b7d70347aa4ee5d47c8c3ac28a12b8d97485cf259663 +2025-11-24T08:30:57.1309877Z Copying blob sha256:d921aed103eda020da093d73bb9cf4474001b597e678dd1bb376d1729dfb5669 +2025-11-24T08:30:57.5953583Z Copying blob sha256:841ae3e9d5565d87e5a68f91406b9f7cd5812a80b39f9c3ea1ccfb72a7f72fce +2025-11-24T08:30:58.2227340Z Copying blob sha256:88e709f83b06ccf290bb24c59f0c2ac0e746a2fe478302a45ec99d64c5d80e51 +2025-11-24T08:30:58.9908456Z Copying blob sha256:146b396e65f02da21635dcf9f1ba8ad004121ef19f3c2f51149a5aab11395037 +2025-11-24T08:30:59.3576237Z Copying blob sha256:900fa0beecfc7c72e5c43a60bc3351e29dcc803daf8303b0327effcadaa68d00 +2025-11-24T08:30:59.7439425Z Copying config sha256:511cc6196b367834fdd11554e9c5f970b5befbdc30b5367c4748e10d75cc48ae +2025-11-24T08:31:00.0247413Z Writing manifest to image destination +2025-11-24T08:31:00.0557168Z Fetching quay.io_wire_sftd_5.0.60… +2025-11-24T08:31:00.4506540Z Getting image source signatures +2025-11-24T08:31:00.4507752Z Copying blob sha256:9c631dc9017e74609e0eb5e01ec90787596effa25037ae220165a4552d03e0e7 +2025-11-24T08:31:02.5158086Z Copying config sha256:7d2d2a42c7c1c2e8bf9a3149e0bde850ff69d4de238fe640cb188c6fed62192b +2025-11-24T08:31:02.7148960Z Writing manifest to image destination +2025-11-24T08:31:02.7443537Z Fetching quay.io_wire_sftd_disco_1.1.1… +2025-11-24T08:31:03.1096879Z Getting image source signatures +2025-11-24T08:31:03.1098547Z Copying blob sha256:f18232174bc91741fdf3da96d85011092101a032a93a388b79e99e69c2d5c870 +2025-11-24T08:31:03.3065297Z Copying blob sha256:0970632d78d7920834cd04aa67e6f6fb151d505f467ff30ed8fc623941cda0c1 +2025-11-24T08:31:03.7578483Z Copying blob sha256:35a7dbc15d2eff4f5fb1612d8fb71ab591e366319a50e4af0d9afa095d92aa4e +2025-11-24T08:31:03.9985872Z Copying config sha256:4deaff8e4995b2966a51d2acb2ffe6cdb9e03cbbd5999e3fff04e30b421ba270 +2025-11-24T08:31:04.2251440Z Writing manifest to image destination +2025-11-24T08:31:04.2569764Z Fetching quay.io_wire_spar-migrate-data_5.23.0… +2025-11-24T08:31:04.6295481Z Getting image source signatures +2025-11-24T08:31:04.6296761Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:31:04.8087684Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:31:04.9038337Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:31:05.0206355Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:31:05.3700042Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:31:05.4536951Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:31:05.7309248Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:31:06.0038845Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:31:06.1464947Z Copying blob sha256:d516d8acad4e21d9c4c66395b79f768dd7eb787fe0201996ed3160984fe1a453 +2025-11-24T08:31:12.4118329Z Copying blob sha256:7b09b83770faf288a8293a61a99017a074543ca8774c337a8b429a158b3dcd5c +2025-11-24T08:31:12.6559365Z Copying config sha256:dafd3690a8fc91786a4def7e7442a8dfe54cef2653808ead5130c999cb5ba3bc +2025-11-24T08:31:12.9395036Z Writing manifest to image destination +2025-11-24T08:31:12.9713678Z Fetching quay.io_wire_spar-schema_5.23.0… +2025-11-24T08:31:13.3699606Z Getting image source signatures +2025-11-24T08:31:13.3701819Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:31:13.5318484Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:31:13.6397115Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:31:13.7597700Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:31:14.0828607Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:31:14.1945264Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:31:14.3810021Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:31:14.5646530Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:31:14.7264984Z Copying blob sha256:f0b35ec45a29b11e2b810934b45f88832870498c5320784d507c5225e93bc159 +2025-11-24T08:31:19.8106248Z Copying blob sha256:c20f40c2608d177f25adea2ac99cb6f9bebd203e28df3a74f61374af64bf58de +2025-11-24T08:31:20.0566519Z Copying config sha256:bc8e73723d20a33b5180a7d707815c2a5fac1fba3f3b87df6af7f2e9581846ad +2025-11-24T08:31:20.3768473Z Writing manifest to image destination +2025-11-24T08:31:20.4133706Z Fetching quay.io_wire_spar_5.23.0… +2025-11-24T08:31:20.8443652Z Getting image source signatures +2025-11-24T08:31:20.8445029Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:31:21.0771465Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:31:21.2784438Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:31:21.3865680Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:31:21.9159664Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:31:22.0273561Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:31:22.2206671Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:31:22.4897395Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:31:22.6264135Z Copying blob sha256:f737b1b641973a794acdf80207625e6af5d2f0d08ed7541503dfdf348083bdb5 +2025-11-24T08:31:28.2018713Z Copying blob sha256:c6fcb3eaf70eb624eeac94cc4c1c23236bc3efb23ef3cb250a3447cbd4561b6d +2025-11-24T08:31:28.4112559Z Copying config sha256:61d46b273baa002ffaaa36cf1a4aa957aec58dca3791104d80953c9cc1298684 +2025-11-24T08:31:28.6406562Z Writing manifest to image destination +2025-11-24T08:31:28.6706036Z Fetching quay.io_wire_stern_5.23.0… +2025-11-24T08:31:29.1263016Z Getting image source signatures +2025-11-24T08:31:29.1264674Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:31:29.2701841Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:31:29.4145971Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:31:29.5445575Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:31:29.9607726Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:31:30.0786981Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:31:30.2656279Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:31:30.5068556Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:31:30.6307455Z Copying blob sha256:07e7179663367914a25ba6110bd73730f9458ad2a801774732590b39c6eb3a27 +2025-11-24T08:31:34.5553592Z Copying blob sha256:ae7696494c3bab53212b56f5b1a7a38e8587e4bec615e1dc34030706fe039dcf +2025-11-24T08:31:34.8120347Z Copying config sha256:dd43c0e48a2645920bbba717c4bf04e59cb4d05ac2d0b352c36654810cef6922 +2025-11-24T08:31:35.0596312Z Writing manifest to image destination +2025-11-24T08:31:35.0896167Z Fetching quay.io_wire_team-settings_4.22.0-v0.34.6-75730da… +2025-11-24T08:31:35.4326595Z Getting image source signatures +2025-11-24T08:31:35.4328361Z Copying blob sha256:2d35ebdb57d9971fea0cac1582aa78935adf8058b2cc32db163c98822e5dfa1b +2025-11-24T08:31:35.6497208Z Copying blob sha256:60e45a9660cfaebbbac9bba98180aa28b3966b7f2462d132c46f51a1f5b25a64 +2025-11-24T08:31:37.5777399Z Copying blob sha256:e74e4ed823e9560b3fe51c0cab47dbfdfc4b12453604319408ec58708fb9e720 +2025-11-24T08:31:37.9695332Z Copying blob sha256:da04d522c98fe12816b2bcddf8413fca73645f8fa60f287c672f58bcc7f0fa38 +2025-11-24T08:31:38.2356487Z Copying blob sha256:68784224e0066503a88cac4d683af496688dde7c9fdb53b03daa893ce9b435be +2025-11-24T08:31:38.6746761Z Copying blob sha256:c243a7e59e55f462cd330ba6346acc8c5cd6ecb320bc28c0917a5192e091c816 +2025-11-24T08:31:40.9368881Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:31:41.0451088Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:31:41.0963752Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:31:41.1486741Z Copying blob sha256:b27c5c4b44c003c467e99cef68eade10d0af41a1ace963e23c39a0016c6d20af +2025-11-24T08:31:41.4191966Z Copying blob sha256:6e78df822f6daeaad6efa4a0d588227a51efc13c27f14df17a68f677f3bdcb44 +2025-11-24T08:31:44.4026153Z Copying config sha256:c712060fa4eb55b539061aa0a560f5809926e2212b0e8ec7ef5d9fc4a088cdd6 +2025-11-24T08:31:44.6230094Z Writing manifest to image destination +2025-11-24T08:31:44.6534695Z Fetching quay.io_wire_webapp_2025-11-05-production.0-v0.34.6-5620a27… +2025-11-24T08:31:45.0208989Z Getting image source signatures +2025-11-24T08:31:45.0211152Z Copying blob sha256:fe07684b16b82247c3539ed86a65ff37a76138ec25d380bd80c869a1a4c73236 +2025-11-24T08:31:45.2204128Z Copying blob sha256:dfb92eddc1a1cc8909288d09ef3781f8be90d926b68c536be670c2ae59adc0f4 +2025-11-24T08:31:47.7516566Z Copying blob sha256:1b67613f0a721f5e91ffb2f49054a3c73c4c840bf8d7f882c9b2c08f85e0893f +2025-11-24T08:31:48.1928755Z Copying blob sha256:c9ddb8507f841fcb28003ed1a2f32d68d43e79296cab55b37f19e7f0f61982dd +2025-11-24T08:31:48.4065810Z Copying blob sha256:32cc6a14862517b7df7be668a2c75761085d7d4aaa8d45536d56e1e802773661 +2025-11-24T08:31:48.9086065Z Copying blob sha256:cc12369cf618c75b4230e14f5da117531d7ceada28b35b50669e10661ed2fd49 +2025-11-24T08:31:58.0532467Z Copying blob sha256:9a6aabb386d5bc0b3d82ff18203b89ea7a79c5f8517de9f233c7eec3fc07a636 +2025-11-24T08:31:58.2538746Z Copying blob sha256:a56dab23ebaeaa0115e3b5d71fa408822f260b3a4b0b9d28a22a82453e43dd07 +2025-11-24T08:31:58.6495238Z Copying blob sha256:14c1d07e9ed18218138ab906e3810e20fbd6d8624d6d5c59455c67a735be2d71 +2025-11-24T08:32:03.9004700Z Copying config sha256:291439a3daad3a6a59e8ed5c3c90d6cb9c83a7089ca00cc97553603f14028837 +2025-11-24T08:32:04.1656399Z Writing manifest to image destination +2025-11-24T08:32:04.1968525Z Fetching quay.io_wire_wire-utility-tool_1.3.0… +2025-11-24T08:32:04.7088573Z Getting image source signatures +2025-11-24T08:32:04.7089828Z Copying blob sha256:456a3213e1b1f193dc759cd05f6f8422428b8c4bd45ef40fbf41ba43bdce8570 +2025-11-24T08:32:05.4778278Z Copying blob sha256:5b43071a7b8765754e2f7387bc4269ea98e621a5bfd1d4fd56dbf245887b8310 +2025-11-24T08:32:09.7025608Z Copying blob sha256:d59bafb7a4becaaca3260f2b9ade26422a445583ee99846ff62dc02579760de7 +2025-11-24T08:32:10.3478368Z Copying blob sha256:40971169fa1a26f3b2dd10d018137ed7c1d0bd0346d1ab12f2c9d4fc5e0fc11b +2025-11-24T08:32:12.2315089Z Copying blob sha256:f7b7fca67a6934d57f9a68d6f66dd04e512550bb06d36b63061a7b2262fe671c +2025-11-24T08:32:12.4836147Z Copying blob sha256:f9383038960ff39f352e08e880b30de6acd9668567fc87c9c35edab8ce86b488 +2025-11-24T08:32:13.2426303Z Copying blob sha256:c76d2b4050c96f5c5f83b52e51e5d11622a64ffbf952a5084ab037b91e5231a4 +2025-11-24T08:32:13.5278331Z Copying blob sha256:fa83d6537a675fa1b6b1809baddfa657db05d9141e6b574eedf6bbf29f1e7641 +2025-11-24T08:32:13.7924777Z Copying blob sha256:027560f41e09175b469b827090b9aeadbbd02ed507a607248061787df2af2620 +2025-11-24T08:32:14.0703792Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:32:14.1677909Z Copying config sha256:d9767712843ee248ddc69e8f97f9dc84a8abb54997489f44558eb3df3b2f34a1 +2025-11-24T08:32:14.4108245Z Writing manifest to image destination +2025-11-24T08:32:14.4430361Z Fetching registry.gitlab.com_egos-tech_smtp_1.0.1… +2025-11-24T08:32:14.9048747Z Getting image source signatures +2025-11-24T08:32:14.9049986Z Copying blob sha256:757ae7631f8e1d39651aad33c995a10e880b614004ed9c6c995866d256a3f805 +2025-11-24T08:32:16.2107237Z Copying blob sha256:cd0755de4c22ee77e51895cf9849a2d9433cb331b59fbb6ddb0ebb80d0db22d2 +2025-11-24T08:32:16.8806077Z Copying config sha256:89040f0cabd788aa4b87500546c194f5fc8df6bb082533b2da90c2387f1ffb0f +2025-11-24T08:32:17.1560798Z Writing manifest to image destination +2025-11-24T08:32:17.1942503Z Fetching registry.k8s.io_ingress-nginx_controller_v1.10.6… +2025-11-24T08:32:17.4778615Z Getting image source signatures +2025-11-24T08:32:17.4781358Z Copying blob sha256:38a8310d387e375e0ec6fabe047a9149e8eb214073db9f461fee6251fd936a75 +2025-11-24T08:32:17.7745920Z Copying blob sha256:36c8ace24818448cb95b511e26934f2c42c1a1a8c1e4f21dcf7e9c076fec568d +2025-11-24T08:32:18.5995827Z Copying blob sha256:1589113f887639dee956f9427ffbc859f210b0e337555d8a875f5c4bfc53ac7c +2025-11-24T08:32:18.8447108Z Copying blob sha256:ff083963f0a597a8a685c5c380b51da0da848f99142044492b623622bd5d853d +2025-11-24T08:32:18.9023798Z Copying blob sha256:6aef73cafaf5595218eb5be41a364618d487dfcd5132dbc256efc1329c091756 +2025-11-24T08:32:19.0288733Z Copying blob sha256:1598e41ce4ca71aa1925d7cf5c447cb92727c47e56b08225ffa1877cb66dfed9 +2025-11-24T08:32:19.5286832Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:32:19.5766324Z Copying blob sha256:f5498cb2cb11679e16966905d80c402eaf639039044f64414b09defa7f7cac93 +2025-11-24T08:32:19.7085974Z Copying blob sha256:e4f45faee60f49b37fd72e8e0a2a8ca8314e61c7350ad1537980415d5931aa46 +2025-11-24T08:32:19.7927141Z Copying blob sha256:eba2b82ca8d73be6aa94f156b9d31ac2483055d516b29a7d890c418c1714f482 +2025-11-24T08:32:19.9916444Z Copying blob sha256:a280b0d99e844fef22b35e553514e3671509f174ca5e84bae66f129289cb45a7 +2025-11-24T08:32:20.4106736Z Copying blob sha256:20735dd9a1ddf7ba4ebe1f58671ec807ea05f7bc42f99e826404a07c862661cf +2025-11-24T08:32:20.5389043Z Copying blob sha256:0fbbc775ab81930d1f5f012200da0726ecc65af56166dd4a497db3c626a8c511 +2025-11-24T08:32:20.6165480Z Copying blob sha256:a686e243c7de5ec1ee650675ac6bfae2524d438a4b3121366a39b3f3a52237fa +2025-11-24T08:32:21.2416660Z Copying blob sha256:ae25c12dab823d9c719a756ca75cabbfe0911c3e3e340340c75b3d3eadac7ac6 +2025-11-24T08:32:21.3042533Z Copying config sha256:9cdd4614b7897b0f91aaafc574aa7f2dfed083dbbc8540a4a4e0d4496e0edaf7 +2025-11-24T08:32:21.3997704Z Writing manifest to image destination +2025-11-24T08:32:21.4329168Z Fetching registry.k8s.io_ingress-nginx_kube-webhook-certgen_v1.5.4… +2025-11-24T08:32:21.6910798Z Getting image source signatures +2025-11-24T08:32:21.6912025Z Copying blob sha256:35d697fe273816c60d20a62a879f8643f79cd4ed85a8e80dba28a17350fc26b6 +2025-11-24T08:32:21.7949147Z Copying blob sha256:bfb59b82a9b65e47d485e53b3e815bca3b3e21a095bd0cb88ced9ac0b48062bf +2025-11-24T08:32:21.8474227Z Copying blob sha256:4eff9a62d888790350b2481ff4a4f38f9c94b3674d26b2f2c85ca39cdef43fd9 +2025-11-24T08:32:21.9323707Z Copying blob sha256:a62778643d563b511190663ef9a77c30d46d282facfdce4f3a7aecc03423c1f3 +2025-11-24T08:32:21.9827650Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:32:22.0392282Z Copying blob sha256:3214acf345c0cc6bbdb56b698a41ccdefc624a09d6beb0d38b5de0b2303ecaf4 +2025-11-24T08:32:22.0870880Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:32:22.1346192Z Copying blob sha256:0bab15eea81d0fe6ab56ebf5fba14e02c4c1775a7f7436fbddd3505add4e18fa +2025-11-24T08:32:22.1816878Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:32:22.2347758Z Copying blob sha256:da7816fa955ea24533c388143c78804c28682eef99b4ee3723b548c70148bba6 +2025-11-24T08:32:22.2835057Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 +2025-11-24T08:32:22.3435987Z Copying blob sha256:ad8efacac9036cc6a99944504864d803c2102903b7a585146c74edeb0a177cf3 +2025-11-24T08:32:23.0807799Z Copying config sha256:0ea86a086203367db3e76dfbaf10b334e274b2af5d2c56fc70e0222e83ba0400 +2025-11-24T08:32:23.1288667Z Writing manifest to image destination +2025-11-24T08:32:23.1599411Z Fetching registry.k8s.io_ingress-nginx_kube-webhook-certgen_v20220916-gd32f8c343… +2025-11-24T08:32:23.4050515Z Getting image source signatures +2025-11-24T08:32:23.4051688Z Copying blob sha256:1cd0595314a53d179ddaf68761c9f40c4d9d1bcd3f692d1c005938dac2993db6 +2025-11-24T08:32:23.6136231Z Copying blob sha256:12fc225329e5f8fe052a31fa46f1d62f6f0e405626f7767bdaa14a02baffad3e +2025-11-24T08:32:24.0223187Z Copying config sha256:520347519a8caefcdff1c480be13cea37a66bccf517302949b569a654b0656b5 +2025-11-24T08:32:24.0786939Z Writing manifest to image destination +2025-11-24T08:32:24.1086750Z Fetching registry.k8s.io_kube-state-metrics_kube-state-metrics_v2.16.0… +2025-11-24T08:32:24.3398326Z Getting image source signatures +2025-11-24T08:32:24.3399505Z Copying blob sha256:35d697fe273816c60d20a62a879f8643f79cd4ed85a8e80dba28a17350fc26b6 +2025-11-24T08:32:24.4449829Z Copying blob sha256:bfb59b82a9b65e47d485e53b3e815bca3b3e21a095bd0cb88ced9ac0b48062bf +2025-11-24T08:32:24.5036502Z Copying blob sha256:4eff9a62d888790350b2481ff4a4f38f9c94b3674d26b2f2c85ca39cdef43fd9 +2025-11-24T08:32:24.6003996Z Copying blob sha256:a62778643d563b511190663ef9a77c30d46d282facfdce4f3a7aecc03423c1f3 +2025-11-24T08:32:24.6489049Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:32:24.7085696Z Copying blob sha256:3214acf345c0cc6bbdb56b698a41ccdefc624a09d6beb0d38b5de0b2303ecaf4 +2025-11-24T08:32:24.7554159Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:32:24.8013839Z Copying blob sha256:0bab15eea81d0fe6ab56ebf5fba14e02c4c1775a7f7436fbddd3505add4e18fa +2025-11-24T08:32:24.8579748Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:32:24.9155859Z Copying blob sha256:da7816fa955ea24533c388143c78804c28682eef99b4ee3723b548c70148bba6 +2025-11-24T08:32:24.9655747Z Copying blob sha256:ddf74a63f7d8b7d157e5db1a45675a58e304b4c1d425b05c28c835b987623395 +2025-11-24T08:32:25.0210273Z Copying blob sha256:4a9e6ef411a5b299636c58dbd72b6a3961c84cb329cb0d1cb510f7cf139ee818 +2025-11-24T08:32:25.4804661Z Copying config sha256:5ce700671515d4a1ed5e1f01713a3769926a418cf5c31d5d0d33543482e88b74 +2025-11-24T08:32:25.5316864Z Writing manifest to image destination +2025-11-24T08:32:25.5621451Z Fetching softwaremill_elasticmq-native_1.6.11… +2025-11-24T08:32:25.9275438Z Getting image source signatures +2025-11-24T08:32:25.9276846Z Copying blob sha256:dc0decf4841d19b14e836c2d82bd5cb9540fb5e0d1359549ca243f49036557e9 +2025-11-24T08:32:26.0626925Z Copying blob sha256:c0939416ca1e84705a3d60cca55df2e41124d3b628b5a36c9ee6d07348c829c4 +2025-11-24T08:32:26.1139307Z Copying blob sha256:2577f95c2141954e793d24a14d3c8283120dd951d5074a05f3ecdaa8855db8cc +2025-11-24T08:32:26.1733052Z Copying blob sha256:2a814958434cbbc5e9eba9ad273a81aad4f8c8bece88b22b8fb0f1f5cdc9b423 +2025-11-24T08:32:26.2358879Z Copying blob sha256:220b77f21b2f6dbde6c193b6f90b9f53c259915e45583dd09d10844afaec831f +2025-11-24T08:32:26.9039652Z Copying blob sha256:de92a77d31dc8b2d3730e97f6edaeee01222ede2e4026633b20ef9e2d64fef38 +2025-11-24T08:32:26.9630957Z Copying blob sha256:49edeee580bc2587be63027825183c532999faf3e173cf56dcb0367e44b82d85 +2025-11-24T08:32:27.0109026Z Copying blob sha256:a8b3c663ef2ecbecb10d6bb472d9929f004965ff95f545a97787bef1f0c26291 +2025-11-24T08:32:27.0710395Z Copying config sha256:63f7f8bcef94fd359f012d8e504c56fac28d3e4f3f5175f6d2a555b9ec2d3373 +2025-11-24T08:32:27.1157850Z Writing manifest to image destination +2025-11-24T08:34:03.3716059Z Running post-chart process script 0 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output with values type prod +2025-11-24T08:34:03.3801503Z Building zauth container image in /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... +2025-11-24T08:34:03.4964454Z Fetching quay.io_wire_zauth_5.23.0… +2025-11-24T08:34:03.8579443Z Getting image source signatures +2025-11-24T08:34:03.8580704Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 +2025-11-24T08:34:04.0217340Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 +2025-11-24T08:34:04.1186635Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e +2025-11-24T08:34:04.2548459Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d +2025-11-24T08:34:04.8794020Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c +2025-11-24T08:34:05.0178239Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc +2025-11-24T08:34:05.2490287Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e +2025-11-24T08:34:05.5541566Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 +2025-11-24T08:34:05.7085971Z Copying blob sha256:c4f1468300ed99d330fb82c09d28c8c4fe32e95073dc8a12179fb334d08445c4 +2025-11-24T08:34:09.3203041Z Copying blob sha256:f4a2825d20e7c9e4d64a047ac7534d3561a1fb97c2d16f90741a33eb567bea6f +2025-11-24T08:34:09.6598443Z Copying config sha256:1dd6993d052ae8a85b7e24a754755992e1ce9539b7c8db4b5f59d4a338ae6c02 +2025-11-24T08:34:09.9414050Z Writing manifest to image destination +2025-11-24T08:34:09.9682058Z Building adminhost container images in /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... +2025-11-24T08:34:10.4473401Z trace: warning: in docker image quay.io/wire/wire-server-deploy: The contents parameter is deprecated. Change to copyToRoot if the contents are designed to be copied to the root filesystem, such as when you use `buildEnv` or similar between contents and your packages. Use copyToRoot = buildEnv { ... }; or similar if you intend to add packages to /bin. +2025-11-24T08:34:17.1689996Z this path will be fetched (1377.71 MiB download, 1466.64 MiB unpacked): +2025-11-24T08:34:17.1691474Z /nix/store/wf4h5vv4v5cpmbflm884r3hm2mrb87kg-docker-image-wire-server-deploy.tar.gz +2025-11-24T08:34:17.1702287Z copying path '/nix/store/wf4h5vv4v5cpmbflm884r3hm2mrb87kg-docker-image-wire-server-deploy.tar.gz' from 'https://wire-server.cachix.org'... +2025-11-24T08:34:36.0987720Z Building Linux packages /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... +2025-11-24T08:34:37.1591310Z python3-apt | python3-netaddr | python3-pip | aufs-tools | apt-transport-https | software-properties-common | conntrack | ipvsadm | ipset | curl | rsync | socat | unzip | e2fsprogs | xfsprogs | ebtables | python3-minimal | openjdk-8-jdk-headless | iproute2 | procps | libjemalloc2 | qrencode | texlive | latexmk | libopts25 | ntp | libc6 | libseccomp2 | iptables | bash-completion | logrotate | cron | crontab | ufw | netcat | telnet | less | traceroute | strace | iputils-ping | nano | vi | tcpdump | gnupg | bzip2 | erlang-base | erlang-asn1 | erlang-crypto | erlang-eldap | erlang-ftp | erlang-inets | erlang-mnesia | erlang-os-mon | erlang-parsetools | erlang-public-key | erlang-runtime-tools | erlang-snmp | erlang-ssl | erlang-syntax-tools | erlang-tftp | erlang-tools | erlang-xmerl | rabbitmq-server | ssl-cert | libllvm15 | sysstat | libssl-dev | libjson-perl | libipc-run-perl +2025-11-24T08:34:37.2019562Z Info +2025-11-24T08:34:38.0067067Z gpg (GnuPG) 1.4.23 +2025-11-24T08:34:38.0067648Z Copyright (C) 2015 Free Software Foundation, Inc. +2025-11-24T08:34:38.0068402Z License GPLv3+: GNU GPL version 3 or later +2025-11-24T08:34:38.0069182Z This is free software: you are free to change and redistribute it. +2025-11-24T08:34:38.0069860Z There is NO WARRANTY, to the extent permitted by law. +2025-11-24T08:34:38.0070247Z +2025-11-24T08:34:38.0070513Z Home: /home/runner/work/_temp/tmp.kyQNIWJgXX +2025-11-24T08:34:38.0071155Z Supported algorithms: +2025-11-24T08:34:38.0071814Z Pubkey: RSA, RSA-E, RSA-S, ELG-E, DSA +2025-11-24T08:34:38.0072940Z Cipher: IDEA, 3DES, CAST5, BLOWFISH, AES, AES192, AES256, TWOFISH, +2025-11-24T08:34:38.0073901Z CAMELLIA128, CAMELLIA192, CAMELLIA256 +2025-11-24T08:34:38.0074731Z Hash: MD5, SHA1, RIPEMD160, SHA256, SHA384, SHA512, SHA224 +2025-11-24T08:34:38.0075432Z Compression: Uncompressed, ZIP, ZLIB, BZIP2 +2025-11-24T08:34:38.0092114Z gpg: keyring `/home/runner/work/_temp/tmp.kyQNIWJgXX/pubring.gpg' created +2025-11-24T08:34:38.0099139Z gpg: /home/runner/work/_temp/tmp.kyQNIWJgXX/trustdb.gpg: trustdb created +2025-11-24T08:34:38.0116868Z gpg: keyring `/home/runner/work/_temp/tmp.kyQNIWJgXX/trustedkeys.gpg' created +2025-11-24T08:34:38.0136535Z gpg: keyring `/home/runner/work/_temp/tmp.kyQNIWJgXX/secring.gpg' created +2025-11-24T08:34:38.0149451Z gpg: key EBD99578: secret key imported +2025-11-24T08:34:38.0154878Z gpg: key EBD99578: public key "Wire Swiss GmbH " imported +2025-11-24T08:34:38.0155789Z gpg: Total number processed: 1 +2025-11-24T08:34:38.0156560Z gpg: imported: 1 (RSA: 1) +2025-11-24T08:34:38.0157241Z gpg: secret keys read: 1 +2025-11-24T08:34:38.0158088Z gpg: secret keys imported: 1 +2025-11-24T08:34:38.0162336Z gpg: no ultimately trusted keys found +2025-11-24T08:34:38.0164208Z Printing the public key ids... +2025-11-24T08:34:38.0178302Z /home/runner/work/_temp/tmp.kyQNIWJgXX/pubring.gpg +2025-11-24T08:34:38.0179211Z -------------------------------------------------- +2025-11-24T08:34:38.0180098Z pub 2048R/EBD99578 2024-07-12 [expires: 2026-07-12] +2025-11-24T08:34:38.0180978Z uid Wire Swiss GmbH +2025-11-24T08:34:38.0181497Z +2025-11-24T08:34:38.0182143Z Printing the secret key ids... +2025-11-24T08:34:38.0196260Z /home/runner/work/_temp/tmp.kyQNIWJgXX/secring.gpg +2025-11-24T08:34:38.0197152Z -------------------------------------------------- +2025-11-24T08:34:38.0197890Z sec 2048R/EBD99578 2024-07-12 [expires: 2026-07-12] +2025-11-24T08:34:38.0198800Z uid Wire Swiss GmbH +2025-11-24T08:34:38.0199630Z ssb 2048R/A7637513 2024-07-12 +2025-11-24T08:34:38.0200050Z +2025-11-24T08:34:38.0472274Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-11-24T08:34:38.0473790Z Dload Upload Total Spent Left Speed +2025-11-24T08:34:38.0474554Z +2025-11-24T08:34:38.1962153Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-11-24T08:34:38.4593300Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-11-24T08:34:38.4594202Z 100 16000 0 16000 0 0 38813 0 --:--:-- --:--:-- --:--:-- 38740 +2025-11-24T08:34:38.4637966Z gpg: key C0B21F32: public key "Ubuntu Archive Automatic Signing Key (2012) " imported +2025-11-24T08:34:38.4638760Z gpg: Total number processed: 1 +2025-11-24T08:34:38.4639526Z gpg: imported: 1 (RSA: 1) +2025-11-24T08:34:38.4644441Z gpg: no ultimately trusted keys found +2025-11-24T08:34:38.4692847Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-11-24T08:34:38.4693949Z Dload Upload Total Spent Left Speed +2025-11-24T08:34:38.4694509Z +2025-11-24T08:34:38.7577987Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-11-24T08:34:38.7579287Z 100 4747 0 4747 0 0 16447 0 --:--:-- --:--:-- --:--:-- 16482 +2025-11-24T08:34:38.7609312Z gpg: key 991BC93C: public key "Ubuntu Archive Automatic Signing Key (2018) " imported +2025-11-24T08:34:38.7610647Z gpg: Total number processed: 1 +2025-11-24T08:34:38.7611473Z gpg: imported: 1 (RSA: 1) +2025-11-24T08:34:38.7616133Z gpg: no ultimately trusted keys found +2025-11-24T08:34:38.7665695Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-11-24T08:34:38.7666853Z Dload Upload Total Spent Left Speed +2025-11-24T08:34:38.7667433Z +2025-11-24T08:34:38.8219666Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-11-24T08:34:38.8220752Z 100 3817 100 3817 0 0 68730 0 --:--:-- --:--:-- --:--:-- 69400 +2025-11-24T08:34:38.8254097Z gpg: key 0EBFCD88: public key "Docker Release (CE deb) " imported +2025-11-24T08:34:38.8254900Z gpg: Total number processed: 1 +2025-11-24T08:34:38.8255406Z gpg: imported: 1 (RSA: 1) +2025-11-24T08:34:39.2199668Z gpg: key 6026DFCA: public key "RabbitMQ Release Signing Key " imported +2025-11-24T08:34:39.2200817Z gpg: Total number processed: 1 +2025-11-24T08:34:39.2201567Z gpg: imported: 1 (RSA: 1) +2025-11-24T08:34:39.2205059Z gpg: no ultimately trusted keys found +2025-11-24T08:34:39.5273349Z gpg: key 57EBB1CC: public key "Launchpad PPA for Team RabbitMQ" imported +2025-11-24T08:34:39.5274427Z gpg: Total number processed: 1 +2025-11-24T08:34:39.5275182Z gpg: imported: 1 (RSA: 1) +2025-11-24T08:34:39.9442024Z gpg: key 4D206F89: public key "https://packagecloud.io/rabbitmq/rabbitmq-server (https://packagecloud.io/docs#gpg_signing) " imported +2025-11-24T08:34:39.9444450Z gpg: Total number processed: 1 +2025-11-24T08:34:39.9445491Z gpg: imported: 1 (RSA: 1) +2025-11-24T08:34:39.9449459Z Trusted +2025-11-24T08:34:39.9476170Z /home/runner/work/_temp/tmp.kyQNIWJgXX/trustedkeys.gpg +2025-11-24T08:34:39.9477396Z ------------------------------------------------------ +2025-11-24T08:34:39.9478504Z pub 4096R/C0B21F32 2012-05-11 +2025-11-24T08:34:39.9479864Z uid Ubuntu Archive Automatic Signing Key (2012) +2025-11-24T08:34:39.9480921Z +2025-11-24T08:34:39.9481302Z pub 4096R/991BC93C 2018-09-17 +2025-11-24T08:34:39.9482278Z uid Ubuntu Archive Automatic Signing Key (2018) +2025-11-24T08:34:39.9483218Z +2025-11-24T08:34:39.9483536Z pub 4096R/0EBFCD88 2017-02-22 +2025-11-24T08:34:39.9484330Z uid Docker Release (CE deb) +2025-11-24T08:34:39.9485190Z sub 4096R/F273FCD8 2017-02-22 +2025-11-24T08:34:39.9485597Z +2025-11-24T08:34:39.9485895Z pub 4096R/6026DFCA 2016-05-17 +2025-11-24T08:34:39.9486718Z uid RabbitMQ Release Signing Key +2025-11-24T08:34:39.9487610Z sub 4096R/12EBCE19 2016-05-17 +2025-11-24T08:34:39.9488017Z +2025-11-24T08:34:39.9488315Z pub 4096R/57EBB1CC 2021-03-08 +2025-11-24T08:34:39.9489074Z uid Launchpad PPA for Team RabbitMQ +2025-11-24T08:34:39.9489574Z +2025-11-24T08:34:39.9489849Z pub 4096R/4D206F89 2018-10-08 +2025-11-24T08:34:39.9491018Z uid https://packagecloud.io/rabbitmq/rabbitmq-server (https://packagecloud.io/docs#gpg_signing) +2025-11-24T08:34:39.9492246Z sub 4096R/DC62814E 2018-10-08 +2025-11-24T08:34:39.9492812Z +2025-11-24T08:34:40.6372479Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/InRelease... +2025-11-24T08:34:41.7507955Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/InRelease +2025-11-24T08:34:41.7542394Z openpgp: Signature made Thu, 21 Apr 2022 17:16:39 UTC using RSA key ID 871920D1991BC93C +2025-11-24T08:34:41.7543665Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " +2025-11-24T08:34:41.7882103Z +2025-11-24T08:34:41.7883181Z Mirror [jammy]: http://de.archive.ubuntu.com/ubuntu/ jammy successfully added. +2025-11-24T08:34:41.7884431Z You can run 'aptly mirror update jammy' to download repository contents. +2025-11-24T08:34:41.8078751Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/InRelease... +2025-11-24T08:34:42.5875710Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/InRelease +2025-11-24T08:34:42.5897053Z openpgp: Signature made Mon, 24 Nov 2025 05:07:29 UTC using RSA key ID 871920D1991BC93C +2025-11-24T08:34:42.5898019Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " +2025-11-24T08:34:42.6044541Z +2025-11-24T08:34:42.6045563Z Mirror [jammy-security]: http://de.archive.ubuntu.com/ubuntu/ jammy-security successfully added. +2025-11-24T08:34:42.6046967Z You can run 'aptly mirror update jammy-security' to download repository contents. +2025-11-24T08:34:42.6243837Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease... +2025-11-24T08:34:43.3301951Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease +2025-11-24T08:34:43.3324208Z openpgp: Signature made Mon, 24 Nov 2025 05:10:20 UTC using RSA key ID 871920D1991BC93C +2025-11-24T08:34:43.3325674Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " +2025-11-24T08:34:43.3464113Z +2025-11-24T08:34:43.3465129Z Mirror [jammy-updates]: http://de.archive.ubuntu.com/ubuntu/ jammy-updates successfully added. +2025-11-24T08:34:43.3466032Z You can run 'aptly mirror update jammy-updates' to download repository contents. +2025-11-24T08:34:43.3663516Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/InRelease... +2025-11-24T08:34:43.3904869Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/InRelease +2025-11-24T08:34:43.3913036Z openpgp: Signature made Thu, 20 Nov 2025 14:24:23 UTC using RSA key ID 7EA0A9C3F273FCD8 +2025-11-24T08:34:43.3913977Z openpgp: Good signature from "Docker Release (CE deb) " +2025-11-24T08:34:43.3963632Z +2025-11-24T08:34:43.3964575Z Mirror [docker-ce]: https://download.docker.com/linux/ubuntu/ jammy successfully added. +2025-11-24T08:34:43.3965414Z You can run 'aptly mirror update docker-ce' to download repository contents. +2025-11-24T08:34:43.4183948Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/InRelease... +2025-11-24T08:34:44.3534134Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/InRelease +2025-11-24T08:34:44.3567536Z openpgp: Signature made Thu, 21 Apr 2022 17:16:39 UTC using RSA key ID 871920D1991BC93C +2025-11-24T08:34:44.3568954Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " +2025-11-24T08:34:44.3769822Z Downloading & parsing package files... +2025-11-24T08:34:44.3771808Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/main/binary-amd64/Packages.gz... +2025-11-24T08:34:45.5494144Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/main/binary-amd64/Packages.gz +2025-11-24T08:34:45.6521755Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/universe/binary-amd64/Packages.gz... +2025-11-24T08:34:47.4536151Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/universe/binary-amd64/Packages.gz +2025-11-24T08:34:48.5555503Z Applying filter... +2025-11-24T08:34:48.6160662Z Packages filtered: 65013 -> 345. +2025-11-24T08:34:48.6161540Z Building download queue... +2025-11-24T08:34:48.6191972Z Download queue: 345 items (235.98 MiB) +2025-11-24T08:34:48.6200265Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lcms2/liblcms2-2_2.12~rc1-2build2_amd64.deb... +2025-11-24T08:34:48.6202103Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/w/wheel/python3-wheel_0.37.1-2_all.deb... +2025-11-24T08:34:48.6203965Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-0_3.37.2-2_amd64.deb... +2025-11-24T08:34:48.6205797Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gmp/libgmp10_6.2.1+dfsg-3ubuntu1_amd64.deb... +2025-11-24T08:34:48.6207268Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/netcat/netcat-traditional_1.10-47_amd64.deb... +2025-11-24T08:34:48.6208207Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb... +2025-11-24T08:34:48.6209155Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libsynctex2_2021.20210626.59705-1build1_amd64.deb... +2025-11-24T08:34:48.6210184Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pinentry/pinentry-curses_1.1.1-1build2_amd64.deb... +2025-11-24T08:34:48.6211127Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xz-utils/liblzma5_5.2.5-2ubuntu1_amd64.deb... +2025-11-24T08:34:48.6212073Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xz-utils/xz-utils_5.2.5-2ubuntu1_amd64.deb... +2025-11-24T08:34:49.1056511Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pinentry/pinentry-curses_1.1.1-1build2_amd64.deb +2025-11-24T08:34:49.1058406Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/h/harfbuzz/libharfbuzz0b_2.7.4-1ubuntu3_amd64.deb... +2025-11-24T08:34:49.1174806Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/w/wheel/python3-wheel_0.37.1-2_all.deb +2025-11-24T08:34:49.1175908Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl_5.34.0-3ubuntu1_amd64.deb... +2025-11-24T08:34:49.2109318Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xz-utils/xz-utils_5.2.5-2ubuntu1_amd64.deb +2025-11-24T08:34:49.2110876Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1_amd64.deb... +2025-11-24T08:34:49.2232407Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/netcat/netcat-traditional_1.10-47_amd64.deb +2025-11-24T08:34:49.2234925Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncursesw6_6.3-2_amd64.deb... +2025-11-24T08:34:49.2236926Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xz-utils/liblzma5_5.2.5-2ubuntu1_amd64.deb +2025-11-24T08:34:49.2238157Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcsc-lite/libpcsclite1_1.9.5-3_amd64.deb... +2025-11-24T08:34:49.2242863Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libsynctex2_2021.20210626.59705-1build1_amd64.deb +2025-11-24T08:34:49.2244653Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netkit-telnet/telnet_0.17-44build1_amd64.deb... +2025-11-24T08:34:49.3317676Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lcms2/liblcms2-2_2.12~rc1-2build2_amd64.deb +2025-11-24T08:34:49.3319200Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/i/inetutils/inetutils-traceroute_2.2-2_amd64.deb... +2025-11-24T08:34:49.4381724Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gmp/libgmp10_6.2.1+dfsg-3ubuntu1_amd64.deb +2025-11-24T08:34:49.4383702Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpcap/libpcap0.8_1.10.1-4build1_amd64.deb... +2025-11-24T08:34:49.5775267Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-0_3.37.2-2_amd64.deb +2025-11-24T08:34:49.5776315Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10_3.10.4-3_amd64.deb... +2025-11-24T08:34:49.6943493Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcsc-lite/libpcsclite1_1.9.5-3_amd64.deb +2025-11-24T08:34:49.6945546Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam0g_1.4.0-11ubuntu2_amd64.deb... +2025-11-24T08:34:49.8055133Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/i/inetutils/inetutils-traceroute_2.2-2_amd64.deb +2025-11-24T08:34:49.8056665Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gobject-introspection/gir1.2-glib-2.0_1.72.0-1_amd64.deb... +2025-11-24T08:34:49.8144576Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netkit-telnet/telnet_0.17-44build1_amd64.deb +2025-11-24T08:34:49.8146593Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-freefont/fonts-freefont-ttf_20120503-10build1_all.deb... +2025-11-24T08:34:49.9388567Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1_amd64.deb +2025-11-24T08:34:49.9390303Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxtst/libxtst6_1.2.3-1build4_amd64.deb... +2025-11-24T08:34:49.9472327Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncursesw6_6.3-2_amd64.deb +2025-11-24T08:34:49.9474271Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb1_1.14-3ubuntu3_amd64.deb... +2025-11-24T08:34:50.0487098Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/h/harfbuzz/libharfbuzz0b_2.7.4-1ubuntu3_amd64.deb +2025-11-24T08:34:50.0488493Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/npth/libnpth0_1.6-3build2_amd64.deb... +2025-11-24T08:34:50.0710191Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl_5.34.0-3ubuntu1_amd64.deb +2025-11-24T08:34:50.0711569Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/f/fonts-freefont/fonts-freefont-otf_20120503-10build1_all.deb... +2025-11-24T08:34:50.1716924Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxtst/libxtst6_1.2.3-1build4_amd64.deb +2025-11-24T08:34:50.1718148Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libtexlua53_2021.20210626.59705-1build1_amd64.deb... +2025-11-24T08:34:50.1754619Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpcap/libpcap0.8_1.10.1-4build1_amd64.deb +2025-11-24T08:34:50.1756423Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libtexluajit2_2021.20210626.59705-1build1_amd64.deb... +2025-11-24T08:34:50.2936582Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam0g_1.4.0-11ubuntu2_amd64.deb +2025-11-24T08:34:50.2938806Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1_amd64.deb... +2025-11-24T08:34:50.3912595Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10_3.10.4-3_amd64.deb +2025-11-24T08:34:50.3914287Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sysstat/sysstat_12.5.2-2build2_amd64.deb... +2025-11-24T08:34:50.3978972Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gobject-introspection/gir1.2-glib-2.0_1.72.0-1_amd64.deb +2025-11-24T08:34:50.3981225Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors5_3.6.0-7ubuntu1_amd64.deb... +2025-11-24T08:34:50.4032593Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/npth/libnpth0_1.6-3build2_amd64.deb +2025-11-24T08:34:50.4034167Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libk/libksba/libksba8_1.6.0-2build1_amd64.deb... +2025-11-24T08:34:50.5214133Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1_amd64.deb +2025-11-24T08:34:50.5215977Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg_2.2.27-3ubuntu2_all.deb... +2025-11-24T08:34:50.6417871Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb1_1.14-3ubuntu3_amd64.deb +2025-11-24T08:34:50.6419990Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-0_2.72.1-1_amd64.deb... +2025-11-24T08:34:50.7418072Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors5_3.6.0-7ubuntu1_amd64.deb +2025-11-24T08:34:50.7420004Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt-common_2.3.0ubuntu2_all.deb... +2025-11-24T08:34:50.8063001Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libtexlua53_2021.20210626.59705-1build1_amd64.deb +2025-11-24T08:34:50.8064750Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-data_2.72.1-1_all.deb... +2025-11-24T08:34:50.8928804Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-freefont/fonts-freefont-ttf_20120503-10build1_all.deb +2025-11-24T08:34:50.8930426Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjson-perl/libjson-perl_4.04000-1_all.deb... +2025-11-24T08:34:50.9190442Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libtexluajit2_2021.20210626.59705-1build1_amd64.deb +2025-11-24T08:34:50.9192356Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1_amd64.deb... +2025-11-24T08:34:50.9804281Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libk/libksba/libksba8_1.6.0-2build1_amd64.deb +2025-11-24T08:34:50.9806077Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnftnl/libnftnl11_1.2.1-1build1_amd64.deb... +2025-11-24T08:34:50.9999702Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt-common_2.3.0ubuntu2_all.deb +2025-11-24T08:34:51.0001560Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsepol/libsepol2_3.3-1build1_amd64.deb... +2025-11-24T08:34:51.0376481Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-data_2.72.1-1_all.deb +2025-11-24T08:34:51.0378762Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-cryptography/python3-cryptography_3.4.8-1ubuntu2_amd64.deb... +2025-11-24T08:34:51.1588116Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1_amd64.deb +2025-11-24T08:34:51.1590459Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-oauthlib/python3-oauthlib_3.2.0-1_all.deb... +2025-11-24T08:34:51.2224403Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sysstat/sysstat_12.5.2-2build2_amd64.deb +2025-11-24T08:34:51.2226178Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3_amd64.deb... +2025-11-24T08:34:51.2599631Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/f/fonts-freefont/fonts-freefont-otf_20120503-10build1_all.deb +2025-11-24T08:34:51.2601513Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/libpaper1_1.1.28build2_amd64.deb... +2025-11-24T08:34:51.2701131Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg_2.2.27-3ubuntu2_all.deb +2025-11-24T08:34:51.2702567Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/traceroute/traceroute_2.1.0-2_amd64.deb... +2025-11-24T08:34:51.3422432Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjson-perl/libjson-perl_4.04000-1_all.deb +2025-11-24T08:34:51.3424688Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/netcat-openbsd/netcat_1.218-4ubuntu1_all.deb... +2025-11-24T08:34:51.4495159Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnftnl/libnftnl11_1.2.1-1build1_amd64.deb +2025-11-24T08:34:51.4499898Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/dbus_1.12.20-2ubuntu4_amd64.deb... +2025-11-24T08:34:51.4868142Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/libpaper1_1.1.28build2_amd64.deb +2025-11-24T08:34:51.4870006Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-mnesia_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:34:51.5853088Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/netcat-openbsd/netcat_1.218-4ubuntu1_all.deb +2025-11-24T08:34:51.5855254Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/init-system-helpers/init-system-helpers_1.62_all.deb... +2025-11-24T08:34:51.6065875Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-0_2.72.1-1_amd64.deb +2025-11-24T08:34:51.6067789Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/l/latexmk/latexmk_4.76-1_all.deb... +2025-11-24T08:34:51.6283507Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-oauthlib/python3-oauthlib_3.2.0-1_all.deb +2025-11-24T08:34:51.6285460Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-latex-base_2021.20220204-1_all.deb... +2025-11-24T08:34:51.6749992Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsepol/libsepol2_3.3-1build1_amd64.deb +2025-11-24T08:34:51.6752220Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/libperl5.34_5.34.0-3ubuntu1_amd64.deb... +2025-11-24T08:34:51.7283678Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/traceroute/traceroute_2.1.0-2_amd64.deb +2025-11-24T08:34:51.7285827Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.4-0ubuntu2_amd64.deb... +2025-11-24T08:34:51.7498532Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-cryptography/python3-cryptography_3.4.8-1ubuntu2_amd64.deb +2025-11-24T08:34:51.7500328Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libsmartcols1_2.37.2-4ubuntu3_amd64.deb... +2025-11-24T08:34:51.9263316Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3_amd64.deb +2025-11-24T08:34:51.9265136Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libipc-run-perl/libipc-run-perl_20200505.0-1_all.deb... +2025-11-24T08:34:51.9314582Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/init-system-helpers/init-system-helpers_1.62_all.deb +2025-11-24T08:34:51.9316434Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgv_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:34:51.9688916Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.4-0ubuntu2_amd64.deb +2025-11-24T08:34:51.9690927Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/expat/libexpat1_2.4.7-1_amd64.deb... +2025-11-24T08:34:52.0497163Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/dbus_1.12.20-2ubuntu4_amd64.deb +2025-11-24T08:34:52.0499201Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnl3/libnl-genl-3-200_3.5.0-0.1_amd64.deb... +2025-11-24T08:34:52.2012318Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/l/latexmk/latexmk_4.76-1_all.deb +2025-11-24T08:34:52.2014186Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tzdata/tzdata_2022a-0ubuntu1_all.deb... +2025-11-24T08:34:52.2333172Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libsmartcols1_2.37.2-4ubuntu3_amd64.deb +2025-11-24T08:34:52.2335220Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2-bin_2.44-1build3_amd64.deb... +2025-11-24T08:34:52.2798896Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnl3/libnl-genl-3-200_3.5.0-0.1_amd64.deb +2025-11-24T08:34:52.2800723Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.20.1-1_amd64.deb... +2025-11-24T08:34:52.3144240Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-mnesia_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:34:52.3145718Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1_amd64.deb... +2025-11-24T08:34:52.3814396Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libipc-run-perl/libipc-run-perl_20200505.0-1_all.deb +2025-11-24T08:34:52.3816151Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnutls28/libgnutls30_3.7.3-4ubuntu1_amd64.deb... +2025-11-24T08:34:52.4289532Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/expat/libexpat1_2.4.7-1_amd64.deb +2025-11-24T08:34:52.4291379Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/appstream/libappstream4_0.15.2-2_amd64.deb... +2025-11-24T08:34:52.5111430Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgv_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:34:52.5113533Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/debianutils/debianutils_5.5-1ubuntu2_amd64.deb... +2025-11-24T08:34:52.5867227Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-latex-base_2021.20220204-1_all.deb +2025-11-24T08:34:52.5869013Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/attr/libattr1_2.5.1-1build1_amd64.deb... +2025-11-24T08:34:52.5964270Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2-bin_2.44-1build3_amd64.deb +2025-11-24T08:34:52.5966101Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-eldap_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:34:52.6674138Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1_amd64.deb +2025-11-24T08:34:52.6676667Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl-modules-5.34_5.34.0-3ubuntu1_all.deb... +2025-11-24T08:34:52.8228025Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/attr/libattr1_2.5.1-1build1_amd64.deb +2025-11-24T08:34:52.8229685Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1_amd64.deb... +2025-11-24T08:34:52.8519861Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/libperl5.34_5.34.0-3ubuntu1_amd64.deb +2025-11-24T08:34:52.8523772Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6_4.18.0-4build1_amd64.deb... +2025-11-24T08:34:52.9047604Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tzdata/tzdata_2022a-0ubuntu1_all.deb +2025-11-24T08:34:52.9049368Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/policykit-1_0.105-33_amd64.deb... +2025-11-24T08:34:53.0218887Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/appstream/libappstream4_0.15.2-2_amd64.deb +2025-11-24T08:34:53.0220746Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb-shm0_1.14-3ubuntu3_amd64.deb... +2025-11-24T08:34:53.0611042Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1_amd64.deb +2025-11-24T08:34:53.0613015Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/readline/libreadline8_8.1.2-1_amd64.deb... +2025-11-24T08:34:53.0732904Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/debianutils/debianutils_5.5-1ubuntu2_amd64.deb +2025-11-24T08:34:53.0734538Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcrypt/libcrypt1_4.4.27-1_amd64.deb... +2025-11-24T08:34:53.1378171Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/policykit-1_0.105-33_amd64.deb +2025-11-24T08:34:53.1379763Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netbase/netbase_6.3_all.deb... +2025-11-24T08:34:53.1940681Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.20.1-1_amd64.deb +2025-11-24T08:34:53.1942303Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.22_all.deb... +2025-11-24T08:34:53.1998343Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-eldap_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:34:53.2000703Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3_amd64.deb... +2025-11-24T08:34:53.2094365Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6_4.18.0-4build1_amd64.deb +2025-11-24T08:34:53.2096423Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng16-16_1.6.37-3build5_amd64.deb... +2025-11-24T08:34:53.2576800Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb-shm0_1.14-3ubuntu3_amd64.deb +2025-11-24T08:34:53.2578359Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mpdecimal/libmpdec3_2.5.1-2build2_amd64.deb... +2025-11-24T08:34:53.3210618Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnutls28/libgnutls30_3.7.3-4ubuntu1_amd64.deb +2025-11-24T08:34:53.3212974Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/acl/libacl1_2.3.1-1_amd64.deb... +2025-11-24T08:34:53.3717536Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netbase/netbase_6.3_all.deb +2025-11-24T08:34:53.3719267Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb... +2025-11-24T08:34:53.5409291Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcrypt/libcrypt1_4.4.27-1_amd64.deb +2025-11-24T08:34:53.5411116Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-base_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:34:53.5507335Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.22_all.deb +2025-11-24T08:34:53.5509227Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libmount1_2.37.2-4ubuntu3_amd64.deb... +2025-11-24T08:34:53.6469390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/readline/libreadline8_8.1.2-1_amd64.deb +2025-11-24T08:34:53.6471518Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-lib2to3_3.10.4-0ubuntu1_all.deb... +2025-11-24T08:34:53.6721938Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/acl/libacl1_2.3.1-1_amd64.deb +2025-11-24T08:34:53.6724220Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pygobject/python3-gi_3.42.0-3build1_amd64.deb... +2025-11-24T08:34:53.7091530Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mpdecimal/libmpdec3_2.5.1-2build2_amd64.deb +2025-11-24T08:34:53.7093518Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-stdlib_3.10.4-3_amd64.deb... +2025-11-24T08:34:53.7644492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3_amd64.deb +2025-11-24T08:34:53.7646336Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/coreutils/coreutils_8.32-4.1ubuntu1_amd64.deb... +2025-11-24T08:34:53.7810776Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng16-16_1.6.37-3build5_amd64.deb +2025-11-24T08:34:53.7813038Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-data_1.7.5-1_all.deb... +2025-11-24T08:34:53.8242808Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl-modules-5.34_5.34.0-3ubuntu1_all.deb +2025-11-24T08:34:53.8244506Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/libprocps8_3.3.17-6ubuntu2_amd64.deb... +2025-11-24T08:34:53.9705283Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb +2025-11-24T08:34:53.9707036Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libssh/libssh-4_0.9.6-2build1_amd64.deb... +2025-11-24T08:34:54.1212875Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-lib2to3_3.10.4-0ubuntu1_all.deb +2025-11-24T08:34:54.1214790Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nss/libnss3_3.68.2-0ubuntu1_amd64.deb... +2025-11-24T08:34:54.1534525Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libmount1_2.37.2-4ubuntu3_amd64.deb +2025-11-24T08:34:54.1536383Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/libpolkit-agent-1-0_0.105-33_amd64.deb... +2025-11-24T08:34:54.1866909Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/libprocps8_3.3.17-6ubuntu2_amd64.deb +2025-11-24T08:34:54.1869207Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates/ca-certificates_20211016_all.deb... +2025-11-24T08:34:54.2408951Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb +2025-11-24T08:34:54.2410644Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipset/libipset13_7.15-1build1_amd64.deb... +2025-11-24T08:34:54.3527376Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-data_1.7.5-1_all.deb +2025-11-24T08:34:54.3529232Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.22_all.deb... +2025-11-24T08:34:54.3773603Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pygobject/python3-gi_3.42.0-3build1_amd64.deb +2025-11-24T08:34:54.3775324Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iproute2/iproute2_5.15.0-1ubuntu2_amd64.deb... +2025-11-24T08:34:54.5009315Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/libpolkit-agent-1-0_0.105-33_amd64.deb +2025-11-24T08:34:54.5011380Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnfnetlink/libnfnetlink0_1.0.1-3build3_amd64.deb... +2025-11-24T08:34:54.5794265Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libssh/libssh-4_0.9.6-2build1_amd64.deb +2025-11-24T08:34:54.5796002Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xfsprogs/xfsprogs_5.13.0-1ubuntu2_amd64.deb... +2025-11-24T08:34:54.6998782Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.22_all.deb +2025-11-24T08:34:54.7002343Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc3_1.3.2-2build1_amd64.deb... +2025-11-24T08:34:54.7042193Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/coreutils/coreutils_8.32-4.1ubuntu1_amd64.deb +2025-11-24T08:34:54.7044201Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/procps_3.3.17-6ubuntu2_amd64.deb... +2025-11-24T08:34:54.7223107Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipset/libipset13_7.15-1build1_amd64.deb +2025-11-24T08:34:54.7225701Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-xmerl_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:34:54.7361642Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnfnetlink/libnfnetlink0_1.0.1-3build3_amd64.deb +2025-11-24T08:34:54.7364824Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lvm2/libdevmapper1.02.1_1.02.175-2.1ubuntu4_amd64.deb... +2025-11-24T08:34:54.7650492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-stdlib_3.10.4-3_amd64.deb +2025-11-24T08:34:54.7652521Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4_4.32-3build1_amd64.deb... +2025-11-24T08:34:54.7778316Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates/ca-certificates_20211016_all.deb +2025-11-24T08:34:54.7779861Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb-render0_1.14-3ubuntu3_amd64.deb... +2025-11-24T08:34:54.8955560Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-base_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:34:54.8957391Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-fonts-recommended_2021.20220204-1_all.deb... +2025-11-24T08:34:55.0254634Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nss/libnss3_3.68.2-0ubuntu1_amd64.deb +2025-11-24T08:34:55.0256437Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libgssapi-krb5-2_1.19.2-2_amd64.deb... +2025-11-24T08:34:55.1183624Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb-render0_1.14-3ubuntu3_amd64.deb +2025-11-24T08:34:55.1185727Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libe/libedit/libedit2_3.1-20210910-1build1_amd64.deb... +2025-11-24T08:34:55.1887422Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc3_1.3.2-2build1_amd64.deb +2025-11-24T08:34:55.1889742Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/db5.3/libdb5.3_5.3.28+dfsg1-0.8ubuntu3_amd64.deb... +2025-11-24T08:34:55.3112551Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iproute2/iproute2_5.15.0-1ubuntu2_amd64.deb +2025-11-24T08:34:55.3114848Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsm/libsm6_1.2.3-1build2_amd64.deb... +2025-11-24T08:34:55.3170664Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lvm2/libdevmapper1.02.1_1.02.175-2.1ubuntu4_amd64.deb +2025-11-24T08:34:55.3172522Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5support0_1.19.2-2_amd64.deb... +2025-11-24T08:34:55.3443492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4_4.32-3build1_amd64.deb +2025-11-24T08:34:55.3445398Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/packagekit_1.2.5-2ubuntu2_amd64.deb... +2025-11-24T08:34:55.3968713Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/procps_3.3.17-6ubuntu2_amd64.deb +2025-11-24T08:34:55.3972524Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxpm/libxpm4_3.5.12-1build2_amd64.deb... +2025-11-24T08:34:55.3998312Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xfsprogs/xfsprogs_5.13.0-1ubuntu2_amd64.deb +2025-11-24T08:34:55.4000090Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libm/libmd/libmd0_1.0.4-1build1_amd64.deb... +2025-11-24T08:34:55.5878802Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libe/libedit/libedit2_3.1-20210910-1build1_amd64.deb +2025-11-24T08:34:55.5880608Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common3_0.8-5ubuntu5_amd64.deb... +2025-11-24T08:34:55.6639655Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsm/libsm6_1.2.3-1build2_amd64.deb +2025-11-24T08:34:55.6641304Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsemanage/libsemanage2_3.3-1build2_amd64.deb... +2025-11-24T08:34:55.6714551Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libgssapi-krb5-2_1.19.2-2_amd64.deb +2025-11-24T08:34:55.6717578Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.4-0ubuntu2_amd64.deb... +2025-11-24T08:34:55.6801345Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5support0_1.19.2-2_amd64.deb +2025-11-24T08:34:55.6803190Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nettle/libhogweed6_3.7.3-1build2_amd64.deb... +2025-11-24T08:34:55.7435252Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libm/libmd/libmd0_1.0.4-1build1_amd64.deb +2025-11-24T08:34:55.7440216Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libkpathsea6_2021.20210626.59705-1build1_amd64.deb... +2025-11-24T08:34:55.7456271Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxpm/libxpm4_3.5.12-1build2_amd64.deb +2025-11-24T08:34:55.7457994Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libuuid1_2.37.2-4ubuntu3_amd64.deb... +2025-11-24T08:34:55.8109840Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-xmerl_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:34:55.8111785Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ftp_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:34:55.9415262Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common3_0.8-5ubuntu5_amd64.deb +2025-11-24T08:34:55.9417231Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g_1.2.11.dfsg-2ubuntu9_amd64.deb... +2025-11-24T08:34:55.9934633Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/db5.3/libdb5.3_5.3.28+dfsg1-0.8ubuntu3_amd64.deb +2025-11-24T08:34:55.9936712Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnl3/libnl-3-200_3.5.0-0.1_amd64.deb... +2025-11-24T08:34:56.0254380Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.4-0ubuntu2_amd64.deb +2025-11-24T08:34:56.0256270Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ucf/ucf_3.0043_all.deb... +2025-11-24T08:34:56.0991177Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libuuid1_2.37.2-4ubuntu3_amd64.deb +2025-11-24T08:34:56.0995078Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-liberation2/fonts-liberation2_2.1.5-1_all.deb... +2025-11-24T08:34:56.1076819Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-fonts-recommended_2021.20220204-1_all.deb +2025-11-24T08:34:56.1078656Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rsync/rsync_3.2.3-8ubuntu3_amd64.deb... +2025-11-24T08:34:56.1266606Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsemanage/libsemanage2_3.3-1build2_amd64.deb +2025-11-24T08:34:56.1268366Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/audit/libaudit1_3.0.7-1build1_amd64.deb... +2025-11-24T08:34:56.1441939Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/packagekit_1.2.5-2ubuntu2_amd64.deb +2025-11-24T08:34:56.1444463Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpsl/libpsl5_0.21.0-1.2build2_amd64.deb... +2025-11-24T08:34:56.2022224Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libkpathsea6_2021.20210626.59705-1build1_amd64.deb +2025-11-24T08:34:56.2024881Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/f/fonts-noto/fonts-croscore_20201225-1build1_all.deb... +2025-11-24T08:34:56.2690169Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ftp_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:34:56.2691655Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_2.4.5_amd64.deb... +2025-11-24T08:34:56.2799786Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nettle/libhogweed6_3.7.3-1build2_amd64.deb +2025-11-24T08:34:56.2803217Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10-minimal_3.10.4-3_amd64.deb... +2025-11-24T08:34:56.4099075Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g_1.2.11.dfsg-2ubuntu9_amd64.deb +2025-11-24T08:34:56.4101043Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libgcc-s1_12-20220319-1ubuntu1_amd64.deb... +2025-11-24T08:34:56.4739480Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnl3/libnl-3-200_3.5.0-0.1_amd64.deb +2025-11-24T08:34:56.4741158Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxi/libxi6_1.8-1build1_amd64.deb... +2025-11-24T08:34:56.5007848Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ucf/ucf_3.0043_all.deb +2025-11-24T08:34:56.5009882Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus-python/python3-dbus_1.2.18-3build1_amd64.deb... +2025-11-24T08:34:56.5936432Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpsl/libpsl5_0.21.0-1.2build2_amd64.deb +2025-11-24T08:34:56.5938404Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-launchpadlib/python3-launchpadlib_1.10.16-1_all.deb... +2025-11-24T08:34:56.5967055Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/audit/libaudit1_3.0.7-1build1_amd64.deb +2025-11-24T08:34:56.5968715Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/six/python3-six_1.16.0-3ubuntu1_all.deb... +2025-11-24T08:34:56.8135582Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rsync/rsync_3.2.3-8ubuntu3_amd64.deb +2025-11-24T08:34:56.8137357Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libblkid1_2.37.2-4ubuntu3_amd64.deb... +2025-11-24T08:34:56.8347404Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxi/libxi6_1.8-1build1_amd64.deb +2025-11-24T08:34:56.8349884Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxmu/libxmu6_1.1.3-3_amd64.deb... +2025-11-24T08:34:56.8355981Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/six/python3-six_1.16.0-3ubuntu1_all.deb +2025-11-24T08:34:56.8357291Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libm/libmnl/libmnl0_1.0.4-3build2_amd64.deb... +2025-11-24T08:34:56.8685474Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libgcc-s1_12-20220319-1ubuntu1_amd64.deb +2025-11-24T08:34:56.8687546Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common-data_0.8-5ubuntu5_amd64.deb... +2025-11-24T08:34:56.9813497Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus-python/python3-dbus_1.2.18-3build1_amd64.deb +2025-11-24T08:34:56.9815362Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre2/libpcre2-8-0_10.39-3build1_amd64.deb... +2025-11-24T08:34:57.0654498Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libm/libmnl/libmnl0_1.0.4-3build2_amd64.deb +2025-11-24T08:34:57.0656391Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netcat-openbsd/netcat-openbsd_1.218-4ubuntu1_amd64.deb... +2025-11-24T08:34:57.0718881Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-liberation2/fonts-liberation2_2.1.5-1_all.deb +2025-11-24T08:34:57.0721247Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.27+dfsg2-3ubuntu1_amd64.deb... +2025-11-24T08:34:57.1747960Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/f/fonts-noto/fonts-croscore_20201225-1build1_all.deb +2025-11-24T08:34:57.1749824Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-launchpadlib/python3-launchpadlib_1.10.16-1_all.deb +2025-11-24T08:34:57.1751608Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/socat/socat_1.7.4.1-3ubuntu4_amd64.deb... +2025-11-24T08:34:57.1753026Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libidn2/libidn2-0_2.3.2-2build1_amd64.deb... +2025-11-24T08:34:57.1779074Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_2.4.5_amd64.deb +2025-11-24T08:34:57.1780408Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/t1utils/t1utils_1.41-4build2_amd64.deb... +2025-11-24T08:34:57.2218923Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common-data_0.8-5ubuntu5_amd64.deb +2025-11-24T08:34:57.2220790Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/d/dh-sysuser/sysuser-helper_1.3.7+really1.4.1_all.deb... +2025-11-24T08:34:57.3158422Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxmu/libxmu6_1.1.3-3_amd64.deb +2025-11-24T08:34:57.3160241Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-importlib-metadata/python3-importlib-metadata_4.6.4-1_all.deb... +2025-11-24T08:34:57.3647611Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10-minimal_3.10.4-3_amd64.deb +2025-11-24T08:34:57.3649232Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nano/nano_6.2-1_amd64.deb... +2025-11-24T08:34:57.3994399Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libblkid1_2.37.2-4ubuntu3_amd64.deb +2025-11-24T08:34:57.3996862Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gobject-introspection/libgirepository-1.0-1_1.72.0-1_amd64.deb... +2025-11-24T08:34:57.4270803Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netcat-openbsd/netcat-openbsd_1.218-4ubuntu1_amd64.deb +2025-11-24T08:34:57.4273324Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libz/libzstd/libzstd1_1.4.8+dfsg-3build1_amd64.deb... +2025-11-24T08:34:57.4623464Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/d/dh-sysuser/sysuser-helper_1.3.7+really1.4.1_all.deb +2025-11-24T08:34:57.4625463Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-asn1_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:34:57.5311104Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.27+dfsg2-3ubuntu1_amd64.deb +2025-11-24T08:34:57.5313218Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/teckit/libteckit0_2.5.11+ds1-1_amd64.deb... +2025-11-24T08:34:57.6349944Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libidn2/libidn2-0_2.3.2-2build1_amd64.deb +2025-11-24T08:34:57.6351655Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre3/libpcre3_8.39-13build5_amd64.deb... +2025-11-24T08:34:57.6464316Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/t1utils/t1utils_1.41-4build2_amd64.deb +2025-11-24T08:34:57.6473607Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/z/zziplib/libzzip-0-13_0.13.72+dfsg.1-1.1_amd64.deb... +2025-11-24T08:34:57.6563651Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre2/libpcre2-8-0_10.39-3build1_amd64.deb +2025-11-24T08:34:57.6565490Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/fontconfig-config_2.13.1-4.2ubuntu5_all.deb... +2025-11-24T08:34:57.6676948Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-importlib-metadata/python3-importlib-metadata_4.6.4-1_all.deb +2025-11-24T08:34:57.6678641Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/media-types/media-types_7.0.0_all.deb... +2025-11-24T08:34:57.8640296Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gobject-introspection/libgirepository-1.0-1_1.72.0-1_amd64.deb +2025-11-24T08:34:57.8642176Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/j/jemalloc/libjemalloc2_5.2.1-4ubuntu1_amd64.deb... +2025-11-24T08:34:57.8659496Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/socat/socat_1.7.4.1-3ubuntu4_amd64.deb +2025-11-24T08:34:57.8661323Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/ttf-bitstream-vera/ttf-bitstream-vera_1.10-8.2_all.deb... +2025-11-24T08:34:57.9991046Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/fontconfig-config_2.13.1-4.2ubuntu5_all.deb +2025-11-24T08:34:57.9993103Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/brotli/libbrotli1_1.0.9-2build6_amd64.deb... +2025-11-24T08:34:58.0077557Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/z/zziplib/libzzip-0-13_0.13.72+dfsg.1-1.1_amd64.deb +2025-11-24T08:34:58.0079488Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-latex-recommended_2021.20220204-1_all.deb... +2025-11-24T08:34:58.0195023Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/media-types/media-types_7.0.0_all.deb +2025-11-24T08:34:58.0196707Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rtmpdump/librtmp1_2.4+20151223.gitfa8646d.1-2build4_amd64.deb... +2025-11-24T08:34:58.0523906Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nano/nano_6.2-1_amd64.deb +2025-11-24T08:34:58.0525643Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-pkg-resources_59.6.0-1.2_all.deb... +2025-11-24T08:34:58.1300456Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libz/libzstd/libzstd1_1.4.8+dfsg-3build1_amd64.deb +2025-11-24T08:34:58.1302385Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6_2.35-0ubuntu3_amd64.deb... +2025-11-24T08:34:58.2577317Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/teckit/libteckit0_2.5.11+ds1-1_amd64.deb +2025-11-24T08:34:58.2579040Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libb/libbsd/libbsd0_0.11.5-1_amd64.deb... +2025-11-24T08:34:58.3275259Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre3/libpcre3_8.39-13build5_amd64.deb +2025-11-24T08:34:58.3277506Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-snmp_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:34:58.3768379Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-asn1_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:34:58.3769699Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sensible-utils/sensible-utils_0.0.17_all.deb... +2025-11-24T08:34:58.4892426Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rtmpdump/librtmp1_2.4+20151223.gitfa8646d.1-2build4_amd64.deb +2025-11-24T08:34:58.4894796Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ufw/ufw_0.36.1-4build1_all.deb... +2025-11-24T08:34:58.5610894Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/ttf-bitstream-vera/ttf-bitstream-vera_1.10-8.2_all.deb +2025-11-24T08:34:58.5612604Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/less/less_590-1build1_amd64.deb... +2025-11-24T08:34:58.5710158Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/j/jemalloc/libjemalloc2_5.2.1-4ubuntu1_amd64.deb +2025-11-24T08:34:58.5711979Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxmlb/libxmlb2_0.3.6-2build1_amd64.deb... +2025-11-24T08:34:58.6515319Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-pkg-resources_59.6.0-1.2_all.deb +2025-11-24T08:34:58.6517196Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-dejavu/fonts-dejavu-core_2.37-2build1_all.deb... +2025-11-24T08:34:58.6718896Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/brotli/libbrotli1_1.0.9-2build6_amd64.deb +2025-11-24T08:34:58.6720677Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcp-wrappers/libwrap0_7.6.q-31build2_amd64.deb... +2025-11-24T08:34:58.7374000Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libb/libbsd/libbsd0_0.11.5-1_amd64.deb +2025-11-24T08:34:58.7376055Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3_1.0.9-1_amd64.deb... +2025-11-24T08:34:58.7380660Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sensible-utils/sensible-utils_0.0.17_all.deb +2025-11-24T08:34:58.7382130Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-netaddr/python3-netaddr_0.8.0-2_all.deb... +2025-11-24T08:34:59.0424184Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxmlb/libxmlb2_0.3.6-2build1_amd64.deb +2025-11-24T08:34:59.0426197Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1_amd64.deb... +2025-11-24T08:34:59.0989050Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ufw/ufw_0.36.1-4build1_all.deb +2025-11-24T08:34:59.0990406Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/tex-common/tex-common_6.17_all.deb... +2025-11-24T08:34:59.1385621Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcp-wrappers/libwrap0_7.6.q-31build2_amd64.deb +2025-11-24T08:34:59.1387991Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-liberation/fonts-liberation_1.07.4-11_all.deb... +2025-11-24T08:34:59.1488861Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/less/less_590-1build1_amd64.deb +2025-11-24T08:34:59.1490572Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/libpaper-utils_1.1.28build2_amd64.deb... +2025-11-24T08:34:59.1789011Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6_2.35-0ubuntu3_amd64.deb +2025-11-24T08:34:59.1790800Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl-base_5.34.0-3ubuntu1_amd64.deb... +2025-11-24T08:34:59.1941159Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3_1.0.9-1_amd64.deb +2025-11-24T08:34:59.1943063Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/ntp/ntp_4.2.8p15+dfsg-1ubuntu2_amd64.deb... +2025-11-24T08:34:59.3797094Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/libpaper-utils_1.1.28build2_amd64.deb +2025-11-24T08:34:59.3799239Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python3-apt_2.3.0ubuntu2_amd64.deb... +2025-11-24T08:34:59.3832803Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-snmp_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:34:59.3834636Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-distutils_3.10.4-0ubuntu1_all.deb... +2025-11-24T08:34:59.4414616Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-netaddr/python3-netaddr_0.8.0-2_all.deb +2025-11-24T08:34:59.4416567Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-bin/texlive-binaries_2021.20210626.59705-1build1_amd64.deb... +2025-11-24T08:34:59.4524271Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/tex-common/tex-common_6.17_all.deb +2025-11-24T08:34:59.4526073Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jdk-headless_8u312-b07-0ubuntu1_amd64.deb... +2025-11-24T08:34:59.5768411Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-latex-recommended_2021.20220204-1_all.deb +2025-11-24T08:34:59.5770708Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-wadllib/python3-wadllib_1.3.6-1_all.deb... +2025-11-24T08:34:59.5860506Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-dejavu/fonts-dejavu-core_2.37-2build1_all.deb +2025-11-24T08:34:59.5862064Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/l/lmodern/fonts-lmodern_2.004.5-6.1_all.deb... +2025-11-24T08:34:59.8637923Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1_amd64.deb +2025-11-24T08:34:59.8639734Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bzip2/libbz2-1.0_1.0.8-5build1_amd64.deb... +2025-11-24T08:34:59.9197891Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-wadllib/python3-wadllib_1.3.6-1_all.deb +2025-11-24T08:34:59.9199881Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tools_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:34:59.9453344Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-liberation/fonts-liberation_1.07.4-11_all.deb +2025-11-24T08:34:59.9455262Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ubuntu-keyring/ubuntu-keyring_2021.03.26_all.deb... +2025-11-24T08:34:59.9515034Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python3-apt_2.3.0ubuntu2_amd64.deb +2025-11-24T08:34:59.9517129Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libinih/libinih1_53-1ubuntu3_amd64.deb... +2025-11-24T08:34:59.9570023Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-distutils_3.10.4-0ubuntu1_all.deb +2025-11-24T08:34:59.9571979Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-distro/python3-distro_1.7.0-1_all.deb... +2025-11-24T08:35:00.0205965Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/ntp/ntp_4.2.8p15+dfsg-1ubuntu2_amd64.deb +2025-11-24T08:35:00.0207706Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-runtime_1.4.0-11ubuntu2_all.deb... +2025-11-24T08:35:00.1154899Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl-base_5.34.0-3ubuntu1_amd64.deb +2025-11-24T08:35:00.1156582Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mailcap/mailcap_3.70+nmu1ubuntu1_all.deb... +2025-11-24T08:35:00.1927622Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libinih/libinih1_53-1ubuntu3_amd64.deb +2025-11-24T08:35:00.1929349Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/libdbus-1-3_1.12.20-2ubuntu4_amd64.deb... +2025-11-24T08:35:00.2166390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bzip2/libbz2-1.0_1.0.8-5build1_amd64.deb +2025-11-24T08:35:00.2168709Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/b/bglibs/libbg2_2.04+dfsg-2.1_amd64.deb... +2025-11-24T08:35:00.2883317Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ubuntu-keyring/ubuntu-keyring_2021.03.26_all.deb +2025-11-24T08:35:00.2885113Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipvsadm/ipvsadm_1.31-1build2_amd64.deb... +2025-11-24T08:35:00.3173001Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-distro/python3-distro_1.7.0-1_all.deb +2025-11-24T08:35:00.3175134Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxaw/libxaw7_1.0.14-1_amd64.deb... +2025-11-24T08:35:00.3653867Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-runtime_1.4.0-11ubuntu2_all.deb +2025-11-24T08:35:00.3655642Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_3.0.2-0ubuntu1_amd64.deb... +2025-11-24T08:35:00.4769668Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mailcap/mailcap_3.70+nmu1ubuntu1_all.deb +2025-11-24T08:35:00.4771517Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/tex-gyre/fonts-texgyre_20180621-3.1_all.deb... +2025-11-24T08:35:00.6416070Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipvsadm/ipvsadm_1.31-1build2_amd64.deb +2025-11-24T08:35:00.6418321Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg8-empty/libjpeg8_8c-2ubuntu10_amd64.deb... +2025-11-24T08:35:00.6808350Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/b/bglibs/libbg2_2.04+dfsg-2.1_amd64.deb +2025-11-24T08:35:00.6811219Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nghttp2/libnghttp2-14_1.43.0-1build3_amd64.deb... +2025-11-24T08:35:00.7257651Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tools_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:00.7260481Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/graphite2/libgraphite2-3_1.3.14-1build2_amd64.deb... +2025-11-24T08:35:00.7575936Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-bin/texlive-binaries_2021.20210626.59705-1build1_amd64.deb +2025-11-24T08:35:00.7578681Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pixman/libpixman-1-0_0.40.0-1build4_amd64.deb... +2025-11-24T08:35:00.7689461Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/l/lmodern/fonts-lmodern_2.004.5-6.1_all.deb +2025-11-24T08:35:00.7691203Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lz4/liblz4-1_1.9.3-2build2_amd64.deb... +2025-11-24T08:35:00.7898850Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jdk-headless_8u312-b07-0ubuntu1_amd64.deb +2025-11-24T08:35:00.7900678Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-utils_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:35:00.7954050Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/libdbus-1-3_1.12.20-2ubuntu4_amd64.deb +2025-11-24T08:35:00.7957158Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libstdc++6_12-20220319-1ubuntu1_amd64.deb... +2025-11-24T08:35:00.8754700Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg8-empty/libjpeg8_8c-2ubuntu10_amd64.deb +2025-11-24T08:35:00.8756810Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm6_1.23-1_amd64.deb... +2025-11-24T08:35:00.8855056Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxaw/libxaw7_1.0.14-1_amd64.deb +2025-11-24T08:35:00.8856500Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/adduser/adduser_3.118ubuntu5_all.deb... +2025-11-24T08:35:01.1386800Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nghttp2/libnghttp2-14_1.43.0-1build3_amd64.deb +2025-11-24T08:35:01.1388726Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.4-0ubuntu2_amd64.deb... +2025-11-24T08:35:01.1845793Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/graphite2/libgraphite2-3_1.3.14-1build2_amd64.deb +2025-11-24T08:35:01.1847986Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/keyutils/libkeyutils1_1.6.1-2ubuntu3_amd64.deb... +2025-11-24T08:35:01.2284105Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm6_1.23-1_amd64.deb +2025-11-24T08:35:01.2285927Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/audit/libaudit-common_3.0.7-1build1_all.deb... +2025-11-24T08:35:01.2372369Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lz4/liblz4-1_1.9.3-2build2_amd64.deb +2025-11-24T08:35:01.2375705Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/dirmngr_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:35:01.4194390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/keyutils/libkeyutils1_1.6.1-2ubuntu3_amd64.deb +2025-11-24T08:35:01.4196515Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.3-2ubuntu2_amd64.deb... +2025-11-24T08:35:01.4436311Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_3.0.2-0ubuntu1_amd64.deb +2025-11-24T08:35:01.4438146Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip4tc2_1.8.7-1ubuntu5_amd64.deb... +2025-11-24T08:35:01.4554148Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/audit/libaudit-common_3.0.7-1build1_all.deb +2025-11-24T08:35:01.4556047Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/gir1.2-packagekitglib-1.0_1.2.5-2ubuntu2_amd64.deb... +2025-11-24T08:35:01.4614842Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pixman/libpixman-1-0_0.40.0-1build4_amd64.deb +2025-11-24T08:35:01.4616841Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lazr.restfulclient/python3-lazr.restfulclient_0.14.4-1_all.deb... +2025-11-24T08:35:01.4695474Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/adduser/adduser_3.118ubuntu5_all.deb +2025-11-24T08:35:01.4697354Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip6tc2_1.8.7-1ubuntu5_amd64.deb... +2025-11-24T08:35:01.4795639Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.4-0ubuntu2_amd64.deb +2025-11-24T08:35:01.4797583Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsemanage/libsemanage-common_3.3-1build2_all.deb... +2025-11-24T08:35:01.5091828Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-utils_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:35:01.5094165Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/popt/libpopt0_1.18-3build1_amd64.deb... +2025-11-24T08:35:01.6190085Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libstdc++6_12-20220319-1ubuntu1_amd64.deb +2025-11-24T08:35:01.6191254Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2_2.44-1build3_amd64.deb... +2025-11-24T08:35:01.7185730Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsemanage/libsemanage-common_3.3-1build2_all.deb +2025-11-24T08:35:01.7187484Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1_amd64.deb... +2025-11-24T08:35:01.7847506Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/tex-gyre/fonts-texgyre_20180621-3.1_all.deb +2025-11-24T08:35:01.7849542Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.11.1+dfsg-1build1_amd64.deb... +2025-11-24T08:35:01.7996257Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip4tc2_1.8.7-1ubuntu5_amd64.deb +2025-11-24T08:35:01.7998018Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5-3_1.19.2-2_amd64.deb... +2025-11-24T08:35:01.8177703Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/gir1.2-packagekitglib-1.0_1.2.5-2ubuntu2_amd64.deb +2025-11-24T08:35:01.8179625Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20190909_all.deb... +2025-11-24T08:35:01.8222405Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip6tc2_1.8.7-1ubuntu5_amd64.deb +2025-11-24T08:35:01.8224200Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libxtables12_1.8.7-1ubuntu5_amd64.deb... +2025-11-24T08:35:01.8514121Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/popt/libpopt0_1.18-3build1_amd64.deb +2025-11-24T08:35:01.8516172Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/readline/readline-common_8.1.2-1_all.deb... +2025-11-24T08:35:01.8914982Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.3-2ubuntu2_amd64.deb +2025-11-24T08:35:01.8916879Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/autogen/libopts25_5.18.16-4_amd64.deb... +2025-11-24T08:35:01.9157675Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lazr.restfulclient/python3-lazr.restfulclient_0.14.4-1_all.deb +2025-11-24T08:35:01.9159557Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libice/libice6_1.0.10-1build2_amd64.deb... +2025-11-24T08:35:01.9408021Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/dirmngr_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:35:01.9409703Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-zipp/python3-zipp_1.0.0-3_all.deb... +2025-11-24T08:35:01.9635892Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2_2.44-1build3_amd64.deb +2025-11-24T08:35:01.9637932Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/b/bcron/bcron_0.11-9_amd64.deb... +2025-11-24T08:35:02.0606039Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20190909_all.deb +2025-11-24T08:35:02.0608391Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-urw-base35/fonts-urw-base35_20200910-1_all.deb... +2025-11-24T08:35:02.1732569Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libxtables12_1.8.7-1ubuntu5_amd64.deb +2025-11-24T08:35:02.1734503Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1_amd64.deb... +2025-11-24T08:35:02.1815229Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-zipp/python3-zipp_1.0.0-3_all.deb +2025-11-24T08:35:02.1816811Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl3-gnutls_7.81.0-1_amd64.deb... +2025-11-24T08:35:02.2675359Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libice/libice6_1.0.10-1build2_amd64.deb +2025-11-24T08:35:02.2677024Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mpfr4/libmpfr6_4.1.0-3build3_amd64.deb... +2025-11-24T08:35:02.2964551Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1_amd64.deb +2025-11-24T08:35:02.2966319Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iputils/iputils-ping_20211215-1_amd64.deb... +2025-11-24T08:35:02.3063024Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/readline/readline-common_8.1.2-1_all.deb +2025-11-24T08:35:02.3064982Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libptexenc1_2021.20210626.59705-1build1_amd64.deb... +2025-11-24T08:35:02.3871294Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/autogen/libopts25_5.18.16-4_amd64.deb +2025-11-24T08:35:02.3873385Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm-compat4_1.23-1_amd64.deb... +2025-11-24T08:35:02.4450756Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/b/bcron/bcron_0.11-9_amd64.deb +2025-11-24T08:35:02.4454414Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/blinker/python3-blinker_1.4+dfsg1-0.4_all.deb... +2025-11-24T08:35:02.4707842Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.11.1+dfsg-1build1_amd64.deb +2025-11-24T08:35:02.4709969Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lsb/lsb-release_11.1.0ubuntu4_all.deb... +2025-11-24T08:35:02.5060785Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5-3_1.19.2-2_amd64.deb +2025-11-24T08:35:02.5063186Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-minimal_3.10.4-3_amd64.deb... +2025-11-24T08:35:02.6168924Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm-compat4_1.23-1_amd64.deb +2025-11-24T08:35:02.6170979Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunistring/libunistring2_1.0-1_amd64.deb... +2025-11-24T08:35:02.6688439Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libptexenc1_2021.20210626.59705-1build1_amd64.deb +2025-11-24T08:35:02.6690610Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipset/ipset_7.15-1build1_amd64.deb... +2025-11-24T08:35:02.6843234Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/blinker/python3-blinker_1.4+dfsg1-0.4_all.deb +2025-11-24T08:35:02.6845105Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-bin_2.72.1-1_amd64.deb... +2025-11-24T08:35:02.7026593Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lsb/lsb-release_11.1.0ubuntu4_all.deb +2025-11-24T08:35:02.7028679Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xxhash/libxxhash0_0.8.1-1_amd64.deb... +2025-11-24T08:35:02.7160492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iputils/iputils-ping_20211215-1_amd64.deb +2025-11-24T08:35:02.7162299Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/snowball/libstemmer0d_2.2.0-1build1_amd64.deb... +2025-11-24T08:35:02.9052955Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl3-gnutls_7.81.0-1_amd64.deb +2025-11-24T08:35:02.9054575Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nettle/libnettle8_3.7.3-1build2_amd64.deb... +2025-11-24T08:35:03.0208767Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipset/ipset_7.15-1build1_amd64.deb +2025-11-24T08:35:03.0211211Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.81.0-1_amd64.deb... +2025-11-24T08:35:03.0688895Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xxhash/libxxhash0_0.8.1-1_amd64.deb +2025-11-24T08:35:03.0690715Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors-config_3.6.0-7ubuntu1_all.deb... +2025-11-24T08:35:03.1544309Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-bin_2.72.1-1_amd64.deb +2025-11-24T08:35:03.1546388Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/shadow/passwd_4.8.1-2ubuntu2_amd64.deb... +2025-11-24T08:35:03.1826527Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mpfr4/libmpfr6_4.1.0-3build3_amd64.deb +2025-11-24T08:35:03.1830475Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-parsetools_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:03.2437988Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-urw-base35/fonts-urw-base35_20200910-1_all.deb +2025-11-24T08:35:03.2439930Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-setuptools_59.6.0-1.2_all.deb... +2025-11-24T08:35:03.2550641Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1_amd64.deb +2025-11-24T08:35:03.2552467Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/debconf/debconf_1.5.79ubuntu1_all.deb... +2025-11-24T08:35:03.2916410Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/snowball/libstemmer0d_2.2.0-1build1_amd64.deb +2025-11-24T08:35:03.2920659Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ssl_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:03.3045425Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors-config_3.6.0-7ubuntu1_all.deb +2025-11-24T08:35:03.3047309Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xorg/x11-common_7.7+23ubuntu2_all.deb... +2025-11-24T08:35:03.4053179Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunistring/libunistring2_1.0-1_amd64.deb +2025-11-24T08:35:03.4055049Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lsb/lsb-base_11.1.0ubuntu4_all.deb... +2025-11-24T08:35:03.4282353Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-minimal_3.10.4-3_amd64.deb +2025-11-24T08:35:03.4284803Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-syntax-tools_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:03.4699059Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nettle/libnettle8_3.7.3-1build2_amd64.deb +2025-11-24T08:35:03.4700904Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/iptables_1.8.7-1ubuntu5_amd64.deb... +2025-11-24T08:35:03.6352439Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lsb/lsb-base_11.1.0ubuntu4_all.deb +2025-11-24T08:35:03.6357695Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-os-mon_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:03.6474960Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xorg/x11-common_7.7+23ubuntu2_all.deb +2025-11-24T08:35:03.6476764Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.11+dfsg-1~exp1ubuntu3_amd64.deb... +2025-11-24T08:35:03.7573737Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.81.0-1_amd64.deb +2025-11-24T08:35:03.7575258Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xdg-utils/xdg-utils_1.1.3-4.1ubuntu1_all.deb... +2025-11-24T08:35:03.8270839Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/debconf/debconf_1.5.79ubuntu1_all.deb +2025-11-24T08:35:03.8272948Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/strace/strace_5.16-0ubuntu3_amd64.deb... +2025-11-24T08:35:03.8753367Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-parsetools_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:03.8755229Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lazr.uri/python3-lazr.uri_1.0.6-2_all.deb... +2025-11-24T08:35:03.9474168Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-setuptools_59.6.0-1.2_all.deb +2025-11-24T08:35:03.9476205Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-base_2021.20220204-1_all.deb... +2025-11-24T08:35:03.9657604Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/shadow/passwd_4.8.1-2ubuntu2_amd64.deb +2025-11-24T08:35:03.9659295Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libselinux/libselinux1_3.3-1build2_amd64.deb... +2025-11-24T08:35:04.0987717Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-os-mon_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:04.0989565Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libk5crypto3_1.19.2-2_amd64.deb... +2025-11-24T08:35:04.1053614Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lazr.uri/python3-lazr.uri_1.0.6-2_all.deb +2025-11-24T08:35:04.1055975Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/pkexec_0.105-33_amd64.deb... +2025-11-24T08:35:04.1490863Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-syntax-tools_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:04.1493445Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/more-itertools/python3-more-itertools_8.10.0-2_all.deb... +2025-11-24T08:35:04.1985924Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ssl_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:04.1987526Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/u/ucspi-unix/ucspi-unix_1.0-1_amd64.deb... +2025-11-24T08:35:04.2190359Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.11+dfsg-1~exp1ubuntu3_amd64.deb +2025-11-24T08:35:04.2192536Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/conntrack-tools/conntrack_1.4.6-2build2_amd64.deb... +2025-11-24T08:35:04.2384077Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xdg-utils/xdg-utils_1.1.3-4.1ubuntu1_all.deb +2025-11-24T08:35:04.2386118Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-keyring/python3-keyring_23.5.0-1_all.deb... +2025-11-24T08:35:04.2997441Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/iptables_1.8.7-1ubuntu5_amd64.deb +2025-11-24T08:35:04.2999149Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/gcc-12-base_12-20220319-1ubuntu1_amd64.deb... +2025-11-24T08:35:04.3407243Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/pkexec_0.105-33_amd64.deb +2025-11-24T08:35:04.3408828Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc-common_1.3.2-2build1_all.deb... +2025-11-24T08:35:04.4304492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/u/ucspi-unix/ucspi-unix_1.0-1_amd64.deb +2025-11-24T08:35:04.4306073Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxau/libxau6_1.0.9-1build5_amd64.deb... +2025-11-24T08:35:04.4335392Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libselinux/libselinux1_3.3-1build2_amd64.deb +2025-11-24T08:35:04.4337099Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cron/cron_3.0pl1-137ubuntu3_amd64.deb... +2025-11-24T08:35:04.5710106Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/conntrack-tools/conntrack_1.4.6-2build2_amd64.deb +2025-11-24T08:35:04.5712062Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3_amd64.deb... +2025-11-24T08:35:04.5786711Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-keyring/python3-keyring_23.5.0-1_all.deb +2025-11-24T08:35:04.5788383Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apparmor/libapparmor1_3.0.4-2ubuntu2_amd64.deb... +2025-11-24T08:35:04.5829664Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc-common_1.3.2-2build1_all.deb +2025-11-24T08:35:04.5831364Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxt/libxt6_1.2.1-1_amd64.deb... +2025-11-24T08:35:04.5881126Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libk5crypto3_1.19.2-2_amd64.deb +2025-11-24T08:35:04.5883091Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnsl/libnsl2_1.3.0-2build2_amd64.deb... +2025-11-24T08:35:04.6062192Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/more-itertools/python3-more-itertools_8.10.0-2_all.deb +2025-11-24T08:35:04.6064797Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-l10n_2.2.27-3ubuntu2_all.deb... +2025-11-24T08:35:04.6395342Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/strace/strace_5.16-0ubuntu3_amd64.deb +2025-11-24T08:35:04.6397100Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-server_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:35:04.6499585Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/gcc-12-base_12-20220319-1ubuntu1_amd64.deb +2025-11-24T08:35:04.6501118Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bash-completion/bash-completion_2.11-5ubuntu1_all.deb... +2025-11-24T08:35:04.6669188Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxau/libxau6_1.0.9-1build5_amd64.deb +2025-11-24T08:35:04.6670893Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libelf1_0.186-1build1_amd64.deb... +2025-11-24T08:35:04.9018460Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cron/cron_3.0pl1-137ubuntu3_amd64.deb +2025-11-24T08:35:04.9020199Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/logrotate/logrotate_3.19.0-1ubuntu1_amd64.deb... +2025-11-24T08:35:04.9408914Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apparmor/libapparmor1_3.0.4-2ubuntu2_amd64.deb +2025-11-24T08:35:04.9411168Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iso-codes/iso-codes_4.9.0-1_all.deb... +2025-11-24T08:35:04.9501041Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnsl/libnsl2_1.3.0-2build2_amd64.deb +2025-11-24T08:35:04.9503026Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_3.0.2-0ubuntu1_amd64.deb... +2025-11-24T08:35:05.1196422Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-l10n_2.2.27-3ubuntu2_all.deb +2025-11-24T08:35:05.1198205Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cups/libcups2_2.4.1op1-1ubuntu4_amd64.deb... +2025-11-24T08:35:05.1240385Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-server_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:35:05.1242330Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-runtime-tools_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:05.1285613Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libelf1_0.186-1build1_amd64.deb +2025-11-24T08:35:05.1287374Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg6.0_2.4.5_amd64.deb... +2025-11-24T08:35:05.1707248Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxt/libxt6_1.2.1-1_amd64.deb +2025-11-24T08:35:05.1709053Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgconf_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:35:05.2279668Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bash-completion/bash-completion_2.11-5ubuntu1_all.deb +2025-11-24T08:35:05.2281617Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-secretstorage/python3-secretstorage_3.3.1-1_all.deb... +2025-11-24T08:35:05.2562882Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3_amd64.deb +2025-11-24T08:35:05.2564699Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/ssl-cert/ssl-cert_1.1.2_all.deb... +2025-11-24T08:35:05.3601736Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/logrotate/logrotate_3.19.0-1ubuntu1_amd64.deb +2025-11-24T08:35:05.3604003Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxrender/libxrender1_0.9.10-1build4_amd64.deb... +2025-11-24T08:35:05.4634476Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-secretstorage/python3-secretstorage_3.3.1-1_all.deb +2025-11-24T08:35:05.4636978Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxdmcp/libxdmcp6_1.1.3-0ubuntu5_amd64.deb... +2025-11-24T08:35:05.5782527Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-base_2021.20220204-1_all.deb +2025-11-24T08:35:05.5784924Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pyparsing/python3-pyparsing_2.4.7-1_all.deb... +2025-11-24T08:35:05.6005450Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/ssl-cert/ssl-cert_1.1.2_all.deb +2025-11-24T08:35:05.6007179Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libdw1_0.186-1build1_amd64.deb... +2025-11-24T08:35:05.6491559Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgconf_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:35:05.6493566Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/libqrencode4_4.1.1-1_amd64.deb... +2025-11-24T08:35:05.7058850Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxdmcp/libxdmcp6_1.1.3-0ubuntu5_amd64.deb +2025-11-24T08:35:05.7060660Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/ebtables/ebtables_2.0.11-4build2_amd64.deb... +2025-11-24T08:35:05.7086875Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxrender/libxrender1_0.9.10-1build4_amd64.deb +2025-11-24T08:35:05.7088617Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ieee-data/ieee-data_20210605.1_all.deb... +2025-11-24T08:35:05.8243074Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cups/libcups2_2.4.1op1-1ubuntu4_amd64.deb +2025-11-24T08:35:05.8245025Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/libpolkit-gobject-1-0_0.105-33_amd64.deb... +2025-11-24T08:35:05.8288830Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-runtime-tools_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:05.8290938Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mime-support/mime-support_3.66_all.deb... +2025-11-24T08:35:05.9133004Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_3.0.2-0ubuntu1_amd64.deb +2025-11-24T08:35:05.9134762Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libb/libbpf/libbpf0_0.5.0-1_amd64.deb... +2025-11-24T08:35:05.9970948Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/libqrencode4_4.1.1-1_amd64.deb +2025-11-24T08:35:05.9973108Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-crypto_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:06.0150023Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iso-codes/iso-codes_4.9.0-1_all.deb +2025-11-24T08:35:06.0151515Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg_1.21.1ubuntu2_amd64.deb... +2025-11-24T08:35:06.0476159Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pyparsing/python3-pyparsing_2.4.7-1_all.deb +2025-11-24T08:35:06.0478041Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/java-common/java-common_0.72build2_all.deb... +2025-11-24T08:35:06.0582229Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mime-support/mime-support_3.66_all.deb +2025-11-24T08:35:06.0584058Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncurses6_6.3-2_amd64.deb... +2025-11-24T08:35:06.0652330Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg6.0_2.4.5_amd64.deb +2025-11-24T08:35:06.0654784Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/libpackagekit-glib2-18_1.2.5-2ubuntu2_amd64.deb... +2025-11-24T08:35:06.1669188Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/libpolkit-gobject-1-0_0.105-33_amd64.deb +2025-11-24T08:35:06.1671054Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:35:06.1761469Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/ebtables/ebtables_2.0.11-4build2_amd64.deb +2025-11-24T08:35:06.1763579Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libg/libgcrypt20/libgcrypt20_1.9.4-3ubuntu3_amd64.deb... +2025-11-24T08:35:06.2838390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/java-common/java-common_0.72build2_all.deb +2025-11-24T08:35:06.2840578Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgsm_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:35:06.3211536Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libdw1_0.186-1build1_amd64.deb +2025-11-24T08:35:06.3213609Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bzip2/bzip2_1.0.8-5build1_amd64.deb... +2025-11-24T08:35:06.4882422Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libb/libbpf/libbpf0_0.5.0-1_amd64.deb +2025-11-24T08:35:06.4884523Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tftp_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:06.5724300Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-crypto_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:06.5726158Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python3-pip_22.0.2+dfsg-1_all.deb... +2025-11-24T08:35:06.6387368Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncurses6_6.3-2_amd64.deb +2025-11-24T08:35:06.6389457Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/polkitd_0.105-33_amd64.deb... +2025-11-24T08:35:06.6577315Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/libpackagekit-glib2-18_1.2.5-2ubuntu2_amd64.deb +2025-11-24T08:35:06.6579413Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive_2021.20220204-1_all.deb... +2025-11-24T08:35:06.6700780Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bzip2/bzip2_1.0.8-5build1_amd64.deb +2025-11-24T08:35:06.6702826Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap-ng/libcap-ng0_0.7.9-2.2build3_amd64.deb... +2025-11-24T08:35:06.7638911Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ieee-data/ieee-data_20210605.1_all.deb +2025-11-24T08:35:06.7640563Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-inets_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:06.8900389Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgsm_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:35:06.8903175Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cairo/libcairo2_1.16.0-5ubuntu2_amd64.deb... +2025-11-24T08:35:06.8978335Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive_2021.20220204-1_all.deb +2025-11-24T08:35:06.8980384Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libtinfo6_6.3-2_amd64.deb... +2025-11-24T08:35:06.9074978Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap-ng/libcap-ng0_0.7.9-2.2build3_amd64.deb +2025-11-24T08:35:06.9076857Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-modules_1.4.0-11ubuntu2_amd64.deb... +2025-11-24T08:35:06.9519397Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:35:06.9521442Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/jeepney/python3-jeepney_0.7.1-3_all.deb... +2025-11-24T08:35:06.9569853Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg_1.21.1ubuntu2_amd64.deb +2025-11-24T08:35:06.9571601Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rabbitmq-server/rabbitmq-server_3.9.13-1_all.deb... +2025-11-24T08:35:07.0014282Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libg/libgcrypt20/libgcrypt20_1.9.4-3ubuntu3_amd64.deb +2025-11-24T08:35:07.0016075Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libio-pty-perl/libio-pty-perl_1.15-2build2_amd64.deb... +2025-11-24T08:35:07.0747017Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tftp_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:07.0749223Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxext/libxext6_1.3.4-1build1_amd64.deb... +2025-11-24T08:35:07.0975551Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/polkitd_0.105-33_amd64.deb +2025-11-24T08:35:07.0977386Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-client3_0.8-5ubuntu5_amd64.deb... +2025-11-24T08:35:07.3055180Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/jeepney/python3-jeepney_0.7.1-3_all.deb +2025-11-24T08:35:07.3056958Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/liby/libyaml/libyaml-0-2_0.2.2-1build2_amd64.deb... +2025-11-24T08:35:07.3537917Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libio-pty-perl/libio-pty-perl_1.15-2build2_amd64.deb +2025-11-24T08:35:07.3539632Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/distro-info-data/distro-info-data_0.52_all.deb... +2025-11-24T08:35:07.4309450Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxext/libxext6_1.3.4-1build1_amd64.deb +2025-11-24T08:35:07.4311268Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-client_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:35:07.4694621Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-client3_0.8-5ubuntu5_amd64.deb +2025-11-24T08:35:07.4696717Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/qrencode_4.1.1-1_amd64.deb... +2025-11-24T08:35:07.4832948Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libtinfo6_6.3-2_amd64.deb +2025-11-24T08:35:07.4835666Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcpdump/tcpdump_4.99.1-3build2_amd64.deb... +2025-11-24T08:35:07.5257787Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python3-pip_22.0.2+dfsg-1_all.deb +2025-11-24T08:35:07.5260425Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunwind/libunwind8_1.3.2-2build2_amd64.deb... +2025-11-24T08:35:07.5838243Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-inets_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:07.5839966Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-agent_2.2.27-3ubuntu2_amd64.deb... +2025-11-24T08:35:07.5907752Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/distro-info-data/distro-info-data_0.52_all.deb +2025-11-24T08:35:07.5909645Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/util-linux_2.37.2-4ubuntu3_amd64.deb... +2025-11-24T08:35:07.5930810Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-modules_1.4.0-11ubuntu2_amd64.deb +2025-11-24T08:35:07.5932462Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxml2/libxml2_2.9.13+dfsg-1build1_amd64.deb... +2025-11-24T08:35:07.7077614Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cairo/libcairo2_1.16.0-5ubuntu2_amd64.deb +2025-11-24T08:35:07.7079276Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/liba/libassuan/libassuan0_2.5.5-1build1_amd64.deb... +2025-11-24T08:35:07.7847627Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/liby/libyaml/libyaml-0-2_0.2.2-1build2_amd64.deb +2025-11-24T08:35:07.7849690Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jre-headless_8u312-b07-0ubuntu1_amd64.deb... +2025-11-24T08:35:07.8173075Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/qrencode_4.1.1-1_amd64.deb +2025-11-24T08:35:07.8174835Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pyjwt/python3-jwt_2.3.0-1_all.deb... +2025-11-24T08:35:07.9057015Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-client_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:35:07.9058841Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-public-key_24.2.1+dfsg-1_amd64.deb... +2025-11-24T08:35:07.9955731Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunwind/libunwind8_1.3.2-2build2_amd64.deb +2025-11-24T08:35:07.9957590Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-modules-bin_1.4.0-11ubuntu2_amd64.deb... +2025-11-24T08:35:08.0512205Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/liba/libassuan/libassuan0_2.5.5-1build1_amd64.deb +2025-11-24T08:35:08.0514508Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/p11-kit/libp11-kit0_0.24.0-6build1_amd64.deb... +2025-11-24T08:35:08.1643304Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-agent_2.2.27-3ubuntu2_amd64.deb +2025-11-24T08:35:08.1645254Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg-turbo/libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb... +2025-11-24T08:35:08.1726252Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pyjwt/python3-jwt_2.3.0-1_all.deb +2025-11-24T08:35:08.1728008Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libg/libgpg-error/libgpg-error0_1.43-3_amd64.deb... +2025-11-24T08:35:08.3235468Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcpdump/tcpdump_4.99.1-3build2_amd64.deb +2025-11-24T08:35:08.3237341Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-6_1.7.5-1_amd64.deb... +2025-11-24T08:35:08.3589460Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-modules-bin_1.4.0-11ubuntu2_amd64.deb +2025-11-24T08:35:08.3591301Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/apt/apt-transport-https_2.4.5_all.deb... +2025-11-24T08:35:08.4446710Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxml2/libxml2_2.9.13+dfsg-1build1_amd64.deb +2025-11-24T08:35:08.4448571Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-httplib2/python3-httplib2_0.20.2-2_all.deb... +2025-11-24T08:35:08.5173906Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/util-linux_2.37.2-4ubuntu3_amd64.deb +2025-11-24T08:35:08.5193687Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi8_3.4.2-4_amd64.deb... +2025-11-24T08:35:08.5922213Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/apt/apt-transport-https_2.4.5_all.deb +2025-11-24T08:35:08.5924185Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tar/tar_1.34+dfsg-1build3_amd64.deb... +2025-11-24T08:35:08.6304636Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libg/libgpg-error/libgpg-error0_1.43-3_amd64.deb +2025-11-24T08:35:08.6943449Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-public-key_24.2.1+dfsg-1_amd64.deb +2025-11-24T08:35:08.7389435Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/p11-kit/libp11-kit0_0.24.0-6build1_amd64.deb +2025-11-24T08:35:08.7519903Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg-turbo/libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb +2025-11-24T08:35:08.7846711Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-httplib2/python3-httplib2_0.20.2-2_all.deb +2025-11-24T08:35:08.8624180Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi8_3.4.2-4_amd64.deb +2025-11-24T08:35:08.9688874Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rabbitmq-server/rabbitmq-server_3.9.13-1_all.deb +2025-11-24T08:35:09.1873054Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-6_1.7.5-1_amd64.deb +2025-11-24T08:35:09.2970781Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tar/tar_1.34+dfsg-1build3_amd64.deb +2025-11-24T08:35:09.9220263Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jre-headless_8u312-b07-0ubuntu1_amd64.deb +2025-11-24T08:35:09.9759317Z +2025-11-24T08:35:09.9760033Z Mirror `jammy` has been successfully updated. +2025-11-24T08:35:10.0247146Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/InRelease... +2025-11-24T08:35:10.6022455Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/InRelease +2025-11-24T08:35:10.6034376Z openpgp: Signature made Mon, 24 Nov 2025 05:07:29 UTC using RSA key ID 871920D1991BC93C +2025-11-24T08:35:10.6035424Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " +2025-11-24T08:35:10.6106678Z Downloading & parsing package files... +2025-11-24T08:35:10.6108050Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/main/binary-amd64/Packages.gz... +2025-11-24T08:35:11.6432433Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/main/binary-amd64/Packages.gz +2025-11-24T08:35:11.8826027Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/universe/binary-amd64/Packages.gz... +2025-11-24T08:35:12.8199603Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/universe/binary-amd64/Packages.gz +2025-11-24T08:35:12.9011493Z Applying filter... +2025-11-24T08:35:12.9229219Z Packages filtered: 20612 -> 116. +2025-11-24T08:35:12.9229819Z Building download queue... +2025-11-24T08:35:12.9248225Z Download queue: 116 items (132.01 MiB) +2025-11-24T08:35:12.9256307Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/gcc-12-base_12.3.0-1ubuntu1~22.04.2_amd64.deb... +2025-11-24T08:35:12.9258329Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.11.1+dfsg-1ubuntu0.3_amd64.deb... +2025-11-24T08:35:12.9260202Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/w/wheel/python3-wheel_0.37.1-2ubuntu0.22.04.1_all.deb... +2025-11-24T08:35:12.9261869Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/libprocps8_3.3.17-6ubuntu2.1_amd64.deb... +2025-11-24T08:35:12.9263188Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ssl_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:12.9264464Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/llvm-toolchain-15/libllvm15_15.0.7-0ubuntu0.22.04.3_amd64.deb... +2025-11-24T08:35:12.9265561Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-lib2to3_3.10.8-1~22.04_all.deb... +2025-11-24T08:35:12.9266600Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libgssapi-krb5-2_1.19.2-2ubuntu0.7_amd64.deb... +2025-11-24T08:35:12.9267622Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-syntax-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:12.9268606Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rsync/rsync_3.2.7-0ubuntu0.22.04.4_amd64.deb... +2025-11-24T08:35:13.2692959Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/libprocps8_3.3.17-6ubuntu2.1_amd64.deb +2025-11-24T08:35:13.2695384Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-asn1_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:13.2699724Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/w/wheel/python3-wheel_0.37.1-2ubuntu0.22.04.1_all.deb +2025-11-24T08:35:13.2701233Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-data_1.7.5-1ubuntu0.3_all.deb... +2025-11-24T08:35:13.2747136Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/gcc-12-base_12.3.0-1ubuntu1~22.04.2_amd64.deb +2025-11-24T08:35:13.2748966Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-crypto_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:13.4090284Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-lib2to3_3.10.8-1~22.04_all.deb +2025-11-24T08:35:13.4092480Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncurses6_6.3-2ubuntu0.1_amd64.deb... +2025-11-24T08:35:13.5137505Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libgssapi-krb5-2_1.19.2-2ubuntu0.7_amd64.deb +2025-11-24T08:35:13.5139117Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:13.6114077Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rsync/rsync_3.2.7-0ubuntu0.22.04.4_amd64.deb +2025-11-24T08:35:13.6115818Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libmount1_2.37.2-4ubuntu3.4_amd64.deb... +2025-11-24T08:35:13.6332548Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.11.1+dfsg-1ubuntu0.3_amd64.deb +2025-11-24T08:35:13.6334660Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-syntax-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:13.6336542Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc-common_1.3.2-2ubuntu0.1_all.deb... +2025-11-24T08:35:13.6338251Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3.1_amd64.deb... +2025-11-24T08:35:13.8560729Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-data_1.7.5-1ubuntu0.3_all.deb +2025-11-24T08:35:13.8562599Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10_3.10.12-1~22.04.11_amd64.deb... +2025-11-24T08:35:13.8592364Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-crypto_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:13.8594385Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6_2.35-0ubuntu3.11_amd64.deb... +2025-11-24T08:35:13.8640380Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc-common_1.3.2-2ubuntu0.1_all.deb +2025-11-24T08:35:13.8642192Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tar/tar_1.34+dfsg-1ubuntu0.1.22.04.2_amd64.deb... +2025-11-24T08:35:13.9871711Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ssl_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:13.9874180Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-server_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:13.9942873Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncurses6_6.3-2ubuntu0.1_amd64.deb +2025-11-24T08:35:13.9944426Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncursesw6_6.3-2ubuntu0.1_amd64.deb... +2025-11-24T08:35:14.1810262Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-asn1_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:14.1812208Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/mount_2.37.2-4ubuntu3.4_amd64.deb... +2025-11-24T08:35:14.1968493Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libmount1_2.37.2-4ubuntu3.4_amd64.deb +2025-11-24T08:35:14.1970555Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_3.0.2-0ubuntu1.20_amd64.deb... +2025-11-24T08:35:14.2368530Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3.1_amd64.deb +2025-11-24T08:35:14.2370408Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3.16_amd64.deb... +2025-11-24T08:35:14.3502962Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:14.3504837Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-xmerl_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:14.4490063Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-server_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:14.4492473Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates/ca-certificates_20240203~22.04.1_all.deb... +2025-11-24T08:35:14.5567273Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tar/tar_1.34+dfsg-1ubuntu0.1.22.04.2_amd64.deb +2025-11-24T08:35:14.5571269Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg_2.2.27-3ubuntu2.4_all.deb... +2025-11-24T08:35:14.5795760Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncursesw6_6.3-2ubuntu0.1_amd64.deb +2025-11-24T08:35:14.5797522Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/dirmngr_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:14.6550315Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10_3.10.12-1~22.04.11_amd64.deb +2025-11-24T08:35:14.6553061Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5-3_1.19.2-2ubuntu0.7_amd64.deb... +2025-11-24T08:35:14.7178122Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3.16_amd64.deb +2025-11-24T08:35:14.7179834Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nghttp2/libnghttp2-14_1.43.0-1ubuntu0.2_amd64.deb... +2025-11-24T08:35:14.7576209Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/mount_2.37.2-4ubuntu3.4_amd64.deb +2025-11-24T08:35:14.7578445Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-client_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:14.9088499Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6_2.35-0ubuntu3.11_amd64.deb +2025-11-24T08:35:14.9090874Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1.1_amd64.deb... +2025-11-24T08:35:14.9806531Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/llvm-toolchain-15/libllvm15_15.0.7-0ubuntu0.22.04.3_amd64.deb +2025-11-24T08:35:14.9808123Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libuuid1_2.37.2-4ubuntu3.4_amd64.deb... +2025-11-24T08:35:15.1354640Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates/ca-certificates_20240203~22.04.1_all.deb +2025-11-24T08:35:15.1356635Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2-bin_2.44-1ubuntu0.22.04.2_amd64.deb... +2025-11-24T08:35:15.1550137Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_3.0.2-0ubuntu1.20_amd64.deb +2025-11-24T08:35:15.1552037Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10-minimal_3.10.12-1~22.04.11_amd64.deb... +2025-11-24T08:35:15.1660064Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nghttp2/libnghttp2-14_1.43.0-1ubuntu0.2_amd64.deb +2025-11-24T08:35:15.1661958Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tftp_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:15.2244146Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-client_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:15.2245923Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1.1_amd64.deb... +2025-11-24T08:35:15.2599425Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg_2.2.27-3ubuntu2.4_all.deb +2025-11-24T08:35:15.2601154Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_3.0.2-0ubuntu1.20_amd64.deb... +2025-11-24T08:35:15.2717608Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-xmerl_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:15.2719499Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxml2/libxml2_2.9.13+dfsg-1ubuntu0.10_amd64.deb... +2025-11-24T08:35:15.2804155Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/dirmngr_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:15.2805989Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-public-key_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:15.3187177Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libuuid1_2.37.2-4ubuntu3.4_amd64.deb +2025-11-24T08:35:15.3189279Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-minimal_3.10.12-1~22.04.11_amd64.deb... +2025-11-24T08:35:15.3461672Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5-3_1.19.2-2ubuntu0.7_amd64.deb +2025-11-24T08:35:15.3463696Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nano/nano_6.2-1ubuntu0.1_amd64.deb... +2025-11-24T08:35:15.4627874Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1.1_amd64.deb +2025-11-24T08:35:15.4630860Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jdk-headless_8u472-ga-1~22.04_amd64.deb... +2025-11-24T08:35:15.4787851Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2-bin_2.44-1ubuntu0.22.04.2_amd64.deb +2025-11-24T08:35:15.4791458Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb... +2025-11-24T08:35:15.4976605Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1.1_amd64.deb +2025-11-24T08:35:15.4986744Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-os-mon_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:15.7510299Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tftp_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:15.7512290Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-pkg-resources_59.6.0-1.2ubuntu0.22.04.3_all.deb... +2025-11-24T08:35:15.9562111Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-os-mon_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:15.9563896Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.6-1~22.04_amd64.deb... +2025-11-24T08:35:16.0478295Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nano/nano_6.2-1ubuntu0.1_amd64.deb +2025-11-24T08:35:16.0480288Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1.20_amd64.deb... +2025-11-24T08:35:16.0589967Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb +2025-11-24T08:35:16.0593869Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python3-pip_22.0.2+dfsg-1ubuntu0.7_all.deb... +2025-11-24T08:35:16.0979941Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxml2/libxml2_2.9.13+dfsg-1ubuntu0.10_amd64.deb +2025-11-24T08:35:16.0981906Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/logrotate/logrotate_3.19.0-1ubuntu1.1_amd64.deb... +2025-11-24T08:35:16.1162466Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-public-key_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:16.1164452Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libblkid1_2.37.2-4ubuntu3.4_amd64.deb... +2025-11-24T08:35:16.1595685Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-minimal_3.10.12-1~22.04.11_amd64.deb +2025-11-24T08:35:16.1598066Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-utils_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:16.2174216Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10-minimal_3.10.12-1~22.04.11_amd64.deb +2025-11-24T08:35:16.2176092Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-setuptools_59.6.0-1.2ubuntu0.22.04.3_all.deb... +2025-11-24T08:35:16.2847754Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_3.0.2-0ubuntu1.20_amd64.deb +2025-11-24T08:35:16.2849549Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2_2.44-1ubuntu0.22.04.2_amd64.deb... +2025-11-24T08:35:16.3181433Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.6-1~22.04_amd64.deb +2025-11-24T08:35:16.3183596Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-snmp_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:16.3367731Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-pkg-resources_59.6.0-1.2ubuntu0.22.04.3_all.deb +2025-11-24T08:35:16.3369653Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5support0_1.19.2-2ubuntu0.7_amd64.deb... +2025-11-24T08:35:16.5593050Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/logrotate/logrotate_3.19.0-1ubuntu1.1_amd64.deb +2025-11-24T08:35:16.5594960Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-eldap_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:16.6362247Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2_2.44-1ubuntu0.22.04.2_amd64.deb +2025-11-24T08:35:16.6364310Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam0g_1.4.0-11ubuntu2.6_amd64.deb... +2025-11-24T08:35:16.6834000Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5support0_1.19.2-2ubuntu0.7_amd64.deb +2025-11-24T08:35:16.6835884Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libsmartcols1_2.37.2-4ubuntu3.4_amd64.deb... +2025-11-24T08:35:16.7019337Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libblkid1_2.37.2-4ubuntu3.4_amd64.deb +2025-11-24T08:35:16.7021181Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libssh/libssh-4_0.9.6-2ubuntu0.22.04.5_amd64.deb... +2025-11-24T08:35:16.7926534Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jdk-headless_8u472-ga-1~22.04_amd64.deb +2025-11-24T08:35:16.7930156Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ftp_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:16.8629311Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-utils_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:16.8631196Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rabbitmq-server/rabbitmq-server_3.9.27-0ubuntu0.2_all.deb... +2025-11-24T08:35:16.9021854Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-setuptools_59.6.0-1.2ubuntu0.22.04.3_all.deb +2025-11-24T08:35:16.9023592Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libstdc++6_12.3.0-1ubuntu1~22.04.2_amd64.deb... +2025-11-24T08:35:16.9945201Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python3-pip_22.0.2+dfsg-1ubuntu0.7_all.deb +2025-11-24T08:35:16.9947694Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sysstat/sysstat_12.5.2-2ubuntu0.2_amd64.deb... +2025-11-24T08:35:17.0984828Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1.20_amd64.deb +2025-11-24T08:35:17.0986572Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-inets_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:17.1029831Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam0g_1.4.0-11ubuntu2.6_amd64.deb +2025-11-24T08:35:17.1031375Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apparmor/libapparmor1_3.0.4-2ubuntu2.4_amd64.deb... +2025-11-24T08:35:17.1461089Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-eldap_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:17.1463064Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc3_1.3.2-2ubuntu0.1_amd64.deb... +2025-11-24T08:35:17.1509946Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libsmartcols1_2.37.2-4ubuntu3.4_amd64.deb +2025-11-24T08:35:17.1511830Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4_4.35-0ubuntu0.22.04.1_amd64.deb... +2025-11-24T08:35:17.2725635Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libssh/libssh-4_0.9.6-2ubuntu0.22.04.5_amd64.deb +2025-11-24T08:35:17.2727280Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-client3_0.8-5ubuntu5.2_amd64.deb... +2025-11-24T08:35:17.2739979Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ftp_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:17.2742026Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-distutils_3.10.8-1~22.04_all.deb... +2025-11-24T08:35:17.3471218Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-snmp_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:17.3473350Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common-data_0.8-5ubuntu5.2_amd64.deb... +2025-11-24T08:35:17.4423324Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apparmor/libapparmor1_3.0.4-2ubuntu2.4_amd64.deb +2025-11-24T08:35:17.4425136Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1.1_amd64.deb... +2025-11-24T08:35:17.6242471Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-client3_0.8-5ubuntu5.2_amd64.deb +2025-11-24T08:35:17.6244598Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.16+dfsg-0ubuntu0.22.04.2_amd64.deb... +2025-11-24T08:35:17.6260916Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc3_1.3.2-2ubuntu0.1_amd64.deb +2025-11-24T08:35:17.6262153Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.6-1~22.04_amd64.deb... +2025-11-24T08:35:17.6809943Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1.1_amd64.deb +2025-11-24T08:35:17.6811817Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-base_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:17.6900593Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common-data_0.8-5ubuntu5.2_amd64.deb +2025-11-24T08:35:17.6902515Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cups/libcups2_2.4.1op1-1ubuntu4.12_amd64.deb... +2025-11-24T08:35:17.7233313Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libstdc++6_12.3.0-1ubuntu1~22.04.2_amd64.deb +2025-11-24T08:35:17.7235500Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgsm_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:17.7497364Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4_4.35-0ubuntu0.22.04.1_amd64.deb +2025-11-24T08:35:17.7499689Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgv_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:17.8333193Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sysstat/sysstat_12.5.2-2ubuntu0.2_amd64.deb +2025-11-24T08:35:17.8335033Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.6-1~22.04_amd64.deb... +2025-11-24T08:35:17.8461317Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-distutils_3.10.8-1~22.04_all.deb +2025-11-24T08:35:17.8463552Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/expat/libexpat1_2.4.7-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:17.9220719Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-inets_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:17.9223501Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-stdlib_3.10.12-1~22.04.11_amd64.deb... +2025-11-24T08:35:17.9657887Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.6-1~22.04_amd64.deb +2025-11-24T08:35:17.9659852Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libk/libksba/libksba8_1.6.0-2ubuntu0.2_amd64.deb... +2025-11-24T08:35:18.0649390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.6-1~22.04_amd64.deb +2025-11-24T08:35:18.0651325Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1.1_amd64.deb... +2025-11-24T08:35:18.2274951Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.16+dfsg-0ubuntu0.22.04.2_amd64.deb +2025-11-24T08:35:18.2276852Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libk5crypto3_1.19.2-2ubuntu0.7_amd64.deb... +2025-11-24T08:35:18.2947515Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgsm_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:18.2949319Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-runtime-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:18.2998437Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1.1_amd64.deb +2025-11-24T08:35:18.3000275Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/procps_3.3.17-6ubuntu2.1_amd64.deb... +2025-11-24T08:35:18.3189368Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/expat/libexpat1_2.4.7-1ubuntu0.6_amd64.deb +2025-11-24T08:35:18.3191137Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20190909ubuntu1.2_all.deb... +2025-11-24T08:35:18.3346887Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgv_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:18.3348695Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd_249.11-0ubuntu3.16_amd64.deb... +2025-11-24T08:35:18.3736751Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cups/libcups2_2.4.1op1-1ubuntu4.12_amd64.deb +2025-11-24T08:35:18.3739380Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-6_1.7.5-1ubuntu0.3_amd64.deb... +2025-11-24T08:35:18.5486915Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20190909ubuntu1.2_all.deb +2025-11-24T08:35:18.5488827Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/i/inetutils/inetutils-traceroute_2.2-2ubuntu0.1_amd64.deb... +2025-11-24T08:35:18.5687822Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libk/libksba/libksba8_1.6.0-2ubuntu0.2_amd64.deb +2025-11-24T08:35:18.5690079Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1ubuntu1.21_amd64.deb... +2025-11-24T08:35:18.6843711Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libk5crypto3_1.19.2-2ubuntu0.7_amd64.deb +2025-11-24T08:35:18.6845779Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g_1.2.11.dfsg-2ubuntu9.2_amd64.deb... +2025-11-24T08:35:18.7364331Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rabbitmq-server/rabbitmq-server_3.9.27-0ubuntu0.2_all.deb +2025-11-24T08:35:18.7366298Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-sysv_249.11-0ubuntu3.16_amd64.deb... +2025-11-24T08:35:18.9053040Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/i/inetutils/inetutils-traceroute_2.2-2ubuntu0.1_amd64.deb +2025-11-24T08:35:18.9054595Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libtinfo6_6.3-2ubuntu0.1_amd64.deb... +2025-11-24T08:35:18.9647614Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-stdlib_3.10.12-1~22.04.11_amd64.deb +2025-11-24T08:35:18.9650828Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnutls28/libgnutls30_3.7.3-4ubuntu1.7_amd64.deb... +2025-11-24T08:35:18.9669679Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-sysv_249.11-0ubuntu3.16_amd64.deb +2025-11-24T08:35:18.9671520Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libgcc-s1_12.3.0-1ubuntu1~22.04.2_amd64.deb... +2025-11-24T08:35:18.9827940Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-runtime-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:18.9829764Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg_1.21.1ubuntu2.6_amd64.deb... +2025-11-24T08:35:19.0199870Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/procps_3.3.17-6ubuntu2.1_amd64.deb +2025-11-24T08:35:19.0202184Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-parsetools_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:19.0762380Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-base_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:19.0764637Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-agent_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:19.1422507Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g_1.2.11.dfsg-2ubuntu9.2_amd64.deb +2025-11-24T08:35:19.1424441Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3.16_amd64.deb... +2025-11-24T08:35:19.1535497Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1ubuntu1.21_amd64.deb +2025-11-24T08:35:19.1537221Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-mnesia_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:19.1948787Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-6_1.7.5-1ubuntu0.3_amd64.deb +2025-11-24T08:35:19.1950335Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.81.0-1ubuntu1.21_amd64.deb... +2025-11-24T08:35:19.4349021Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libgcc-s1_12.3.0-1ubuntu1~22.04.2_amd64.deb +2025-11-24T08:35:19.4351225Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iputils/iputils-ping_20211215-1ubuntu0.1_amd64.deb... +2025-11-24T08:35:19.4815697Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libtinfo6_6.3-2ubuntu0.1_amd64.deb +2025-11-24T08:35:19.4817568Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-0_3.37.2-2ubuntu0.5_amd64.deb... +2025-11-24T08:35:19.5085748Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd_249.11-0ubuntu3.16_amd64.deb +2025-11-24T08:35:19.5087854Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1.1_amd64.deb... +2025-11-24T08:35:19.6116039Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-parsetools_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:19.6118051Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jre-headless_8u472-ga-1~22.04_amd64.deb... +2025-11-24T08:35:19.6461883Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-agent_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:19.6463806Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nss/libnss3_3.98-0ubuntu0.22.04.2_amd64.deb... +2025-11-24T08:35:19.7920244Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iputils/iputils-ping_20211215-1ubuntu0.1_amd64.deb +2025-11-24T08:35:19.7922970Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-l10n_2.2.27-3ubuntu2.4_all.deb... +2025-11-24T08:35:19.8432444Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3.16_amd64.deb +2025-11-24T08:35:19.8434541Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/util-linux_2.37.2-4ubuntu3.4_amd64.deb... +2025-11-24T08:35:19.8851994Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.81.0-1ubuntu1.21_amd64.deb +2025-11-24T08:35:19.8854427Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common3_0.8-5ubuntu5.2_amd64.deb... +2025-11-24T08:35:19.9017336Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnutls28/libgnutls30_3.7.3-4ubuntu1.7_amd64.deb +2025-11-24T08:35:19.9019167Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6_4.18.0-4ubuntu0.1_amd64.deb... +2025-11-24T08:35:19.9219023Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg_1.21.1ubuntu2.6_amd64.deb +2025-11-24T08:35:19.9220661Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgconf_2.2.27-3ubuntu2.4_amd64.deb... +2025-11-24T08:35:20.0674184Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-mnesia_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:20.0676335Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb... +2025-11-24T08:35:20.2365234Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common3_0.8-5ubuntu5.2_amd64.deb +2025-11-24T08:35:20.2367076Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/less/less_590-1ubuntu0.22.04.3_amd64.deb... +2025-11-24T08:35:20.2492067Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-l10n_2.2.27-3ubuntu2.4_all.deb +2025-11-24T08:35:20.2579200Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6_4.18.0-4ubuntu0.1_amd64.deb +2025-11-24T08:35:20.3041345Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-0_3.37.2-2ubuntu0.5_amd64.deb +2025-11-24T08:35:20.3308484Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1.1_amd64.deb +2025-11-24T08:35:20.4043596Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgconf_2.2.27-3ubuntu2.4_amd64.deb +2025-11-24T08:35:20.5866573Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nss/libnss3_3.98-0ubuntu0.22.04.2_amd64.deb +2025-11-24T08:35:20.7781547Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/util-linux_2.37.2-4ubuntu3.4_amd64.deb +2025-11-24T08:35:20.8215623Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/less/less_590-1ubuntu0.22.04.3_amd64.deb +2025-11-24T08:35:20.8886494Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb +2025-11-24T08:35:21.8426520Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jre-headless_8u472-ga-1~22.04_amd64.deb +2025-11-24T08:35:21.8653759Z +2025-11-24T08:35:21.8654507Z Mirror `jammy-security` has been successfully updated. +2025-11-24T08:35:21.8921277Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease... +2025-11-24T08:35:22.4779267Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease +2025-11-24T08:35:22.4793200Z openpgp: Signature made Mon, 24 Nov 2025 05:10:20 UTC using RSA key ID 871920D1991BC93C +2025-11-24T08:35:22.4794451Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " +2025-11-24T08:35:22.4857755Z Downloading & parsing package files... +2025-11-24T08:35:22.4862890Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/main/binary-amd64/Packages.gz... +2025-11-24T08:35:23.6541188Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/main/binary-amd64/Packages.gz +2025-11-24T08:35:23.9045743Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/universe/binary-amd64/Packages.gz... +2025-11-24T08:35:24.8686315Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/universe/binary-amd64/Packages.gz +2025-11-24T08:35:24.9557339Z Applying filter... +2025-11-24T08:35:24.9779108Z Packages filtered: 22847 -> 151. +2025-11-24T08:35:24.9779696Z Building download queue... +2025-11-24T08:35:24.9828057Z Download queue: 49 items (14.71 MiB) +2025-11-24T08:35:24.9835943Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libxtables12_1.8.7-1ubuntu5.2_amd64.deb... +2025-11-24T08:35:24.9837766Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-0_2.72.4-0ubuntu2.6_amd64.deb... +2025-11-24T08:35:24.9838901Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lvm2/libdevmapper1.02.1_1.02.175-2.1ubuntu5_amd64.deb... +2025-11-24T08:35:24.9840486Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.3-2ubuntu3~22.04.1_amd64.deb... +2025-11-24T08:35:24.9841681Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cryptsetup/libcryptsetup12_2.4.3-1ubuntu1.3_amd64.deb... +2025-11-24T08:35:24.9843147Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1.2_amd64.deb... +2025-11-24T08:35:24.9844338Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.22.9_all.deb... +2025-11-24T08:35:24.9845651Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.20.3-0ubuntu1.1_amd64.deb... +2025-11-24T08:35:24.9846765Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libelf1_0.186-1ubuntu0.1_amd64.deb... +2025-11-24T08:35:24.9847857Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip4tc2_1.8.7-1ubuntu5.2_amd64.deb... +2025-11-24T08:35:25.2136136Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1.2_amd64.deb +2025-11-24T08:35:25.2138017Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_amd64.deb... +2025-11-24T08:35:25.2164392Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.22.9_all.deb +2025-11-24T08:35:25.2166390Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcpdump/tcpdump_4.99.1-3ubuntu0.2_amd64.deb... +2025-11-24T08:35:25.3217672Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libxtables12_1.8.7-1ubuntu5.2_amd64.deb +2025-11-24T08:35:25.3219281Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip6tc2_1.8.7-1ubuntu5.2_amd64.deb... +2025-11-24T08:35:25.3448019Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip4tc2_1.8.7-1ubuntu5.2_amd64.deb +2025-11-24T08:35:25.3450081Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-data_2.72.4-0ubuntu2.6_all.deb... +2025-11-24T08:35:25.4357699Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.3-2ubuntu3~22.04.1_amd64.deb +2025-11-24T08:35:25.4359576Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_amd64.deb... +2025-11-24T08:35:25.4530010Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libelf1_0.186-1ubuntu0.1_amd64.deb +2025-11-24T08:35:25.4531972Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3.17_amd64.deb... +2025-11-24T08:35:25.5601746Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cryptsetup/libcryptsetup12_2.4.3-1ubuntu1.3_amd64.deb +2025-11-24T08:35:25.5603899Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pygobject/python3-gi_3.42.1-0ubuntu1_amd64.deb... +2025-11-24T08:35:25.5729342Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lvm2/libdevmapper1.02.1_1.02.175-2.1ubuntu5_amd64.deb +2025-11-24T08:35:25.5731309Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpcap/libpcap0.8_1.10.1-4ubuntu1.22.04.1_amd64.deb... +2025-11-24T08:35:25.5810782Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-data_2.72.4-0ubuntu2.6_all.deb +2025-11-24T08:35:25.5813543Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/packagekit_1.2.5-2ubuntu3_amd64.deb... +2025-11-24T08:35:25.6702922Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip6tc2_1.8.7-1ubuntu5.2_amd64.deb +2025-11-24T08:35:25.6705702Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3.2_amd64.deb... +2025-11-24T08:35:25.6888412Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_amd64.deb +2025-11-24T08:35:25.6890278Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-bin_2.72.4-0ubuntu2.6_amd64.deb... +2025-11-24T08:35:25.7865491Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_amd64.deb +2025-11-24T08:35:25.7868017Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt-common_2.4.0ubuntu4_all.deb... +2025-11-24T08:35:25.8928146Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.20.3-0ubuntu1.1_amd64.deb +2025-11-24T08:35:25.8930161Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.6-1~22.04.1_amd64.deb... +2025-11-24T08:35:25.9005907Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-0_2.72.4-0ubuntu2.6_amd64.deb +2025-11-24T08:35:25.9007735Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre3/libpcre3_8.39-13ubuntu0.22.04.1_amd64.deb... +2025-11-24T08:35:26.0250209Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt-common_2.4.0ubuntu4_all.deb +2025-11-24T08:35:26.0252042Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1.2_amd64.deb... +2025-11-24T08:35:26.0522556Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcpdump/tcpdump_4.99.1-3ubuntu0.2_amd64.deb +2025-11-24T08:35:26.0524639Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3.17_amd64.deb... +2025-11-24T08:35:26.1542903Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3.17_amd64.deb +2025-11-24T08:35:26.1544780Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libdw1_0.186-1ubuntu0.1_amd64.deb... +2025-11-24T08:35:26.1574602Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpcap/libpcap0.8_1.10.1-4ubuntu1.22.04.1_amd64.deb +2025-11-24T08:35:26.1577797Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.6-1~22.04.1_amd64.deb... +2025-11-24T08:35:26.1593559Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-bin_2.72.4-0ubuntu2.6_amd64.deb +2025-11-24T08:35:26.1595163Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.6-1~22.04.1_amd64.deb... +2025-11-24T08:35:26.2570332Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.6-1~22.04.1_amd64.deb +2025-11-24T08:35:26.2572030Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg6.0_2.4.14_amd64.deb... +2025-11-24T08:35:26.2596751Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pygobject/python3-gi_3.42.1-0ubuntu1_amd64.deb +2025-11-24T08:35:26.2598273Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd_249.11-0ubuntu3.17_amd64.deb... +2025-11-24T08:35:26.2708604Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3.2_amd64.deb +2025-11-24T08:35:26.2710273Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1.2_amd64.deb... +2025-11-24T08:35:26.2816128Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/packagekit_1.2.5-2ubuntu3_amd64.deb +2025-11-24T08:35:26.2821449Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/gir1.2-packagekitglib-1.0_1.2.5-2ubuntu3_amd64.deb... +2025-11-24T08:35:26.3979733Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.6-1~22.04.1_amd64.deb +2025-11-24T08:35:26.3981744Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_2.4.14_amd64.deb... +2025-11-24T08:35:26.5081137Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1.2_amd64.deb +2025-11-24T08:35:26.5083351Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcsc-lite/libpcsclite1_1.9.5-3ubuntu1_amd64.deb... +2025-11-24T08:35:26.5084901Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3.17_amd64.deb +2025-11-24T08:35:26.5086443Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/json-c/libjson-c5_0.15-3~ubuntu1.22.04.2_amd64.deb... +2025-11-24T08:35:26.5137778Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.6-1~22.04.1_amd64.deb +2025-11-24T08:35:26.5139085Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ufw/ufw_0.36.1-4ubuntu0.1_all.deb... +2025-11-24T08:35:26.6058200Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre3/libpcre3_8.39-13ubuntu0.22.04.1_amd64.deb +2025-11-24T08:35:26.6059952Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-sysv_249.11-0ubuntu3.17_amd64.deb... +2025-11-24T08:35:26.6406617Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/gir1.2-packagekitglib-1.0_1.2.5-2ubuntu3_amd64.deb +2025-11-24T08:35:26.6408496Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1.2_amd64.deb... +2025-11-24T08:35:26.8426975Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-sysv_249.11-0ubuntu3.17_amd64.deb +2025-11-24T08:35:26.8431902Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.19+dfsg-0ubuntu0.22.04.1_amd64.deb... +2025-11-24T08:35:26.8440686Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1.2_amd64.deb +2025-11-24T08:35:26.8442294Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1.2_amd64.deb... +2025-11-24T08:35:26.8558407Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libdw1_0.186-1ubuntu0.1_amd64.deb +2025-11-24T08:35:26.8559958Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunwind/libunwind8_1.3.2-2build2.1_amd64.deb... +2025-11-24T08:35:26.8706159Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1.2_amd64.deb +2025-11-24T08:35:26.8708026Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/iptables_1.8.7-1ubuntu5.2_amd64.deb... +2025-11-24T08:35:26.8762581Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcsc-lite/libpcsclite1_1.9.5-3ubuntu1_amd64.deb +2025-11-24T08:35:26.8764267Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/libpackagekit-glib2-18_1.2.5-2ubuntu3_amd64.deb... +2025-11-24T08:35:26.8872571Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/json-c/libjson-c5_0.15-3~ubuntu1.22.04.2_amd64.deb +2025-11-24T08:35:26.8874942Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.22.9_all.deb... +2025-11-24T08:35:27.0825676Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ufw/ufw_0.36.1-4ubuntu0.1_all.deb +2025-11-24T08:35:27.0827091Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/apt/apt-transport-https_2.4.14_all.deb... +2025-11-24T08:35:27.1918433Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg6.0_2.4.14_amd64.deb +2025-11-24T08:35:27.1921449Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python3-apt_2.4.0ubuntu4_amd64.deb... +2025-11-24T08:35:27.2406792Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.22.9_all.deb +2025-11-24T08:35:27.2408523Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xfsprogs/xfsprogs_5.13.0-1ubuntu2.1_amd64.deb... +2025-11-24T08:35:27.3173296Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/apt/apt-transport-https_2.4.14_all.deb +2025-11-24T08:35:27.3175173Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/distro-info-data/distro-info-data_0.52ubuntu0.11_all.deb... +2025-11-24T08:35:27.3229516Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_2.4.14_amd64.deb +2025-11-24T08:35:27.3230678Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunwind/libunwind8_1.3.2-2build2.1_amd64.deb +2025-11-24T08:35:27.4003560Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd_249.11-0ubuntu3.17_amd64.deb +2025-11-24T08:35:27.4136071Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1.2_amd64.deb +2025-11-24T08:35:27.4265637Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.19+dfsg-0ubuntu0.22.04.1_amd64.deb +2025-11-24T08:35:27.4624116Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/libpackagekit-glib2-18_1.2.5-2ubuntu3_amd64.deb +2025-11-24T08:35:27.5536912Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/distro-info-data/distro-info-data_0.52ubuntu0.11_all.deb +2025-11-24T08:35:27.6735531Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/iptables_1.8.7-1ubuntu5.2_amd64.deb +2025-11-24T08:35:27.7769525Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python3-apt_2.4.0ubuntu4_amd64.deb +2025-11-24T08:35:28.0399443Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xfsprogs/xfsprogs_5.13.0-1ubuntu2.1_amd64.deb +2025-11-24T08:35:28.0570435Z +2025-11-24T08:35:28.0571666Z Mirror `jammy-updates` has been successfully updated. +2025-11-24T08:35:28.0848450Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/InRelease... +2025-11-24T08:35:28.1057003Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/InRelease +2025-11-24T08:35:28.1071758Z openpgp: Signature made Thu, 20 Nov 2025 14:24:23 UTC using RSA key ID 7EA0A9C3F273FCD8 +2025-11-24T08:35:28.1072984Z openpgp: Good signature from "Docker Release (CE deb) " +2025-11-24T08:35:28.1082511Z Downloading & parsing package files... +2025-11-24T08:35:28.1084252Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/stable/binary-amd64/Packages.bz2... +2025-11-24T08:35:28.1209826Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/stable/binary-amd64/Packages.bz2 +2025-11-24T08:35:28.1371148Z Applying filter... +2025-11-24T08:35:28.1378133Z Packages filtered: 372 -> 3. +2025-11-24T08:35:28.1378921Z Building download queue... +2025-11-24T08:35:28.1381677Z Download queue: 3 items (85.92 MiB) +2025-11-24T08:35:28.1383617Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/docker-ce-cli_20.10.20~3-0~ubuntu-jammy_amd64.deb... +2025-11-24T08:35:28.1386060Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/docker-ce_20.10.20~3-0~ubuntu-jammy_amd64.deb... +2025-11-24T08:35:28.1387425Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/containerd.io_1.6.8-1_amd64.deb... +2025-11-24T08:35:28.3781793Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/docker-ce_20.10.20~3-0~ubuntu-jammy_amd64.deb +2025-11-24T08:35:28.3863898Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/containerd.io_1.6.8-1_amd64.deb +2025-11-24T08:35:28.5183120Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/docker-ce-cli_20.10.20~3-0~ubuntu-jammy_amd64.deb +2025-11-24T08:35:28.5315718Z +2025-11-24T08:35:28.5317105Z Mirror `docker-ce` has been successfully updated. +2025-11-24T08:35:28.5488932Z +2025-11-24T08:35:28.5489802Z Snapshot jammy successfully created. +2025-11-24T08:35:28.5490978Z You can run 'aptly publish snapshot jammy' to publish snapshot as Debian repository. +2025-11-24T08:35:28.5659778Z +2025-11-24T08:35:28.5660805Z Snapshot jammy-security successfully created. +2025-11-24T08:35:28.5662455Z You can run 'aptly publish snapshot jammy-security' to publish snapshot as Debian repository. +2025-11-24T08:35:28.5866368Z +2025-11-24T08:35:28.5866966Z Snapshot jammy-updates successfully created. +2025-11-24T08:35:28.5867824Z You can run 'aptly publish snapshot jammy-updates' to publish snapshot as Debian repository. +2025-11-24T08:35:28.6091487Z +2025-11-24T08:35:28.6092214Z Snapshot docker-ce successfully created. +2025-11-24T08:35:28.6093668Z You can run 'aptly publish snapshot docker-ce' to publish snapshot as Debian repository. +2025-11-24T08:35:28.6315954Z +2025-11-24T08:35:28.6316593Z Snapshot wire successfully created. +2025-11-24T08:35:28.6317389Z You can run 'aptly publish snapshot wire' to publish snapshot as Debian repository. +2025-11-24T08:35:28.6591251Z Loading packages... +2025-11-24T08:35:28.6632145Z Generating metadata files and linking package files... +2025-11-24T08:35:40.9144396Z Finalizing metadata files... +2025-11-24T08:35:40.9964750Z openpgp: signing file 'Release'... +2025-11-24T08:35:40.9977754Z openpgp: clearsigning file 'Release'... +2025-11-24T08:35:41.0015283Z +2025-11-24T08:35:41.0015850Z Snapshot wire has been successfully published. +2025-11-24T08:35:41.0017777Z Please setup your webserver to serve directory '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/debs-jammy/public' with autoindexing. +2025-11-24T08:35:41.0019576Z Now you can add following line to apt sources: +2025-11-24T08:35:41.0020585Z deb http://your-server/ jammy main +2025-11-24T08:35:41.0021644Z Don't forget to add your GPG key to apt with apt-key. +2025-11-24T08:35:41.0022336Z +2025-11-24T08:35:41.0023245Z You can also use `aptly serve` to publish your repositories over HTTP quickly. +2025-11-24T08:35:41.0105239Z Creating /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/versions/debian-builds.json +2025-11-24T08:35:51.9241696Z gpg: directory '/home/runner/.gnupg' created +2025-11-24T08:35:51.9717520Z gpg: WARNING: server 'gpg-agent' is older than us (2.4.4 < 2.4.5) +2025-11-24T08:35:51.9718575Z gpg: Note: Outdated servers may lack important security fixes. +2025-11-24T08:35:51.9719500Z gpg: Note: Use the command "gpgconf --kill all" to restart them. +2025-11-24T08:35:51.9729568Z gpg: /home/runner/.gnupg/trustdb.gpg: trustdb created +2025-11-24T08:35:51.9753549Z A054D0B66346B27919CE5EC02872CB8EEBD99578 +2025-11-24T08:35:51.9787822Z Creating system containers tarball /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... +2025-11-24T08:35:51.9894135Z Fetching registry.k8s.io_pause_3.9… +2025-11-24T08:35:52.2499299Z Getting image source signatures +2025-11-24T08:35:52.2500703Z Copying blob sha256:61fec91190a0bab34406027bbec43d562218df6e80d22d4735029756f23c7007 +2025-11-24T08:35:52.3989229Z Copying config sha256:e6f1816883972d4be47bd48879a08919b96afcd344132622e4d444987919323c +2025-11-24T08:35:52.4481083Z Writing manifest to image destination +2025-11-24T08:35:52.4714539Z Fetching registry.k8s.io_coredns_coredns_v1.11.4… +2025-11-24T08:35:52.7448360Z Getting image source signatures +2025-11-24T08:35:52.7449779Z Copying blob sha256:45f765bd5db213767b86e4c54eac6aaad6a564b12486acdfc9549cb96fe41bcd +2025-11-24T08:35:52.8427540Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:35:52.8966756Z Copying blob sha256:6f4cfee9177b9f884e8d86b48261a25094b2fcea1a7920919f47ea00712dbee8 +2025-11-24T08:35:52.9776209Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:35:53.0245322Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:35:53.0765437Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:35:53.1303937Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:35:53.1857272Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:35:53.2346488Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:35:53.2886260Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:35:53.3424599Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:35:53.3981690Z Copying blob sha256:afd01e4fe5aaea34cea66bab068e4b8e2003c90e6439f8fd0a8052e5c6d76a74 +2025-11-24T08:35:53.4778081Z Copying blob sha256:ab7109b3166202e4f3b963d571da79e07c4cc34d6a1ae6788d94f3b16d638e9b +2025-11-24T08:35:54.0107331Z Copying config sha256:6316477a0b9ca6ac80c09ecbefcd660b06671f1307152b9a7ffcacb65d9b1d56 +2025-11-24T08:35:54.0742376Z Writing manifest to image destination +2025-11-24T08:35:54.1036418Z Fetching registry.k8s.io_dns_k8s-dns-node-cache_1.22.28… +2025-11-24T08:35:54.3389414Z Getting image source signatures +2025-11-24T08:35:54.3390598Z Copying blob sha256:2cbc221dc464828bf2b36022e0524e2306abe7d2300ed54af4506fa2b55599cb +2025-11-24T08:35:54.7113933Z Copying blob sha256:b0eea46bf369a0a1e8d7ac231560c6c11c16997afd015f0325a35ccf952f299f +2025-11-24T08:35:55.1326911Z Copying config sha256:59d295ba73230e5f3773325f65ff363d99a036cfa73153f6c6094d90ad4a359a +2025-11-24T08:35:55.1805880Z Writing manifest to image destination +2025-11-24T08:35:55.2094554Z Fetching registry.k8s.io_cpa_cluster-proportional-autoscaler_v1.8.8… +2025-11-24T08:35:55.4421482Z Getting image source signatures +2025-11-24T08:35:55.4422994Z Copying blob sha256:f1be57a16127443b251b3362bfbc517e5c55f2a836b9ee28c1b667b75a28cc6a +2025-11-24T08:35:55.5785946Z Copying blob sha256:960043b8858c3c30f1d79dcc49adb2804fd35c2510729e67685b298b2ca746b7 +2025-11-24T08:35:55.6287285Z Copying blob sha256:778531a089eab52855ac322765befc1a3c2b5bf7e8a4a933672bfbbc91e7e3f7 +2025-11-24T08:35:55.7179236Z Copying blob sha256:eebb06941f3e57b2e40a0e9cbd798dacef9b04d89ebaa8896be5f17c976f8666 +2025-11-24T08:35:55.7972944Z Copying blob sha256:02cd68c0cbf64abe9738767877756b33f50fff5d88583fdc74b66beffa77694b +2025-11-24T08:35:55.8516756Z Copying blob sha256:d3c894b5b2b0fa857549aeb6cbc38b038b5b2828736be37b6d9fff0b886f12fd +2025-11-24T08:35:55.8965906Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:35:55.9505976Z Copying blob sha256:46ba3f23f1d3fb1440deeb279716e4377e79e61736ec2227270349b9618a0fdd +2025-11-24T08:35:56.0062372Z Copying blob sha256:4fa131a1b726b2d6468d461e7d8867a2157d5671f712461d8abd126155fdf9ce +2025-11-24T08:35:56.0723479Z Copying blob sha256:0987cc99aa9a176b798cb0b7071a4e0aa03d129b158c435fb20edef9a3d909e2 +2025-11-24T08:35:56.1287213Z Copying blob sha256:ff5e8b003139fe51bdba24c26da3d99370749d721aad0b016fcba1d63923b51c +2025-11-24T08:35:56.4708359Z Copying config sha256:b6d1a4be0743fd35029afe89eb5d5a0da894d072817575fcf6fddfa94749138b +2025-11-24T08:35:56.5218307Z Writing manifest to image destination +2025-11-24T08:35:56.5514676Z Fetching registry.k8s.io_metrics-server_metrics-server_v0.7.2… +2025-11-24T08:35:56.7728981Z Getting image source signatures +2025-11-24T08:35:56.7730649Z Copying blob sha256:f531499c6b730fc55a63e5ade55ce2c849bbf03f894248e3a2092689e3749312 +2025-11-24T08:35:56.8795707Z Copying blob sha256:e8d9a567199d7a318c875f2558a679ba8a924f817afacbb428afc3ffe6be6828 +2025-11-24T08:35:56.9354577Z Copying blob sha256:058cf3d8c2ba04ad7c064698c08c5e886a8623c0ad6171b8d72684253534417d +2025-11-24T08:35:57.0106675Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 +2025-11-24T08:35:57.0596530Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:35:57.1153425Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 +2025-11-24T08:35:57.1649343Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:35:57.2116434Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 +2025-11-24T08:35:57.2615946Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:35:57.3164288Z Copying blob sha256:da7816fa955ea24533c388143c78804c28682eef99b4ee3723b548c70148bba6 +2025-11-24T08:35:57.3706959Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 +2025-11-24T08:35:57.4323235Z Copying blob sha256:c530a5b08991c422534657d53af1a10e6046dcdafd3f85eea0496f208897522f +2025-11-24T08:35:57.8784543Z Copying config sha256:48d9cfaaf3904a3821b1e71e50d7cbcf52fb19d5286c59e0f86b1389d189b19c +2025-11-24T08:35:57.9354105Z Writing manifest to image destination +2025-11-24T08:35:57.9644238Z Fetching registry.k8s.io_ingress-nginx_controller_v1.12.1… +2025-11-24T08:35:58.1781266Z Getting image source signatures +2025-11-24T08:35:58.1782927Z Copying blob sha256:f18232174bc91741fdf3da96d85011092101a032a93a388b79e99e69c2d5c870 +2025-11-24T08:35:58.4111676Z Copying blob sha256:6596516c32605c6faaac507d4ee6307b108e75b1e5710fe71ab9e012959e569c +2025-11-24T08:35:59.1420107Z Copying blob sha256:a745d0b9e405901a285b55678cc02c47c5b5568f9b513169c0dfef90c4777132 +2025-11-24T08:35:59.3326345Z Copying blob sha256:d46eb76ee96b696532573c66afe9de4eddaa26a528f48b422b93b9367221c52b +2025-11-24T08:35:59.3876261Z Copying blob sha256:d2275420c3b699525d735e86be8c7febd2653e1e003106ff6fc15cfbda5febac +2025-11-24T08:35:59.4607890Z Copying blob sha256:5cc7b5e30a50f56cd1e64144ec637ccaf69ec88c7c42b921fdd8e6e40710abeb +2025-11-24T08:35:59.8827724Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:35:59.9316066Z Copying blob sha256:280d8b867efa0f9384f2b6ca827c7d445e3c25055827080ebc2445804cfb94e8 +2025-11-24T08:35:59.9963292Z Copying blob sha256:c59176407fc2653a48d7ceae612f1d67f6206a946636f0355c44a4897d3c0a73 +2025-11-24T08:36:00.0478979Z Copying blob sha256:6a14330bf5c4a2e20f49e78b9a973718d2680f4bab7fcb1c9c8dfdcf4aec506f +2025-11-24T08:36:00.1637979Z Copying blob sha256:6c429cd6f96a7966ec577b2770a9172115d1a1755e2b46cdb80186f18982ec04 +2025-11-24T08:36:00.5443589Z Copying blob sha256:8bfbec0fd7ed910f5140e5629a32cbad06a2af641ac546e453a2650105ab5e22 +2025-11-24T08:36:00.6404765Z Copying blob sha256:3643aa58ecc5e4535db87d7a2ea0ed1e1f1dec2a20e18d98ce2b9c2f727d1719 +2025-11-24T08:36:00.6964510Z Copying blob sha256:b9fced2781ac59fbb119c89cfb8f4e8b0753f8ddb5de5f38914ec9166ca38775 +2025-11-24T08:36:01.2078004Z Copying blob sha256:cd7a4d409e598bb9a519b385ee1b7b206055241457633f2ab148eb1e210435b2 +2025-11-24T08:36:01.2647928Z Copying config sha256:78e25eaa557d48a19963cbe751b91dc1d53e1c82aad6cd36c20e1c11eb04cd13 +2025-11-24T08:36:01.3169488Z Writing manifest to image destination +2025-11-24T08:36:01.3460943Z Fetching registry.k8s.io_kube-apiserver_v1.29.10… +2025-11-24T08:36:01.6400471Z Getting image source signatures +2025-11-24T08:36:01.6401762Z Copying blob sha256:0674a6f58b64d0431620993268b1a1b0ef8618ee3cffd96d4662c2759ec43894 +2025-11-24T08:36:01.7383847Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:36:01.7914181Z Copying blob sha256:6f4cfee9177b9f884e8d86b48261a25094b2fcea1a7920919f47ea00712dbee8 +2025-11-24T08:36:01.8675017Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 +2025-11-24T08:36:01.9137745Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:36:01.9667461Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 +2025-11-24T08:36:02.0132483Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:36:02.0609697Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 +2025-11-24T08:36:02.1066697Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:36:02.1616757Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:36:02.2156384Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 +2025-11-24T08:36:02.2708532Z Copying blob sha256:06b0f115d3d14c931cd74a4eb2c25db288bc369b9c85017d3f1a4bc6e62cc63a +2025-11-24T08:36:02.3455890Z Copying blob sha256:160c0d90bf27f5374fda9334ed87cc1b92954d1777c985102900c3cff63ef504 +2025-11-24T08:36:03.2256035Z Copying config sha256:18c48eab348cb2ea0d360be7cb2530f47a017434fa672c694e839f837137ffe0 +2025-11-24T08:36:03.3417981Z Writing manifest to image destination +2025-11-24T08:36:03.3736632Z Fetching registry.k8s.io_kube-controller-manager_v1.29.10… +2025-11-24T08:36:03.6270630Z Getting image source signatures +2025-11-24T08:36:03.6272359Z Copying blob sha256:0674a6f58b64d0431620993268b1a1b0ef8618ee3cffd96d4662c2759ec43894 +2025-11-24T08:36:03.7738402Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:36:03.8277540Z Copying blob sha256:6f4cfee9177b9f884e8d86b48261a25094b2fcea1a7920919f47ea00712dbee8 +2025-11-24T08:36:03.9198434Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 +2025-11-24T08:36:03.9676771Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:36:04.0225710Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 +2025-11-24T08:36:04.0698132Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:36:04.1224559Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 +2025-11-24T08:36:04.1694168Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:36:04.2224641Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:36:04.2756566Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 +2025-11-24T08:36:04.3390546Z Copying blob sha256:06b0f115d3d14c931cd74a4eb2c25db288bc369b9c85017d3f1a4bc6e62cc63a +2025-11-24T08:36:04.4120113Z Copying blob sha256:d68469361f560ce5f47637714df0cf44c6b9e573de860bfad827268050d18b11 +2025-11-24T08:36:05.2866003Z Copying config sha256:ad191b766a6c87c02578cced8268155fd86b78f8f096775f9d4c3a8f8dccf6bf +2025-11-24T08:36:05.3455676Z Writing manifest to image destination +2025-11-24T08:36:05.3763998Z Fetching registry.k8s.io_kube-scheduler_v1.29.10… +2025-11-24T08:36:05.6483326Z Getting image source signatures +2025-11-24T08:36:05.6484652Z Copying blob sha256:0674a6f58b64d0431620993268b1a1b0ef8618ee3cffd96d4662c2759ec43894 +2025-11-24T08:36:05.7605323Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:36:05.8149756Z Copying blob sha256:6f4cfee9177b9f884e8d86b48261a25094b2fcea1a7920919f47ea00712dbee8 +2025-11-24T08:36:05.9056334Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 +2025-11-24T08:36:05.9550833Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 +2025-11-24T08:36:06.0108620Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 +2025-11-24T08:36:06.0635814Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd +2025-11-24T08:36:06.1115730Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 +2025-11-24T08:36:06.1613142Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:36:06.2164929Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:36:06.2745927Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 +2025-11-24T08:36:06.3422304Z Copying blob sha256:06b0f115d3d14c931cd74a4eb2c25db288bc369b9c85017d3f1a4bc6e62cc63a +2025-11-24T08:36:06.4236307Z Copying blob sha256:6ed33242355d47618fc5576dbb39c4e68b949b095af87f17eec2fa61dba941f0 +2025-11-24T08:36:06.9017144Z Copying config sha256:27a6d029a6b019de099d92bd417a4e40c98e146a04faaab836138abf6307034d +2025-11-24T08:36:06.9923808Z Writing manifest to image destination +2025-11-24T08:36:07.0234545Z Fetching registry.k8s.io_kube-proxy_v1.29.10… +2025-11-24T08:36:07.2623756Z Getting image source signatures +2025-11-24T08:36:07.2625094Z Copying blob sha256:ed7a63e1838fc2675aaffc06b03da167277c478416ef46993d0cf116d29d2f2d +2025-11-24T08:36:07.6135538Z Copying blob sha256:76a98f04292b7198e397cbe3106b30c2da334fb729cfcd250465c88aec2c9112 +2025-11-24T08:36:08.0618606Z Copying config sha256:561e7e8f714aae262c52c7ea98efdabecf299956499c8a2c63eab6759906f0a4 +2025-11-24T08:36:08.1276623Z Writing manifest to image destination +2025-11-24T08:36:08.1572872Z Fetching quay.io_coreos_etcd_v3.5.16… +2025-11-24T08:36:08.5509237Z Getting image source signatures +2025-11-24T08:36:08.5511378Z Copying blob sha256:804c8aba2cc61168600515a6831474978d0ea8faddd8a66f99cc9f2bbd576105 +2025-11-24T08:36:08.7868190Z Copying blob sha256:2ae710cd8bfef4545fa3a6dc274d6b7a991ca379cdaa3cdf460d5cb5840a3c88 +2025-11-24T08:36:08.8913497Z Copying blob sha256:d462aa3453675bb1f9a271a72cc72a53e628521a7d0e94b720bd07f9ca4962dc +2025-11-24T08:36:09.0148490Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:36:09.1154913Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:36:09.2138537Z Copying blob sha256:c8022d07192eddbb2a548ba83be5e412f7ba863bbba158d133c9653bb8a47768 +2025-11-24T08:36:09.3268016Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:36:09.4617355Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:36:09.5569326Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:36:09.6057206Z Copying blob sha256:5318d93a3a6582d0351c833fa3cf04ab41352b2e6c77c9ec3d330581eb267683 +2025-11-24T08:36:09.7208737Z Copying blob sha256:307c1adadb60e6e9b8aca553ec620d77fedc112737cc54e9ee73ac165e7f3cbc +2025-11-24T08:36:09.8097632Z Copying blob sha256:fbb01d9e9dc96d1ba101f9397c9e7d0734203c1e4392008cdf6573446aac6ea4 +2025-11-24T08:36:10.0488975Z Copying blob sha256:fbfea02ac3cfaf1d6901177b66ee8ee030ec8bd2861438c76cd0554a3a9d92b7 +2025-11-24T08:36:10.2605842Z Copying blob sha256:8c26e4bf18e2c35831f0c5ab9f4d5d071537aa409ab7d7cde4bd2304473afd84 +2025-11-24T08:36:10.4356902Z Copying blob sha256:1e59a65f8816ad082f8cb692b0d9a2d80d60176729e5f0bef5355e6d5e744adc +2025-11-24T08:36:10.4960082Z Copying blob sha256:ffbd4ca5f0bd6e7d5717f7097bcf69e521180c2e70234194a8038559b9b01bfa +2025-11-24T08:36:10.5477139Z Copying config sha256:8523cb381f23c97b8a6a307f65282b212dd40a3b785442fa91621b983f1be079 +2025-11-24T08:36:10.6480453Z Writing manifest to image destination +2025-11-24T08:36:10.6798896Z Fetching quay.io_calico_node_v3.27.4… +2025-11-24T08:36:11.0519925Z Getting image source signatures +2025-11-24T08:36:11.0521213Z Copying blob sha256:90f0e8a0ee3664f0bcf4aa401edff9da4db7087564916e0a516cb8e7f2301d03 +2025-11-24T08:36:13.7446248Z Copying blob sha256:cdf2843bc0f195a4f9f214047c59e2389fd007e6f8f94de3cc5723b7ecbbe18c +2025-11-24T08:36:13.8751626Z Copying blob sha256:7402091d8d6990d91c32787278e6ef4f1050baa9d5dc1f28187f7de743b8d069 +2025-11-24T08:36:14.0288644Z Copying config sha256:3dd4390f2a85a6a7a5496651d15f65ebaa1f2004fac497f5b8419053db8ab144 +2025-11-24T08:36:14.1484137Z Writing manifest to image destination +2025-11-24T08:36:14.1789928Z Fetching quay.io_calico_cni_v3.27.4… +2025-11-24T08:36:14.6495280Z Getting image source signatures +2025-11-24T08:36:14.6496830Z Copying blob sha256:ad5042aba4ea93ceb67882c49eb3fb8b806ffa201c5c6f0f90071702f09a9192 +2025-11-24T08:36:14.9065327Z Copying blob sha256:ad5afd8b91108be35d5889daa4647f9a4c072662c3615153f86ff6f0e754e104 +2025-11-24T08:36:15.0063270Z Copying blob sha256:4912cdb2d88f14c5470943e0ea8a1fa4e91b4034eceba6f58472ad4b48c8102a +2025-11-24T08:36:15.1438587Z Copying blob sha256:836c0ab606099c6706af9699314f5c4f861dbb45a01762b0b347021bbd60e5e3 +2025-11-24T08:36:15.2556703Z Copying blob sha256:fb1dccfdab0135999f0de7401eb12b2336b67b5f6863e0b3a3dcf2073d1296ac +2025-11-24T08:36:15.4566303Z Copying blob sha256:48559947bc83188c8ea06bfd9636e1c4fda5f3083cdb739e24107e01143c78b3 +2025-11-24T08:36:15.5896343Z Copying blob sha256:10bfba271dd627c9f2d13cc29d5d9bf4ce85cb77a61120dc19a50080fc55de80 +2025-11-24T08:36:15.7025019Z Copying blob sha256:b937ea73bd2f9a633f4f53a8f79a8478165836230dca70dc92f2019a361b450f +2025-11-24T08:36:15.8217079Z Copying blob sha256:43c634c0d348d0b27cba6168ed28df62ed85be169fa1b68574b02403d3ea6467 +2025-11-24T08:36:15.9509314Z Copying blob sha256:b498e09d72863b9d2b7874618dac33ab473170444b32b0b4071ab586fa1d0838 +2025-11-24T08:36:16.0647205Z Copying blob sha256:4c50ad0b0819718966dc7caaa2cf85db20ef74b0cf1f916f296843fbe7c15103 +2025-11-24T08:36:18.0435953Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:36:18.0880168Z Copying config sha256:dc6f84c32585fdebf1eae0521f424331e42504b5c24d7a7c8e95c1727f439913 +2025-11-24T08:36:18.2532993Z Writing manifest to image destination +2025-11-24T08:36:18.2825155Z Fetching quay.io_calico_pod2daemon-flexvol_v3.27.4… +2025-11-24T08:36:18.8157561Z Getting image source signatures +2025-11-24T08:36:18.8159397Z Copying blob sha256:48c16260672ef3ba4e162a3e75b30a4c5a3c63eb93ed6de16d6befa2bf033419 +2025-11-24T08:36:19.0757940Z Copying blob sha256:1cc9e68871db39ca9aecbb86c3772758b857afd92c6c93bfebb7f3ed3e14f184 +2025-11-24T08:36:19.4323619Z Copying blob sha256:f15eb3b5fb900865c0fd41a93436159843865312667d7edf54ac27785331998e +2025-11-24T08:36:19.7935631Z Copying blob sha256:fc19459d0cd80ed7cd591648a0597600dabe9a65ff3e59b71ab4028d12e03062 +2025-11-24T08:36:20.0227912Z Copying blob sha256:9a4afb4e30fb6cfccc37e28c586f7ab52714c5a466d19ce4ce8ae53d693f4c7b +2025-11-24T08:36:20.3476623Z Copying blob sha256:41ea6344457e87004a988f16c12b8d5296cd21cdf386e5a73f350c975b5e2bc7 +2025-11-24T08:36:20.5766633Z Copying blob sha256:7e773666be5712d24812626726f936daced781104324615de5210bb3f2f62666 +2025-11-24T08:36:20.8073585Z Copying blob sha256:89030d2430ccf4a14a87457d278284f83175e45a20c6496b293e4efaec0ee611 +2025-11-24T08:36:21.0473237Z Copying blob sha256:5e3bdcd8df43836179b2cbec1d1525840f1bd31b94522bc0ffa994955b5833d3 +2025-11-24T08:36:21.5434031Z Copying blob sha256:3b6eacd89415a566236c64a13adfc22481fdcab49ca0207b1d65992ce8048db3 +2025-11-24T08:36:21.7514348Z Copying blob sha256:6c526f9feec759d35c90cc967408ec1f1b4edfdc5c3aad7357f56223f9e4d5b7 +2025-11-24T08:36:22.0418487Z Copying blob sha256:065424273ec59ff5f6923b395579e833c11b3561732c6d1cc5da74c4e024ed45 +2025-11-24T08:36:22.1666173Z Copying blob sha256:ed557207bedbbe01a6d7e0fc85712653d5d23e875f6f575a5a5493e581ec8e1b +2025-11-24T08:36:22.3926149Z Copying blob sha256:2d93ed28df489ce3c875ddf88ef34aa9bc48b6dc8a4878cf3725b011d45cfdeb +2025-11-24T08:36:22.6647401Z Copying blob sha256:6c09d76a144dc677662e59a4fdfeab766b19470fa9139f4312ff779e40692a13 +2025-11-24T08:36:22.8881319Z Copying blob sha256:13e4e783f5982d44698eab3286f1977e94e282e63b83f444f4d52efa2cb1a025 +2025-11-24T08:36:23.1093162Z Copying blob sha256:e79f1a863a4802c0dd07a0a8f5e1f7ffa4626e4c2f6829145b9ed4e8ddd17a78 +2025-11-24T08:36:23.3514728Z Copying blob sha256:b5e2f7774b6d55767ff5b47fcd59427f66a0f71212566ffc9f61beeb14d6a0bf +2025-11-24T08:36:23.7426829Z Copying config sha256:72bfa61e35b354cd583978a4cdb784da70c3abd6bbd2af614af53e1cb86ff9d4 +2025-11-24T08:36:23.9935157Z Writing manifest to image destination +2025-11-24T08:36:24.0260449Z Fetching quay.io_calico_kube-controllers_v3.27.4… +2025-11-24T08:36:24.4347620Z Getting image source signatures +2025-11-24T08:36:24.4349195Z Copying blob sha256:10a91b291da7fd86cefeca3d7dbbf315c49906715ede0182ef3cbf53126f666d +2025-11-24T08:36:24.5914509Z Copying blob sha256:faf49d0505fffcb8bf50d938dfc4c7690bb7d1c2843a4c1c03de1586e16b428c +2025-11-24T08:36:24.6958299Z Copying blob sha256:94dd3e4aad5ebca228940ed1efdcaec99322879b211cdf17457b990d47b32913 +2025-11-24T08:36:24.9013362Z Copying blob sha256:773cd02ddd657f0a689e83b30ceb83d15e1400c31cda55292238baf87ecbdc16 +2025-11-24T08:36:25.0729408Z Copying blob sha256:63c33a538dbcbad36293951329da0c41d4b0870de48bfe265dff5cdd7f7f7610 +2025-11-24T08:36:25.1915257Z Copying blob sha256:55991ce51cac61b9e4ae73861e69fc5ee2342217cf0b58302d087fbecf76cd09 +2025-11-24T08:36:25.3654986Z Copying blob sha256:8be438b1714059c26c01c881054551be43277f4052fa23cd3711edbaa9c0d0e9 +2025-11-24T08:36:25.6090176Z Copying blob sha256:63af43f699dd7a835f87ed3f6aeb2ea191e8b101898115a6e94a8a4de2b35842 +2025-11-24T08:36:25.7083307Z Copying blob sha256:5e4ffd0878824645af7e27a59a6a747f101a0dcb986bec98b1d59760c3fc8d6b +2025-11-24T08:36:25.8847788Z Copying blob sha256:4ddc208db1fdeff70278e991a7c0436c212f411e4ff5bbbb7afa5027d814e0c1 +2025-11-24T08:36:26.2405355Z Copying blob sha256:5929896e7bd14e512897e46b1a3c0e7ba7884b12464c97226782abd3ae331bc2 +2025-11-24T08:36:26.3471803Z Copying blob sha256:14cd3b0420b97b35b936f3a3458c6b0b891ac4efea377ad549d1b661f4ed873f +2025-11-24T08:36:26.5156807Z Copying blob sha256:d381ef6b99233fa5a62855574428d295a4a49caf2309c110c51d3e880ded6637 +2025-11-24T08:36:27.8496671Z Copying blob sha256:dea0625e1a7c07f8192e0e90d091ca1d23aac188522122b975fe55420cbc6a95 +2025-11-24T08:36:27.9829832Z Copying config sha256:6b1e38763f401204ef3314d1336da548e58e7d78f3258b5e51b53393e2d403da +2025-11-24T08:36:28.0954986Z Writing manifest to image destination +2025-11-24T08:36:28.1258902Z Fetching quay.io_calico_typha_v3.27.4… +2025-11-24T08:36:28.5410933Z Getting image source signatures +2025-11-24T08:36:28.5412317Z Copying blob sha256:1fe0d56c2a2c0acd8a1ad078ce42d16a769da392fdf7e0a82f9437047e6b8efc +2025-11-24T08:36:28.6963594Z Copying blob sha256:375341233c66200d2ae8e398a2190aa648cccbde8b74f90a8274383e1edb696b +2025-11-24T08:36:28.8165353Z Copying blob sha256:2fab60388b61aed10f439191393a9090fe612ef398c199e96c0c94448cf8e283 +2025-11-24T08:36:28.9446335Z Copying blob sha256:e29096e2cef45a6de85a91f990934f7ecf0344a21bf1c21b6eb130771e772b77 +2025-11-24T08:36:29.0669978Z Copying blob sha256:362b95f009c773ba77c965e094009ae2585e5c8a729a8155780bdff15fe26ff2 +2025-11-24T08:36:29.1992859Z Copying blob sha256:7b5f5e388f2d424a5523dd6e6985e2eca98dd94d79bbdfcca9356877aa107d3a +2025-11-24T08:36:29.3324350Z Copying blob sha256:2baeab3ae5e12c600515b3c41905140fe858ef92746617fd81b088880e781687 +2025-11-24T08:36:29.4744448Z Copying blob sha256:7dfd79581ecacaf9127d28fb14709c66811c832acb390cc9df4b129b0512daa5 +2025-11-24T08:36:29.5675550Z Copying blob sha256:fb8f9fc820d4d8eabe6808ce7cf418b014ad6118313e8eca6e3b9586f01536f6 +2025-11-24T08:36:29.6706045Z Copying blob sha256:e8231bfb0440e76807c6b8156b1518e633fe53f13e3591641ad665c9dbb9032e +2025-11-24T08:36:29.7898226Z Copying blob sha256:f16d2b607ec7ec580d3ad7c6b11e8afa3e13dea3f37b136963d037826cfcd681 +2025-11-24T08:36:29.8888448Z Copying blob sha256:3703686046e548aa195cb0d4dd6bd1f4aad8ef798522b1bfb3302751bdce2451 +2025-11-24T08:36:31.3913537Z Copying blob sha256:51999a530a44cbf73cc02f315ac4a7b729e3db5b47209df7143c8bc93a553acc +2025-11-24T08:36:31.5188666Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:36:31.6605080Z Copying config sha256:dd1ce37f1c3174afb553751cca85db20de604d73d9f61fd17866435773676eb3 +2025-11-24T08:36:31.7562192Z Writing manifest to image destination +2025-11-24T08:36:31.7866795Z Fetching quay.io_calico_apiserver_v3.27.4… +2025-11-24T08:36:32.3554391Z Getting image source signatures +2025-11-24T08:36:32.3555739Z Copying blob sha256:df88a43f57aedf07097a7139767194db0c7c001052026bccbd5d30dde8888855 +2025-11-24T08:36:32.7544719Z Copying blob sha256:9772537a22bb35cb1d910b7ac7f18ed9139e84620ffd8eac6789f9240a58b397 +2025-11-24T08:36:34.1101285Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:36:34.1537597Z Copying config sha256:7516425fa942158abee1c9c2720d1d1f73fc2e8342ab74f01dd755b544849ac9 +2025-11-24T08:36:34.3914253Z Writing manifest to image destination +2025-11-24T08:36:34.4205732Z Fetching quay.io_jetstack_cert-manager-controller_v1.16.3… +2025-11-24T08:36:34.8459927Z Getting image source signatures +2025-11-24T08:36:34.8461421Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e +2025-11-24T08:36:34.9407571Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:36:34.9946437Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 +2025-11-24T08:36:35.0656896Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:36:35.1854161Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:36:35.3115887Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:36:35.3775117Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:36:35.4933609Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:36:35.5644965Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:36:35.6345065Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:36:35.6958558Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:36:35.7576556Z Copying blob sha256:463a4d7bd9093d82535cdbe61ae1eca85f2cd2207c7a4987a6fad24d1cf465f4 +2025-11-24T08:36:36.2787999Z Copying blob sha256:ba9e915126ef65cde90869ea19b3f39799ddc0f3f92e5f9630968de06a5d6d2e +2025-11-24T08:36:36.3547563Z Copying blob sha256:401d2d02970d98c06becea33967d192f282f72ea225d9053809b10e1c3032796 +2025-11-24T08:36:36.4206510Z Copying config sha256:27ebcc620bde4c43ac64f806f158db24396a214799e386c2fc74a5a310cbe497 +2025-11-24T08:36:36.4825889Z Writing manifest to image destination +2025-11-24T08:36:36.5123962Z Fetching quay.io_jetstack_cert-manager-cainjector_v1.16.3… +2025-11-24T08:36:36.8786983Z Getting image source signatures +2025-11-24T08:36:36.8788475Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e +2025-11-24T08:36:36.9478698Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:36:37.0566110Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 +2025-11-24T08:36:37.1157548Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:36:37.1674481Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:36:37.2071597Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:36:37.2477477Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:36:37.2967130Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:36:37.3636183Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:36:37.4227729Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:36:37.5815000Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:36:37.6348701Z Copying blob sha256:1aa0540810224901d8cb3638d2f916af752cb65b5a178b794cd7945b3037db75 +2025-11-24T08:36:38.0571080Z Copying blob sha256:a345aba268ae5fe90dbc43121cae1a772fc7c0e12f17fc02be0816254b1c86ac +2025-11-24T08:36:38.2067613Z Copying blob sha256:401d2d02970d98c06becea33967d192f282f72ea225d9053809b10e1c3032796 +2025-11-24T08:36:38.3034569Z Copying config sha256:ce7242a2b54beda8b4a2079d5d783a823af40d6d56d6a51decc8acc01c22849f +2025-11-24T08:36:38.3926453Z Writing manifest to image destination +2025-11-24T08:36:38.4237543Z Fetching quay.io_jetstack_cert-manager-webhook_v1.16.3… +2025-11-24T08:36:38.9904662Z Getting image source signatures +2025-11-24T08:36:38.9906159Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e +2025-11-24T08:36:39.0816830Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:36:39.1488998Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 +2025-11-24T08:36:39.2074604Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:36:39.2589762Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:36:39.3084537Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:36:39.3605543Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:36:39.4478601Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:36:39.4974311Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:36:39.5591943Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:36:39.6011230Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:36:39.6546010Z Copying blob sha256:489ca288d73032b835c7468a5b211cacb7d126fc47b92635530135fc7818dbb2 +2025-11-24T08:36:40.1625583Z Copying blob sha256:6bbf7e6890da395925b0f834abca6f762e37b8b54d9cedec672af6ae4096cf5d +2025-11-24T08:36:40.2906220Z Copying blob sha256:39d87579bed9b6c4e041e7b3b28c25bd2359e66e99edb87fe7c93d7f4cbf1c94 +2025-11-24T08:36:40.5388587Z Copying config sha256:d995a297967012c97f18ca941dc0ebeebc94722ba00c758cf87edcb540782f22 +2025-11-24T08:36:40.6265062Z Writing manifest to image destination +2025-11-24T08:36:40.6561535Z Fetching quay.io_jetstack_cert-manager-startupapicheck_v1.16.3… +2025-11-24T08:36:41.1647140Z Getting image source signatures +2025-11-24T08:36:41.1649448Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e +2025-11-24T08:36:41.2962526Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 +2025-11-24T08:36:41.4316142Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 +2025-11-24T08:36:41.5400091Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 +2025-11-24T08:36:41.6429424Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 +2025-11-24T08:36:41.7286204Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 +2025-11-24T08:36:41.8511963Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 +2025-11-24T08:36:41.9581248Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc +2025-11-24T08:36:42.0419689Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 +2025-11-24T08:36:42.1446001Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 +2025-11-24T08:36:42.2464581Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea +2025-11-24T08:36:42.3605820Z Copying blob sha256:ed9d74fe3f43cfd57b281fbc2d0b7259be1e30644500cc06f569029448c4db3c +2025-11-24T08:36:42.7853069Z Copying blob sha256:f337015610d918db9f28625e0522a65553721879b7e26c0b1aee63b17cce7bc8 +2025-11-24T08:36:42.8734978Z Copying blob sha256:0381129cf2590e0cb552b4b458960847d3e410791dfe9701cf52ca6bffca9cb4 +2025-11-24T08:36:43.0054225Z Copying config sha256:361dc433e4fbd87505da3c7a5b0179e9ff0fe070950809aeb08fdc90d59e0218 +2025-11-24T08:36:43.1188109Z Writing manifest to image destination +2025-11-24T08:36:43.1484737Z Fetching docker.io_library_nginx_1.25.4-alpine… +2025-11-24T08:36:43.4995140Z Getting image source signatures +2025-11-24T08:36:43.4996862Z Copying blob sha256:619be1103602d98e1963557998c954c892b3872986c27365e9f651f5bc27cab8 +2025-11-24T08:36:43.6310832Z Copying blob sha256:ed3e62e73b33c9cfa4b253060771e4a9eebb751ab438052f197e847b4553a9ac +2025-11-24T08:36:43.7207471Z Copying blob sha256:5126dce06df729f9a22956013e160f8b581d47095beec332d647a5c1119b2411 +2025-11-24T08:36:43.7776141Z Copying blob sha256:1d0dd2dc2265a581798226f7c79d134ac797f42db3f934dd4af1d38a6b89ce5c +2025-11-24T08:36:43.8313753Z Copying blob sha256:2b1ab92f023179da00446365a60daa60d72a1edeb697fb81811e086eba2e0170 +2025-11-24T08:36:43.8856747Z Copying blob sha256:6eba808ac059320c42179a6590b021f8695d3f12c2afa8745e219f635acf19d4 +2025-11-24T08:36:43.9385554Z Copying blob sha256:57038e85fbb88e96e34a84b125e568f540437561adb363fa791ff9e94e153dc1 +2025-11-24T08:36:43.9906655Z Copying blob sha256:eec94c9845c062c9f3495ce861d2bd9507bd7a13710de6b89a195a6b089ea8a7 +2025-11-24T08:36:44.2988851Z Copying config sha256:e289a478ace02cd72f0a71a5b2ec0594495e1fae85faa10aae3b0da530812608 +2025-11-24T08:36:44.3456420Z Writing manifest to image destination +2025-11-24T08:36:44.3747016Z Fetching bats_bats_1.11.1… +2025-11-24T08:36:44.7168753Z Getting image source signatures +2025-11-24T08:36:44.7170499Z Copying blob sha256:da9db072f522755cbeb85be2b3f84059b70571b229512f1571d9217b77e1087f +2025-11-24T08:36:44.8849521Z Copying blob sha256:a04a532fe6b3090c443d3b77bfd0eac9df544aae821dd8042656b3ae67c0f1e4 +2025-11-24T08:36:45.1293033Z Copying blob sha256:0d4b3a33902803938e5d80451e77d2dad62576c6bfe2b6b0c00ef50ad56878ac +2025-11-24T08:36:45.3929881Z Copying blob sha256:6962e7ed832b66931e8a5ab887a7087aba81caa6c3257188688d21fbfa8e4164 +2025-11-24T08:36:45.6079255Z Copying blob sha256:082bdccbe5c5e3768134fc4d8c51ac7e652ce609baf0ac7205b9870f8f33250b +2025-11-24T08:36:45.6746195Z Copying blob sha256:c66b6cb36790804a34f950a7c384389bb4ed1f8bb3579a3198902f792aaef65e +2025-11-24T08:36:45.8934232Z Copying blob sha256:b82de1fce2cadcceb54b342f11dbc6fa3ec96b021617eaa98f86e6a024bc56ba +2025-11-24T08:36:45.9457359Z Copying blob sha256:d579f034ff8ae645a6cd6cdff2b20c287dd6474c7d09973760c60067f479b79a +2025-11-24T08:36:46.1839524Z Copying blob sha256:901e282fb71426b8365e1954996707f2dd6ace7d049f4bf6cc7a7c4b972232bd +2025-11-24T08:36:46.4063569Z Copying blob sha256:1e378bb6fc4544a410eeed626da34cf24140c72f003b4c2846b339ce779c6072 +2025-11-24T08:36:46.6751447Z Copying blob sha256:9f9ca3eb988f2feb8b60f6a427b9086c78c1b06370eea70c0347dd6c62ec9e01 +2025-11-24T08:36:46.7299148Z Copying blob sha256:94fe2f36add512c2c82a3bc6adce857f26ee54d0b22e099f2f7772bcabe3b158 +2025-11-24T08:36:46.8878957Z Copying blob sha256:a5f6c05532f4fb414c54a4bd4da7a6951b976a99c77b11fe4e83b705c8ab6949 +2025-11-24T08:36:46.9636763Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:36:47.0130097Z Copying config sha256:2e13dc02bd621b82753aae8b00c99c938be7b6538afa5957b3e9e93646fe0524 +2025-11-24T08:36:47.1947941Z Writing manifest to image destination +2025-11-24T08:36:47.2244750Z Fetching cr.step.sm_smallstep_step-ca_0.25.3-rc7… +2025-11-24T08:36:48.0282014Z Getting image source signatures +2025-11-24T08:36:48.0283412Z Copying blob sha256:661ff4d9561e3fd050929ee5097067c34bafc523ee60f5294a37fd08056a73ca +2025-11-24T08:36:48.2278136Z Copying blob sha256:07a3a0958d5d81b355b10f8c25552c8952c39cd316893543e623fde24bbeea43 +2025-11-24T08:36:48.4163412Z Copying blob sha256:99a3a7f5703a9e1557fb46b4f1ae4225a08adc6445b76226a35edb10ed9a1cbb +2025-11-24T08:36:48.7483198Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 +2025-11-24T08:36:48.8235226Z Copying blob sha256:859dd081a6c374b7e2d4e3bd0afe062900e14309518289cbc24778884205eb15 +2025-11-24T08:36:49.1706017Z Copying blob sha256:db045f559b870377e8a93251efcac16a3eef0f7dbf839f65ed1d8e2e02dd6d04 +2025-11-24T08:36:49.4010294Z Copying blob sha256:948a5b50a06b2b08ac0da063b2599f9f1d213d8ec88d6f775efada004de858e4 +2025-11-24T08:36:49.4766925Z Copying config sha256:b2c26b6e463243926e3000e7b762e9570f411047d18c2e16b4368adb89246609 +2025-11-24T08:36:49.5455251Z Writing manifest to image destination +2025-11-24T08:36:49.5746763Z Fetching registry.k8s.io_ingress-nginx_kube-webhook-certgen_v20231011-8b53cabe0… +2025-11-24T08:36:49.8366043Z Getting image source signatures +2025-11-24T08:36:49.8367483Z Copying blob sha256:07a64a71e01156f8f99039bc246149925c6d1480d3957de78510bbec6ec68f7a +2025-11-24T08:36:49.9763530Z Copying blob sha256:fe5ca62666f04366c8e7f605aa82997d71320183e99962fa76b3209fdfbb8b58 +2025-11-24T08:36:50.0285962Z Copying blob sha256:b02a7525f878e61fc1ef8a7405a2cc17f866e8de222c1c98fd6681aff6e509db +2025-11-24T08:36:50.1125254Z Copying blob sha256:fcb6f6d2c9986d9cd6a2ea3cc2936e5fc613e09f1af9042329011e43057f3265 +2025-11-24T08:36:50.1755622Z Copying blob sha256:e8c73c638ae9ec5ad70c49df7e484040d889cca6b4a9af056579c3d058ea93f0 +2025-11-24T08:36:50.2334617Z Copying blob sha256:1e3d9b7d145208fa8fa3ee1c9612d0adaac7255f1bbc9ddea7e461e0b317805c +2025-11-24T08:36:50.2817889Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f +2025-11-24T08:36:50.3393839Z Copying blob sha256:7c881f9ab25e0d86562a123b5fb56aebf8aa0ddd7d48ef602faf8d1e7cf43d8c +2025-11-24T08:36:50.3939242Z Copying blob sha256:5627a970d25e752d971a501ec7e35d0d6fdcd4a3ce9e958715a686853024794a +2025-11-24T08:36:50.4558339Z Copying blob sha256:2c4dd5b4623218986c85279026f1a22956f34a231537163efd271a60d7bb09cf +2025-11-24T08:36:51.0018119Z Copying config sha256:1ebff0f9671bc015dc340b12c5bf6f3dbda7d0a8b5332bd095f21bd52e1b30fb +2025-11-24T08:36:51.0508246Z Writing manifest to image destination +2025-11-24T08:36:51.0793801Z Fetching ghcr.io_kube-vip_kube-vip_v0.8.0… +2025-11-24T08:36:51.3212231Z Getting image source signatures +2025-11-24T08:36:51.3228368Z Copying blob sha256:b51852ab3b96e132408f25499cfcf1976f354c5c929038d04a1655d155d091a7 +2025-11-24T08:36:51.3972238Z Copying blob sha256:a43b7e93fb2ba2368ba2860665763645bed785aed968d866e6d9a2fe398832b1 +2025-11-24T08:36:51.7867583Z Copying config sha256:38af8ddebf499adc4631fe68b0ee224ffd6d7dd6b4aeeb393aff3d33cb94eb12 +2025-11-24T08:36:51.8506787Z Writing manifest to image destination +2025-11-24T08:36:55.9437707Z Processing wire binaries /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... +2025-11-24T08:36:57.8770229Z this path will be fetched (391.52 MiB download, 657.55 MiB unpacked): +2025-11-24T08:36:57.8771389Z /nix/store/k624zhj0qk58mjliwbz9x1x5lzzw63sg-wire-binaries +2025-11-24T08:36:57.8778867Z copying path '/nix/store/k624zhj0qk58mjliwbz9x1x5lzzw63sg-wire-binaries' from 'https://wire-server.cachix.org'... +2025-11-24T08:37:05.7064118Z Writing wire binaries into /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/versions/wire-binaries.json +2025-11-24T08:54:10.9180952Z tar: Removing leading `../../../' from member names +2025-11-24T08:54:10.9183548Z tar: Removing leading `../../../' from hard link targets +2025-11-24T08:54:11.4425581Z ##[group]Run aws s3 cp offline/default-build/output/assets.tgz s3://public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz +2025-11-24T08:54:11.4427113Z aws s3 cp offline/default-build/output/assets.tgz s3://public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz +2025-11-24T08:54:11.4428817Z echo "Uploaded to: https://s3-$AWS_REGION.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz" +2025-11-24T08:54:11.4539773Z shell: /usr/bin/bash -e {0} +2025-11-24T08:54:11.4540245Z env: +2025-11-24T08:54:11.4540648Z TMPDIR: /home/runner/work/_temp +2025-11-24T08:54:11.4541640Z CACHIX_SIGNING_KEY: *** +2025-11-24T08:54:11.4542416Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf +2025-11-24T08:54:11.4543538Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ +2025-11-24T08:54:11.4544163Z AWS_ACCESS_KEY_ID: *** +2025-11-24T08:54:11.4544694Z AWS_SECRET_ACCESS_KEY: *** +2025-11-24T08:54:11.4545130Z AWS_REGION: eu-west-1 +2025-11-24T08:54:11.4545549Z ##[endgroup] +2025-11-24T08:54:13.2809765Z Completed 256.0 KiB/9.9 GiB (350.7 KiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.3749339Z Completed 512.0 KiB/9.9 GiB (622.5 KiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.4643017Z Completed 768.0 KiB/9.9 GiB (838.0 KiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.4665550Z Completed 1.0 MiB/9.9 GiB (1018.0 KiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.4672223Z Completed 1.2 MiB/9.9 GiB (1.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.4677330Z Completed 1.5 MiB/9.9 GiB (1.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.4822871Z Completed 1.8 MiB/9.9 GiB (1.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5320948Z Completed 2.0 MiB/9.9 GiB (2.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5356674Z Completed 2.2 MiB/9.9 GiB (2.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5359050Z Completed 2.5 MiB/9.9 GiB (2.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5581627Z Completed 2.8 MiB/9.9 GiB (2.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5591630Z Completed 3.0 MiB/9.9 GiB (2.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5598628Z Completed 3.2 MiB/9.9 GiB (3.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5604257Z Completed 3.5 MiB/9.9 GiB (3.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5609453Z Completed 3.8 MiB/9.9 GiB (3.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5614644Z Completed 4.0 MiB/9.9 GiB (3.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5652332Z Completed 4.2 MiB/9.9 GiB (3.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.5730680Z Completed 4.5 MiB/9.9 GiB (4.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6046685Z Completed 4.8 MiB/9.9 GiB (4.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6051504Z Completed 5.0 MiB/9.9 GiB (4.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6254443Z Completed 5.2 MiB/9.9 GiB (4.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6267205Z Completed 5.5 MiB/9.9 GiB (4.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6431519Z Completed 5.8 MiB/9.9 GiB (4.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6492904Z Completed 6.0 MiB/9.9 GiB (5.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6505945Z Completed 6.2 MiB/9.9 GiB (5.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6519348Z Completed 6.5 MiB/9.9 GiB (5.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6548807Z Completed 6.8 MiB/9.9 GiB (5.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6619403Z Completed 7.0 MiB/9.9 GiB (5.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6622189Z Completed 7.2 MiB/9.9 GiB (6.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6635878Z Completed 7.5 MiB/9.9 GiB (6.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6962830Z Completed 7.8 MiB/9.9 GiB (6.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6987012Z Completed 8.0 MiB/9.9 GiB (6.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.6994450Z Completed 8.2 MiB/9.9 GiB (6.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7139678Z Completed 8.5 MiB/9.9 GiB (6.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7155973Z Completed 8.8 MiB/9.9 GiB (7.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7163640Z Completed 9.0 MiB/9.9 GiB (7.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7170214Z Completed 9.2 MiB/9.9 GiB (7.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7185582Z Completed 9.5 MiB/9.9 GiB (7.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7411419Z Completed 9.8 MiB/9.9 GiB (7.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7423932Z Completed 10.0 MiB/9.9 GiB (7.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7432844Z Completed 10.2 MiB/9.9 GiB (8.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7441704Z Completed 10.5 MiB/9.9 GiB (8.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7444832Z Completed 10.8 MiB/9.9 GiB (8.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7450677Z Completed 11.0 MiB/9.9 GiB (8.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7456335Z Completed 11.2 MiB/9.9 GiB (8.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7461192Z Completed 11.5 MiB/9.9 GiB (8.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7548702Z Completed 11.8 MiB/9.9 GiB (9.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7554911Z Completed 12.0 MiB/9.9 GiB (9.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7569586Z Completed 12.2 MiB/9.9 GiB (9.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7576444Z Completed 12.5 MiB/9.9 GiB (9.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7885999Z Completed 12.8 MiB/9.9 GiB (9.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7901649Z Completed 13.0 MiB/9.9 GiB (9.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.7918625Z Completed 13.2 MiB/9.9 GiB (9.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8055975Z Completed 13.5 MiB/9.9 GiB (10.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8068142Z Completed 13.8 MiB/9.9 GiB (10.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8069574Z Completed 14.0 MiB/9.9 GiB (10.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8101321Z Completed 14.2 MiB/9.9 GiB (10.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8109930Z Completed 14.5 MiB/9.9 GiB (10.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8132423Z Completed 14.8 MiB/9.9 GiB (10.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8330056Z Completed 15.0 MiB/9.9 GiB (11.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8336096Z Completed 15.2 MiB/9.9 GiB (11.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8342099Z Completed 15.5 MiB/9.9 GiB (11.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8378524Z Completed 15.8 MiB/9.9 GiB (11.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8380224Z Completed 16.0 MiB/9.9 GiB (11.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8389929Z Completed 16.2 MiB/9.9 GiB (11.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8409189Z Completed 16.5 MiB/9.9 GiB (12.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8410472Z Completed 16.8 MiB/9.9 GiB (12.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8417196Z Completed 17.0 MiB/9.9 GiB (12.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8423160Z Completed 17.2 MiB/9.9 GiB (12.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8428458Z Completed 17.5 MiB/9.9 GiB (12.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8433977Z Completed 17.8 MiB/9.9 GiB (12.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8439393Z Completed 18.0 MiB/9.9 GiB (13.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8445695Z Completed 18.2 MiB/9.9 GiB (13.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8451166Z Completed 18.5 MiB/9.9 GiB (13.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8456943Z Completed 18.8 MiB/9.9 GiB (13.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8503223Z Completed 19.0 MiB/9.9 GiB (13.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8513576Z Completed 19.2 MiB/9.9 GiB (13.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8519556Z Completed 19.5 MiB/9.9 GiB (14.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8532230Z Completed 19.8 MiB/9.9 GiB (14.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8535164Z Completed 20.0 MiB/9.9 GiB (14.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8540690Z Completed 20.2 MiB/9.9 GiB (14.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8773895Z Completed 20.5 MiB/9.9 GiB (14.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8781420Z Completed 20.8 MiB/9.9 GiB (14.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8788821Z Completed 21.0 MiB/9.9 GiB (14.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8798842Z Completed 21.2 MiB/9.9 GiB (15.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8806465Z Completed 21.5 MiB/9.9 GiB (15.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8841649Z Completed 21.8 MiB/9.9 GiB (15.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8858489Z Completed 22.0 MiB/9.9 GiB (15.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8860465Z Completed 22.2 MiB/9.9 GiB (15.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8867432Z Completed 22.5 MiB/9.9 GiB (15.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8875721Z Completed 22.8 MiB/9.9 GiB (15.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8881995Z Completed 23.0 MiB/9.9 GiB (16.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8940323Z Completed 23.2 MiB/9.9 GiB (16.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8948669Z Completed 23.5 MiB/9.9 GiB (16.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8956631Z Completed 23.8 MiB/9.9 GiB (16.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8965455Z Completed 24.0 MiB/9.9 GiB (16.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8975150Z Completed 24.2 MiB/9.9 GiB (16.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.8981788Z Completed 24.5 MiB/9.9 GiB (17.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9021319Z Completed 24.8 MiB/9.9 GiB (17.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9039316Z Completed 25.0 MiB/9.9 GiB (17.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9046222Z Completed 25.2 MiB/9.9 GiB (17.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9118688Z Completed 25.5 MiB/9.9 GiB (17.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9125819Z Completed 25.8 MiB/9.9 GiB (17.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9131829Z Completed 26.0 MiB/9.9 GiB (17.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9246825Z Completed 26.2 MiB/9.9 GiB (18.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9253405Z Completed 26.5 MiB/9.9 GiB (18.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9260713Z Completed 26.8 MiB/9.9 GiB (18.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9302487Z Completed 27.0 MiB/9.9 GiB (18.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9399825Z Completed 27.2 MiB/9.9 GiB (18.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9409915Z Completed 27.5 MiB/9.9 GiB (18.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9418184Z Completed 27.8 MiB/9.9 GiB (18.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9423127Z Completed 28.0 MiB/9.9 GiB (18.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9667178Z Completed 28.2 MiB/9.9 GiB (19.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9678313Z Completed 28.5 MiB/9.9 GiB (18.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9690919Z Completed 28.8 MiB/9.9 GiB (19.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9714754Z Completed 29.0 MiB/9.9 GiB (19.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9722369Z Completed 29.2 MiB/9.9 GiB (19.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9737858Z Completed 29.5 MiB/9.9 GiB (19.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9744921Z Completed 29.8 MiB/9.9 GiB (19.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9750674Z Completed 30.0 MiB/9.9 GiB (19.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9760309Z Completed 30.2 MiB/9.9 GiB (19.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9839819Z Completed 30.5 MiB/9.9 GiB (20.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9845311Z Completed 30.8 MiB/9.9 GiB (20.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9854657Z Completed 31.0 MiB/9.9 GiB (20.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9859626Z Completed 31.2 MiB/9.9 GiB (20.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9865452Z Completed 31.5 MiB/9.9 GiB (20.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9870727Z Completed 31.8 MiB/9.9 GiB (20.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9877362Z Completed 32.0 MiB/9.9 GiB (20.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9885246Z Completed 32.2 MiB/9.9 GiB (21.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9893144Z Completed 32.5 MiB/9.9 GiB (21.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9898457Z Completed 32.8 MiB/9.9 GiB (21.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9934352Z Completed 33.0 MiB/9.9 GiB (21.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9941879Z Completed 33.2 MiB/9.9 GiB (21.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9947043Z Completed 33.5 MiB/9.9 GiB (21.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9956251Z Completed 33.8 MiB/9.9 GiB (22.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9963816Z Completed 34.0 MiB/9.9 GiB (22.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:13.9968787Z Completed 34.2 MiB/9.9 GiB (22.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0019274Z Completed 34.5 MiB/9.9 GiB (22.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0026413Z Completed 34.8 MiB/9.9 GiB (22.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0032449Z Completed 35.0 MiB/9.9 GiB (22.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0138687Z Completed 35.2 MiB/9.9 GiB (22.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0302518Z Completed 35.5 MiB/9.9 GiB (22.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0309827Z Completed 35.8 MiB/9.9 GiB (22.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0316928Z Completed 36.0 MiB/9.9 GiB (22.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0325214Z Completed 36.2 MiB/9.9 GiB (23.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0333395Z Completed 36.5 MiB/9.9 GiB (23.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0340198Z Completed 36.8 MiB/9.9 GiB (23.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0571856Z Completed 37.0 MiB/9.9 GiB (23.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0580388Z Completed 37.2 MiB/9.9 GiB (23.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0586834Z Completed 37.5 MiB/9.9 GiB (23.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0607190Z Completed 37.8 MiB/9.9 GiB (23.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0611287Z Completed 38.0 MiB/9.9 GiB (23.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0618011Z Completed 38.2 MiB/9.9 GiB (23.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0624238Z Completed 38.5 MiB/9.9 GiB (24.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0637818Z Completed 38.8 MiB/9.9 GiB (24.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0652146Z Completed 39.0 MiB/9.9 GiB (24.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0658685Z Completed 39.2 MiB/9.9 GiB (24.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0668053Z Completed 39.5 MiB/9.9 GiB (24.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0680884Z Completed 39.8 MiB/9.9 GiB (24.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0685158Z Completed 40.0 MiB/9.9 GiB (24.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0699139Z Completed 40.2 MiB/9.9 GiB (25.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0701986Z Completed 40.5 MiB/9.9 GiB (25.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0727421Z Completed 40.8 MiB/9.9 GiB (25.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0728553Z Completed 41.0 MiB/9.9 GiB (25.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0739887Z Completed 41.2 MiB/9.9 GiB (25.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0746290Z Completed 41.5 MiB/9.9 GiB (25.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0753147Z Completed 41.8 MiB/9.9 GiB (25.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0759814Z Completed 42.0 MiB/9.9 GiB (26.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0766563Z Completed 42.2 MiB/9.9 GiB (26.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0772086Z Completed 42.5 MiB/9.9 GiB (26.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0778115Z Completed 42.8 MiB/9.9 GiB (26.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0789026Z Completed 43.0 MiB/9.9 GiB (26.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0795869Z Completed 43.2 MiB/9.9 GiB (26.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0802809Z Completed 43.5 MiB/9.9 GiB (26.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0808903Z Completed 43.8 MiB/9.9 GiB (27.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0813845Z Completed 44.0 MiB/9.9 GiB (27.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0841627Z Completed 44.2 MiB/9.9 GiB (27.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0850201Z Completed 44.5 MiB/9.9 GiB (27.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0862783Z Completed 44.8 MiB/9.9 GiB (27.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0928891Z Completed 45.0 MiB/9.9 GiB (27.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0933402Z Completed 45.2 MiB/9.9 GiB (27.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0943236Z Completed 45.5 MiB/9.9 GiB (27.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.0952271Z Completed 45.8 MiB/9.9 GiB (28.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1035741Z Completed 46.0 MiB/9.9 GiB (28.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1079900Z Completed 46.2 MiB/9.9 GiB (28.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1209557Z Completed 46.5 MiB/9.9 GiB (28.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1216548Z Completed 46.8 MiB/9.9 GiB (28.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1224895Z Completed 47.0 MiB/9.9 GiB (28.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1229701Z Completed 47.2 MiB/9.9 GiB (28.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1237123Z Completed 47.5 MiB/9.9 GiB (28.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1244822Z Completed 47.8 MiB/9.9 GiB (28.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1250785Z Completed 48.0 MiB/9.9 GiB (28.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1256356Z Completed 48.2 MiB/9.9 GiB (28.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1275364Z Completed 48.5 MiB/9.9 GiB (29.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1281726Z Completed 48.8 MiB/9.9 GiB (29.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1287651Z Completed 49.0 MiB/9.9 GiB (29.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1293216Z Completed 49.2 MiB/9.9 GiB (29.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1466755Z Completed 49.5 MiB/9.9 GiB (29.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1474366Z Completed 49.8 MiB/9.9 GiB (29.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1481114Z Completed 50.0 MiB/9.9 GiB (29.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1488517Z Completed 50.2 MiB/9.9 GiB (29.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1495760Z Completed 50.5 MiB/9.9 GiB (29.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1502001Z Completed 50.8 MiB/9.9 GiB (30.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1509214Z Completed 51.0 MiB/9.9 GiB (30.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1517082Z Completed 51.2 MiB/9.9 GiB (30.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1558251Z Completed 51.5 MiB/9.9 GiB (30.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1565743Z Completed 51.8 MiB/9.9 GiB (30.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1569996Z Completed 52.0 MiB/9.9 GiB (30.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1585714Z Completed 52.2 MiB/9.9 GiB (30.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1590265Z Completed 52.5 MiB/9.9 GiB (30.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1602324Z Completed 52.8 MiB/9.9 GiB (31.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1609959Z Completed 53.0 MiB/9.9 GiB (31.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1619303Z Completed 53.2 MiB/9.9 GiB (31.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1635506Z Completed 53.5 MiB/9.9 GiB (31.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1653340Z Completed 53.8 MiB/9.9 GiB (31.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1657364Z Completed 54.0 MiB/9.9 GiB (31.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1686200Z Completed 54.2 MiB/9.9 GiB (31.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1690133Z Completed 54.5 MiB/9.9 GiB (31.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1696204Z Completed 54.8 MiB/9.9 GiB (32.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1699084Z Completed 55.0 MiB/9.9 GiB (32.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1750737Z Completed 55.2 MiB/9.9 GiB (32.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1754880Z Completed 55.5 MiB/9.9 GiB (32.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1784686Z Completed 55.8 MiB/9.9 GiB (32.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1810271Z Completed 56.0 MiB/9.9 GiB (32.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1843954Z Completed 56.2 MiB/9.9 GiB (32.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1854700Z Completed 56.5 MiB/9.9 GiB (32.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1860902Z Completed 56.8 MiB/9.9 GiB (32.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1870432Z Completed 57.0 MiB/9.9 GiB (33.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1891198Z Completed 57.2 MiB/9.9 GiB (33.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1905193Z Completed 57.5 MiB/9.9 GiB (33.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1926085Z Completed 57.8 MiB/9.9 GiB (33.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1939473Z Completed 58.0 MiB/9.9 GiB (33.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1957990Z Completed 58.2 MiB/9.9 GiB (33.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.1963521Z Completed 58.5 MiB/9.9 GiB (33.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2001447Z Completed 58.8 MiB/9.9 GiB (33.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2015611Z Completed 59.0 MiB/9.9 GiB (33.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2016775Z Completed 59.2 MiB/9.9 GiB (34.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2021794Z Completed 59.5 MiB/9.9 GiB (34.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2042391Z Completed 59.8 MiB/9.9 GiB (34.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2052427Z Completed 60.0 MiB/9.9 GiB (34.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2057678Z Completed 60.2 MiB/9.9 GiB (34.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2068304Z Completed 60.5 MiB/9.9 GiB (34.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2082913Z Completed 60.8 MiB/9.9 GiB (34.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2110105Z Completed 61.0 MiB/9.9 GiB (34.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2115516Z Completed 61.2 MiB/9.9 GiB (34.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2118303Z Completed 61.5 MiB/9.9 GiB (35.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2130592Z Completed 61.8 MiB/9.9 GiB (35.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2162612Z Completed 62.0 MiB/9.9 GiB (35.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2166106Z Completed 62.2 MiB/9.9 GiB (35.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2167334Z Completed 62.5 MiB/9.9 GiB (35.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2179665Z Completed 62.8 MiB/9.9 GiB (35.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2184905Z Completed 63.0 MiB/9.9 GiB (35.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2191203Z Completed 63.2 MiB/9.9 GiB (35.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2197684Z Completed 63.5 MiB/9.9 GiB (36.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2203458Z Completed 63.8 MiB/9.9 GiB (36.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2208688Z Completed 64.0 MiB/9.9 GiB (36.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2221765Z Completed 64.2 MiB/9.9 GiB (36.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2223736Z Completed 64.5 MiB/9.9 GiB (36.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2235772Z Completed 64.8 MiB/9.9 GiB (36.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2245162Z Completed 65.0 MiB/9.9 GiB (36.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2488232Z Completed 65.2 MiB/9.9 GiB (36.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2494251Z Completed 65.5 MiB/9.9 GiB (36.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2501885Z Completed 65.8 MiB/9.9 GiB (36.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2517451Z Completed 66.0 MiB/9.9 GiB (36.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2529408Z Completed 66.2 MiB/9.9 GiB (36.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2540334Z Completed 66.5 MiB/9.9 GiB (37.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2616067Z Completed 66.8 MiB/9.9 GiB (37.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2624701Z Completed 67.0 MiB/9.9 GiB (37.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2632207Z Completed 67.2 MiB/9.9 GiB (37.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2639164Z Completed 67.5 MiB/9.9 GiB (37.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2645769Z Completed 67.8 MiB/9.9 GiB (37.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2652843Z Completed 68.0 MiB/9.9 GiB (37.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2674080Z Completed 68.2 MiB/9.9 GiB (37.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2691850Z Completed 68.5 MiB/9.9 GiB (37.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2702063Z Completed 68.8 MiB/9.9 GiB (38.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2711656Z Completed 69.0 MiB/9.9 GiB (38.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2731547Z Completed 69.2 MiB/9.9 GiB (38.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2744720Z Completed 69.5 MiB/9.9 GiB (38.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2746151Z Completed 69.8 MiB/9.9 GiB (38.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2757037Z Completed 70.0 MiB/9.9 GiB (38.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2794530Z Completed 70.2 MiB/9.9 GiB (38.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2814352Z Completed 70.5 MiB/9.9 GiB (38.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2816424Z Completed 70.8 MiB/9.9 GiB (38.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2861075Z Completed 71.0 MiB/9.9 GiB (38.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2939655Z Completed 71.2 MiB/9.9 GiB (39.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2954306Z Completed 71.5 MiB/9.9 GiB (39.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2959049Z Completed 71.8 MiB/9.9 GiB (39.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2965797Z Completed 72.0 MiB/9.9 GiB (39.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.2972821Z Completed 72.2 MiB/9.9 GiB (39.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3010146Z Completed 72.5 MiB/9.9 GiB (39.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3031674Z Completed 72.8 MiB/9.9 GiB (39.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3096513Z Completed 73.0 MiB/9.9 GiB (39.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3105712Z Completed 73.2 MiB/9.9 GiB (39.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3125930Z Completed 73.5 MiB/9.9 GiB (39.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3134656Z Completed 73.8 MiB/9.9 GiB (39.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3140280Z Completed 74.0 MiB/9.9 GiB (39.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3147451Z Completed 74.2 MiB/9.9 GiB (40.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3155502Z Completed 74.5 MiB/9.9 GiB (40.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3164284Z Completed 74.8 MiB/9.9 GiB (40.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3170557Z Completed 75.0 MiB/9.9 GiB (40.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3521271Z Completed 75.2 MiB/9.9 GiB (40.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3529635Z Completed 75.5 MiB/9.9 GiB (39.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3539440Z Completed 75.8 MiB/9.9 GiB (40.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3547382Z Completed 76.0 MiB/9.9 GiB (40.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3554719Z Completed 76.2 MiB/9.9 GiB (40.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3594757Z Completed 76.5 MiB/9.9 GiB (40.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3602130Z Completed 76.8 MiB/9.9 GiB (40.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3610541Z Completed 77.0 MiB/9.9 GiB (40.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3616717Z Completed 77.2 MiB/9.9 GiB (40.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3626531Z Completed 77.5 MiB/9.9 GiB (40.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3632494Z Completed 77.8 MiB/9.9 GiB (40.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3643413Z Completed 78.0 MiB/9.9 GiB (40.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3666271Z Completed 78.2 MiB/9.9 GiB (41.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3672409Z Completed 78.5 MiB/9.9 GiB (41.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3738202Z Completed 78.8 MiB/9.9 GiB (41.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3944233Z Completed 79.0 MiB/9.9 GiB (41.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.3996975Z Completed 79.2 MiB/9.9 GiB (40.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4025532Z Completed 79.5 MiB/9.9 GiB (41.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4047483Z Completed 79.8 MiB/9.9 GiB (41.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4068839Z Completed 80.0 MiB/9.9 GiB (41.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4077323Z Completed 80.2 MiB/9.9 GiB (41.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4085513Z Completed 80.5 MiB/9.9 GiB (41.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4094788Z Completed 80.8 MiB/9.9 GiB (41.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4103094Z Completed 81.0 MiB/9.9 GiB (41.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4130348Z Completed 81.2 MiB/9.9 GiB (41.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4147966Z Completed 81.5 MiB/9.9 GiB (41.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4155576Z Completed 81.8 MiB/9.9 GiB (41.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4161837Z Completed 82.0 MiB/9.9 GiB (41.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4167575Z Completed 82.2 MiB/9.9 GiB (42.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4173590Z Completed 82.5 MiB/9.9 GiB (42.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4179546Z Completed 82.8 MiB/9.9 GiB (42.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4185455Z Completed 83.0 MiB/9.9 GiB (42.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4191331Z Completed 83.2 MiB/9.9 GiB (42.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4198190Z Completed 83.5 MiB/9.9 GiB (42.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4365953Z Completed 83.8 MiB/9.9 GiB (42.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4371190Z Completed 84.0 MiB/9.9 GiB (42.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4378331Z Completed 84.2 MiB/9.9 GiB (42.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4384599Z Completed 84.5 MiB/9.9 GiB (42.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4390626Z Completed 84.8 MiB/9.9 GiB (42.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4396457Z Completed 85.0 MiB/9.9 GiB (42.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4402844Z Completed 85.2 MiB/9.9 GiB (43.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4409216Z Completed 85.5 MiB/9.9 GiB (43.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4415834Z Completed 85.8 MiB/9.9 GiB (43.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4421858Z Completed 86.0 MiB/9.9 GiB (43.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4515104Z Completed 86.2 MiB/9.9 GiB (43.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4523201Z Completed 86.5 MiB/9.9 GiB (43.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4532838Z Completed 86.8 MiB/9.9 GiB (43.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4538784Z Completed 87.0 MiB/9.9 GiB (43.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4544144Z Completed 87.2 MiB/9.9 GiB (43.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4549753Z Completed 87.5 MiB/9.9 GiB (43.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4555680Z Completed 87.8 MiB/9.9 GiB (43.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4754026Z Completed 88.0 MiB/9.9 GiB (44.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4760626Z Completed 88.2 MiB/9.9 GiB (43.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4768300Z Completed 88.5 MiB/9.9 GiB (43.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4775587Z Completed 88.8 MiB/9.9 GiB (44.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4782959Z Completed 89.0 MiB/9.9 GiB (44.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4789586Z Completed 89.2 MiB/9.9 GiB (44.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4797348Z Completed 89.5 MiB/9.9 GiB (44.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4804012Z Completed 89.8 MiB/9.9 GiB (44.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4810280Z Completed 90.0 MiB/9.9 GiB (44.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4826510Z Completed 90.2 MiB/9.9 GiB (44.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4836381Z Completed 90.5 MiB/9.9 GiB (44.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4877683Z Completed 90.8 MiB/9.9 GiB (44.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4902555Z Completed 91.0 MiB/9.9 GiB (44.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4913962Z Completed 91.2 MiB/9.9 GiB (44.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4922168Z Completed 91.5 MiB/9.9 GiB (45.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4930241Z Completed 91.8 MiB/9.9 GiB (45.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4939948Z Completed 92.0 MiB/9.9 GiB (45.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4943962Z Completed 92.2 MiB/9.9 GiB (45.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4950700Z Completed 92.5 MiB/9.9 GiB (45.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4958856Z Completed 92.8 MiB/9.9 GiB (45.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4966002Z Completed 93.0 MiB/9.9 GiB (45.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4972605Z Completed 93.2 MiB/9.9 GiB (45.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.4979984Z Completed 93.5 MiB/9.9 GiB (45.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5032341Z Completed 93.8 MiB/9.9 GiB (46.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5045552Z Completed 94.0 MiB/9.9 GiB (46.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5055427Z Completed 94.2 MiB/9.9 GiB (46.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5063114Z Completed 94.5 MiB/9.9 GiB (46.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5070185Z Completed 94.8 MiB/9.9 GiB (46.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5078078Z Completed 95.0 MiB/9.9 GiB (46.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5084487Z Completed 95.2 MiB/9.9 GiB (46.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5092962Z Completed 95.5 MiB/9.9 GiB (46.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5099363Z Completed 95.8 MiB/9.9 GiB (46.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5105722Z Completed 96.0 MiB/9.9 GiB (46.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5197060Z Completed 96.2 MiB/9.9 GiB (46.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5202194Z Completed 96.5 MiB/9.9 GiB (46.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5207897Z Completed 96.8 MiB/9.9 GiB (46.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5213834Z Completed 97.0 MiB/9.9 GiB (47.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5233592Z Completed 97.2 MiB/9.9 GiB (47.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5244866Z Completed 97.5 MiB/9.9 GiB (47.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5253224Z Completed 97.8 MiB/9.9 GiB (47.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5269137Z Completed 98.0 MiB/9.9 GiB (47.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5271920Z Completed 98.2 MiB/9.9 GiB (47.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5307891Z Completed 98.5 MiB/9.9 GiB (47.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5317332Z Completed 98.8 MiB/9.9 GiB (47.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5327617Z Completed 99.0 MiB/9.9 GiB (47.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5342341Z Completed 99.2 MiB/9.9 GiB (47.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5351858Z Completed 99.5 MiB/9.9 GiB (47.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5356964Z Completed 99.8 MiB/9.9 GiB (48.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5367412Z Completed 100.0 MiB/9.9 GiB (48.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5372453Z Completed 100.2 MiB/9.9 GiB (48.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5379736Z Completed 100.5 MiB/9.9 GiB (48.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5395487Z Completed 100.8 MiB/9.9 GiB (48.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5400402Z Completed 101.0 MiB/9.9 GiB (48.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5423074Z Completed 101.2 MiB/9.9 GiB (48.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5440168Z Completed 101.5 MiB/9.9 GiB (48.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5465133Z Completed 101.8 MiB/9.9 GiB (48.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5471770Z Completed 102.0 MiB/9.9 GiB (48.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5475634Z Completed 102.2 MiB/9.9 GiB (48.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5503456Z Completed 102.5 MiB/9.9 GiB (49.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5512001Z Completed 102.8 MiB/9.9 GiB (49.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5518025Z Completed 103.0 MiB/9.9 GiB (49.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5542066Z Completed 103.2 MiB/9.9 GiB (49.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5546070Z Completed 103.5 MiB/9.9 GiB (49.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5560233Z Completed 103.8 MiB/9.9 GiB (49.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5563916Z Completed 104.0 MiB/9.9 GiB (49.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5675300Z Completed 104.2 MiB/9.9 GiB (49.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5684734Z Completed 104.5 MiB/9.9 GiB (49.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5697090Z Completed 104.8 MiB/9.9 GiB (49.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5705854Z Completed 105.0 MiB/9.9 GiB (49.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5723937Z Completed 105.2 MiB/9.9 GiB (49.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5725160Z Completed 105.5 MiB/9.9 GiB (49.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5732349Z Completed 105.8 MiB/9.9 GiB (50.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5739556Z Completed 106.0 MiB/9.9 GiB (50.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5746884Z Completed 106.2 MiB/9.9 GiB (50.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5783703Z Completed 106.5 MiB/9.9 GiB (50.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5823382Z Completed 106.8 MiB/9.9 GiB (50.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5833548Z Completed 107.0 MiB/9.9 GiB (50.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5843324Z Completed 107.2 MiB/9.9 GiB (50.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5851097Z Completed 107.5 MiB/9.9 GiB (50.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5863227Z Completed 107.8 MiB/9.9 GiB (50.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5877065Z Completed 108.0 MiB/9.9 GiB (50.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5879975Z Completed 108.2 MiB/9.9 GiB (50.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5894084Z Completed 108.5 MiB/9.9 GiB (50.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5895408Z Completed 108.8 MiB/9.9 GiB (51.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5924683Z Completed 109.0 MiB/9.9 GiB (51.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5925876Z Completed 109.2 MiB/9.9 GiB (51.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5926984Z Completed 109.5 MiB/9.9 GiB (51.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5933449Z Completed 109.8 MiB/9.9 GiB (51.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5940485Z Completed 110.0 MiB/9.9 GiB (51.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5947543Z Completed 110.2 MiB/9.9 GiB (51.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5960195Z Completed 110.5 MiB/9.9 GiB (51.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5965578Z Completed 110.8 MiB/9.9 GiB (51.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5980427Z Completed 111.0 MiB/9.9 GiB (51.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5984108Z Completed 111.2 MiB/9.9 GiB (52.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.5998553Z Completed 111.5 MiB/9.9 GiB (52.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6000336Z Completed 111.8 MiB/9.9 GiB (52.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6014525Z Completed 112.0 MiB/9.9 GiB (52.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6015697Z Completed 112.2 MiB/9.9 GiB (52.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6026346Z Completed 112.5 MiB/9.9 GiB (52.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6034748Z Completed 112.8 MiB/9.9 GiB (52.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6044831Z Completed 113.0 MiB/9.9 GiB (52.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6050930Z Completed 113.2 MiB/9.9 GiB (52.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6056260Z Completed 113.5 MiB/9.9 GiB (52.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6060945Z Completed 113.8 MiB/9.9 GiB (53.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6113694Z Completed 114.0 MiB/9.9 GiB (53.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6121036Z Completed 114.2 MiB/9.9 GiB (53.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6128119Z Completed 114.5 MiB/9.9 GiB (53.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6141186Z Completed 114.8 MiB/9.9 GiB (53.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6155385Z Completed 115.0 MiB/9.9 GiB (53.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6158670Z Completed 115.2 MiB/9.9 GiB (53.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6173063Z Completed 115.5 MiB/9.9 GiB (53.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6175385Z Completed 115.8 MiB/9.9 GiB (53.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6185026Z Completed 116.0 MiB/9.9 GiB (53.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6197425Z Completed 116.2 MiB/9.9 GiB (53.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6210648Z Completed 116.5 MiB/9.9 GiB (53.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6243314Z Completed 116.8 MiB/9.9 GiB (54.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6251775Z Completed 117.0 MiB/9.9 GiB (54.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6255771Z Completed 117.2 MiB/9.9 GiB (54.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6282498Z Completed 117.5 MiB/9.9 GiB (54.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6293020Z Completed 117.8 MiB/9.9 GiB (54.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6304142Z Completed 118.0 MiB/9.9 GiB (54.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6337380Z Completed 118.2 MiB/9.9 GiB (54.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6360769Z Completed 118.5 MiB/9.9 GiB (54.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6388618Z Completed 118.8 MiB/9.9 GiB (54.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6400659Z Completed 119.0 MiB/9.9 GiB (54.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6401397Z Completed 119.2 MiB/9.9 GiB (54.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6434258Z Completed 119.5 MiB/9.9 GiB (54.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6455164Z Completed 119.8 MiB/9.9 GiB (54.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6469755Z Completed 120.0 MiB/9.9 GiB (54.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6497478Z Completed 120.2 MiB/9.9 GiB (54.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6516999Z Completed 120.5 MiB/9.9 GiB (55.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6525014Z Completed 120.8 MiB/9.9 GiB (55.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6551423Z Completed 121.0 MiB/9.9 GiB (55.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6571216Z Completed 121.2 MiB/9.9 GiB (55.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6605752Z Completed 121.5 MiB/9.9 GiB (55.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6617235Z Completed 121.8 MiB/9.9 GiB (55.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6637606Z Completed 122.0 MiB/9.9 GiB (55.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6647725Z Completed 122.2 MiB/9.9 GiB (55.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6668444Z Completed 122.5 MiB/9.9 GiB (55.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6683946Z Completed 122.8 MiB/9.9 GiB (55.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6716376Z Completed 123.0 MiB/9.9 GiB (55.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6720650Z Completed 123.2 MiB/9.9 GiB (55.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6735346Z Completed 123.5 MiB/9.9 GiB (55.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6764931Z Completed 123.8 MiB/9.9 GiB (55.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6773370Z Completed 124.0 MiB/9.9 GiB (55.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6791654Z Completed 124.2 MiB/9.9 GiB (56.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6821055Z Completed 124.5 MiB/9.9 GiB (56.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6846432Z Completed 124.8 MiB/9.9 GiB (56.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6864768Z Completed 125.0 MiB/9.9 GiB (56.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6889181Z Completed 125.2 MiB/9.9 GiB (56.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6897553Z Completed 125.5 MiB/9.9 GiB (56.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6906100Z Completed 125.8 MiB/9.9 GiB (56.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6928757Z Completed 126.0 MiB/9.9 GiB (56.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6966727Z Completed 126.2 MiB/9.9 GiB (56.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6991127Z Completed 126.5 MiB/9.9 GiB (56.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.6992230Z Completed 126.8 MiB/9.9 GiB (56.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7011385Z Completed 127.0 MiB/9.9 GiB (56.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7018302Z Completed 127.2 MiB/9.9 GiB (56.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7041137Z Completed 127.5 MiB/9.9 GiB (56.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7042055Z Completed 127.8 MiB/9.9 GiB (56.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7056873Z Completed 128.0 MiB/9.9 GiB (57.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7099348Z Completed 128.2 MiB/9.9 GiB (57.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7111967Z Completed 128.5 MiB/9.9 GiB (57.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7129172Z Completed 128.8 MiB/9.9 GiB (57.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7157727Z Completed 129.0 MiB/9.9 GiB (57.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7161952Z Completed 129.2 MiB/9.9 GiB (57.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7196501Z Completed 129.5 MiB/9.9 GiB (57.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7217249Z Completed 129.8 MiB/9.9 GiB (57.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7237525Z Completed 130.0 MiB/9.9 GiB (57.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7238737Z Completed 130.2 MiB/9.9 GiB (57.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7278579Z Completed 130.5 MiB/9.9 GiB (57.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7289448Z Completed 130.8 MiB/9.9 GiB (57.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7297891Z Completed 131.0 MiB/9.9 GiB (57.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7307565Z Completed 131.2 MiB/9.9 GiB (57.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7312054Z Completed 131.5 MiB/9.9 GiB (57.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7347105Z Completed 131.8 MiB/9.9 GiB (58.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7399297Z Completed 132.0 MiB/9.9 GiB (58.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7429275Z Completed 132.2 MiB/9.9 GiB (58.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7430922Z Completed 132.5 MiB/9.9 GiB (58.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7432109Z Completed 132.8 MiB/9.9 GiB (58.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7450289Z Completed 133.0 MiB/9.9 GiB (58.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7464957Z Completed 133.2 MiB/9.9 GiB (58.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7468270Z Completed 133.5 MiB/9.9 GiB (58.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7483166Z Completed 133.8 MiB/9.9 GiB (58.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7535230Z Completed 134.0 MiB/9.9 GiB (58.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7554387Z Completed 134.2 MiB/9.9 GiB (58.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7577068Z Completed 134.5 MiB/9.9 GiB (58.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7591808Z Completed 134.8 MiB/9.9 GiB (58.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7598820Z Completed 135.0 MiB/9.9 GiB (58.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7615269Z Completed 135.2 MiB/9.9 GiB (58.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7627872Z Completed 135.5 MiB/9.9 GiB (58.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7666712Z Completed 135.8 MiB/9.9 GiB (58.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7709634Z Completed 136.0 MiB/9.9 GiB (58.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7731818Z Completed 136.2 MiB/9.9 GiB (58.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7737479Z Completed 136.5 MiB/9.9 GiB (59.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7744163Z Completed 136.8 MiB/9.9 GiB (59.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7745500Z Completed 137.0 MiB/9.9 GiB (59.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7785507Z Completed 137.2 MiB/9.9 GiB (59.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7786602Z Completed 137.5 MiB/9.9 GiB (59.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7799029Z Completed 137.8 MiB/9.9 GiB (59.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7874964Z Completed 138.0 MiB/9.9 GiB (59.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7886906Z Completed 138.2 MiB/9.9 GiB (59.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7888224Z Completed 138.5 MiB/9.9 GiB (59.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7907997Z Completed 138.8 MiB/9.9 GiB (59.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7919450Z Completed 139.0 MiB/9.9 GiB (59.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7922488Z Completed 139.2 MiB/9.9 GiB (59.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7945188Z Completed 139.5 MiB/9.9 GiB (59.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7964486Z Completed 139.8 MiB/9.9 GiB (59.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7990962Z Completed 140.0 MiB/9.9 GiB (59.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.7997249Z Completed 140.2 MiB/9.9 GiB (59.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8035932Z Completed 140.5 MiB/9.9 GiB (60.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8040490Z Completed 140.8 MiB/9.9 GiB (60.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8057772Z Completed 141.0 MiB/9.9 GiB (60.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8065378Z Completed 141.2 MiB/9.9 GiB (60.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8080776Z Completed 141.5 MiB/9.9 GiB (60.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8123440Z Completed 141.8 MiB/9.9 GiB (60.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8178905Z Completed 142.0 MiB/9.9 GiB (60.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8190158Z Completed 142.2 MiB/9.9 GiB (60.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8207346Z Completed 142.5 MiB/9.9 GiB (60.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8215476Z Completed 142.8 MiB/9.9 GiB (60.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8233385Z Completed 143.0 MiB/9.9 GiB (60.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8240046Z Completed 143.2 MiB/9.9 GiB (60.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8295933Z Completed 143.5 MiB/9.9 GiB (60.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8316796Z Completed 143.8 MiB/9.9 GiB (60.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8333361Z Completed 144.0 MiB/9.9 GiB (60.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8336346Z Completed 144.2 MiB/9.9 GiB (60.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8357958Z Completed 144.5 MiB/9.9 GiB (60.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8365299Z Completed 144.8 MiB/9.9 GiB (60.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8409575Z Completed 145.0 MiB/9.9 GiB (61.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8427413Z Completed 145.2 MiB/9.9 GiB (61.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8434572Z Completed 145.5 MiB/9.9 GiB (61.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8435735Z Completed 145.8 MiB/9.9 GiB (61.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8476413Z Completed 146.0 MiB/9.9 GiB (61.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8532384Z Completed 146.2 MiB/9.9 GiB (61.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8536390Z Completed 146.5 MiB/9.9 GiB (61.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8547398Z Completed 146.8 MiB/9.9 GiB (61.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8549789Z Completed 147.0 MiB/9.9 GiB (61.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8557484Z Completed 147.2 MiB/9.9 GiB (61.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8587345Z Completed 147.5 MiB/9.9 GiB (61.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8611430Z Completed 147.8 MiB/9.9 GiB (61.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8621076Z Completed 148.0 MiB/9.9 GiB (61.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8626476Z Completed 148.2 MiB/9.9 GiB (61.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8655189Z Completed 148.5 MiB/9.9 GiB (61.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8692070Z Completed 148.8 MiB/9.9 GiB (61.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8695029Z Completed 149.0 MiB/9.9 GiB (61.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8721885Z Completed 149.2 MiB/9.9 GiB (61.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8735980Z Completed 149.5 MiB/9.9 GiB (61.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8759356Z Completed 149.8 MiB/9.9 GiB (62.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8768184Z Completed 150.0 MiB/9.9 GiB (62.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8780200Z Completed 150.2 MiB/9.9 GiB (62.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8783708Z Completed 150.5 MiB/9.9 GiB (62.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8822517Z Completed 150.8 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8864222Z Completed 151.0 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8866060Z Completed 151.2 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8930701Z Completed 151.5 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.8946742Z Completed 151.8 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9014285Z Completed 152.0 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9038871Z Completed 152.2 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9088552Z Completed 152.5 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9131911Z Completed 152.8 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9139443Z Completed 153.0 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9191547Z Completed 153.2 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9266349Z Completed 153.5 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9271613Z Completed 153.8 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9310547Z Completed 154.0 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9362249Z Completed 154.2 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9376546Z Completed 154.5 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9384610Z Completed 154.8 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9388579Z Completed 155.0 MiB/9.9 GiB (62.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9397812Z Completed 155.2 MiB/9.9 GiB (62.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9405759Z Completed 155.5 MiB/9.9 GiB (62.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9415383Z Completed 155.8 MiB/9.9 GiB (62.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9425080Z Completed 156.0 MiB/9.9 GiB (62.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9430121Z Completed 156.2 MiB/9.9 GiB (62.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9440897Z Completed 156.5 MiB/9.9 GiB (63.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9451785Z Completed 156.8 MiB/9.9 GiB (63.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9457988Z Completed 157.0 MiB/9.9 GiB (63.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9466764Z Completed 157.2 MiB/9.9 GiB (63.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9472976Z Completed 157.5 MiB/9.9 GiB (63.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9514266Z Completed 157.8 MiB/9.9 GiB (63.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9519638Z Completed 158.0 MiB/9.9 GiB (63.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9557439Z Completed 158.2 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9597632Z Completed 158.5 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9628161Z Completed 158.8 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9681174Z Completed 159.0 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9709081Z Completed 159.2 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9749895Z Completed 159.5 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9760703Z Completed 159.8 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9763412Z Completed 160.0 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9771008Z Completed 160.2 MiB/9.9 GiB (63.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9779823Z Completed 160.5 MiB/9.9 GiB (63.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9786661Z Completed 160.8 MiB/9.9 GiB (63.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9797986Z Completed 161.0 MiB/9.9 GiB (63.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9825416Z Completed 161.2 MiB/9.9 GiB (63.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9832333Z Completed 161.5 MiB/9.9 GiB (64.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9840742Z Completed 161.8 MiB/9.9 GiB (64.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9848953Z Completed 162.0 MiB/9.9 GiB (64.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9857033Z Completed 162.2 MiB/9.9 GiB (64.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:14.9895174Z Completed 162.5 MiB/9.9 GiB (64.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0117304Z Completed 162.8 MiB/9.9 GiB (64.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0148794Z Completed 163.0 MiB/9.9 GiB (63.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0255899Z Completed 163.2 MiB/9.9 GiB (63.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0284794Z Completed 163.5 MiB/9.9 GiB (63.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0294770Z Completed 163.8 MiB/9.9 GiB (63.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0318652Z Completed 164.0 MiB/9.9 GiB (63.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0334788Z Completed 164.2 MiB/9.9 GiB (63.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0343845Z Completed 164.5 MiB/9.9 GiB (63.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0354655Z Completed 164.8 MiB/9.9 GiB (64.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0357857Z Completed 165.0 MiB/9.9 GiB (64.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0373329Z Completed 165.2 MiB/9.9 GiB (64.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0392312Z Completed 165.5 MiB/9.9 GiB (64.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0397239Z Completed 165.8 MiB/9.9 GiB (64.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0428406Z Completed 166.0 MiB/9.9 GiB (64.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0438987Z Completed 166.2 MiB/9.9 GiB (64.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0454315Z Completed 166.5 MiB/9.9 GiB (64.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0460357Z Completed 166.8 MiB/9.9 GiB (64.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0471666Z Completed 167.0 MiB/9.9 GiB (64.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0477767Z Completed 167.2 MiB/9.9 GiB (64.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0488804Z Completed 167.5 MiB/9.9 GiB (64.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0509339Z Completed 167.8 MiB/9.9 GiB (64.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0519240Z Completed 168.0 MiB/9.9 GiB (64.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0526242Z Completed 168.2 MiB/9.9 GiB (64.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0543562Z Completed 168.5 MiB/9.9 GiB (64.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0622416Z Completed 168.8 MiB/9.9 GiB (65.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0652916Z Completed 169.0 MiB/9.9 GiB (64.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0656638Z Completed 169.2 MiB/9.9 GiB (64.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0663332Z Completed 169.5 MiB/9.9 GiB (65.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0672978Z Completed 169.8 MiB/9.9 GiB (65.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0682037Z Completed 170.0 MiB/9.9 GiB (65.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0694138Z Completed 170.2 MiB/9.9 GiB (65.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0699936Z Completed 170.5 MiB/9.9 GiB (65.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0731471Z Completed 170.8 MiB/9.9 GiB (65.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0768097Z Completed 171.0 MiB/9.9 GiB (65.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0770983Z Completed 171.2 MiB/9.9 GiB (65.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0783404Z Completed 171.5 MiB/9.9 GiB (65.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0785460Z Completed 171.8 MiB/9.9 GiB (65.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0792964Z Completed 172.0 MiB/9.9 GiB (65.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0802811Z Completed 172.2 MiB/9.9 GiB (65.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0809428Z Completed 172.5 MiB/9.9 GiB (65.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0816658Z Completed 172.8 MiB/9.9 GiB (65.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0823802Z Completed 173.0 MiB/9.9 GiB (65.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0831291Z Completed 173.2 MiB/9.9 GiB (66.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0842133Z Completed 173.5 MiB/9.9 GiB (66.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0851588Z Completed 173.8 MiB/9.9 GiB (66.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0860900Z Completed 174.0 MiB/9.9 GiB (66.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0865488Z Completed 174.2 MiB/9.9 GiB (66.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0875815Z Completed 174.5 MiB/9.9 GiB (66.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0880410Z Completed 174.8 MiB/9.9 GiB (66.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0892936Z Completed 175.0 MiB/9.9 GiB (66.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0895922Z Completed 175.2 MiB/9.9 GiB (66.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0901065Z Completed 175.5 MiB/9.9 GiB (66.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0907531Z Completed 175.8 MiB/9.9 GiB (66.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0913631Z Completed 176.0 MiB/9.9 GiB (66.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0919547Z Completed 176.2 MiB/9.9 GiB (66.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0925888Z Completed 176.5 MiB/9.9 GiB (67.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.0931924Z Completed 176.8 MiB/9.9 GiB (67.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1048594Z Completed 177.0 MiB/9.9 GiB (67.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1056559Z Completed 177.2 MiB/9.9 GiB (67.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1063244Z Completed 177.5 MiB/9.9 GiB (67.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1069988Z Completed 177.8 MiB/9.9 GiB (67.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1076704Z Completed 178.0 MiB/9.9 GiB (67.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1083960Z Completed 178.2 MiB/9.9 GiB (67.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1090645Z Completed 178.5 MiB/9.9 GiB (67.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1097691Z Completed 178.8 MiB/9.9 GiB (67.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1104747Z Completed 179.0 MiB/9.9 GiB (67.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1112074Z Completed 179.2 MiB/9.9 GiB (67.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1181819Z Completed 179.5 MiB/9.9 GiB (67.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1199136Z Completed 179.8 MiB/9.9 GiB (67.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1200429Z Completed 180.0 MiB/9.9 GiB (67.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1204010Z Completed 180.2 MiB/9.9 GiB (67.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1221040Z Completed 180.5 MiB/9.9 GiB (67.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1223884Z Completed 180.8 MiB/9.9 GiB (67.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1294030Z Completed 181.0 MiB/9.9 GiB (67.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1343506Z Completed 181.2 MiB/9.9 GiB (68.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1353124Z Completed 181.5 MiB/9.9 GiB (67.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1360811Z Completed 181.8 MiB/9.9 GiB (67.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1386746Z Completed 182.0 MiB/9.9 GiB (68.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1388787Z Completed 182.2 MiB/9.9 GiB (68.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1401962Z Completed 182.5 MiB/9.9 GiB (68.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1418788Z Completed 182.8 MiB/9.9 GiB (68.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1445536Z Completed 183.0 MiB/9.9 GiB (68.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1446647Z Completed 183.2 MiB/9.9 GiB (68.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1460534Z Completed 183.5 MiB/9.9 GiB (68.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1466481Z Completed 183.8 MiB/9.9 GiB (68.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1478778Z Completed 184.0 MiB/9.9 GiB (68.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1498207Z Completed 184.2 MiB/9.9 GiB (68.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1507674Z Completed 184.5 MiB/9.9 GiB (68.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1519545Z Completed 184.8 MiB/9.9 GiB (68.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1531770Z Completed 185.0 MiB/9.9 GiB (68.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1547722Z Completed 185.2 MiB/9.9 GiB (68.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1559740Z Completed 185.5 MiB/9.9 GiB (68.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1593949Z Completed 185.8 MiB/9.9 GiB (68.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1595448Z Completed 186.0 MiB/9.9 GiB (68.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1600919Z Completed 186.2 MiB/9.9 GiB (69.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1617585Z Completed 186.5 MiB/9.9 GiB (69.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1626348Z Completed 186.8 MiB/9.9 GiB (69.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1632490Z Completed 187.0 MiB/9.9 GiB (69.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1645677Z Completed 187.2 MiB/9.9 GiB (69.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1670003Z Completed 187.5 MiB/9.9 GiB (69.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1685997Z Completed 187.8 MiB/9.9 GiB (69.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1698584Z Completed 188.0 MiB/9.9 GiB (69.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1716006Z Completed 188.2 MiB/9.9 GiB (69.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1734075Z Completed 188.5 MiB/9.9 GiB (69.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1742899Z Completed 188.8 MiB/9.9 GiB (69.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1769478Z Completed 189.0 MiB/9.9 GiB (69.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1784150Z Completed 189.2 MiB/9.9 GiB (69.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1789822Z Completed 189.5 MiB/9.9 GiB (69.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1812491Z Completed 189.8 MiB/9.9 GiB (69.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1833157Z Completed 190.0 MiB/9.9 GiB (69.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1835682Z Completed 190.2 MiB/9.9 GiB (69.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1841804Z Completed 190.5 MiB/9.9 GiB (69.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1854698Z Completed 190.8 MiB/9.9 GiB (70.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1857587Z Completed 191.0 MiB/9.9 GiB (70.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1863334Z Completed 191.2 MiB/9.9 GiB (70.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1877376Z Completed 191.5 MiB/9.9 GiB (70.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1879531Z Completed 191.8 MiB/9.9 GiB (70.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1892786Z Completed 192.0 MiB/9.9 GiB (70.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1897012Z Completed 192.2 MiB/9.9 GiB (70.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1908519Z Completed 192.5 MiB/9.9 GiB (70.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1915279Z Completed 192.8 MiB/9.9 GiB (70.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1922020Z Completed 193.0 MiB/9.9 GiB (70.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1927536Z Completed 193.2 MiB/9.9 GiB (70.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1933387Z Completed 193.5 MiB/9.9 GiB (70.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1965169Z Completed 193.8 MiB/9.9 GiB (70.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1985228Z Completed 194.0 MiB/9.9 GiB (70.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.1987780Z Completed 194.2 MiB/9.9 GiB (70.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2001501Z Completed 194.5 MiB/9.9 GiB (71.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2009465Z Completed 194.8 MiB/9.9 GiB (71.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2014516Z Completed 195.0 MiB/9.9 GiB (71.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2022034Z Completed 195.2 MiB/9.9 GiB (71.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2029604Z Completed 195.5 MiB/9.9 GiB (71.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2036596Z Completed 195.8 MiB/9.9 GiB (71.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2072428Z Completed 196.0 MiB/9.9 GiB (71.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2073972Z Completed 196.2 MiB/9.9 GiB (71.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2077179Z Completed 196.5 MiB/9.9 GiB (71.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2092035Z Completed 196.8 MiB/9.9 GiB (71.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2096224Z Completed 197.0 MiB/9.9 GiB (71.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2099908Z Completed 197.2 MiB/9.9 GiB (71.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2110849Z Completed 197.5 MiB/9.9 GiB (71.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2126321Z Completed 197.8 MiB/9.9 GiB (71.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2141130Z Completed 198.0 MiB/9.9 GiB (71.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2163355Z Completed 198.2 MiB/9.9 GiB (71.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2164546Z Completed 198.5 MiB/9.9 GiB (72.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2165601Z Completed 198.8 MiB/9.9 GiB (72.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2186510Z Completed 199.0 MiB/9.9 GiB (72.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2201090Z Completed 199.2 MiB/9.9 GiB (72.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2228997Z Completed 199.5 MiB/9.9 GiB (72.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2242616Z Completed 199.8 MiB/9.9 GiB (72.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2277779Z Completed 200.0 MiB/9.9 GiB (72.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2310081Z Completed 200.2 MiB/9.9 GiB (72.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2315839Z Completed 200.5 MiB/9.9 GiB (72.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2321398Z Completed 200.8 MiB/9.9 GiB (72.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2328871Z Completed 201.0 MiB/9.9 GiB (72.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2358221Z Completed 201.2 MiB/9.9 GiB (72.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2365373Z Completed 201.5 MiB/9.9 GiB (72.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2388389Z Completed 201.8 MiB/9.9 GiB (72.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2403342Z Completed 202.0 MiB/9.9 GiB (72.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2420399Z Completed 202.2 MiB/9.9 GiB (72.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2435312Z Completed 202.5 MiB/9.9 GiB (72.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2438975Z Completed 202.8 MiB/9.9 GiB (72.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2452095Z Completed 203.0 MiB/9.9 GiB (72.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2459831Z Completed 203.2 MiB/9.9 GiB (72.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2486124Z Completed 203.5 MiB/9.9 GiB (73.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2501866Z Completed 203.8 MiB/9.9 GiB (73.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2507818Z Completed 204.0 MiB/9.9 GiB (73.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2535237Z Completed 204.2 MiB/9.9 GiB (73.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2543010Z Completed 204.5 MiB/9.9 GiB (73.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2557867Z Completed 204.8 MiB/9.9 GiB (73.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2596117Z Completed 205.0 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2637175Z Completed 205.2 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2665055Z Completed 205.5 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2681612Z Completed 205.8 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2698328Z Completed 206.0 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2707153Z Completed 206.2 MiB/9.9 GiB (73.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2727068Z Completed 206.5 MiB/9.9 GiB (73.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2734020Z Completed 206.8 MiB/9.9 GiB (73.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2738440Z Completed 207.0 MiB/9.9 GiB (73.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2770204Z Completed 207.2 MiB/9.9 GiB (73.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2774925Z Completed 207.5 MiB/9.9 GiB (73.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2781468Z Completed 207.8 MiB/9.9 GiB (73.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2819620Z Completed 208.0 MiB/9.9 GiB (73.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2825316Z Completed 208.2 MiB/9.9 GiB (73.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2826478Z Completed 208.5 MiB/9.9 GiB (73.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2852834Z Completed 208.8 MiB/9.9 GiB (73.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2861504Z Completed 209.0 MiB/9.9 GiB (73.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2870855Z Completed 209.2 MiB/9.9 GiB (74.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2892972Z Completed 209.5 MiB/9.9 GiB (74.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2911382Z Completed 209.8 MiB/9.9 GiB (74.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2933400Z Completed 210.0 MiB/9.9 GiB (74.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2943310Z Completed 210.2 MiB/9.9 GiB (74.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2962818Z Completed 210.5 MiB/9.9 GiB (74.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.2994789Z Completed 210.8 MiB/9.9 GiB (74.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3014095Z Completed 211.0 MiB/9.9 GiB (74.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3029192Z Completed 211.2 MiB/9.9 GiB (74.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3030358Z Completed 211.5 MiB/9.9 GiB (74.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3048690Z Completed 211.8 MiB/9.9 GiB (74.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3091690Z Completed 212.0 MiB/9.9 GiB (74.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3098428Z Completed 212.2 MiB/9.9 GiB (74.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3113943Z Completed 212.5 MiB/9.9 GiB (74.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3122095Z Completed 212.8 MiB/9.9 GiB (74.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3125607Z Completed 213.0 MiB/9.9 GiB (74.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3168591Z Completed 213.2 MiB/9.9 GiB (74.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3197562Z Completed 213.5 MiB/9.9 GiB (74.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3205992Z Completed 213.8 MiB/9.9 GiB (74.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3208221Z Completed 214.0 MiB/9.9 GiB (74.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3216904Z Completed 214.2 MiB/9.9 GiB (74.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3265901Z Completed 214.5 MiB/9.9 GiB (74.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3275155Z Completed 214.8 MiB/9.9 GiB (74.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3287446Z Completed 215.0 MiB/9.9 GiB (74.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3296005Z Completed 215.2 MiB/9.9 GiB (75.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3339112Z Completed 215.5 MiB/9.9 GiB (75.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3364057Z Completed 215.8 MiB/9.9 GiB (75.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3368940Z Completed 216.0 MiB/9.9 GiB (75.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3379464Z Completed 216.2 MiB/9.9 GiB (75.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3433197Z Completed 216.5 MiB/9.9 GiB (75.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3435928Z Completed 216.8 MiB/9.9 GiB (75.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3441073Z Completed 217.0 MiB/9.9 GiB (75.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3453991Z Completed 217.2 MiB/9.9 GiB (75.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3469142Z Completed 217.5 MiB/9.9 GiB (75.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3488652Z Completed 217.8 MiB/9.9 GiB (75.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3500489Z Completed 218.0 MiB/9.9 GiB (75.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3534038Z Completed 218.2 MiB/9.9 GiB (75.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3551637Z Completed 218.5 MiB/9.9 GiB (75.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3561399Z Completed 218.8 MiB/9.9 GiB (75.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3571527Z Completed 219.0 MiB/9.9 GiB (75.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3587993Z Completed 219.2 MiB/9.9 GiB (75.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3589309Z Completed 219.5 MiB/9.9 GiB (75.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3649604Z Completed 219.8 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3671644Z Completed 220.0 MiB/9.9 GiB (75.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3693597Z Completed 220.2 MiB/9.9 GiB (75.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3694454Z Completed 220.5 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3733584Z Completed 220.8 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3745630Z Completed 221.0 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3778652Z Completed 221.2 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3829743Z Completed 221.5 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3865672Z Completed 221.8 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3893642Z Completed 222.0 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3916204Z Completed 222.2 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3939059Z Completed 222.5 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3989375Z Completed 222.8 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.3997777Z Completed 223.0 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4007292Z Completed 223.2 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4015070Z Completed 223.5 MiB/9.9 GiB (76.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4018279Z Completed 223.8 MiB/9.9 GiB (76.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4070560Z Completed 224.0 MiB/9.9 GiB (76.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4080924Z Completed 224.2 MiB/9.9 GiB (76.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4105283Z Completed 224.5 MiB/9.9 GiB (76.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4115398Z Completed 224.8 MiB/9.9 GiB (76.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4116779Z Completed 225.0 MiB/9.9 GiB (76.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4149725Z Completed 225.2 MiB/9.9 GiB (76.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4152846Z Completed 225.5 MiB/9.9 GiB (76.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4182083Z Completed 225.8 MiB/9.9 GiB (76.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4200474Z Completed 226.0 MiB/9.9 GiB (76.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4213306Z Completed 226.2 MiB/9.9 GiB (76.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4225969Z Completed 226.5 MiB/9.9 GiB (76.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4244614Z Completed 226.8 MiB/9.9 GiB (76.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4270628Z Completed 227.0 MiB/9.9 GiB (76.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4286300Z Completed 227.2 MiB/9.9 GiB (76.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4291759Z Completed 227.5 MiB/9.9 GiB (76.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4298893Z Completed 227.8 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4325611Z Completed 228.0 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4329599Z Completed 228.2 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4332523Z Completed 228.5 MiB/9.9 GiB (76.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4342144Z Completed 228.8 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4348233Z Completed 229.0 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4356775Z Completed 229.2 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4395626Z Completed 229.5 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4405855Z Completed 229.8 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4438266Z Completed 230.0 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4510627Z Completed 230.2 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4572167Z Completed 230.5 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4584320Z Completed 230.8 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4642471Z Completed 231.0 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4657358Z Completed 231.2 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4704934Z Completed 231.5 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4757472Z Completed 231.8 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4903709Z Completed 232.0 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4927848Z Completed 232.2 MiB/9.9 GiB (76.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4930773Z Completed 232.5 MiB/9.9 GiB (76.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4950309Z Completed 232.8 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4965210Z Completed 233.0 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4966906Z Completed 233.2 MiB/9.9 GiB (76.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4986237Z Completed 233.5 MiB/9.9 GiB (76.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.4997828Z Completed 233.8 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5023489Z Completed 234.0 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5044653Z Completed 234.2 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5086336Z Completed 234.5 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5100922Z Completed 234.8 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5146260Z Completed 235.0 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5151585Z Completed 235.2 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5160850Z Completed 235.5 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5182295Z Completed 235.8 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5184947Z Completed 236.0 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5221772Z Completed 236.2 MiB/9.9 GiB (77.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5240656Z Completed 236.5 MiB/9.9 GiB (77.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5251151Z Completed 236.8 MiB/9.9 GiB (77.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5289787Z Completed 237.0 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5293221Z Completed 237.2 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5342327Z Completed 237.5 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5366083Z Completed 237.8 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5402452Z Completed 238.0 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5405127Z Completed 238.2 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5425751Z Completed 238.5 MiB/9.9 GiB (77.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5460207Z Completed 238.8 MiB/9.9 GiB (77.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5461416Z Completed 239.0 MiB/9.9 GiB (77.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5464111Z Completed 239.2 MiB/9.9 GiB (77.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5503398Z Completed 239.5 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5513514Z Completed 239.8 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5521253Z Completed 240.0 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5542965Z Completed 240.2 MiB/9.9 GiB (77.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5544086Z Completed 240.5 MiB/9.9 GiB (77.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5561204Z Completed 240.8 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5588350Z Completed 241.0 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5596247Z Completed 241.2 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5609297Z Completed 241.5 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5668912Z Completed 241.8 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5794005Z Completed 242.0 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5820496Z Completed 242.2 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5833323Z Completed 242.5 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5846340Z Completed 242.8 MiB/9.9 GiB (77.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5853123Z Completed 243.0 MiB/9.9 GiB (77.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5870569Z Completed 243.2 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5886445Z Completed 243.5 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5919809Z Completed 243.8 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5921841Z Completed 244.0 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.5944304Z Completed 244.2 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6014508Z Completed 244.5 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6039004Z Completed 244.8 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6075198Z Completed 245.0 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6105766Z Completed 245.2 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6108413Z Completed 245.5 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6128320Z Completed 245.8 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6137095Z Completed 246.0 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6180966Z Completed 246.2 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6188218Z Completed 246.5 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6194196Z Completed 246.8 MiB/9.9 GiB (78.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6202553Z Completed 247.0 MiB/9.9 GiB (78.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6216634Z Completed 247.2 MiB/9.9 GiB (78.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6223068Z Completed 247.5 MiB/9.9 GiB (78.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6231770Z Completed 247.8 MiB/9.9 GiB (78.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6240523Z Completed 248.0 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6263599Z Completed 248.2 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6344128Z Completed 248.5 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6365666Z Completed 248.8 MiB/9.9 GiB (78.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6403806Z Completed 249.0 MiB/9.9 GiB (78.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6408908Z Completed 249.2 MiB/9.9 GiB (78.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6440058Z Completed 249.5 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6441226Z Completed 249.8 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6458711Z Completed 250.0 MiB/9.9 GiB (78.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6488867Z Completed 250.2 MiB/9.9 GiB (78.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6505371Z Completed 250.5 MiB/9.9 GiB (78.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6517782Z Completed 250.8 MiB/9.9 GiB (78.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6550925Z Completed 251.0 MiB/9.9 GiB (78.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6556248Z Completed 251.2 MiB/9.9 GiB (78.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6559283Z Completed 251.5 MiB/9.9 GiB (78.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6574222Z Completed 251.8 MiB/9.9 GiB (78.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6581644Z Completed 252.0 MiB/9.9 GiB (78.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6589789Z Completed 252.2 MiB/9.9 GiB (78.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6593903Z Completed 252.5 MiB/9.9 GiB (78.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6605093Z Completed 252.8 MiB/9.9 GiB (79.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6607760Z Completed 253.0 MiB/9.9 GiB (79.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6617036Z Completed 253.2 MiB/9.9 GiB (79.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6624001Z Completed 253.5 MiB/9.9 GiB (79.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6630567Z Completed 253.8 MiB/9.9 GiB (79.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6684793Z Completed 254.0 MiB/9.9 GiB (79.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6690761Z Completed 254.2 MiB/9.9 GiB (79.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6696975Z Completed 254.5 MiB/9.9 GiB (79.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6702339Z Completed 254.8 MiB/9.9 GiB (79.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6716084Z Completed 255.0 MiB/9.9 GiB (79.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6752850Z Completed 255.2 MiB/9.9 GiB (79.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6777896Z Completed 255.5 MiB/9.9 GiB (79.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6781799Z Completed 255.8 MiB/9.9 GiB (79.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6791719Z Completed 256.0 MiB/9.9 GiB (79.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6816934Z Completed 256.2 MiB/9.9 GiB (79.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6840652Z Completed 256.5 MiB/9.9 GiB (79.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6852522Z Completed 256.8 MiB/9.9 GiB (79.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6872840Z Completed 257.0 MiB/9.9 GiB (79.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6911879Z Completed 257.2 MiB/9.9 GiB (79.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6918086Z Completed 257.5 MiB/9.9 GiB (79.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6927293Z Completed 257.8 MiB/9.9 GiB (79.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6930141Z Completed 258.0 MiB/9.9 GiB (79.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6950371Z Completed 258.2 MiB/9.9 GiB (79.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.6994365Z Completed 258.5 MiB/9.9 GiB (79.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7000558Z Completed 258.8 MiB/9.9 GiB (79.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7011136Z Completed 259.0 MiB/9.9 GiB (79.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7030860Z Completed 259.2 MiB/9.9 GiB (79.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7039808Z Completed 259.5 MiB/9.9 GiB (80.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7046438Z Completed 259.8 MiB/9.9 GiB (80.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7113416Z Completed 260.0 MiB/9.9 GiB (80.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7129860Z Completed 260.2 MiB/9.9 GiB (80.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7142110Z Completed 260.5 MiB/9.9 GiB (80.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7143969Z Completed 260.8 MiB/9.9 GiB (80.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7187602Z Completed 261.0 MiB/9.9 GiB (80.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7219585Z Completed 261.2 MiB/9.9 GiB (80.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7220473Z Completed 261.5 MiB/9.9 GiB (80.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7228608Z Completed 261.8 MiB/9.9 GiB (80.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7230886Z Completed 262.0 MiB/9.9 GiB (80.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7248574Z Completed 262.2 MiB/9.9 GiB (80.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7286639Z Completed 262.5 MiB/9.9 GiB (80.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7328744Z Completed 262.8 MiB/9.9 GiB (80.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7344798Z Completed 263.0 MiB/9.9 GiB (80.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7352183Z Completed 263.2 MiB/9.9 GiB (80.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7357232Z Completed 263.5 MiB/9.9 GiB (80.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7369713Z Completed 263.8 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7401445Z Completed 264.0 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7426698Z Completed 264.2 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7457508Z Completed 264.5 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7469001Z Completed 264.8 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7480014Z Completed 265.0 MiB/9.9 GiB (80.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7507696Z Completed 265.2 MiB/9.9 GiB (80.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7515241Z Completed 265.5 MiB/9.9 GiB (80.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7533990Z Completed 265.8 MiB/9.9 GiB (80.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7572812Z Completed 266.0 MiB/9.9 GiB (80.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7576389Z Completed 266.2 MiB/9.9 GiB (80.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7588617Z Completed 266.5 MiB/9.9 GiB (80.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7597629Z Completed 266.8 MiB/9.9 GiB (80.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7626747Z Completed 267.0 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7648722Z Completed 267.2 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7663260Z Completed 267.5 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7697319Z Completed 267.8 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7716603Z Completed 268.0 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7729628Z Completed 268.2 MiB/9.9 GiB (81.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7741821Z Completed 268.5 MiB/9.9 GiB (81.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7750418Z Completed 268.8 MiB/9.9 GiB (81.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7762567Z Completed 269.0 MiB/9.9 GiB (81.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7778588Z Completed 269.2 MiB/9.9 GiB (81.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7816980Z Completed 269.5 MiB/9.9 GiB (81.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7842037Z Completed 269.8 MiB/9.9 GiB (81.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7845086Z Completed 270.0 MiB/9.9 GiB (81.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7859720Z Completed 270.2 MiB/9.9 GiB (81.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7892514Z Completed 270.5 MiB/9.9 GiB (81.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7909140Z Completed 270.8 MiB/9.9 GiB (81.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7920969Z Completed 271.0 MiB/9.9 GiB (81.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7927702Z Completed 271.2 MiB/9.9 GiB (81.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7976798Z Completed 271.5 MiB/9.9 GiB (81.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7977997Z Completed 271.8 MiB/9.9 GiB (81.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7987772Z Completed 272.0 MiB/9.9 GiB (81.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.7994465Z Completed 272.2 MiB/9.9 GiB (81.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8008416Z Completed 272.5 MiB/9.9 GiB (81.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8026511Z Completed 272.8 MiB/9.9 GiB (81.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8054526Z Completed 273.0 MiB/9.9 GiB (81.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8067681Z Completed 273.2 MiB/9.9 GiB (81.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8099117Z Completed 273.5 MiB/9.9 GiB (81.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8130696Z Completed 273.8 MiB/9.9 GiB (81.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8132229Z Completed 274.0 MiB/9.9 GiB (81.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8147383Z Completed 274.2 MiB/9.9 GiB (81.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8150654Z Completed 274.5 MiB/9.9 GiB (81.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8160245Z Completed 274.8 MiB/9.9 GiB (81.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8163363Z Completed 275.0 MiB/9.9 GiB (81.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8175521Z Completed 275.2 MiB/9.9 GiB (82.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8241146Z Completed 275.5 MiB/9.9 GiB (82.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8266536Z Completed 275.8 MiB/9.9 GiB (81.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8286093Z Completed 276.0 MiB/9.9 GiB (81.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8289036Z Completed 276.2 MiB/9.9 GiB (82.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8293527Z Completed 276.5 MiB/9.9 GiB (82.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8297229Z Completed 276.8 MiB/9.9 GiB (82.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8311637Z Completed 277.0 MiB/9.9 GiB (82.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8394928Z Completed 277.2 MiB/9.9 GiB (82.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8406731Z Completed 277.5 MiB/9.9 GiB (82.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8425786Z Completed 277.8 MiB/9.9 GiB (82.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8426978Z Completed 278.0 MiB/9.9 GiB (82.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8437626Z Completed 278.2 MiB/9.9 GiB (82.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8438970Z Completed 278.5 MiB/9.9 GiB (82.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8455071Z Completed 278.8 MiB/9.9 GiB (82.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8470297Z Completed 279.0 MiB/9.9 GiB (82.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8520655Z Completed 279.2 MiB/9.9 GiB (82.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8556127Z Completed 279.5 MiB/9.9 GiB (82.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8561532Z Completed 279.8 MiB/9.9 GiB (82.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8568313Z Completed 280.0 MiB/9.9 GiB (82.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8584481Z Completed 280.2 MiB/9.9 GiB (82.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8590616Z Completed 280.5 MiB/9.9 GiB (82.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8601121Z Completed 280.8 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8645620Z Completed 281.0 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8682307Z Completed 281.2 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8684049Z Completed 281.5 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8697448Z Completed 281.8 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8715087Z Completed 282.0 MiB/9.9 GiB (82.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8716215Z Completed 282.2 MiB/9.9 GiB (82.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8728847Z Completed 282.5 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8784733Z Completed 282.8 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8806297Z Completed 283.0 MiB/9.9 GiB (82.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8831351Z Completed 283.2 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8845357Z Completed 283.5 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8846501Z Completed 283.8 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8847531Z Completed 284.0 MiB/9.9 GiB (82.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8908785Z Completed 284.2 MiB/9.9 GiB (83.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8919886Z Completed 284.5 MiB/9.9 GiB (82.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8938354Z Completed 284.8 MiB/9.9 GiB (82.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8953749Z Completed 285.0 MiB/9.9 GiB (83.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8958918Z Completed 285.2 MiB/9.9 GiB (83.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8966659Z Completed 285.5 MiB/9.9 GiB (83.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.8981569Z Completed 285.8 MiB/9.9 GiB (83.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9017905Z Completed 286.0 MiB/9.9 GiB (83.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9058844Z Completed 286.2 MiB/9.9 GiB (83.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9065801Z Completed 286.5 MiB/9.9 GiB (83.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9070586Z Completed 286.8 MiB/9.9 GiB (83.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9086796Z Completed 287.0 MiB/9.9 GiB (83.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9092566Z Completed 287.2 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9113976Z Completed 287.5 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9175738Z Completed 287.8 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9183814Z Completed 288.0 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9191499Z Completed 288.2 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9197609Z Completed 288.5 MiB/9.9 GiB (83.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9236983Z Completed 288.8 MiB/9.9 GiB (83.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9238160Z Completed 289.0 MiB/9.9 GiB (83.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9240333Z Completed 289.2 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9299422Z Completed 289.5 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9306073Z Completed 289.8 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9340579Z Completed 290.0 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9341736Z Completed 290.2 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9348155Z Completed 290.5 MiB/9.9 GiB (83.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9353413Z Completed 290.8 MiB/9.9 GiB (83.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9370841Z Completed 291.0 MiB/9.9 GiB (83.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9447560Z Completed 291.2 MiB/9.9 GiB (83.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9451634Z Completed 291.5 MiB/9.9 GiB (83.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9452922Z Completed 291.8 MiB/9.9 GiB (83.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9464449Z Completed 292.0 MiB/9.9 GiB (83.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9470653Z Completed 292.2 MiB/9.9 GiB (83.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9494433Z Completed 292.5 MiB/9.9 GiB (83.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9503627Z Completed 292.8 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9566755Z Completed 293.0 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9578459Z Completed 293.2 MiB/9.9 GiB (83.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9624698Z Completed 293.5 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9633815Z Completed 293.8 MiB/9.9 GiB (83.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9638190Z Completed 294.0 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9641980Z Completed 294.2 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9662240Z Completed 294.5 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9709627Z Completed 294.8 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9713271Z Completed 295.0 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9788786Z Completed 295.2 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9797307Z Completed 295.5 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9798443Z Completed 295.8 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9799516Z Completed 296.0 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9806177Z Completed 296.2 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9866103Z Completed 296.5 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9881203Z Completed 296.8 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9934753Z Completed 297.0 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9949360Z Completed 297.2 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:15.9964350Z Completed 297.5 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0005272Z Completed 297.8 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0014285Z Completed 298.0 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0038150Z Completed 298.2 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0068777Z Completed 298.5 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0096483Z Completed 298.8 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0132445Z Completed 299.0 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0133872Z Completed 299.2 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0151292Z Completed 299.5 MiB/9.9 GiB (84.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0165484Z Completed 299.8 MiB/9.9 GiB (84.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0196441Z Completed 300.0 MiB/9.9 GiB (84.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0206923Z Completed 300.2 MiB/9.9 GiB (84.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0219355Z Completed 300.5 MiB/9.9 GiB (84.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0229137Z Completed 300.8 MiB/9.9 GiB (84.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0265410Z Completed 301.0 MiB/9.9 GiB (84.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0284423Z Completed 301.2 MiB/9.9 GiB (84.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0305989Z Completed 301.5 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0325120Z Completed 301.8 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0341677Z Completed 302.0 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0361191Z Completed 302.2 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0371377Z Completed 302.5 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0393661Z Completed 302.8 MiB/9.9 GiB (84.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0418951Z Completed 303.0 MiB/9.9 GiB (84.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0428329Z Completed 303.2 MiB/9.9 GiB (84.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0460316Z Completed 303.5 MiB/9.9 GiB (84.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0466675Z Completed 303.8 MiB/9.9 GiB (84.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0481999Z Completed 304.0 MiB/9.9 GiB (84.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0523013Z Completed 304.2 MiB/9.9 GiB (84.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0527418Z Completed 304.5 MiB/9.9 GiB (84.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0542829Z Completed 304.8 MiB/9.9 GiB (84.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0555145Z Completed 305.0 MiB/9.9 GiB (84.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0563847Z Completed 305.2 MiB/9.9 GiB (84.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0576302Z Completed 305.5 MiB/9.9 GiB (84.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0580102Z Completed 305.8 MiB/9.9 GiB (84.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0592061Z Completed 306.0 MiB/9.9 GiB (85.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0598177Z Completed 306.2 MiB/9.9 GiB (85.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0609889Z Completed 306.5 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0614774Z Completed 306.8 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0648230Z Completed 307.0 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0678360Z Completed 307.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0761390Z Completed 307.5 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0769523Z Completed 307.8 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0777718Z Completed 308.0 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0784014Z Completed 308.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0794765Z Completed 308.5 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0799479Z Completed 308.8 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0806739Z Completed 309.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0817028Z Completed 309.2 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0823990Z Completed 309.5 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0830482Z Completed 309.8 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0833443Z Completed 310.0 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0840897Z Completed 310.2 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.0989350Z Completed 310.5 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1055141Z Completed 310.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1142357Z Completed 311.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1188960Z Completed 311.2 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1233339Z Completed 311.5 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1240541Z Completed 311.8 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1245963Z Completed 312.0 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1270996Z Completed 312.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1272323Z Completed 312.5 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1286486Z Completed 312.8 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1294420Z Completed 313.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1310163Z Completed 313.2 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1327159Z Completed 313.5 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1342041Z Completed 313.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1343337Z Completed 314.0 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1358803Z Completed 314.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1366180Z Completed 314.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1374435Z Completed 314.8 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1464736Z Completed 315.0 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1468444Z Completed 315.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1485018Z Completed 315.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1503637Z Completed 315.8 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1516443Z Completed 316.0 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1604850Z Completed 316.2 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1662061Z Completed 316.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1671723Z Completed 316.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1695479Z Completed 317.0 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1718514Z Completed 317.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1727271Z Completed 317.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1735264Z Completed 317.8 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1743411Z Completed 318.0 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1750155Z Completed 318.2 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1760894Z Completed 318.5 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1769878Z Completed 318.8 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1785912Z Completed 319.0 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.1964959Z Completed 319.2 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2135195Z Completed 319.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2144140Z Completed 319.8 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2155930Z Completed 320.0 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2168970Z Completed 320.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2193810Z Completed 320.5 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2214977Z Completed 320.8 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2234284Z Completed 321.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2257413Z Completed 321.2 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2263679Z Completed 321.5 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2271886Z Completed 321.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2516835Z Completed 322.0 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2522371Z Completed 322.2 MiB/9.9 GiB (85.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2527670Z Completed 322.5 MiB/9.9 GiB (85.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2533287Z Completed 322.8 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2538980Z Completed 323.0 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2545194Z Completed 323.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2574049Z Completed 323.5 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2578170Z Completed 323.8 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2594469Z Completed 324.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2596985Z Completed 324.2 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2606473Z Completed 324.5 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2620389Z Completed 324.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2628411Z Completed 325.0 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2636657Z Completed 325.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2644618Z Completed 325.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2651509Z Completed 325.8 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2659785Z Completed 326.0 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2667609Z Completed 326.2 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2675428Z Completed 326.5 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2682125Z Completed 326.8 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2844802Z Completed 327.0 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2849552Z Completed 327.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2855786Z Completed 327.5 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2861137Z Completed 327.8 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2867025Z Completed 328.0 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2872418Z Completed 328.2 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2877986Z Completed 328.5 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2887117Z Completed 328.8 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2901239Z Completed 329.0 MiB/9.9 GiB (85.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2907046Z Completed 329.2 MiB/9.9 GiB (85.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2916644Z Completed 329.5 MiB/9.9 GiB (86.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2920849Z Completed 329.8 MiB/9.9 GiB (86.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2928020Z Completed 330.0 MiB/9.9 GiB (86.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2934737Z Completed 330.2 MiB/9.9 GiB (86.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2941716Z Completed 330.5 MiB/9.9 GiB (86.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2949052Z Completed 330.8 MiB/9.9 GiB (86.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2955902Z Completed 331.0 MiB/9.9 GiB (86.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2962922Z Completed 331.2 MiB/9.9 GiB (86.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2969377Z Completed 331.5 MiB/9.9 GiB (86.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2975652Z Completed 331.8 MiB/9.9 GiB (86.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2990297Z Completed 332.0 MiB/9.9 GiB (86.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2991648Z Completed 332.2 MiB/9.9 GiB (86.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.2998042Z Completed 332.5 MiB/9.9 GiB (86.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3008803Z Completed 332.8 MiB/9.9 GiB (86.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3010890Z Completed 333.0 MiB/9.9 GiB (86.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3017533Z Completed 333.2 MiB/9.9 GiB (86.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3025439Z Completed 333.5 MiB/9.9 GiB (86.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3052592Z Completed 333.8 MiB/9.9 GiB (86.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3061437Z Completed 334.0 MiB/9.9 GiB (86.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3065802Z Completed 334.2 MiB/9.9 GiB (86.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3076247Z Completed 334.5 MiB/9.9 GiB (86.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3083934Z Completed 334.8 MiB/9.9 GiB (87.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3092162Z Completed 335.0 MiB/9.9 GiB (87.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3099300Z Completed 335.2 MiB/9.9 GiB (87.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3105335Z Completed 335.5 MiB/9.9 GiB (87.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3116010Z Completed 335.8 MiB/9.9 GiB (87.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3140950Z Completed 336.0 MiB/9.9 GiB (87.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3154764Z Completed 336.2 MiB/9.9 GiB (87.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3164672Z Completed 336.5 MiB/9.9 GiB (87.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3178611Z Completed 336.8 MiB/9.9 GiB (87.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3184998Z Completed 337.0 MiB/9.9 GiB (87.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3191930Z Completed 337.2 MiB/9.9 GiB (87.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3199257Z Completed 337.5 MiB/9.9 GiB (87.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3205816Z Completed 337.8 MiB/9.9 GiB (87.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3221850Z Completed 338.0 MiB/9.9 GiB (87.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3229767Z Completed 338.2 MiB/9.9 GiB (87.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3237085Z Completed 338.5 MiB/9.9 GiB (87.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3243836Z Completed 338.8 MiB/9.9 GiB (87.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3253929Z Completed 339.0 MiB/9.9 GiB (87.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3263626Z Completed 339.2 MiB/9.9 GiB (87.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3269429Z Completed 339.5 MiB/9.9 GiB (87.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3277151Z Completed 339.8 MiB/9.9 GiB (87.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3281316Z Completed 340.0 MiB/9.9 GiB (87.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3287735Z Completed 340.2 MiB/9.9 GiB (87.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3293913Z Completed 340.5 MiB/9.9 GiB (88.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3299943Z Completed 340.8 MiB/9.9 GiB (88.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3306612Z Completed 341.0 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3312519Z Completed 341.2 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3318738Z Completed 341.5 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3324724Z Completed 341.8 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3441663Z Completed 342.0 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3451552Z Completed 342.2 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3462289Z Completed 342.5 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3476117Z Completed 342.8 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3479086Z Completed 343.0 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3490520Z Completed 343.2 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3496229Z Completed 343.5 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3505737Z Completed 343.8 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3514893Z Completed 344.0 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3525776Z Completed 344.2 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3531500Z Completed 344.5 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3545842Z Completed 344.8 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3767451Z Completed 345.0 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3774611Z Completed 345.2 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3791848Z Completed 345.5 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3794018Z Completed 345.8 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3819881Z Completed 346.0 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3821870Z Completed 346.2 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3835221Z Completed 346.5 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3849033Z Completed 346.8 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3851662Z Completed 347.0 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3879260Z Completed 347.2 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3903514Z Completed 347.5 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3911926Z Completed 347.8 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3948581Z Completed 348.0 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3963752Z Completed 348.2 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.3983952Z Completed 348.5 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4001469Z Completed 348.8 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4008172Z Completed 349.0 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4031688Z Completed 349.2 MiB/9.9 GiB (88.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4067137Z Completed 349.5 MiB/9.9 GiB (88.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4069635Z Completed 349.8 MiB/9.9 GiB (88.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4077678Z Completed 350.0 MiB/9.9 GiB (88.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4105885Z Completed 350.2 MiB/9.9 GiB (88.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4134167Z Completed 350.5 MiB/9.9 GiB (88.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4148451Z Completed 350.8 MiB/9.9 GiB (88.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4152456Z Completed 351.0 MiB/9.9 GiB (88.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4154223Z Completed 351.2 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4196241Z Completed 351.5 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4242348Z Completed 351.8 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4258322Z Completed 352.0 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4261995Z Completed 352.2 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4283963Z Completed 352.5 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4332776Z Completed 352.8 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4337042Z Completed 353.0 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4342532Z Completed 353.2 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4358518Z Completed 353.5 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4379132Z Completed 353.8 MiB/9.9 GiB (89.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4438882Z Completed 354.0 MiB/9.9 GiB (89.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4443659Z Completed 354.2 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4459550Z Completed 354.5 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4460735Z Completed 354.8 MiB/9.9 GiB (89.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4466027Z Completed 355.0 MiB/9.9 GiB (89.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4476998Z Completed 355.2 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4522955Z Completed 355.5 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4545581Z Completed 355.8 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4553595Z Completed 356.0 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4565925Z Completed 356.2 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4583541Z Completed 356.5 MiB/9.9 GiB (89.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4601136Z Completed 356.8 MiB/9.9 GiB (89.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4605215Z Completed 357.0 MiB/9.9 GiB (89.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4637054Z Completed 357.2 MiB/9.9 GiB (89.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4640623Z Completed 357.5 MiB/9.9 GiB (89.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4649266Z Completed 357.8 MiB/9.9 GiB (89.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4675797Z Completed 358.0 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4700129Z Completed 358.2 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4721507Z Completed 358.5 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4746174Z Completed 358.8 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4747479Z Completed 359.0 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4755943Z Completed 359.2 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4774891Z Completed 359.5 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4804267Z Completed 359.8 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4815995Z Completed 360.0 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4847568Z Completed 360.2 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4883322Z Completed 360.5 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4891195Z Completed 360.8 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4892339Z Completed 361.0 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4894578Z Completed 361.2 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4953811Z Completed 361.5 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4981572Z Completed 361.8 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.4982916Z Completed 362.0 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5011587Z Completed 362.2 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5064230Z Completed 362.5 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5094448Z Completed 362.8 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5101514Z Completed 363.0 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5105273Z Completed 363.2 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5164187Z Completed 363.5 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5205997Z Completed 363.8 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5210400Z Completed 364.0 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5220412Z Completed 364.2 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5251415Z Completed 364.5 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5256693Z Completed 364.8 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5273569Z Completed 365.0 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5280983Z Completed 365.2 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5301986Z Completed 365.5 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5344421Z Completed 365.8 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5361661Z Completed 366.0 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5378244Z Completed 366.2 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5406168Z Completed 366.5 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5417685Z Completed 366.8 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5433955Z Completed 367.0 MiB/9.9 GiB (89.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5435968Z Completed 367.2 MiB/9.9 GiB (89.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5437972Z Completed 367.5 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5474006Z Completed 367.8 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5489661Z Completed 368.0 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5549300Z Completed 368.2 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5559615Z Completed 368.5 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5570331Z Completed 368.8 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5593051Z Completed 369.0 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5594591Z Completed 369.2 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5613054Z Completed 369.5 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5641499Z Completed 369.8 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5650391Z Completed 370.0 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5719721Z Completed 370.2 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5739479Z Completed 370.5 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5756704Z Completed 370.8 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5757783Z Completed 371.0 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5782458Z Completed 371.2 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5794418Z Completed 371.5 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5804514Z Completed 371.8 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5814725Z Completed 372.0 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5879615Z Completed 372.2 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5886743Z Completed 372.5 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5890449Z Completed 372.8 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5899918Z Completed 373.0 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5941199Z Completed 373.2 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5956521Z Completed 373.5 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5966500Z Completed 373.8 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.5967653Z Completed 374.0 MiB/9.9 GiB (90.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6039707Z Completed 374.2 MiB/9.9 GiB (90.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6050113Z Completed 374.5 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6053739Z Completed 374.8 MiB/9.9 GiB (90.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6068046Z Completed 375.0 MiB/9.9 GiB (90.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6071232Z Completed 375.2 MiB/9.9 GiB (90.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6081685Z Completed 375.5 MiB/9.9 GiB (90.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6100019Z Completed 375.8 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6124110Z Completed 376.0 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6175423Z Completed 376.2 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6201409Z Completed 376.5 MiB/9.9 GiB (90.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6204144Z Completed 376.8 MiB/9.9 GiB (90.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6205236Z Completed 377.0 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6218898Z Completed 377.2 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6233252Z Completed 377.5 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6260274Z Completed 377.8 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6261524Z Completed 378.0 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6330842Z Completed 378.2 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6335735Z Completed 378.5 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6343294Z Completed 378.8 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6352232Z Completed 379.0 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6368416Z Completed 379.2 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6397949Z Completed 379.5 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6415061Z Completed 379.8 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6416322Z Completed 380.0 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6457194Z Completed 380.2 MiB/9.9 GiB (90.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6464016Z Completed 380.5 MiB/9.9 GiB (90.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6474958Z Completed 380.8 MiB/9.9 GiB (90.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6488092Z Completed 381.0 MiB/9.9 GiB (90.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6521325Z Completed 381.2 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6545814Z Completed 381.5 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6555511Z Completed 381.8 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6582427Z Completed 382.0 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6598641Z Completed 382.2 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6608413Z Completed 382.5 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6630369Z Completed 382.8 MiB/9.9 GiB (91.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6640650Z Completed 383.0 MiB/9.9 GiB (91.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6677821Z Completed 383.2 MiB/9.9 GiB (91.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6683612Z Completed 383.5 MiB/9.9 GiB (91.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6690971Z Completed 383.8 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6709779Z Completed 384.0 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6729509Z Completed 384.2 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6743032Z Completed 384.5 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6765976Z Completed 384.8 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6797556Z Completed 385.0 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6811021Z Completed 385.2 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6838561Z Completed 385.5 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6851448Z Completed 385.8 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6852396Z Completed 386.0 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6860261Z Completed 386.2 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6902095Z Completed 386.5 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6911463Z Completed 386.8 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6947626Z Completed 387.0 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6959190Z Completed 387.2 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6965315Z Completed 387.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.6973599Z Completed 387.8 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7023307Z Completed 388.0 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7031250Z Completed 388.2 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7056360Z Completed 388.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7057342Z Completed 388.8 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7071297Z Completed 389.0 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7076336Z Completed 389.2 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7124924Z Completed 389.5 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7131002Z Completed 389.8 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7151414Z Completed 390.0 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7161932Z Completed 390.2 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7174405Z Completed 390.5 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7203524Z Completed 390.8 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7216917Z Completed 391.0 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7226949Z Completed 391.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7246421Z Completed 391.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7283949Z Completed 391.8 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7289774Z Completed 392.0 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7295526Z Completed 392.2 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7314818Z Completed 392.5 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7348603Z Completed 392.8 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7373109Z Completed 393.0 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7377913Z Completed 393.2 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7380716Z Completed 393.5 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7419312Z Completed 393.8 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7440130Z Completed 394.0 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7454498Z Completed 394.2 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7458458Z Completed 394.5 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7483745Z Completed 394.8 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7491272Z Completed 395.0 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7498725Z Completed 395.2 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7510139Z Completed 395.5 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7581455Z Completed 395.8 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7625531Z Completed 396.0 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7647290Z Completed 396.2 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7726704Z Completed 396.5 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7752387Z Completed 396.8 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7753881Z Completed 397.0 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7849132Z Completed 397.2 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7854048Z Completed 397.5 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7884507Z Completed 397.8 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7981819Z Completed 398.0 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7988027Z Completed 398.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.7992975Z Completed 398.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8060343Z Completed 398.8 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8065713Z Completed 399.0 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8104460Z Completed 399.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8132513Z Completed 399.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8133943Z Completed 399.8 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8204039Z Completed 400.0 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8215529Z Completed 400.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8268363Z Completed 400.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8296413Z Completed 400.8 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8347267Z Completed 401.0 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8376738Z Completed 401.2 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8389844Z Completed 401.5 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8403163Z Completed 401.8 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8447745Z Completed 402.0 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8557938Z Completed 402.2 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8673625Z Completed 402.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8686050Z Completed 402.8 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8784391Z Completed 403.0 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8795410Z Completed 403.2 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8868125Z Completed 403.5 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8895145Z Completed 403.8 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8897326Z Completed 404.0 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8910419Z Completed 404.2 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8914339Z Completed 404.5 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8924845Z Completed 404.8 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8936911Z Completed 405.0 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8949980Z Completed 405.2 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8954839Z Completed 405.5 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8964807Z Completed 405.8 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.8971583Z Completed 406.0 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9001960Z Completed 406.2 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9003417Z Completed 406.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9007596Z Completed 406.8 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9058716Z Completed 407.0 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9059967Z Completed 407.2 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9119660Z Completed 407.5 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9181828Z Completed 407.8 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9187040Z Completed 408.0 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9224027Z Completed 408.2 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9281057Z Completed 408.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9291591Z Completed 408.8 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9296661Z Completed 409.0 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9313911Z Completed 409.2 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9320944Z Completed 409.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9334953Z Completed 409.8 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9338194Z Completed 410.0 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9343543Z Completed 410.2 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9352222Z Completed 410.5 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9358839Z Completed 410.8 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9385325Z Completed 411.0 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9398069Z Completed 411.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9400726Z Completed 411.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9407212Z Completed 411.8 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9419997Z Completed 412.0 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9435973Z Completed 412.2 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9439763Z Completed 412.5 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9466519Z Completed 412.8 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9476364Z Completed 413.0 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9490138Z Completed 413.2 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9503107Z Completed 413.5 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9508800Z Completed 413.8 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9535796Z Completed 414.0 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9539974Z Completed 414.2 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9558857Z Completed 414.5 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9566935Z Completed 414.8 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9607750Z Completed 415.0 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9618250Z Completed 415.2 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9630634Z Completed 415.5 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9639146Z Completed 415.8 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9668688Z Completed 416.0 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9680137Z Completed 416.2 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9690015Z Completed 416.5 MiB/9.9 GiB (92.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9714595Z Completed 416.8 MiB/9.9 GiB (92.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9722536Z Completed 417.0 MiB/9.9 GiB (92.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9734582Z Completed 417.2 MiB/9.9 GiB (92.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9745654Z Completed 417.5 MiB/9.9 GiB (92.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9756301Z Completed 417.8 MiB/9.9 GiB (92.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9764356Z Completed 418.0 MiB/9.9 GiB (92.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9767553Z Completed 418.2 MiB/9.9 GiB (92.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9772570Z Completed 418.5 MiB/9.9 GiB (92.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9779330Z Completed 418.8 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9830936Z Completed 419.0 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9836249Z Completed 419.2 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9842166Z Completed 419.5 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9843238Z Completed 419.8 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9870039Z Completed 420.0 MiB/9.9 GiB (92.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9877369Z Completed 420.2 MiB/9.9 GiB (92.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9890194Z Completed 420.5 MiB/9.9 GiB (92.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9892549Z Completed 420.8 MiB/9.9 GiB (92.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9905469Z Completed 421.0 MiB/9.9 GiB (92.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9909166Z Completed 421.2 MiB/9.9 GiB (92.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9921483Z Completed 421.5 MiB/9.9 GiB (93.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9924862Z Completed 421.8 MiB/9.9 GiB (93.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9935541Z Completed 422.0 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9944106Z Completed 422.2 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9955506Z Completed 422.5 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9966146Z Completed 422.8 MiB/9.9 GiB (93.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9969099Z Completed 423.0 MiB/9.9 GiB (93.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9983210Z Completed 423.2 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9986117Z Completed 423.5 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:16.9998542Z Completed 423.8 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0169202Z Completed 424.0 MiB/9.9 GiB (93.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0195270Z Completed 424.2 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0207266Z Completed 424.5 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0213735Z Completed 424.8 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0220007Z Completed 425.0 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0228920Z Completed 425.2 MiB/9.9 GiB (93.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0235307Z Completed 425.5 MiB/9.9 GiB (93.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0241378Z Completed 425.8 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0249733Z Completed 426.0 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0257751Z Completed 426.2 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0266572Z Completed 426.5 MiB/9.9 GiB (93.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0277341Z Completed 426.8 MiB/9.9 GiB (93.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0284645Z Completed 427.0 MiB/9.9 GiB (93.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0305972Z Completed 427.2 MiB/9.9 GiB (93.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0307460Z Completed 427.5 MiB/9.9 GiB (93.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0311558Z Completed 427.8 MiB/9.9 GiB (93.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0344461Z Completed 428.0 MiB/9.9 GiB (93.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0347891Z Completed 428.2 MiB/9.9 GiB (93.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0356354Z Completed 428.5 MiB/9.9 GiB (93.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0363096Z Completed 428.8 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0419469Z Completed 429.0 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0425045Z Completed 429.2 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0436970Z Completed 429.5 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0462255Z Completed 429.8 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0468110Z Completed 430.0 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0475909Z Completed 430.2 MiB/9.9 GiB (93.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0511175Z Completed 430.5 MiB/9.9 GiB (93.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0517099Z Completed 430.8 MiB/9.9 GiB (93.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0520771Z Completed 431.0 MiB/9.9 GiB (93.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0546957Z Completed 431.2 MiB/9.9 GiB (93.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0552827Z Completed 431.5 MiB/9.9 GiB (93.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0570903Z Completed 431.8 MiB/9.9 GiB (93.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0591117Z Completed 432.0 MiB/9.9 GiB (93.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0592444Z Completed 432.2 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0644422Z Completed 432.5 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0666772Z Completed 432.8 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0669910Z Completed 433.0 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0674545Z Completed 433.2 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0744871Z Completed 433.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0751734Z Completed 433.8 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0753047Z Completed 434.0 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0781339Z Completed 434.2 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0813834Z Completed 434.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0833804Z Completed 434.8 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0874619Z Completed 435.0 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0881992Z Completed 435.2 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0923715Z Completed 435.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0947601Z Completed 435.8 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0950568Z Completed 436.0 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.0976419Z Completed 436.2 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1001071Z Completed 436.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1033824Z Completed 436.8 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1081022Z Completed 437.0 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1082202Z Completed 437.2 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1098483Z Completed 437.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1103689Z Completed 437.8 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1121704Z Completed 438.0 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1174914Z Completed 438.2 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1176067Z Completed 438.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1188146Z Completed 438.8 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1226521Z Completed 439.0 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1227785Z Completed 439.2 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1276953Z Completed 439.5 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1287763Z Completed 439.8 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1305120Z Completed 440.0 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1307248Z Completed 440.2 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1321823Z Completed 440.5 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1353752Z Completed 440.8 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1373409Z Completed 441.0 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1386226Z Completed 441.2 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1421812Z Completed 441.5 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1451891Z Completed 441.8 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1468776Z Completed 442.0 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1470508Z Completed 442.2 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1482798Z Completed 442.5 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1515329Z Completed 442.8 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1553653Z Completed 443.0 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1563528Z Completed 443.2 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1572394Z Completed 443.5 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1586849Z Completed 443.8 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1595562Z Completed 444.0 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1618232Z Completed 444.2 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1633306Z Completed 444.5 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1656868Z Completed 444.8 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1694266Z Completed 445.0 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1711295Z Completed 445.2 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1717601Z Completed 445.5 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1725995Z Completed 445.8 MiB/9.9 GiB (94.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1760175Z Completed 446.0 MiB/9.9 GiB (94.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1762235Z Completed 446.2 MiB/9.9 GiB (94.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1772981Z Completed 446.5 MiB/9.9 GiB (94.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1803655Z Completed 446.8 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1816777Z Completed 447.0 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1837941Z Completed 447.2 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1842507Z Completed 447.5 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1875012Z Completed 447.8 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1911392Z Completed 448.0 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1917894Z Completed 448.2 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1925854Z Completed 448.5 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1938677Z Completed 448.8 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1948527Z Completed 449.0 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.1982374Z Completed 449.2 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2023046Z Completed 449.5 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2031893Z Completed 449.8 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2050400Z Completed 450.0 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2060073Z Completed 450.2 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2084844Z Completed 450.5 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2096755Z Completed 450.8 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2106446Z Completed 451.0 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2115453Z Completed 451.2 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2167381Z Completed 451.5 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2196142Z Completed 451.8 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2197236Z Completed 452.0 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2212585Z Completed 452.2 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2245401Z Completed 452.5 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2258691Z Completed 452.8 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2270807Z Completed 453.0 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2288842Z Completed 453.2 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2328134Z Completed 453.5 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2346873Z Completed 453.8 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2360360Z Completed 454.0 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2371033Z Completed 454.2 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2392293Z Completed 454.5 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2396836Z Completed 454.8 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2402334Z Completed 455.0 MiB/9.9 GiB (95.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2410695Z Completed 455.2 MiB/9.9 GiB (95.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2444462Z Completed 455.5 MiB/9.9 GiB (95.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2448186Z Completed 455.8 MiB/9.9 GiB (95.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2472255Z Completed 456.0 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2499013Z Completed 456.2 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2530767Z Completed 456.5 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2534042Z Completed 456.8 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2537853Z Completed 457.0 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2546532Z Completed 457.2 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2574726Z Completed 457.5 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2601705Z Completed 457.8 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2605374Z Completed 458.0 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2613676Z Completed 458.2 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2655213Z Completed 458.5 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2683915Z Completed 458.8 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2685232Z Completed 459.0 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2696973Z Completed 459.2 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2718125Z Completed 459.5 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2739746Z Completed 459.8 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2740873Z Completed 460.0 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2768196Z Completed 460.2 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2774991Z Completed 460.5 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2813366Z Completed 460.8 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2814423Z Completed 461.0 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2851458Z Completed 461.2 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2863333Z Completed 461.5 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2893573Z Completed 461.8 MiB/9.9 GiB (95.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2894611Z Completed 462.0 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2896379Z Completed 462.2 MiB/9.9 GiB (95.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2906364Z Completed 462.5 MiB/9.9 GiB (95.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2907170Z Completed 462.8 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.2964929Z Completed 463.0 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3001994Z Completed 463.2 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3004867Z Completed 463.5 MiB/9.9 GiB (95.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3034229Z Completed 463.8 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3040732Z Completed 464.0 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3056381Z Completed 464.2 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3057752Z Completed 464.5 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3060601Z Completed 464.8 MiB/9.9 GiB (95.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3066104Z Completed 465.0 MiB/9.9 GiB (95.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3115809Z Completed 465.2 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3118753Z Completed 465.5 MiB/9.9 GiB (95.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3154689Z Completed 465.8 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3170454Z Completed 466.0 MiB/9.9 GiB (95.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3180875Z Completed 466.2 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3183220Z Completed 466.5 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3187769Z Completed 466.8 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3221111Z Completed 467.0 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3247259Z Completed 467.2 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3289315Z Completed 467.5 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3297516Z Completed 467.8 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3298841Z Completed 468.0 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3305767Z Completed 468.2 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3339011Z Completed 468.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3359042Z Completed 468.8 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3388064Z Completed 469.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3395991Z Completed 469.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3415049Z Completed 469.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3432925Z Completed 469.8 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3443151Z Completed 470.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3447665Z Completed 470.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3496575Z Completed 470.5 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3497726Z Completed 470.8 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3525304Z Completed 471.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3542057Z Completed 471.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3557538Z Completed 471.5 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3572512Z Completed 471.8 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3604217Z Completed 472.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3619740Z Completed 472.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3637354Z Completed 472.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3643114Z Completed 472.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3651327Z Completed 473.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3700260Z Completed 473.2 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3706551Z Completed 473.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3717625Z Completed 473.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3754230Z Completed 474.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3760619Z Completed 474.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3813041Z Completed 474.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3814164Z Completed 474.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3815216Z Completed 475.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3844448Z Completed 475.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3871234Z Completed 475.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3897810Z Completed 475.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3911396Z Completed 476.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3917959Z Completed 476.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3930040Z Completed 476.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3939116Z Completed 476.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3965088Z Completed 477.0 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3976684Z Completed 477.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.3977514Z Completed 477.5 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4013652Z Completed 477.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4019464Z Completed 478.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4020995Z Completed 478.2 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4113569Z Completed 478.5 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4120224Z Completed 478.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4123227Z Completed 479.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4234049Z Completed 479.2 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4258251Z Completed 479.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4266930Z Completed 479.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4329685Z Completed 480.0 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4356565Z Completed 480.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4366365Z Completed 480.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4446116Z Completed 480.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4468773Z Completed 481.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4478593Z Completed 481.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4554596Z Completed 481.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4591701Z Completed 481.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4594150Z Completed 482.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4643400Z Completed 482.2 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4685043Z Completed 482.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4757625Z Completed 482.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4801906Z Completed 483.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4844844Z Completed 483.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4851597Z Completed 483.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4890096Z Completed 483.8 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4893462Z Completed 484.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4932883Z Completed 484.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.4934005Z Completed 484.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5065309Z Completed 484.8 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5071782Z Completed 485.0 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5151887Z Completed 485.2 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5206031Z Completed 485.5 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5212991Z Completed 485.8 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5215073Z Completed 486.0 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5228289Z Completed 486.2 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5237827Z Completed 486.5 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5246657Z Completed 486.8 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5257148Z Completed 487.0 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5265752Z Completed 487.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5277568Z Completed 487.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5286256Z Completed 487.8 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5294556Z Completed 488.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5303352Z Completed 488.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5306435Z Completed 488.5 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5385118Z Completed 488.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5414183Z Completed 489.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5484386Z Completed 489.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5523184Z Completed 489.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5529761Z Completed 489.8 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5545188Z Completed 490.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5546374Z Completed 490.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5554857Z Completed 490.5 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5569545Z Completed 490.8 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5581395Z Completed 491.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5587442Z Completed 491.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5591967Z Completed 491.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5603265Z Completed 491.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5609327Z Completed 492.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5615939Z Completed 492.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5626727Z Completed 492.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5724665Z Completed 492.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5787135Z Completed 493.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5794958Z Completed 493.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5802112Z Completed 493.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5808970Z Completed 493.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5814588Z Completed 494.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5833062Z Completed 494.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5840380Z Completed 494.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5847076Z Completed 494.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5855517Z Completed 495.0 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5864562Z Completed 495.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5950233Z Completed 495.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5958102Z Completed 495.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5969674Z Completed 496.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5978274Z Completed 496.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5989341Z Completed 496.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.5999217Z Completed 496.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6009750Z Completed 497.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6040704Z Completed 497.2 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6047834Z Completed 497.5 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6055244Z Completed 497.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6075265Z Completed 498.0 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6153760Z Completed 498.2 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6167381Z Completed 498.5 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6175798Z Completed 498.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6183713Z Completed 499.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6191778Z Completed 499.2 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6200749Z Completed 499.5 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6209442Z Completed 499.8 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6218136Z Completed 500.0 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6444906Z Completed 500.2 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6451673Z Completed 500.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6459049Z Completed 500.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6470574Z Completed 501.0 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6486878Z Completed 501.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6505330Z Completed 501.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6508990Z Completed 501.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6523063Z Completed 502.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6524989Z Completed 502.2 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6565810Z Completed 502.5 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6568135Z Completed 502.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6570370Z Completed 503.0 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6602999Z Completed 503.2 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6607713Z Completed 503.5 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6608424Z Completed 503.8 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6615349Z Completed 504.0 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6631933Z Completed 504.2 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6634815Z Completed 504.5 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6646349Z Completed 504.8 MiB/9.9 GiB (97.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6649033Z Completed 505.0 MiB/9.9 GiB (97.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6661191Z Completed 505.2 MiB/9.9 GiB (97.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6666081Z Completed 505.5 MiB/9.9 GiB (97.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6678516Z Completed 505.8 MiB/9.9 GiB (97.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6682287Z Completed 506.0 MiB/9.9 GiB (97.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6689392Z Completed 506.2 MiB/9.9 GiB (97.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6701645Z Completed 506.5 MiB/9.9 GiB (97.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6706063Z Completed 506.8 MiB/9.9 GiB (97.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6718424Z Completed 507.0 MiB/9.9 GiB (97.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6729903Z Completed 507.2 MiB/9.9 GiB (97.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6736612Z Completed 507.5 MiB/9.9 GiB (97.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6743465Z Completed 507.8 MiB/9.9 GiB (97.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6750082Z Completed 508.0 MiB/9.9 GiB (97.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6758069Z Completed 508.2 MiB/9.9 GiB (97.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6765208Z Completed 508.5 MiB/9.9 GiB (97.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6773207Z Completed 508.8 MiB/9.9 GiB (97.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6780346Z Completed 509.0 MiB/9.9 GiB (97.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6787425Z Completed 509.2 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6795041Z Completed 509.5 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6843348Z Completed 509.8 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6855430Z Completed 510.0 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6869298Z Completed 510.2 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6877068Z Completed 510.5 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6885183Z Completed 510.8 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6895990Z Completed 511.0 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6916968Z Completed 511.2 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6939278Z Completed 511.5 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6947773Z Completed 511.8 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.6953754Z Completed 512.0 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7025372Z Completed 512.2 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7033845Z Completed 512.5 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7063236Z Completed 512.8 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7072505Z Completed 513.0 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7081243Z Completed 513.2 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7104711Z Completed 513.5 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7108666Z Completed 513.8 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7119673Z Completed 514.0 MiB/9.9 GiB (97.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7131246Z Completed 514.2 MiB/9.9 GiB (97.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7147187Z Completed 514.5 MiB/9.9 GiB (97.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7155261Z Completed 514.8 MiB/9.9 GiB (97.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7163473Z Completed 515.0 MiB/9.9 GiB (98.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7194779Z Completed 515.2 MiB/9.9 GiB (98.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7200624Z Completed 515.5 MiB/9.9 GiB (98.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7208559Z Completed 515.8 MiB/9.9 GiB (98.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7218765Z Completed 516.0 MiB/9.9 GiB (98.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7225777Z Completed 516.2 MiB/9.9 GiB (98.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7232509Z Completed 516.5 MiB/9.9 GiB (98.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7240948Z Completed 516.8 MiB/9.9 GiB (98.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7246792Z Completed 517.0 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7301498Z Completed 517.2 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7306895Z Completed 517.5 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7312078Z Completed 517.8 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7317138Z Completed 518.0 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7322021Z Completed 518.2 MiB/9.9 GiB (98.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7327515Z Completed 518.5 MiB/9.9 GiB (98.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7332498Z Completed 518.8 MiB/9.9 GiB (98.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7337753Z Completed 519.0 MiB/9.9 GiB (98.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7343276Z Completed 519.2 MiB/9.9 GiB (98.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7348878Z Completed 519.5 MiB/9.9 GiB (98.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7369584Z Completed 519.8 MiB/9.9 GiB (98.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7375682Z Completed 520.0 MiB/9.9 GiB (98.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7381915Z Completed 520.2 MiB/9.9 GiB (98.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7393730Z Completed 520.5 MiB/9.9 GiB (98.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7410663Z Completed 520.8 MiB/9.9 GiB (98.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7417705Z Completed 521.0 MiB/9.9 GiB (98.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7430264Z Completed 521.2 MiB/9.9 GiB (98.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7433582Z Completed 521.5 MiB/9.9 GiB (98.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7451213Z Completed 521.8 MiB/9.9 GiB (98.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7453114Z Completed 522.0 MiB/9.9 GiB (98.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7454330Z Completed 522.2 MiB/9.9 GiB (98.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7486776Z Completed 522.5 MiB/9.9 GiB (98.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7489554Z Completed 522.8 MiB/9.9 GiB (98.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7496233Z Completed 523.0 MiB/9.9 GiB (98.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7528227Z Completed 523.2 MiB/9.9 GiB (98.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7531162Z Completed 523.5 MiB/9.9 GiB (98.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7537368Z Completed 523.8 MiB/9.9 GiB (98.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7564066Z Completed 524.0 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7566394Z Completed 524.2 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7583203Z Completed 524.5 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7590433Z Completed 524.8 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7600767Z Completed 525.0 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7610575Z Completed 525.2 MiB/9.9 GiB (99.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7626899Z Completed 525.5 MiB/9.9 GiB (99.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7628728Z Completed 525.8 MiB/9.9 GiB (99.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7644068Z Completed 526.0 MiB/9.9 GiB (99.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7646718Z Completed 526.2 MiB/9.9 GiB (99.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7668111Z Completed 526.5 MiB/9.9 GiB (99.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7674511Z Completed 526.8 MiB/9.9 GiB (99.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7682232Z Completed 527.0 MiB/9.9 GiB (99.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7690924Z Completed 527.2 MiB/9.9 GiB (99.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7698745Z Completed 527.5 MiB/9.9 GiB (99.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7708077Z Completed 527.8 MiB/9.9 GiB (99.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7715704Z Completed 528.0 MiB/9.9 GiB (99.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7724904Z Completed 528.2 MiB/9.9 GiB (99.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7731765Z Completed 528.5 MiB/9.9 GiB (99.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7744827Z Completed 528.8 MiB/9.9 GiB (99.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7747706Z Completed 529.0 MiB/9.9 GiB (99.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7759908Z Completed 529.2 MiB/9.9 GiB (99.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7765228Z Completed 529.5 MiB/9.9 GiB (99.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7776501Z Completed 529.8 MiB/9.9 GiB (99.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7779542Z Completed 530.0 MiB/9.9 GiB (99.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7787329Z Completed 530.2 MiB/9.9 GiB (99.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7794281Z Completed 530.5 MiB/9.9 GiB (99.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7802402Z Completed 530.8 MiB/9.9 GiB (99.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7812814Z Completed 531.0 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7836642Z Completed 531.2 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7846920Z Completed 531.5 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7852891Z Completed 531.8 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7946390Z Completed 532.0 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7961430Z Completed 532.2 MiB/9.9 GiB (99.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7969769Z Completed 532.5 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.7989894Z Completed 532.8 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8003528Z Completed 533.0 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8025757Z Completed 533.2 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8031155Z Completed 533.5 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8086142Z Completed 533.8 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8097550Z Completed 534.0 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8114426Z Completed 534.2 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8132423Z Completed 534.5 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8140803Z Completed 534.8 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8147402Z Completed 535.0 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8213101Z Completed 535.2 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8246789Z Completed 535.5 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8254867Z Completed 535.8 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8264177Z Completed 536.0 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8281503Z Completed 536.2 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8290093Z Completed 536.5 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8314852Z Completed 536.8 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8348684Z Completed 537.0 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8367656Z Completed 537.2 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8386690Z Completed 537.5 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8392900Z Completed 537.8 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8412800Z Completed 538.0 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8414269Z Completed 538.2 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8467703Z Completed 538.5 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8479793Z Completed 538.8 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8516086Z Completed 539.0 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8520466Z Completed 539.2 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8527473Z Completed 539.5 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8532072Z Completed 539.8 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8583512Z Completed 540.0 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8593278Z Completed 540.2 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8616565Z Completed 540.5 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8652238Z Completed 540.8 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8658058Z Completed 541.0 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8664464Z Completed 541.2 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8698137Z Completed 541.5 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8730250Z Completed 541.8 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8740529Z Completed 542.0 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8760720Z Completed 542.2 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8763241Z Completed 542.5 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8768559Z Completed 542.8 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8773206Z Completed 543.0 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8819158Z Completed 543.2 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8827146Z Completed 543.5 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8871823Z Completed 543.8 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8875648Z Completed 544.0 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8882931Z Completed 544.2 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8886911Z Completed 544.5 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8923058Z Completed 544.8 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8952009Z Completed 545.0 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8959902Z Completed 545.2 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8967341Z Completed 545.5 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8973645Z Completed 545.8 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.8987838Z Completed 546.0 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9031157Z Completed 546.2 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9057285Z Completed 546.5 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9071029Z Completed 546.8 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9072162Z Completed 547.0 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9089581Z Completed 547.2 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9108583Z Completed 547.5 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9137969Z Completed 547.8 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9139996Z Completed 548.0 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9145834Z Completed 548.2 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9185597Z Completed 548.5 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9205143Z Completed 548.8 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9231458Z Completed 549.0 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9247956Z Completed 549.2 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9253569Z Completed 549.5 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9289621Z Completed 549.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9291622Z Completed 550.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9324710Z Completed 550.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9328373Z Completed 550.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9362235Z Completed 550.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9363498Z Completed 551.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9385515Z Completed 551.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9404099Z Completed 551.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9461201Z Completed 551.8 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9466956Z Completed 552.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9494472Z Completed 552.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9510011Z Completed 552.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9521774Z Completed 552.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9560300Z Completed 553.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9597926Z Completed 553.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9645253Z Completed 553.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9645995Z Completed 553.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9671741Z Completed 554.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9700318Z Completed 554.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9714195Z Completed 554.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9744353Z Completed 554.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9797304Z Completed 555.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9812529Z Completed 555.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9825414Z Completed 555.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9852870Z Completed 555.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9860717Z Completed 556.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9861691Z Completed 556.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9921943Z Completed 556.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9960327Z Completed 556.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9963530Z Completed 557.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9964773Z Completed 557.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9968021Z Completed 557.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:17.9995683Z Completed 557.8 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0034503Z Completed 558.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0046362Z Completed 558.2 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0054230Z Completed 558.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0079872Z Completed 558.8 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0085247Z Completed 559.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0107790Z Completed 559.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0111991Z Completed 559.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0169385Z Completed 559.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0185973Z Completed 560.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0191279Z Completed 560.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0201658Z Completed 560.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0229943Z Completed 560.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0234037Z Completed 561.0 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0243699Z Completed 561.2 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0272427Z Completed 561.5 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0275020Z Completed 561.8 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0280414Z Completed 562.0 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0309347Z Completed 562.2 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0405619Z Completed 562.5 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0407887Z Completed 562.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0465616Z Completed 563.0 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0546692Z Completed 563.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0613908Z Completed 563.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0693506Z Completed 563.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0708034Z Completed 564.0 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0717898Z Completed 564.2 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0724276Z Completed 564.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0730592Z Completed 564.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0736950Z Completed 565.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0746038Z Completed 565.2 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0753768Z Completed 565.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0756199Z Completed 565.8 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0763310Z Completed 566.0 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0769535Z Completed 566.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0777328Z Completed 566.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0813604Z Completed 566.8 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0853849Z Completed 567.0 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0900234Z Completed 567.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0927493Z Completed 567.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0970916Z Completed 567.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0976531Z Completed 568.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0992346Z Completed 568.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.0996431Z Completed 568.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1006325Z Completed 568.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1024650Z Completed 569.0 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1029844Z Completed 569.2 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1055644Z Completed 569.5 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1064345Z Completed 569.8 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1071424Z Completed 570.0 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1080854Z Completed 570.2 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1106115Z Completed 570.5 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1116421Z Completed 570.8 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1117341Z Completed 571.0 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1159297Z Completed 571.2 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1165302Z Completed 571.5 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1187635Z Completed 571.8 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1199319Z Completed 572.0 MiB/9.9 GiB (101.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1206295Z Completed 572.2 MiB/9.9 GiB (101.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1211748Z Completed 572.5 MiB/9.9 GiB (101.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1217922Z Completed 572.8 MiB/9.9 GiB (101.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1223364Z Completed 573.0 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1249634Z Completed 573.2 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1253945Z Completed 573.5 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1265603Z Completed 573.8 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1272087Z Completed 574.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1280175Z Completed 574.2 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1291362Z Completed 574.5 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1297206Z Completed 574.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1426900Z Completed 575.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1441274Z Completed 575.2 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1447994Z Completed 575.5 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1455583Z Completed 575.8 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1461806Z Completed 576.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1467959Z Completed 576.2 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1474743Z Completed 576.5 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1480179Z Completed 576.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1498920Z Completed 577.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1507316Z Completed 577.2 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1516204Z Completed 577.5 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1624246Z Completed 577.8 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1639564Z Completed 578.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1647823Z Completed 578.2 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1657639Z Completed 578.5 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1665382Z Completed 578.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1673170Z Completed 579.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1693443Z Completed 579.2 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1699942Z Completed 579.5 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1706628Z Completed 579.8 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1712796Z Completed 580.0 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1868485Z Completed 580.2 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1897391Z Completed 580.5 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1912459Z Completed 580.8 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1927269Z Completed 581.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1943807Z Completed 581.2 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1952447Z Completed 581.5 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1981587Z Completed 581.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.1994598Z Completed 582.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2005606Z Completed 582.2 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2044579Z Completed 582.5 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2118258Z Completed 582.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2125168Z Completed 583.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2136338Z Completed 583.2 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2143965Z Completed 583.5 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2150048Z Completed 583.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2167573Z Completed 584.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2181519Z Completed 584.2 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2190133Z Completed 584.5 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2207077Z Completed 584.8 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2212435Z Completed 585.0 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2225167Z Completed 585.2 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2227884Z Completed 585.5 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2233220Z Completed 585.8 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2238046Z Completed 586.0 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2243398Z Completed 586.2 MiB/9.9 GiB (101.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2248542Z Completed 586.5 MiB/9.9 GiB (101.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2253283Z Completed 586.8 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2258272Z Completed 587.0 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2263832Z Completed 587.2 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2268992Z Completed 587.5 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2340357Z Completed 587.8 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2347092Z Completed 588.0 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2354765Z Completed 588.2 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2361969Z Completed 588.5 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2370781Z Completed 588.8 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2378980Z Completed 589.0 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2385155Z Completed 589.2 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2394510Z Completed 589.5 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2404432Z Completed 589.8 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2411846Z Completed 590.0 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2478319Z Completed 590.2 MiB/9.9 GiB (102.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2484053Z Completed 590.5 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2489381Z Completed 590.8 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2494983Z Completed 591.0 MiB/9.9 GiB (102.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2500875Z Completed 591.2 MiB/9.9 GiB (102.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2506032Z Completed 591.5 MiB/9.9 GiB (102.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2511755Z Completed 591.8 MiB/9.9 GiB (102.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2517069Z Completed 592.0 MiB/9.9 GiB (102.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2523061Z Completed 592.2 MiB/9.9 GiB (102.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2529146Z Completed 592.5 MiB/9.9 GiB (102.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2540609Z Completed 592.8 MiB/9.9 GiB (102.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2559499Z Completed 593.0 MiB/9.9 GiB (102.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2567451Z Completed 593.2 MiB/9.9 GiB (102.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2577511Z Completed 593.5 MiB/9.9 GiB (102.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2584306Z Completed 593.8 MiB/9.9 GiB (102.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2592872Z Completed 594.0 MiB/9.9 GiB (102.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2602177Z Completed 594.2 MiB/9.9 GiB (102.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2608113Z Completed 594.5 MiB/9.9 GiB (102.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2620972Z Completed 594.8 MiB/9.9 GiB (102.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2639128Z Completed 595.0 MiB/9.9 GiB (102.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2658760Z Completed 595.2 MiB/9.9 GiB (102.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2660005Z Completed 595.5 MiB/9.9 GiB (102.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2665972Z Completed 595.8 MiB/9.9 GiB (102.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2680006Z Completed 596.0 MiB/9.9 GiB (102.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2681551Z Completed 596.2 MiB/9.9 GiB (102.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2697897Z Completed 596.5 MiB/9.9 GiB (102.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2700983Z Completed 596.8 MiB/9.9 GiB (102.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2721340Z Completed 597.0 MiB/9.9 GiB (102.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2731577Z Completed 597.2 MiB/9.9 GiB (102.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2748258Z Completed 597.5 MiB/9.9 GiB (102.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2754891Z Completed 597.8 MiB/9.9 GiB (102.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2762473Z Completed 598.0 MiB/9.9 GiB (102.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2770865Z Completed 598.2 MiB/9.9 GiB (102.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2778299Z Completed 598.5 MiB/9.9 GiB (102.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2788424Z Completed 598.8 MiB/9.9 GiB (102.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2797327Z Completed 599.0 MiB/9.9 GiB (102.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2812361Z Completed 599.2 MiB/9.9 GiB (102.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2813819Z Completed 599.5 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2820026Z Completed 599.8 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2852572Z Completed 600.0 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2860782Z Completed 600.2 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2873652Z Completed 600.5 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2877327Z Completed 600.8 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2890629Z Completed 601.0 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2900849Z Completed 601.2 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2914581Z Completed 601.5 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2935497Z Completed 601.8 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2941610Z Completed 602.0 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.2979888Z Completed 602.2 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3037797Z Completed 602.5 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3046746Z Completed 602.8 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3057898Z Completed 603.0 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3065984Z Completed 603.2 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3073754Z Completed 603.5 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3094257Z Completed 603.8 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3102019Z Completed 604.0 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3110426Z Completed 604.2 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3125205Z Completed 604.5 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3130720Z Completed 604.8 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3148310Z Completed 605.0 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3153989Z Completed 605.2 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3160726Z Completed 605.5 MiB/9.9 GiB (103.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3168264Z Completed 605.8 MiB/9.9 GiB (103.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3205152Z Completed 606.0 MiB/9.9 GiB (103.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3206144Z Completed 606.2 MiB/9.9 GiB (103.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3206907Z Completed 606.5 MiB/9.9 GiB (103.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3207535Z Completed 606.8 MiB/9.9 GiB (103.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3208142Z Completed 607.0 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3236782Z Completed 607.2 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3246706Z Completed 607.5 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3255447Z Completed 607.8 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3263491Z Completed 608.0 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3272380Z Completed 608.2 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3280863Z Completed 608.5 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3290927Z Completed 608.8 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3297380Z Completed 609.0 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3306053Z Completed 609.2 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3312480Z Completed 609.5 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3391901Z Completed 609.8 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3399748Z Completed 610.0 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3408613Z Completed 610.2 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3419073Z Completed 610.5 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3424029Z Completed 610.8 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3431159Z Completed 611.0 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3438914Z Completed 611.2 MiB/9.9 GiB (103.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3445724Z Completed 611.5 MiB/9.9 GiB (103.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3454678Z Completed 611.8 MiB/9.9 GiB (103.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3469316Z Completed 612.0 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3473500Z Completed 612.2 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3483436Z Completed 612.5 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3561948Z Completed 612.8 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3568525Z Completed 613.0 MiB/9.9 GiB (103.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3584518Z Completed 613.2 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3592341Z Completed 613.5 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3599805Z Completed 613.8 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3607776Z Completed 614.0 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3615303Z Completed 614.2 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3643243Z Completed 614.5 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3651168Z Completed 614.8 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3658612Z Completed 615.0 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3677234Z Completed 615.2 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3685121Z Completed 615.5 MiB/9.9 GiB (104.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3693411Z Completed 615.8 MiB/9.9 GiB (104.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3700518Z Completed 616.0 MiB/9.9 GiB (104.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3709752Z Completed 616.2 MiB/9.9 GiB (104.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3719190Z Completed 616.5 MiB/9.9 GiB (104.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3723867Z Completed 616.8 MiB/9.9 GiB (104.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3731724Z Completed 617.0 MiB/9.9 GiB (104.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3759746Z Completed 617.2 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3761204Z Completed 617.5 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3777958Z Completed 617.8 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3784379Z Completed 618.0 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3795060Z Completed 618.2 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3878891Z Completed 618.5 MiB/9.9 GiB (104.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3887928Z Completed 618.8 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3899089Z Completed 619.0 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3906264Z Completed 619.2 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3913235Z Completed 619.5 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3918514Z Completed 619.8 MiB/9.9 GiB (104.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3924293Z Completed 620.0 MiB/9.9 GiB (104.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3930580Z Completed 620.2 MiB/9.9 GiB (104.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3944647Z Completed 620.5 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3950913Z Completed 620.8 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3963506Z Completed 621.0 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.3994082Z Completed 621.2 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4004479Z Completed 621.5 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4011182Z Completed 621.8 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4032357Z Completed 622.0 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4033535Z Completed 622.2 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4041256Z Completed 622.5 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4051524Z Completed 622.8 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4060779Z Completed 623.0 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4070859Z Completed 623.2 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4076963Z Completed 623.5 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4089996Z Completed 623.8 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4093431Z Completed 624.0 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4108538Z Completed 624.2 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4112462Z Completed 624.5 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4136662Z Completed 624.8 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4140912Z Completed 625.0 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4150045Z Completed 625.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4174232Z Completed 625.5 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4195676Z Completed 625.8 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4203688Z Completed 626.0 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4211560Z Completed 626.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4217221Z Completed 626.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4305119Z Completed 626.8 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4311788Z Completed 627.0 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4321974Z Completed 627.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4332095Z Completed 627.5 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4339110Z Completed 627.8 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4346662Z Completed 628.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4353736Z Completed 628.2 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4361693Z Completed 628.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4369464Z Completed 628.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4386981Z Completed 629.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4457567Z Completed 629.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4477340Z Completed 629.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4486589Z Completed 629.8 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4494685Z Completed 630.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4504194Z Completed 630.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4512602Z Completed 630.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4520628Z Completed 630.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4538865Z Completed 631.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4549941Z Completed 631.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4558238Z Completed 631.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4599814Z Completed 631.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4610490Z Completed 632.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4618603Z Completed 632.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4626064Z Completed 632.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4633438Z Completed 632.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4641071Z Completed 633.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4651426Z Completed 633.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4681236Z Completed 633.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4699339Z Completed 633.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4720716Z Completed 634.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4778120Z Completed 634.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4789160Z Completed 634.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4794893Z Completed 634.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4806057Z Completed 635.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4812588Z Completed 635.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4819729Z Completed 635.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4827387Z Completed 635.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4837130Z Completed 636.0 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4853645Z Completed 636.2 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4861875Z Completed 636.5 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4864151Z Completed 636.8 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4898048Z Completed 637.0 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4913204Z Completed 637.2 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4926076Z Completed 637.5 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4941096Z Completed 637.8 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4971533Z Completed 638.0 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4977356Z Completed 638.2 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.4986853Z Completed 638.5 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5000064Z Completed 638.8 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5005540Z Completed 639.0 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5011900Z Completed 639.2 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5019568Z Completed 639.5 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5041586Z Completed 639.8 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5223013Z Completed 640.0 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5227966Z Completed 640.2 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5358327Z Completed 640.5 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5378153Z Completed 640.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5520540Z Completed 641.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5533561Z Completed 641.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5562930Z Completed 641.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5676204Z Completed 641.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5687163Z Completed 642.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5703520Z Completed 642.2 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5709881Z Completed 642.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5717010Z Completed 642.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5723664Z Completed 643.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5730249Z Completed 643.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5736557Z Completed 643.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5750473Z Completed 643.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5758192Z Completed 644.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5772055Z Completed 644.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5797846Z Completed 644.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5812171Z Completed 644.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5826715Z Completed 645.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5843668Z Completed 645.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5879096Z Completed 645.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5903301Z Completed 645.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5915926Z Completed 646.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5929256Z Completed 646.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.5937683Z Completed 646.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6355938Z Completed 646.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6360849Z Completed 647.0 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6367228Z Completed 647.2 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6372952Z Completed 647.5 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6377775Z Completed 647.8 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6382832Z Completed 648.0 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6396718Z Completed 648.2 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6404619Z Completed 648.5 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6418025Z Completed 648.8 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6419343Z Completed 649.0 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6432883Z Completed 649.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6443112Z Completed 649.5 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6453452Z Completed 649.8 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6457102Z Completed 650.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6463658Z Completed 650.2 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6469374Z Completed 650.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6476709Z Completed 650.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6489193Z Completed 651.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6508872Z Completed 651.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6515688Z Completed 651.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6555358Z Completed 651.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6556875Z Completed 652.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6560207Z Completed 652.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6561398Z Completed 652.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6565421Z Completed 652.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6583813Z Completed 653.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6601714Z Completed 653.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6603231Z Completed 653.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6604016Z Completed 653.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6614433Z Completed 654.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6631721Z Completed 654.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6672559Z Completed 654.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6706116Z Completed 654.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6714655Z Completed 655.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6728170Z Completed 655.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6733782Z Completed 655.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6755265Z Completed 655.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6764489Z Completed 656.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6772009Z Completed 656.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6778727Z Completed 656.5 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6787108Z Completed 656.8 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6794740Z Completed 657.0 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6801651Z Completed 657.2 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.6809362Z Completed 657.5 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7277197Z Completed 657.8 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7285599Z Completed 658.0 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7294692Z Completed 658.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7300786Z Completed 658.5 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7307483Z Completed 658.8 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7325577Z Completed 659.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7337284Z Completed 659.2 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7347525Z Completed 659.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7352790Z Completed 659.8 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7366886Z Completed 660.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7371474Z Completed 660.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7393081Z Completed 660.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7402006Z Completed 660.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7423926Z Completed 661.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7430036Z Completed 661.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7441709Z Completed 661.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7467403Z Completed 661.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7474903Z Completed 662.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7477721Z Completed 662.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7490841Z Completed 662.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7493054Z Completed 662.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7502917Z Completed 663.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7512384Z Completed 663.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7519700Z Completed 663.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7527676Z Completed 663.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7535321Z Completed 664.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7541131Z Completed 664.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7547402Z Completed 664.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7553615Z Completed 664.8 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7628918Z Completed 665.0 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7654722Z Completed 665.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7658933Z Completed 665.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7672340Z Completed 665.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7677178Z Completed 666.0 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7687059Z Completed 666.2 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7695168Z Completed 666.5 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7704836Z Completed 666.8 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7715189Z Completed 667.0 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7723249Z Completed 667.2 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7731124Z Completed 667.5 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7747256Z Completed 667.8 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7765358Z Completed 668.0 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7769073Z Completed 668.2 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7787531Z Completed 668.5 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7798147Z Completed 668.8 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7805166Z Completed 669.0 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7821094Z Completed 669.2 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7835090Z Completed 669.5 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7841293Z Completed 669.8 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7882962Z Completed 670.0 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7906834Z Completed 670.2 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7910281Z Completed 670.5 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7953726Z Completed 670.8 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7956114Z Completed 671.0 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7966675Z Completed 671.2 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7986204Z Completed 671.5 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.7993234Z Completed 671.8 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8003579Z Completed 672.0 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8028583Z Completed 672.2 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8040771Z Completed 672.5 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8047473Z Completed 672.8 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8062250Z Completed 673.0 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8075649Z Completed 673.2 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8077751Z Completed 673.5 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8102164Z Completed 673.8 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8136567Z Completed 674.0 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8144380Z Completed 674.2 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8161750Z Completed 674.5 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8176729Z Completed 674.8 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8183118Z Completed 675.0 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8199944Z Completed 675.2 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8216874Z Completed 675.5 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8231054Z Completed 675.8 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8237645Z Completed 676.0 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8243300Z Completed 676.2 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8252489Z Completed 676.5 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8278861Z Completed 676.8 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8283386Z Completed 677.0 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8285455Z Completed 677.2 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8314596Z Completed 677.5 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8342459Z Completed 677.8 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8347840Z Completed 678.0 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8374287Z Completed 678.2 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8395562Z Completed 678.5 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8407262Z Completed 678.8 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8411374Z Completed 679.0 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8436774Z Completed 679.2 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8449419Z Completed 679.5 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8458958Z Completed 679.8 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8477378Z Completed 680.0 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8485819Z Completed 680.2 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8497452Z Completed 680.5 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8513769Z Completed 680.8 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8523940Z Completed 681.0 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8527253Z Completed 681.2 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8559633Z Completed 681.5 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8560344Z Completed 681.8 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8570097Z Completed 682.0 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8585543Z Completed 682.2 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8622130Z Completed 682.5 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8626803Z Completed 682.8 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8645451Z Completed 683.0 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8652918Z Completed 683.2 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8689137Z Completed 683.5 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8699311Z Completed 683.8 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8727407Z Completed 684.0 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8734391Z Completed 684.2 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8751990Z Completed 684.5 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8775411Z Completed 684.8 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8801740Z Completed 685.0 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8811089Z Completed 685.2 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8850337Z Completed 685.5 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8856149Z Completed 685.8 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8858122Z Completed 686.0 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8876928Z Completed 686.2 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8899700Z Completed 686.5 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8935160Z Completed 686.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8977015Z Completed 687.0 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8977787Z Completed 687.2 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8978465Z Completed 687.5 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.8999850Z Completed 687.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9018425Z Completed 688.0 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9045652Z Completed 688.2 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9059465Z Completed 688.5 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9074750Z Completed 688.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9091247Z Completed 689.0 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9111264Z Completed 689.2 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9137346Z Completed 689.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9139856Z Completed 689.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9167330Z Completed 690.0 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9202478Z Completed 690.2 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9252262Z Completed 690.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9259819Z Completed 690.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9261292Z Completed 691.0 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9269077Z Completed 691.2 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9276093Z Completed 691.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9293861Z Completed 691.8 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9334312Z Completed 692.0 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9338677Z Completed 692.2 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9346420Z Completed 692.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9381641Z Completed 692.8 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9399788Z Completed 693.0 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9426977Z Completed 693.2 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9441374Z Completed 693.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9463080Z Completed 693.8 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9488652Z Completed 694.0 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9491978Z Completed 694.2 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9494568Z Completed 694.5 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9517850Z Completed 694.8 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9527315Z Completed 695.0 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9579720Z Completed 695.2 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9592158Z Completed 695.5 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9606525Z Completed 695.8 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9618143Z Completed 696.0 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9621207Z Completed 696.2 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9630933Z Completed 696.5 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9661778Z Completed 696.8 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9663269Z Completed 697.0 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9702383Z Completed 697.2 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9721703Z Completed 697.5 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9741644Z Completed 697.8 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9751094Z Completed 698.0 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9791781Z Completed 698.2 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9793203Z Completed 698.5 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9799970Z Completed 698.8 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9816943Z Completed 699.0 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9817887Z Completed 699.2 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9858384Z Completed 699.5 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9890600Z Completed 699.8 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9915231Z Completed 700.0 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9919312Z Completed 700.2 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9920400Z Completed 700.5 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9921510Z Completed 700.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9957422Z Completed 701.0 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:18.9994654Z Completed 701.2 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0019448Z Completed 701.5 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0036937Z Completed 701.8 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0038503Z Completed 702.0 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0055972Z Completed 702.2 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0057224Z Completed 702.5 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0110614Z Completed 702.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0119229Z Completed 703.0 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0141536Z Completed 703.2 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0154817Z Completed 703.5 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0162007Z Completed 703.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0178723Z Completed 704.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0209641Z Completed 704.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0241421Z Completed 704.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0247412Z Completed 704.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0277218Z Completed 705.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0284414Z Completed 705.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0285585Z Completed 705.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0335295Z Completed 705.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0358500Z Completed 706.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0366939Z Completed 706.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0385786Z Completed 706.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0389912Z Completed 706.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0395353Z Completed 707.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0450412Z Completed 707.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0471166Z Completed 707.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0483256Z Completed 707.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0484132Z Completed 708.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0490169Z Completed 708.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0496478Z Completed 708.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0555686Z Completed 708.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0561082Z Completed 709.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0603857Z Completed 709.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0610043Z Completed 709.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0617473Z Completed 709.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0627723Z Completed 710.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0673778Z Completed 710.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0716186Z Completed 710.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0733237Z Completed 710.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0748097Z Completed 711.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0786215Z Completed 711.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0817822Z Completed 711.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0836508Z Completed 711.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0862032Z Completed 712.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0867736Z Completed 712.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0870447Z Completed 712.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0939371Z Completed 712.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0959623Z Completed 713.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0975833Z Completed 713.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0982517Z Completed 713.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.0987039Z Completed 713.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1044947Z Completed 714.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1079371Z Completed 714.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1104760Z Completed 714.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1116037Z Completed 714.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1154466Z Completed 715.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1157992Z Completed 715.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1167510Z Completed 715.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1231036Z Completed 715.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1238128Z Completed 716.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1266199Z Completed 716.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1305525Z Completed 716.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1326221Z Completed 716.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1343249Z Completed 717.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1348595Z Completed 717.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1354908Z Completed 717.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1399258Z Completed 717.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1424772Z Completed 718.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1451950Z Completed 718.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1454619Z Completed 718.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1489162Z Completed 718.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1490736Z Completed 719.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1506985Z Completed 719.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1538465Z Completed 719.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1545455Z Completed 719.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1579146Z Completed 720.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1581672Z Completed 720.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1611336Z Completed 720.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1630821Z Completed 720.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1636784Z Completed 721.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1643784Z Completed 721.2 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1651039Z Completed 721.5 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1661123Z Completed 721.8 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1675222Z Completed 722.0 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1723474Z Completed 722.2 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1802473Z Completed 722.5 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1839763Z Completed 722.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1931631Z Completed 723.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.1976222Z Completed 723.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2033738Z Completed 723.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2041584Z Completed 723.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2051034Z Completed 724.0 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2070283Z Completed 724.2 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2074421Z Completed 724.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2098819Z Completed 724.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2102602Z Completed 725.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2105455Z Completed 725.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2111580Z Completed 725.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2157144Z Completed 725.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2170289Z Completed 726.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2173357Z Completed 726.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2209468Z Completed 726.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2210830Z Completed 726.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2225884Z Completed 727.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2231786Z Completed 727.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2241663Z Completed 727.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2289867Z Completed 727.8 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2292983Z Completed 728.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2296113Z Completed 728.2 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2305938Z Completed 728.5 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2316590Z Completed 728.8 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2326285Z Completed 729.0 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2335530Z Completed 729.2 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2398866Z Completed 729.5 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2418729Z Completed 729.8 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2424658Z Completed 730.0 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2433691Z Completed 730.2 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2440601Z Completed 730.5 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2446897Z Completed 730.8 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2459110Z Completed 731.0 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2465201Z Completed 731.2 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2469439Z Completed 731.5 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2471544Z Completed 731.8 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2478407Z Completed 732.0 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2504050Z Completed 732.2 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2509195Z Completed 732.5 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2523726Z Completed 732.8 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2530816Z Completed 733.0 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2550264Z Completed 733.2 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2556440Z Completed 733.5 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2583972Z Completed 733.8 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2590276Z Completed 734.0 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2595866Z Completed 734.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2604331Z Completed 734.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2606215Z Completed 734.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2615330Z Completed 735.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2625865Z Completed 735.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2644614Z Completed 735.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2659634Z Completed 735.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2669395Z Completed 736.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2671185Z Completed 736.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2678235Z Completed 736.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2685114Z Completed 736.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2814322Z Completed 737.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2927706Z Completed 737.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2944046Z Completed 737.5 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2955679Z Completed 737.8 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2969528Z Completed 738.0 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.2980275Z Completed 738.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3025258Z Completed 738.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3026387Z Completed 738.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3034254Z Completed 739.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3042945Z Completed 739.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3056779Z Completed 739.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3069451Z Completed 739.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3092575Z Completed 740.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3110715Z Completed 740.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3120776Z Completed 740.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3145931Z Completed 740.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3158839Z Completed 741.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3194108Z Completed 741.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3209934Z Completed 741.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3217187Z Completed 741.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3224269Z Completed 742.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3238774Z Completed 742.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3344962Z Completed 742.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3350283Z Completed 742.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3357360Z Completed 743.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3366820Z Completed 743.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3373671Z Completed 743.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3380876Z Completed 743.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3390332Z Completed 744.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3399910Z Completed 744.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3423453Z Completed 744.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3440629Z Completed 744.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3504848Z Completed 745.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3517069Z Completed 745.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3527657Z Completed 745.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3537624Z Completed 745.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3549476Z Completed 746.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3556669Z Completed 746.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3609162Z Completed 746.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3615897Z Completed 746.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3622906Z Completed 747.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3628719Z Completed 747.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3856818Z Completed 747.5 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3868943Z Completed 747.8 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3891522Z Completed 748.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3921133Z Completed 748.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3930231Z Completed 748.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3937579Z Completed 748.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3965077Z Completed 749.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3967363Z Completed 749.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.3996639Z Completed 749.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4008799Z Completed 749.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4013180Z Completed 750.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4034407Z Completed 750.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4048516Z Completed 750.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4074629Z Completed 750.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4083578Z Completed 751.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4116005Z Completed 751.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4151513Z Completed 751.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4152776Z Completed 751.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4156457Z Completed 752.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4166241Z Completed 752.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4195347Z Completed 752.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4262502Z Completed 752.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4264580Z Completed 753.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4275232Z Completed 753.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4282144Z Completed 753.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4303088Z Completed 753.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4328837Z Completed 754.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4384830Z Completed 754.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4393919Z Completed 754.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4407275Z Completed 754.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4417329Z Completed 755.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4427133Z Completed 755.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4443426Z Completed 755.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4444394Z Completed 755.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4513694Z Completed 756.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4529202Z Completed 756.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4531205Z Completed 756.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4539232Z Completed 756.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4546888Z Completed 757.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4568049Z Completed 757.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4578940Z Completed 757.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4596301Z Completed 757.8 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4639287Z Completed 758.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4650767Z Completed 758.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4656930Z Completed 758.5 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4664350Z Completed 758.8 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4668755Z Completed 759.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4736604Z Completed 759.2 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4743914Z Completed 759.5 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4750350Z Completed 759.8 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4751455Z Completed 760.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4771154Z Completed 760.2 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4818034Z Completed 760.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4843981Z Completed 760.8 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4873685Z Completed 761.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4876172Z Completed 761.2 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4878845Z Completed 761.5 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4884638Z Completed 761.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4900578Z Completed 762.0 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4942997Z Completed 762.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.4985896Z Completed 762.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5006857Z Completed 762.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5014404Z Completed 763.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5041988Z Completed 763.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5043603Z Completed 763.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5065288Z Completed 763.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5095047Z Completed 764.0 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5117667Z Completed 764.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5129225Z Completed 764.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5146597Z Completed 764.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5162448Z Completed 765.0 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5183263Z Completed 765.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5210383Z Completed 765.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5224857Z Completed 765.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5254317Z Completed 766.0 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5259112Z Completed 766.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5264278Z Completed 766.5 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5285869Z Completed 766.8 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5328662Z Completed 767.0 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5356659Z Completed 767.2 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5377479Z Completed 767.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5387607Z Completed 767.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5409450Z Completed 768.0 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5410534Z Completed 768.2 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5419794Z Completed 768.5 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5421217Z Completed 768.8 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5466957Z Completed 769.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5496551Z Completed 769.2 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5513160Z Completed 769.5 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5525990Z Completed 769.8 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5554389Z Completed 770.0 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5577591Z Completed 770.2 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5580196Z Completed 770.5 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5591958Z Completed 770.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5611437Z Completed 771.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5650783Z Completed 771.2 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5671124Z Completed 771.5 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5672277Z Completed 771.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5692126Z Completed 772.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5700008Z Completed 772.2 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5741351Z Completed 772.5 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5771358Z Completed 772.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5791942Z Completed 773.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5793699Z Completed 773.2 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5810433Z Completed 773.5 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5826495Z Completed 773.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5838988Z Completed 774.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5846463Z Completed 774.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5919915Z Completed 774.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5946601Z Completed 774.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5966812Z Completed 775.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.5983257Z Completed 775.2 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6025346Z Completed 775.5 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6029000Z Completed 775.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6035540Z Completed 776.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6037177Z Completed 776.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6056818Z Completed 776.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6081028Z Completed 776.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6091974Z Completed 777.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6124135Z Completed 777.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6130824Z Completed 777.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6145989Z Completed 777.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6165248Z Completed 778.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6183925Z Completed 778.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6195563Z Completed 778.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6242091Z Completed 778.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6243385Z Completed 779.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6249181Z Completed 779.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6280939Z Completed 779.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6281831Z Completed 779.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6298895Z Completed 780.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6362603Z Completed 780.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6367830Z Completed 780.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6394416Z Completed 780.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6419077Z Completed 781.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6437459Z Completed 781.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6443331Z Completed 781.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6481253Z Completed 781.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6504393Z Completed 782.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6572280Z Completed 782.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6600589Z Completed 782.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6612175Z Completed 782.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6617482Z Completed 783.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6648732Z Completed 783.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6674957Z Completed 783.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6680330Z Completed 783.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6703929Z Completed 784.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6759170Z Completed 784.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6782403Z Completed 784.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6806767Z Completed 784.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6807912Z Completed 785.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6818716Z Completed 785.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6821227Z Completed 785.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6859703Z Completed 785.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6903653Z Completed 786.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6911542Z Completed 786.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6915592Z Completed 786.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6936942Z Completed 786.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6943832Z Completed 787.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6945248Z Completed 787.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.6999828Z Completed 787.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7006243Z Completed 787.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7020728Z Completed 788.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7022954Z Completed 788.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7059400Z Completed 788.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7070709Z Completed 788.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7112367Z Completed 789.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7113632Z Completed 789.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7126571Z Completed 789.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7141957Z Completed 789.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7189057Z Completed 790.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7190285Z Completed 790.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7237038Z Completed 790.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7250953Z Completed 790.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7264971Z Completed 791.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7336264Z Completed 791.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7338062Z Completed 791.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7349099Z Completed 791.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7349988Z Completed 792.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7362960Z Completed 792.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7409677Z Completed 792.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7459541Z Completed 792.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7464058Z Completed 793.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7475908Z Completed 793.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7479481Z Completed 793.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7505211Z Completed 793.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7564766Z Completed 794.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7592100Z Completed 794.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7621462Z Completed 794.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7629807Z Completed 794.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7648864Z Completed 795.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7660176Z Completed 795.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7703687Z Completed 795.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7704886Z Completed 795.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7705600Z Completed 796.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7751666Z Completed 796.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7756804Z Completed 796.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7768979Z Completed 796.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7781522Z Completed 797.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7831039Z Completed 797.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7842284Z Completed 797.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7847963Z Completed 797.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7875767Z Completed 798.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7876981Z Completed 798.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7909701Z Completed 798.5 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7933769Z Completed 798.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7963328Z Completed 799.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.7974277Z Completed 799.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8006065Z Completed 799.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8010365Z Completed 799.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8035805Z Completed 800.0 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8041932Z Completed 800.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8062431Z Completed 800.5 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8063679Z Completed 800.8 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8088697Z Completed 801.0 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8124074Z Completed 801.2 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8136012Z Completed 801.5 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8168181Z Completed 801.8 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8169166Z Completed 802.0 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8175454Z Completed 802.2 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8204155Z Completed 802.5 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8227515Z Completed 802.8 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8228871Z Completed 803.0 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8245000Z Completed 803.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8280293Z Completed 803.5 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8281472Z Completed 803.8 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8295917Z Completed 804.0 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8328360Z Completed 804.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8346028Z Completed 804.5 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8352345Z Completed 804.8 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8361637Z Completed 805.0 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8404260Z Completed 805.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8409939Z Completed 805.5 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8434564Z Completed 805.8 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8441357Z Completed 806.0 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8444771Z Completed 806.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8464784Z Completed 806.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8505676Z Completed 806.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8560185Z Completed 807.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8561307Z Completed 807.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8574253Z Completed 807.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8577075Z Completed 807.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8599243Z Completed 808.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8605673Z Completed 808.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8662216Z Completed 808.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8725783Z Completed 808.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8731433Z Completed 809.0 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8752258Z Completed 809.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8764842Z Completed 809.5 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8769676Z Completed 809.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8778283Z Completed 810.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8825614Z Completed 810.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8839416Z Completed 810.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8871513Z Completed 810.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8877433Z Completed 811.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8879006Z Completed 811.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8909679Z Completed 811.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8955091Z Completed 811.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8963649Z Completed 812.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8966441Z Completed 812.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8970449Z Completed 812.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8978737Z Completed 812.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.8990476Z Completed 813.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9053471Z Completed 813.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9058118Z Completed 813.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9074813Z Completed 813.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9102068Z Completed 814.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9126269Z Completed 814.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9127896Z Completed 814.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9158544Z Completed 814.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9165654Z Completed 815.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9168452Z Completed 815.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9221535Z Completed 815.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9230261Z Completed 815.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9263207Z Completed 816.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9269284Z Completed 816.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9277475Z Completed 816.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9285782Z Completed 816.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9302125Z Completed 817.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9328444Z Completed 817.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9334400Z Completed 817.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9357230Z Completed 817.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9367500Z Completed 818.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9377128Z Completed 818.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9381732Z Completed 818.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9390983Z Completed 818.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9421141Z Completed 819.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9444798Z Completed 819.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9506156Z Completed 819.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9516730Z Completed 819.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9518920Z Completed 820.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9535172Z Completed 820.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9541278Z Completed 820.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9551545Z Completed 820.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9574711Z Completed 821.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9695827Z Completed 821.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9704051Z Completed 821.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9706567Z Completed 821.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9720523Z Completed 822.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9789304Z Completed 822.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9816023Z Completed 822.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9835707Z Completed 822.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9847927Z Completed 823.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9916420Z Completed 823.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9926504Z Completed 823.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9929449Z Completed 823.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9970462Z Completed 824.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:19.9997843Z Completed 824.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0047354Z Completed 824.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0048671Z Completed 824.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0052103Z Completed 825.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0113728Z Completed 825.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0136204Z Completed 825.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0170087Z Completed 825.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0188573Z Completed 826.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0208158Z Completed 826.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0221168Z Completed 826.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0242997Z Completed 826.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0253505Z Completed 827.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0268151Z Completed 827.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0278808Z Completed 827.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0306600Z Completed 827.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0318241Z Completed 828.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0330074Z Completed 828.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0333229Z Completed 828.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0346244Z Completed 828.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0373853Z Completed 829.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0390015Z Completed 829.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0412036Z Completed 829.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0442297Z Completed 829.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0462388Z Completed 830.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0494230Z Completed 830.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0528404Z Completed 830.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0533392Z Completed 830.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0535226Z Completed 831.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0558254Z Completed 831.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0577612Z Completed 831.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0583934Z Completed 831.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0588082Z Completed 832.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0637794Z Completed 832.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0644959Z Completed 832.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0655063Z Completed 832.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0668159Z Completed 833.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0700021Z Completed 833.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0707009Z Completed 833.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0782943Z Completed 833.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0787041Z Completed 834.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0788475Z Completed 834.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0810176Z Completed 834.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0834445Z Completed 834.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0881117Z Completed 835.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0890991Z Completed 835.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0896162Z Completed 835.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0906034Z Completed 835.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0918279Z Completed 836.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0967933Z Completed 836.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0996724Z Completed 836.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.0997722Z Completed 836.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1001469Z Completed 837.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1004428Z Completed 837.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1010452Z Completed 837.5 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1066988Z Completed 837.8 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1101290Z Completed 838.0 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1111858Z Completed 838.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1119807Z Completed 838.5 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1124992Z Completed 838.8 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1130830Z Completed 839.0 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1165848Z Completed 839.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1186428Z Completed 839.5 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1202420Z Completed 839.8 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1212976Z Completed 840.0 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1250310Z Completed 840.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1289827Z Completed 840.5 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1307685Z Completed 840.8 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1313424Z Completed 841.0 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1320700Z Completed 841.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1346908Z Completed 841.5 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1360689Z Completed 841.8 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1375738Z Completed 842.0 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1404642Z Completed 842.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1414548Z Completed 842.5 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1415976Z Completed 842.8 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1477159Z Completed 843.0 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1481734Z Completed 843.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1485196Z Completed 843.5 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1510366Z Completed 843.8 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1521114Z Completed 844.0 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1530641Z Completed 844.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1586383Z Completed 844.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1588498Z Completed 844.8 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1611002Z Completed 845.0 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1630428Z Completed 845.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1635010Z Completed 845.5 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1645025Z Completed 845.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1688815Z Completed 846.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1704697Z Completed 846.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1727618Z Completed 846.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1731257Z Completed 846.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1756548Z Completed 847.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1778858Z Completed 847.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1807999Z Completed 847.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1827350Z Completed 847.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1839026Z Completed 848.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1844311Z Completed 848.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1879789Z Completed 848.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1896782Z Completed 848.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1933446Z Completed 849.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1954476Z Completed 849.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1960572Z Completed 849.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1975823Z Completed 849.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.1997565Z Completed 850.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2024079Z Completed 850.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2055918Z Completed 850.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2097841Z Completed 850.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2111181Z Completed 851.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2120641Z Completed 851.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2129259Z Completed 851.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2146074Z Completed 851.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2152006Z Completed 852.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2219118Z Completed 852.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2230929Z Completed 852.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2232048Z Completed 852.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2233422Z Completed 853.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2241144Z Completed 853.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2267066Z Completed 853.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2331500Z Completed 853.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2332789Z Completed 854.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2335546Z Completed 854.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2342971Z Completed 854.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2368087Z Completed 854.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2376456Z Completed 855.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2426743Z Completed 855.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2456521Z Completed 855.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2460666Z Completed 855.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2463249Z Completed 856.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2515104Z Completed 856.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2528205Z Completed 856.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2562318Z Completed 856.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2566611Z Completed 857.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2590660Z Completed 857.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2595860Z Completed 857.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2646970Z Completed 857.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2653004Z Completed 858.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2696553Z Completed 858.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2721721Z Completed 858.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2744620Z Completed 858.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2756787Z Completed 859.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2772488Z Completed 859.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2773829Z Completed 859.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2827478Z Completed 859.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2837986Z Completed 860.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2847139Z Completed 860.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2891488Z Completed 860.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2893073Z Completed 860.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2897374Z Completed 861.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2979751Z Completed 861.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.2984675Z Completed 861.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3000257Z Completed 861.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3009194Z Completed 862.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3044370Z Completed 862.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3068031Z Completed 862.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3105274Z Completed 862.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3151257Z Completed 863.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3164729Z Completed 863.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3165967Z Completed 863.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3214474Z Completed 863.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3242321Z Completed 864.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3243663Z Completed 864.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3331932Z Completed 864.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3333309Z Completed 864.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3339465Z Completed 865.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3360630Z Completed 865.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3390279Z Completed 865.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3402231Z Completed 865.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3445065Z Completed 866.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3467797Z Completed 866.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3471792Z Completed 866.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3540009Z Completed 866.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3563075Z Completed 867.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3564101Z Completed 867.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3564776Z Completed 867.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3601580Z Completed 867.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3620086Z Completed 868.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3655352Z Completed 868.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3657983Z Completed 868.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3663559Z Completed 868.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3689821Z Completed 869.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3715317Z Completed 869.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3753284Z Completed 869.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3798083Z Completed 869.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3810066Z Completed 870.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3815084Z Completed 870.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3816960Z Completed 870.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3845925Z Completed 870.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3872312Z Completed 871.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3895614Z Completed 871.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3913082Z Completed 871.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3941018Z Completed 871.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3947542Z Completed 872.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.3949077Z Completed 872.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4008045Z Completed 872.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4011832Z Completed 872.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4049858Z Completed 873.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4051095Z Completed 873.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4076961Z Completed 873.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4080584Z Completed 873.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4085131Z Completed 874.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4142073Z Completed 874.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4159888Z Completed 874.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4167069Z Completed 874.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4190420Z Completed 875.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4193088Z Completed 875.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4197580Z Completed 875.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4240989Z Completed 875.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4260524Z Completed 876.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4273228Z Completed 876.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4275810Z Completed 876.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4303310Z Completed 876.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4324927Z Completed 877.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4337003Z Completed 877.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4345644Z Completed 877.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4375364Z Completed 877.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4393467Z Completed 878.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4440631Z Completed 878.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4448206Z Completed 878.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4473648Z Completed 878.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4487545Z Completed 879.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4506694Z Completed 879.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4535948Z Completed 879.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4582048Z Completed 879.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4591043Z Completed 880.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4606362Z Completed 880.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4615039Z Completed 880.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4621691Z Completed 880.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4626860Z Completed 881.0 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4676968Z Completed 881.2 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4704699Z Completed 881.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4717504Z Completed 881.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4735855Z Completed 882.0 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4742793Z Completed 882.2 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4759815Z Completed 882.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4760992Z Completed 882.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4789142Z Completed 883.0 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4842075Z Completed 883.2 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4857917Z Completed 883.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4880220Z Completed 883.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4884404Z Completed 884.0 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4885819Z Completed 884.2 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4891676Z Completed 884.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4903537Z Completed 884.8 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4935605Z Completed 885.0 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4988733Z Completed 885.2 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.4998365Z Completed 885.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5002214Z Completed 885.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5015990Z Completed 886.0 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5025259Z Completed 886.2 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5043468Z Completed 886.5 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5047201Z Completed 886.8 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5059768Z Completed 887.0 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5138306Z Completed 887.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5150402Z Completed 887.5 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5167805Z Completed 887.8 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5168821Z Completed 888.0 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5174953Z Completed 888.2 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5183334Z Completed 888.5 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5184698Z Completed 888.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5185454Z Completed 889.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5252035Z Completed 889.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5273876Z Completed 889.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5301351Z Completed 889.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5332315Z Completed 890.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5333677Z Completed 890.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5334738Z Completed 890.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5335411Z Completed 890.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5342467Z Completed 891.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5397706Z Completed 891.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5426802Z Completed 891.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5445063Z Completed 891.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5462112Z Completed 892.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5474400Z Completed 892.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5486049Z Completed 892.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5488986Z Completed 892.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5501995Z Completed 893.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5506403Z Completed 893.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5583652Z Completed 893.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5599235Z Completed 893.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5600875Z Completed 894.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5602587Z Completed 894.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5604055Z Completed 894.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5645334Z Completed 894.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5646759Z Completed 895.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5680249Z Completed 895.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5720251Z Completed 895.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5739430Z Completed 895.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5740603Z Completed 896.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5793894Z Completed 896.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5796693Z Completed 896.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5807383Z Completed 896.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5845055Z Completed 897.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5846134Z Completed 897.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5853051Z Completed 897.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5970794Z Completed 897.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5978480Z Completed 898.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5983669Z Completed 898.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.5994300Z Completed 898.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6003323Z Completed 898.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6046752Z Completed 899.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6114138Z Completed 899.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6115571Z Completed 899.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6119603Z Completed 899.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6121753Z Completed 900.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6133209Z Completed 900.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6170163Z Completed 900.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6226057Z Completed 900.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6227180Z Completed 901.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6238392Z Completed 901.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6243636Z Completed 901.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6250636Z Completed 901.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6260606Z Completed 902.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6270606Z Completed 902.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6310003Z Completed 902.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6316702Z Completed 902.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6335996Z Completed 903.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6349919Z Completed 903.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6379492Z Completed 903.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6386443Z Completed 903.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6395982Z Completed 904.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6398255Z Completed 904.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6412520Z Completed 904.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6454928Z Completed 904.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6463846Z Completed 905.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6509272Z Completed 905.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6510983Z Completed 905.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6531284Z Completed 905.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6550516Z Completed 906.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6570740Z Completed 906.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6579393Z Completed 906.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6581929Z Completed 906.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6597464Z Completed 907.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6611041Z Completed 907.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6662778Z Completed 907.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6692247Z Completed 907.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6736534Z Completed 908.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6772776Z Completed 908.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6807269Z Completed 908.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6823427Z Completed 908.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6957480Z Completed 909.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6964530Z Completed 909.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6990552Z Completed 909.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.6991640Z Completed 909.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7051841Z Completed 910.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7082337Z Completed 910.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7117521Z Completed 910.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7157729Z Completed 910.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7200448Z Completed 911.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7208085Z Completed 911.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7234611Z Completed 911.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7247167Z Completed 911.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7269400Z Completed 912.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7302550Z Completed 912.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7349992Z Completed 912.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7361462Z Completed 912.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7377142Z Completed 913.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7399586Z Completed 913.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7428869Z Completed 913.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7446359Z Completed 913.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7507773Z Completed 914.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7513798Z Completed 914.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7524814Z Completed 914.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7551913Z Completed 914.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7553384Z Completed 915.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7562155Z Completed 915.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7576097Z Completed 915.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7619903Z Completed 915.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7636438Z Completed 916.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7650151Z Completed 916.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7671458Z Completed 916.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7695253Z Completed 916.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7699175Z Completed 917.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7735468Z Completed 917.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7781999Z Completed 917.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7783890Z Completed 917.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7797754Z Completed 918.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7808136Z Completed 918.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7813350Z Completed 918.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7827923Z Completed 918.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7856787Z Completed 919.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7877695Z Completed 919.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7908573Z Completed 919.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7932563Z Completed 919.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7940806Z Completed 920.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7941864Z Completed 920.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7959192Z Completed 920.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.7966713Z Completed 920.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8002992Z Completed 921.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8046821Z Completed 921.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8053658Z Completed 921.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8059297Z Completed 921.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8060528Z Completed 922.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8075994Z Completed 922.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8088428Z Completed 922.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8159947Z Completed 922.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8162297Z Completed 923.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8175814Z Completed 923.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8177071Z Completed 923.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8190553Z Completed 923.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8217574Z Completed 924.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8269804Z Completed 924.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8277348Z Completed 924.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8284048Z Completed 924.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8301249Z Completed 925.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8329441Z Completed 925.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8370148Z Completed 925.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8371216Z Completed 925.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8385656Z Completed 926.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8393922Z Completed 926.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8403281Z Completed 926.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8460290Z Completed 926.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8481000Z Completed 927.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8487927Z Completed 927.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8506645Z Completed 927.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8524009Z Completed 927.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8558888Z Completed 928.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8562915Z Completed 928.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8564227Z Completed 928.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8580294Z Completed 928.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8587187Z Completed 929.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8591871Z Completed 929.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8616793Z Completed 929.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8624176Z Completed 929.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8628443Z Completed 930.0 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8641975Z Completed 930.2 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8655020Z Completed 930.5 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8660754Z Completed 930.8 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8686520Z Completed 931.0 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8700062Z Completed 931.2 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8712041Z Completed 931.5 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8713754Z Completed 931.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8746781Z Completed 932.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8754354Z Completed 932.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8772236Z Completed 932.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8780560Z Completed 932.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8800640Z Completed 933.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8861669Z Completed 933.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8874993Z Completed 933.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8909558Z Completed 933.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8914657Z Completed 934.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8915599Z Completed 934.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8958655Z Completed 934.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.8996959Z Completed 934.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9015160Z Completed 935.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9027372Z Completed 935.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9065685Z Completed 935.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9066992Z Completed 935.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9081218Z Completed 936.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9106012Z Completed 936.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9122143Z Completed 936.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9149939Z Completed 936.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9176172Z Completed 937.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9191429Z Completed 937.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9235792Z Completed 937.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9243429Z Completed 937.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9263161Z Completed 938.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9264316Z Completed 938.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9281401Z Completed 938.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9316466Z Completed 938.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9348994Z Completed 939.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9359976Z Completed 939.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9369992Z Completed 939.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9386243Z Completed 939.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9393192Z Completed 940.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9441336Z Completed 940.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9480042Z Completed 940.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9489933Z Completed 940.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9495534Z Completed 941.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9500706Z Completed 941.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9574187Z Completed 941.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9597975Z Completed 941.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9623333Z Completed 942.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9624496Z Completed 942.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9654368Z Completed 942.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9690348Z Completed 942.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9717217Z Completed 943.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9756167Z Completed 943.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9805212Z Completed 943.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9806353Z Completed 943.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9841059Z Completed 944.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9846070Z Completed 944.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9847165Z Completed 944.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9848224Z Completed 944.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9897083Z Completed 945.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9899048Z Completed 945.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9900836Z Completed 945.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9906225Z Completed 945.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9962337Z Completed 946.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9979941Z Completed 946.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:20.9986163Z Completed 946.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0018769Z Completed 946.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0030457Z Completed 947.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0031608Z Completed 947.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0054219Z Completed 947.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0079108Z Completed 947.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0113862Z Completed 948.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0124942Z Completed 948.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0126334Z Completed 948.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0132912Z Completed 948.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0185184Z Completed 949.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0196479Z Completed 949.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0229105Z Completed 949.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0248404Z Completed 949.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0260860Z Completed 950.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0265849Z Completed 950.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0317050Z Completed 950.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0351607Z Completed 950.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0353245Z Completed 951.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0374073Z Completed 951.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0375375Z Completed 951.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0380225Z Completed 951.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0406072Z Completed 952.0 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0435794Z Completed 952.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0458146Z Completed 952.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0481461Z Completed 952.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0488102Z Completed 953.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0495480Z Completed 953.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0505013Z Completed 953.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0546423Z Completed 953.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0586148Z Completed 954.0 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0587314Z Completed 954.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0596206Z Completed 954.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0613894Z Completed 954.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0629734Z Completed 955.0 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0641606Z Completed 955.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0684998Z Completed 955.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0686487Z Completed 955.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0709100Z Completed 956.0 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0720356Z Completed 956.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0750744Z Completed 956.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0761106Z Completed 956.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0772334Z Completed 957.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0778621Z Completed 957.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0824157Z Completed 957.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0825238Z Completed 957.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0856743Z Completed 958.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0860368Z Completed 958.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0866963Z Completed 958.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0894046Z Completed 958.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0908149Z Completed 959.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0936270Z Completed 959.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0943686Z Completed 959.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0944751Z Completed 959.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.0993543Z Completed 960.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1019571Z Completed 960.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1020376Z Completed 960.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1052523Z Completed 960.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1066940Z Completed 961.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1116155Z Completed 961.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1123724Z Completed 961.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1148174Z Completed 961.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1174547Z Completed 962.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1182317Z Completed 962.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1236062Z Completed 962.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1237172Z Completed 962.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1238542Z Completed 963.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1242457Z Completed 963.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1253975Z Completed 963.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1281703Z Completed 963.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1314611Z Completed 964.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1345268Z Completed 964.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1370215Z Completed 964.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1375045Z Completed 964.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1381634Z Completed 965.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1414017Z Completed 965.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1415444Z Completed 965.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1449475Z Completed 965.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1463530Z Completed 966.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1470575Z Completed 966.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1517388Z Completed 966.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1543607Z Completed 966.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1544670Z Completed 967.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1545376Z Completed 967.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1552867Z Completed 967.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1592933Z Completed 967.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1616413Z Completed 968.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1643663Z Completed 968.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1667383Z Completed 968.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1708317Z Completed 968.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1716697Z Completed 969.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1722016Z Completed 969.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1744871Z Completed 969.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1807931Z Completed 969.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1836932Z Completed 970.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1841527Z Completed 970.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1882066Z Completed 970.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1893473Z Completed 970.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1916015Z Completed 971.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1944487Z Completed 971.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1950688Z Completed 971.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1964850Z Completed 971.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.1999820Z Completed 972.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2050499Z Completed 972.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2062386Z Completed 972.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2074099Z Completed 972.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2105932Z Completed 973.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2120348Z Completed 973.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2133616Z Completed 973.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2138758Z Completed 973.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2156289Z Completed 974.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2188910Z Completed 974.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2218355Z Completed 974.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2254553Z Completed 974.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2255704Z Completed 975.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2282958Z Completed 975.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2309158Z Completed 975.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2325768Z Completed 975.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2336383Z Completed 976.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2369810Z Completed 976.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2382294Z Completed 976.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2402439Z Completed 976.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2431870Z Completed 977.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2448076Z Completed 977.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2494961Z Completed 977.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2516190Z Completed 977.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2540924Z Completed 978.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2554462Z Completed 978.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2576089Z Completed 978.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2613488Z Completed 978.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2639444Z Completed 979.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2647701Z Completed 979.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2677491Z Completed 979.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2685282Z Completed 979.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2707511Z Completed 980.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2752328Z Completed 980.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2762383Z Completed 980.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2781201Z Completed 980.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2808567Z Completed 981.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2827258Z Completed 981.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2853517Z Completed 981.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2870615Z Completed 981.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2878205Z Completed 982.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2879278Z Completed 982.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2930756Z Completed 982.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2939474Z Completed 982.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2943209Z Completed 983.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2954400Z Completed 983.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.2988382Z Completed 983.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3018038Z Completed 983.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3024422Z Completed 984.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3027405Z Completed 984.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3036043Z Completed 984.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3082467Z Completed 984.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3106923Z Completed 985.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3119687Z Completed 985.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3120745Z Completed 985.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3130653Z Completed 985.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3184918Z Completed 986.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3190729Z Completed 986.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3196507Z Completed 986.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3204913Z Completed 986.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3241676Z Completed 987.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3260010Z Completed 987.2 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3284500Z Completed 987.5 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3292558Z Completed 987.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3299028Z Completed 988.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3360250Z Completed 988.2 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3367793Z Completed 988.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3370935Z Completed 988.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3375361Z Completed 989.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3383203Z Completed 989.2 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3451394Z Completed 989.5 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3469195Z Completed 989.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3471782Z Completed 990.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3495250Z Completed 990.2 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3496535Z Completed 990.5 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3514057Z Completed 990.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3515441Z Completed 991.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3518614Z Completed 991.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3529387Z Completed 991.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3556389Z Completed 991.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3586247Z Completed 992.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3597323Z Completed 992.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3617553Z Completed 992.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3627175Z Completed 992.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3687479Z Completed 993.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3705553Z Completed 993.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3724540Z Completed 993.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3735446Z Completed 993.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3760207Z Completed 994.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3763361Z Completed 994.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3810697Z Completed 994.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3840316Z Completed 994.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3875918Z Completed 995.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3903512Z Completed 995.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3926365Z Completed 995.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3956443Z Completed 995.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3962068Z Completed 996.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.3968241Z Completed 996.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4009309Z Completed 996.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4019129Z Completed 996.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4026249Z Completed 997.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4044262Z Completed 997.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4055231Z Completed 997.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4101902Z Completed 997.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4129237Z Completed 998.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4145922Z Completed 998.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4153676Z Completed 998.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4178800Z Completed 998.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4213737Z Completed 999.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4246558Z Completed 999.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4267433Z Completed 999.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4283395Z Completed 999.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4295257Z Completed 1000.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4317746Z Completed 1000.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4318963Z Completed 1000.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4391362Z Completed 1000.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4392986Z Completed 1001.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4400825Z Completed 1001.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4404242Z Completed 1001.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4409747Z Completed 1001.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4457413Z Completed 1002.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4502265Z Completed 1002.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4503814Z Completed 1002.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4512833Z Completed 1002.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4519880Z Completed 1003.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4523140Z Completed 1003.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4586022Z Completed 1003.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4607127Z Completed 1003.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4622594Z Completed 1004.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4637038Z Completed 1004.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4640805Z Completed 1004.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4653148Z Completed 1004.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4690918Z Completed 1005.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4705244Z Completed 1005.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4756602Z Completed 1005.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4757954Z Completed 1005.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4776033Z Completed 1006.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4779285Z Completed 1006.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4813598Z Completed 1006.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4823787Z Completed 1006.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4837034Z Completed 1007.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4877706Z Completed 1007.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4879841Z Completed 1007.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4923710Z Completed 1007.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4930871Z Completed 1008.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4935718Z Completed 1008.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.4989990Z Completed 1008.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5000604Z Completed 1008.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5002151Z Completed 1009.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5012270Z Completed 1009.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5039102Z Completed 1009.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5049001Z Completed 1009.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5063991Z Completed 1010.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5073714Z Completed 1010.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5125055Z Completed 1010.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5137558Z Completed 1010.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5161275Z Completed 1011.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5162992Z Completed 1011.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5190525Z Completed 1011.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5195964Z Completed 1011.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5228320Z Completed 1012.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5242121Z Completed 1012.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5261990Z Completed 1012.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5270424Z Completed 1012.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5307206Z Completed 1013.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5331369Z Completed 1013.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5357044Z Completed 1013.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5397248Z Completed 1013.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5423594Z Completed 1014.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5426258Z Completed 1014.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5443563Z Completed 1014.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5473269Z Completed 1014.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5478167Z Completed 1015.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5488408Z Completed 1015.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5547905Z Completed 1015.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5549583Z Completed 1015.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5574408Z Completed 1016.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5596867Z Completed 1016.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5600126Z Completed 1016.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5608666Z Completed 1016.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5653698Z Completed 1017.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5655177Z Completed 1017.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5685702Z Completed 1017.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5720530Z Completed 1017.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5745951Z Completed 1018.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5746849Z Completed 1018.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5754894Z Completed 1018.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5780260Z Completed 1018.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5815225Z Completed 1019.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5837757Z Completed 1019.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5840274Z Completed 1019.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5862435Z Completed 1019.8 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5881199Z Completed 1020.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5887321Z Completed 1020.2 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5933384Z Completed 1020.5 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5959348Z Completed 1020.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5960701Z Completed 1021.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5963008Z Completed 1021.2 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.5994384Z Completed 1021.5 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6037446Z Completed 1021.8 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6064698Z Completed 1022.0 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6075136Z Completed 1022.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6091352Z Completed 1022.5 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6108584Z Completed 1022.8 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6147336Z Completed 1023.0 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6170189Z Completed 1023.2 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6230199Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6249108Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6295138Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6296360Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6297508Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6306199Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6360738Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6368089Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6386305Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6476000Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6518982Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6524812Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6530971Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6552520Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6585013Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6586349Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6639441Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6640498Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6649923Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6670367Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6690918Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6694386Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6706584Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6743464Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6747681Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6785551Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6803113Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6815537Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6830580Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6859103Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6862794Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6904601Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6906267Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6907758Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6942146Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6972387Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6980601Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.6994423Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7023622Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7035313Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7056683Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7086737Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7095246Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7108910Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7135680Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7151222Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7184425Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7193495Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7194462Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7229567Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7237295Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7238683Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7274387Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7294898Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7316145Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7321463Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7342316Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7343508Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7362364Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7414721Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7423683Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7440572Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7459713Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7466232Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7479410Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7530562Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7540019Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7547140Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7564072Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7586964Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7595132Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7669771Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7679019Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7680493Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7681450Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7700560Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7724567Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7746841Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7788523Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7789657Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7800742Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7802018Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7867207Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7875539Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7929077Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7943999Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7946183Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7947822Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.7989652Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8047290Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8062878Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8076733Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8097343Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8099576Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8143339Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8168314Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8192325Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8198223Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8203435Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8228389Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8230874Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8279951Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8299081Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8302601Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8306102Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8322186Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8331955Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8399534Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8400480Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8429098Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8430128Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8431621Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8438484Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8463959Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8518205Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8531033Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8532240Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8538746Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8561844Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8578041Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8614890Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8646863Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8648230Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8659980Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8669334Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8684189Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8688597Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8717253Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8764215Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8792094Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8803232Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8806227Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8811576Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8828047Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8863066Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8870409Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8931037Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8943286Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8945258Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8949864Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.8969541Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9008086Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9009458Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9044547Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9046921Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9111087Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9115344Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9161837Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9217053Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9218237Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9269020Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9273718Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9294832Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9304068Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9350764Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9363229Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9376956Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9403837Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9427309Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9450377Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9469579Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9482053Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9483822Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9515881Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9548072Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9554898Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9578515Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9583387Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9610698Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9624317Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9647513Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9667885Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9677539Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9751047Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9766922Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9776975Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9790447Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9793140Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9845407Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9861286Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9864952Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9871409Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9883120Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9946958Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9954100Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9955588Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9956427Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:21.9990078Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0024158Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0049385Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0052945Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0062087Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0068364Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0133915Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0155706Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0171679Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0173176Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0190761Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0241716Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0289157Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0295932Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0300019Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0319695Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0357714Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0363853Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0399841Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0456290Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0541729Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0551423Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0566328Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0570296Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0579919Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0626734Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0667062Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0678414Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0680810Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0691262Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0701879Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0768149Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0785433Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0790825Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0805751Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0825729Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0835717Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0888841Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0912457Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0950863Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0951907Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0953362Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.0989255Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1020511Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1031600Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1053595Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1095862Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1097118Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1136011Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1141776Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1170010Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1173222Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1197028Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1227385Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1245290Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1248842Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1269986Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1302061Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1307735Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1337121Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1351957Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1361684Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1389200Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1443381Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1453635Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1457548Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1502559Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1506123Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1531970Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1541738Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1598654Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1627804Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1659351Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1688105Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1717240Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1733985Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1738927Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1770576Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1773414Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1776078Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1813611Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1834254Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1838842Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1872037Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1885179Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1893585Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1927043Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1949065Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1950322Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1980116Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.1988020Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2012788Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2043050Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2046792Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2067660Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2086215Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2113473Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2150695Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2170564Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2181458Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2194077Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2212560Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2214403Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2259781Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2268993Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2273026Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2300920Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2325047Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2335681Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2373275Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2391840Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2397657Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2416397Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2426247Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2439742Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2474143Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2492005Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2512316Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2519287Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2529959Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2554213Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2572597Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2615841Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2637493Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2651144Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2655814Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2681663Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2723980Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2777389Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2778807Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2794300Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2816488Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2826460Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2843330Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2857785Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2902407Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2916994Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2923623Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2951444Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.2960577Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3010995Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3027992Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3065270Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3098337Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3102597Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3148510Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3191418Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3193390Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3258107Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3272815Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3330422Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3354065Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3379771Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3381379Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3395337Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3425432Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3444571Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3470055Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3481888Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3514401Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3519619Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3538738Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3539885Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3569784Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3587481Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3624252Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3632191Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3633429Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3652377Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3685544Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3713658Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3717927Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3739702Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3746136Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3747032Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3795847Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3830014Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3847811Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3849190Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3858747Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3869194Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3920571Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3944996Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3948633Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3977864Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3978729Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.3979653Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4032829Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4056099Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4059365Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4090429Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4094856Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4104891Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4112872Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4169413Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4181485Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4186330Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4198143Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4204092Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4249660Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4261460Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4288918Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4324553Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4338725Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4339846Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4352369Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4376071Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4393465Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4424569Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4439489Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4452908Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4502854Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4515177Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4523145Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4524564Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4536316Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4587087Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4593650Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4597260Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4606259Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4637176Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4661513Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4667868Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4680442Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4749201Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4760263Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4775071Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4785523Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4793528Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4805259Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4872612Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4881753Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4900173Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4922608Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4945450Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4953480Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.4967530Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5021906Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5025366Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5042315Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5043810Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5065607Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5095023Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5102355Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5137200Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5138551Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5160491Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5164789Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5224289Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5225667Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5243265Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5246617Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5260434Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5262780Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5310260Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5353628Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5373704Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5374972Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5404658Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5407259Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5408615Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5457139Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5471402Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5510385Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5521087Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5532033Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5551452Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5557222Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5569997Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5591807Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5662473Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5673044Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5701887Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5702964Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5753513Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5754877Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5755792Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5821664Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5849030Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5860430Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5886846Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5889147Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5910682Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.5912360Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6035674Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6042084Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6049529Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6057816Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6067094Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6083598Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6148622Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6191611Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6192969Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6194264Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6209772Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6222313Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6253628Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6296130Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6304552Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6310118Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6348695Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6353276Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6367453Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6380002Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6426721Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6427911Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6448570Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6463945Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6477169Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6507124Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6538169Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6539118Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6561056Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6575618Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6608313Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6631300Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6638989Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6661504Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6683221Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6684335Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6709076Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6743080Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6746204Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6763623Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6778977Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6806238Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6838878Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6847534Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6859822Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6894848Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6900322Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6911056Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6916159Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6985009Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.6990863Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7004146Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7008928Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7035382Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7112945Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7119984Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7129029Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7179185Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7196315Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7215777Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7236582Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7251421Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7300262Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7306114Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7319431Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7421820Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7423574Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7440241Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7486473Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7491489Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7499748Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7542971Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7571426Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7591099Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7602267Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7617518Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7624397Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7657343Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7701610Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7704869Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7720500Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7745564Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7786043Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7789945Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7840748Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7845955Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7850677Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7870151Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7886107Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7961657Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7969091Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.7994723Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8009083Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8011906Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8049434Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8104703Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8135120Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8142875Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8147011Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8165095Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8200855Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8208315Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8233066Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8237736Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8262908Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8295994Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8297261Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8331395Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8332359Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8353219Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8385476Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8401930Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8421030Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8422174Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8462530Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8490911Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8498756Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8518639Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8539606Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8573636Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8574830Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8596843Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8597993Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8613574Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8650204Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8666407Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8682571Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8699283Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8726106Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8742438Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8763340Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8771230Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8791576Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8834433Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8835238Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8856973Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8863674Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8879259Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8910744Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8921370Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8946878Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8971124Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.8989173Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9000996Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9011968Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9027319Z Completed 1.1 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9032391Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9082367Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9091044Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9099045Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9104217Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9147523Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9187945Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9195028Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9215526Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9216992Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9245745Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9276064Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9298154Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9327865Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9338648Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9384854Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9396436Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9421711Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9439135Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9461137Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9481458Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9485949Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9528234Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9553878Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9580548Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9605399Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9631590Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9641444Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9661861Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9722155Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9724461Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9788740Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9802168Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9810060Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9816753Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9823182Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9843407Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9870970Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9904560Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9927903Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9934044Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9954002Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9955421Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:22.9959659Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0034615Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0048095Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0061505Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0063214Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0108377Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0112115Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0165942Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0189115Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0224609Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0231151Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0232557Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0233803Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0268659Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0301549Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0335938Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0345485Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0346558Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0369192Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0405047Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0417578Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0454420Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0455772Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0471675Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0483300Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0528369Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0529676Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0547434Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0582802Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0589450Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0636497Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0639218Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0642933Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0651314Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0712555Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0752262Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0761046Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0763137Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0767770Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0781587Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0805120Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0856194Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0871303Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0893202Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0894006Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0894668Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0929878Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.0997641Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1031167Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1034415Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1043676Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1073518Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1074864Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1076831Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1169353Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1198213Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1199077Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1221024Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1255461Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1275643Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1281932Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1343268Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1357410Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1384428Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1405254Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1406195Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1420736Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1434132Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1445249Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1483186Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1512187Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1537583Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1563497Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1567074Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1580652Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1591518Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1629243Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1630338Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1678321Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1693378Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1694748Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1711734Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1717534Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1734600Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1755681Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1800820Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1821065Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1824526Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1842171Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1844356Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1875231Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1886300Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1932792Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1947877Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1957722Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1968417Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.1989608Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2023514Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2027651Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2065870Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2072438Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2076918Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2094684Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2106329Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2166271Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2194894Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2211331Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2212233Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2226130Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2227321Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2281782Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2337818Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2349856Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2366022Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2368827Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2369859Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2378160Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2431001Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2476507Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2482969Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2509312Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2510611Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2512128Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2536314Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2582834Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2597860Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2615234Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2623728Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2625916Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2666012Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2667055Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2672349Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2716882Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2750633Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2751481Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2798639Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2809395Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2828995Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2853558Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2862980Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2864058Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2920743Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2932011Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2986150Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2992123Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.2996796Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3030787Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3031958Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3077634Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3078599Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3110928Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3119446Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3130400Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3136538Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3172329Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3175066Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3221047Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3233490Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3239299Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3265171Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3281496Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3305087Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3322157Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3326095Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3341937Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3367205Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3399765Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3430487Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3440383Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3450745Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3470179Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3501214Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3514424Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3538834Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3542235Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3570513Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3583699Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3593325Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3608206Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3633808Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3659184Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3672276Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3703581Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3705334Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3721414Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3758902Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3765743Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3798307Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3799363Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3860542Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3878371Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3881650Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3930095Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3954144Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.3961020Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4011223Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4073771Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4087015Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4123183Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4136220Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4141320Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4151778Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4226226Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4229300Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4233184Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4251001Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4262294Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4310889Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4321100Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4339746Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4350904Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4370939Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4378825Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4435498Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4448189Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4454563Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4476420Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4492584Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4505447Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4543436Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4551201Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4552558Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4604733Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4605566Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4618815Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4665404Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4690129Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4715371Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4742142Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4748723Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4802589Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4816744Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4845158Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4849275Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4864045Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4878410Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4947303Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4948703Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4950023Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.4984416Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5002972Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5028342Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5038062Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5105923Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5107268Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5122904Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5148873Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5195069Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5222588Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5226176Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5250302Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5255651Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5259977Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5320276Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5338314Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5349007Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5369729Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5372483Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5388805Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5428704Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5452491Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5467207Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5468767Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5485934Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5527384Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5560393Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5564288Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5582198Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5597656Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5636485Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5643109Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5646468Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5671571Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5701768Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5725380Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5738328Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5749642Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5760994Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5798933Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5820537Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5843254Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5850118Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5856069Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5900194Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5906390Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5946045Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5947227Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5948325Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.5979376Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6042443Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6050198Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6064387Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6065686Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6103222Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6148615Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6156490Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6184024Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6185317Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6198844Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6249404Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6384303Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6390939Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6419461Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6465963Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6527214Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6538392Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6574337Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6603196Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6636799Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6650314Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6658713Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6676892Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6745323Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6762913Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6774333Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6779858Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6788542Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6806898Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6874505Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6879040Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6894734Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6895685Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6913338Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6927461Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6974747Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6984167Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.6990499Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7013263Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7019350Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7031960Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7087303Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7101405Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7108102Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7115310Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7124409Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7131009Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7189483Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7215469Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7219866Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7226012Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7234442Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7259299Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7295141Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7349667Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7362887Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7368306Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7374224Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7406435Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7441299Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7487838Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7489070Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7511943Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7546538Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7547903Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7556545Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7595778Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7617946Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7628656Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7671567Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7684151Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7734935Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7741635Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7748212Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7765222Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7766276Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7833548Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7860565Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7865787Z Completed 1.3 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7869420Z Completed 1.3 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7881645Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7894901Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7925499Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7973138Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7983127Z Completed 1.3 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.7991998Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8024343Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8033863Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8035014Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8056563Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8103601Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8117568Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8118894Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8123619Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8162754Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8169125Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8193640Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8222575Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8235457Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8242873Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8280486Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8290424Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8303113Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8318448Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8332243Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8347749Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8383667Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8395330Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8417223Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8419162Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8440045Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8474893Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8477410Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8512238Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8516372Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8533570Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8565314Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8571913Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8623017Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8660632Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8670000Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8690500Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8701364Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8784511Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8807315Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8830827Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8875750Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8913677Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8916488Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8919486Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8968593Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.8993174Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9002476Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9027381Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9028563Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9040765Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9047466Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9059028Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9123593Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9141719Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9163143Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9180456Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9183557Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9185444Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9187516Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9207343Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9257543Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9267643Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9279311Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9299924Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9319419Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9339397Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9364249Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9371518Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9390252Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9401281Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9436201Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9437571Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9494135Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9513715Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9528641Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9546962Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9566444Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9593946Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9618650Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9630981Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9646480Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9665332Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9681327Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9726894Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9730236Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9763433Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9779084Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9791605Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9798740Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9840203Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9846426Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9869773Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9893613Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9922401Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9939926Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9957887Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9963415Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:23.9983551Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0021075Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0026699Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0045800Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0073503Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0103756Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0107448Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0129611Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0142183Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0150583Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0180084Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0189934Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0253567Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0254860Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0256031Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0266196Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0279710Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0326724Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0327965Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0359323Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0376755Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0390101Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0400632Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0401808Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0484267Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0485932Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0489580Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0504666Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0545628Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0578571Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0585523Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0600894Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0610333Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0626730Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0638806Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0674527Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0683265Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0719588Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0745358Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0755144Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0772488Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0795798Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0850384Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0864401Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0865217Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0870804Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0876684Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0912551Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0948910Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0989280Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.0995938Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1001049Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1001966Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1005885Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1108895Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1134458Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1160436Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1167027Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1168411Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1183180Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1229430Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1272145Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1273958Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1302978Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1322945Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1332278Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1388959Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1396179Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1426681Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1435329Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1442940Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1450055Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1505885Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1507939Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1525313Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1547716Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1561066Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1564200Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1628403Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1629407Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1635947Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1648646Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1668116Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1701535Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1748831Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1757422Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1775886Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1793309Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1841627Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1850639Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1864443Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1873574Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1878518Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.1901517Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2049977Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2061777Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2063631Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2064535Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2085682Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2087514Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2088631Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2149882Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2187225Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2191078Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2207163Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2215197Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2260260Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2268651Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2291254Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2295377Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2310419Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2363603Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2379390Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2398208Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2401622Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2432504Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2446095Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2493143Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2494096Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2528587Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2543560Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2560486Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2571123Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2602844Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2619312Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2631409Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2647400Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2684453Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2695083Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2715396Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2720127Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2750218Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2765253Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2792817Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2802197Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2810139Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2816467Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2831498Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2867079Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2882569Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2884075Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2907296Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2928936Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2941708Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2974585Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.2996075Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3020338Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3030431Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3052817Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3054868Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3078019Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3118562Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3132052Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3148956Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3154888Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3180308Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3213684Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3242188Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3249696Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3257036Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3269031Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3318593Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3388191Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3399138Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3425029Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3435982Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3453019Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3508626Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3566565Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3577088Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3584113Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3613136Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3628927Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3659536Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3679296Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3699975Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3705293Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3717871Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3740079Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3754130Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3789706Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3805249Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3808813Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3814109Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3853826Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3880237Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3895098Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3900812Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3907046Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3953898Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3974896Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3982250Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.3983556Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4012393Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4070260Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4071167Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4071854Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4078577Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4103841Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4146875Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4175140Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4180131Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4181085Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4214690Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4241693Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4258151Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4281384Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4293113Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4317950Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4348245Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4376601Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4399215Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4401344Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4411659Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4438686Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4446206Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4530590Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4538305Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4556249Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4566621Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4577666Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4590762Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4624021Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4658859Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4678367Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4690847Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4711566Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4716275Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4758654Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4778223Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4799462Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4804478Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4819087Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4835350Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4885000Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4904236Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4911780Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4913108Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4936777Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4942963Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4967763Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.4998309Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5027460Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5034738Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5045824Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5081006Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5088440Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5099587Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5136015Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5155989Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5166937Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5224068Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5231665Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5236049Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5253929Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5256244Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5265778Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5337197Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5395194Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5414457Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5419880Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5421141Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5433871Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5497350Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5500247Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5511615Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5549014Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5558646Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5559386Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5602808Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5623859Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5648586Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5682391Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5686113Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5689870Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5715358Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5721389Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5728076Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5792413Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5802519Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5810612Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5811824Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5831919Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5853201Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5876681Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5907040Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5930347Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5961312Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5978475Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5989784Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.5993103Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6057733Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6059043Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6082933Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6122052Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6135545Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6143042Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6150895Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6178353Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6207744Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6245347Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6259448Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6260399Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6270114Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6281970Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6292969Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6337947Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6356418Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6369834Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6378078Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6401073Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6416680Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6454154Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6468951Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6500148Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6501472Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6561763Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6571476Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6575750Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6579548Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6591419Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6623137Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6628039Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6669418Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6684430Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6722111Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6725363Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6736135Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6765125Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6768366Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6810221Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6836885Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6837825Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6838482Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6860960Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6890327Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6931146Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6954155Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6968749Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.6984323Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7010915Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7038682Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7048461Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7093064Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7171992Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7200572Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7236698Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7237738Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7316565Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7317618Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7319809Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7370416Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7376044Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7379937Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7403695Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7441640Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7450561Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7474080Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7485920Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7492302Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7510278Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7571080Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7580226Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7590301Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7591875Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7598362Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7633036Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7677988Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7702443Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7711240Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7715931Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7722330Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7727836Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7781686Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7808211Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7816959Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7850776Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7852534Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7861247Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7873657Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7937167Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.7944081Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8013903Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8045888Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8064743Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8071367Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8100490Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8106717Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8126195Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8172935Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8177418Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8231512Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8238325Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8250078Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8251320Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8309935Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8319279Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8332512Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8397734Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8407486Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8412982Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8460773Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8495096Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8513577Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8530444Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8540655Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8558533Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8582957Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8597824Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8614632Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8659702Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8665827Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8685395Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8713122Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8714071Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8778481Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8798496Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8817209Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8831799Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8833574Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8877303Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8881650Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8931766Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8933807Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8946555Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8975040Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8980712Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.8993628Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9019995Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9072032Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9085778Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9092010Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9123686Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9126204Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9141593Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9148573Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9201997Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9217216Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9231663Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9244287Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9261370Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9268292Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9339130Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9346443Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9361977Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9363172Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9386183Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9391452Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9413949Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9458015Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9488834Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9490262Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9494107Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9495340Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9509693Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9560122Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9566268Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9604716Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9632100Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9636121Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9668312Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9697495Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9735014Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9764145Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9765492Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9803417Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9823343Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9863555Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9870904Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9891428Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9920050Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9946598Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9954248Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9967106Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:24.9970792Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0020965Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0031809Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0054848Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0055988Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0079000Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0091003Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0102261Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0142166Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0151172Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0157946Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0205405Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0211546Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0237407Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0279853Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0322519Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0323709Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0329861Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0352978Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0368812Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0392073Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0438993Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0457862Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0479471Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0480615Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0521180Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0536618Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0557134Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0567711Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0571024Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0594288Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0629473Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0638725Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0670968Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0672449Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0694294Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0721978Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0734051Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0758002Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0787419Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0788979Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0796859Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0824802Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0839621Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0886813Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0901989Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0920128Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0921637Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0947072Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0947935Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.0997761Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1011323Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1015469Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1036601Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1072036Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1109517Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1126993Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1139831Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1144833Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1168697Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1218297Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1248357Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1260353Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1273053Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1275487Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1324655Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1376160Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1381242Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1403897Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1415873Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1416969Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1452584Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1488109Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1517439Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1538392Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1549209Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1561722Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1587178Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1625094Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1655943Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1675649Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1685607Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1712121Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1745341Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1757763Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1765427Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1803158Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1855382Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1856518Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1857572Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1871182Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1888519Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1918223Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1965094Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1970547Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.1978595Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2003550Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2004897Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2042178Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2107714Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2115515Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2117047Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2133596Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2148789Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2177792Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2220697Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2238469Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2254197Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2269167Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2294818Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2312047Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2343299Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2386468Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2396583Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2412436Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2424862Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2425847Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2457505Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2517991Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2532274Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2533428Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2540308Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2542139Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2574714Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2620565Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2635779Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2650522Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2655425Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2670353Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2709223Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2742905Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2749069Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2762898Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2786496Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2801305Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2819719Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2859540Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2868137Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2878941Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2911123Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2912318Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2980656Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2981798Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.2985872Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3000237Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3003946Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3014602Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3099871Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3131849Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3134284Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3137115Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3151902Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3166981Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3248601Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3263664Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3280602Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3287676Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3291260Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3300825Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3385083Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3397577Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3398990Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3416787Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3426794Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3434496Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3441024Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3484705Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3498654Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3533956Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3535407Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3536602Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3553458Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3593159Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3614227Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3659575Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3669965Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3682376Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3691655Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3708068Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3759995Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3811063Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3826728Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3828571Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3830051Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3889871Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3907008Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3979857Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.3993944Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4003858Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4011877Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4041187Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4054192Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4105183Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4118484Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4123655Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4154617Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4159601Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4184977Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4212989Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4227990Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4242201Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4258822Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4278075Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4314598Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4330429Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4368740Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4380965Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4381966Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4417308Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4418713Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4449131Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4473483Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4488255Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4494966Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4524415Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4531640Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4570034Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4583587Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4588137Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4618789Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4646730Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4657582Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4696378Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4702476Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4727112Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4729181Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4769120Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4784704Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4834345Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4837306Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4850666Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4879074Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4903204Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4942148Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4957147Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4993315Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.4996217Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5020937Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5069254Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5070142Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5097185Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5109366Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5137220Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5147885Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5163637Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5193868Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5218997Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5256024Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5258076Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5266928Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5295083Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5327274Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5394665Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5397220Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5415160Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5456435Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5457972Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5471449Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5493808Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5548026Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5566500Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5567850Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5596493Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5611403Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5612504Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5621543Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5676034Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5681006Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5685600Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5699535Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5713980Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5736811Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5755773Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5800553Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5813062Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5822803Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5838420Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5842899Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5856844Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5907738Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5930200Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5941304Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5945974Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.5948099Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6002429Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6034564Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6054878Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6085200Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6086289Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6097344Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6132930Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6139385Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6167515Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6173544Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6252205Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6253522Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6263988Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6266624Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6267901Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6309428Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6362051Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6369001Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6407178Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6418523Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6473366Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6493736Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6534126Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6534974Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6567273Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6582154Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6593625Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6636974Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6668370Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6685502Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6686674Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6704865Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6716353Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6731002Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6754226Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6796265Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6815260Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6833285Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6844640Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6847171Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6859649Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6924119Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6925242Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6940870Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6949100Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6956787Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.6985701Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7023588Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7063538Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7064883Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7099688Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7110771Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7147003Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7154915Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7203712Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7211424Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7227208Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7238168Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7251800Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7271783Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7303508Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7318931Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7336124Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7351730Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7366275Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7382881Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7415154Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7439920Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7458869Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7464214Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7470422Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7481721Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7523529Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7554893Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7591878Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7599640Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7615206Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7623286Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7629978Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7674944Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7699498Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7727210Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7731285Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7743084Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7745194Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7754655Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7822316Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7860842Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7862436Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7863709Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7868050Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7876169Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7895397Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7944691Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7961876Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7977744Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7979617Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7984916Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.7995206Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8056190Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8094938Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8107116Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8114200Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8123297Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8165164Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8186443Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8247307Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8277622Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8290797Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8291742Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8307307Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8310759Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8376591Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8407622Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8423364Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8424359Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8443960Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8446908Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8459965Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8500504Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8542321Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8543674Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8544641Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8563333Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8565774Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8616458Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8642274Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8654551Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8679365Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8750397Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8765243Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8786325Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8807662Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8809023Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8810083Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8840555Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8909335Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8926019Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8933673Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8955834Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8969992Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.8981869Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9019360Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9024063Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9051503Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9068822Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9072473Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9084819Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9105062Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9135954Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9145954Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9169456Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9190063Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9233718Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9239217Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9261101Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9307938Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9320358Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9333060Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9358729Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9370377Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9450655Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9455853Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9457195Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9482194Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9490180Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9535893Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9546597Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9553826Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9559275Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9565124Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9612248Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9626209Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9648803Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9664267Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9685246Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9691421Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9721728Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9750561Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9753008Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9756756Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9788749Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9814577Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9830215Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9839797Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9849668Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9901246Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9917603Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9930102Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9950894Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:25.9974551Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0012231Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0018264Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0022901Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0045271Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0081834Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0091706Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0155736Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0165952Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0172576Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0182081Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0213819Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0237948Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0251968Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0266133Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0287269Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0298358Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0329111Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0349579Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0367122Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0399591Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0405582Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0449305Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0450346Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0542879Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0554136Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0590324Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0652425Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0673602Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0679702Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0706331Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0707735Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0708935Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0788934Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0792337Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0824892Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0835593Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0840883Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0900218Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0906448Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0931491Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0939360Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0968806Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.0989488Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1011266Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1020530Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1044452Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1050506Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1085442Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1119650Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1131807Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1138803Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1148842Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1190313Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1199361Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1204380Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1235800Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1246576Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1285925Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1298451Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1300303Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1326327Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1348181Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1383056Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1396656Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1413231Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1423052Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1429304Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1437640Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1484889Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1493908Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1498402Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1529291Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1540385Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1567072Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1590265Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1615416Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1633311Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1645171Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1650566Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1657709Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1674889Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1681573Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1691966Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1698635Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1706395Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1717382Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1728416Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1742285Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1762824Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1777239Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1786541Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1788765Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1849941Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1853941Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1864180Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1880258Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1889973Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1896470Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1913775Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1968042Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1985873Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.1993908Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2001110Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2026503Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2065562Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2072227Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2101625Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2109609Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2131205Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2158091Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2190994Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2204653Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2217640Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2237884Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2267784Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2299369Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2317805Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2343073Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2361327Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2372216Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2400246Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2431809Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2440067Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2455325Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2466376Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2473579Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2506495Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2547462Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2556377Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2558033Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2595975Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2599527Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2609664Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2690842Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2724655Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2746361Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2751109Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2752239Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2753852Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2776245Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2808694Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2851332Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2883348Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2889677Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2901968Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2903318Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2915841Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.2949338Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3000174Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3014767Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3025593Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3029769Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3061997Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3063346Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3132613Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3168514Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3174177Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3192870Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3194086Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3258847Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3260341Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3300839Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3305447Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3306661Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3310900Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3362829Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3395236Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3417762Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3441798Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3459452Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3510495Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3529320Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3537947Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3550887Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3555383Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3560523Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3614475Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3652133Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3663664Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3668483Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3678600Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3679468Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3717959Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3775574Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3780189Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3782933Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3784414Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3795217Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3824191Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3884623Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3891625Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3895306Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3919991Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3940083Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.3945657Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4001766Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4018387Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4024835Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4042290Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4056903Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4057741Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4073313Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4121525Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4154469Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4210835Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4212048Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4213262Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4214895Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4244100Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4280378Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4300640Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4318748Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4349843Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4351216Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4368062Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4399215Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4438343Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4439849Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4478224Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4485818Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4499232Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4500555Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4571189Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4635016Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4636066Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4643516Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4655762Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4714278Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4750240Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4755807Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4762853Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4776936Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4819629Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4826404Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4850946Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4852901Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4881406Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4925784Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4948486Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4964739Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4971139Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4991538Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.4994384Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5011995Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5078504Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5079714Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5080654Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5101814Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5115904Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5153470Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5166781Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5185310Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5194413Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5197123Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5253622Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5260911Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5270854Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5296728Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5322237Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5329279Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5348194Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5379023Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5379939Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5409936Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5431251Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5450052Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5483419Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5484624Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5527678Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5534120Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5562237Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5601483Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5609962Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5625409Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5639653Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5691284Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5694338Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5725503Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5726611Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5770029Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5804506Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5809385Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5813956Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5836841Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5866669Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5867861Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5879077Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5924309Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5939528Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5940498Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.5995300Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6023618Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6052264Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6053838Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6078287Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6091574Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6092861Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6134730Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6139514Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6148628Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6173225Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6214859Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6220598Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6222831Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6247477Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6271433Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6295393Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6331457Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6338129Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6347980Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6349273Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6362332Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6395607Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6411254Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6429070Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6448941Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6471832Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6483298Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6506624Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6526904Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6541809Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6553718Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6584172Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6595883Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6618223Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6637942Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6653223Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6669950Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6690482Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6691470Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6729966Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6737892Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6762873Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6779075Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6787556Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6811200Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6852978Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6882267Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6889324Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6901460Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6909568Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6969671Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.6972980Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7012453Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7046796Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7109613Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7111004Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7168315Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7186150Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7196883Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7218605Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7243683Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7264088Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7297679Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7310237Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7346879Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7363525Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7372299Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7377828Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7400836Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7409912Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7465153Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7484999Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7488792Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7504568Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7517609Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7539608Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7580511Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7594303Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7607288Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7608402Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7639612Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7647529Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7696878Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7720761Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7728726Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7755076Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7786740Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7788881Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7826636Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7837362Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7857421Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7866705Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7887401Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7916611Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7945688Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7975179Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7984529Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.7986110Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8004028Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8029151Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8052494Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8061071Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8072119Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8076364Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8097249Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8130384Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8142873Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8160995Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8173637Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8206493Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8213641Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8222430Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8256041Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8298500Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8300631Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8315381Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8368536Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8381583Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8392175Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8401299Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8407838Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8408783Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8489926Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8501475Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8502943Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8505472Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8518185Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8519352Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8603055Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8635529Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8636367Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8642492Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8677036Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8684728Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8718271Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8730308Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8768924Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8780697Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8787697Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8818787Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8845312Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8897732Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8901754Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8913504Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8937557Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8984261Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.8986399Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9011874Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9028035Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9059564Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9082913Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9098940Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9100103Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9140284Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9171170Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9177474Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9197155Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9214039Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9225633Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9274716Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9285320Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9291537Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9307440Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9308730Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9363516Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9367673Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9385627Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9390690Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9435902Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9465692Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9476861Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9487902Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9494964Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9504992Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9605707Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9608548Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9611717Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9619329Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9640248Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9641392Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9688148Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9717924Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9719068Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9729602Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9753892Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9787969Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9798655Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9805951Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9815655Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9827596Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9830234Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9911355Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9916398Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9923623Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9940502Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9945469Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9983820Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:26.9996930Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0001727Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0014409Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0028611Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0039994Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0052212Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0057334Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0069483Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0076489Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0098600Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0100964Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0115357Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0129597Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0153129Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0176411Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0201563Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0203700Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0228440Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0238744Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0267720Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0268976Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0302897Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0340308Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0367484Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0400203Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0446624Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0454077Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0458159Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0492345Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0521133Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0537172Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0558873Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0590310Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0631827Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0633515Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0653406Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0675938Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0700983Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0714974Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0749231Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0765320Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0777383Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0794277Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0799975Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0808397Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0856497Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0874473Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0878332Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0914273Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0926789Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0948740Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.0999004Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1002492Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1020029Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1045809Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1071677Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1077819Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1110229Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1123911Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1125265Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1210580Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1212536Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1221976Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1240167Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1244794Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1279283Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1324849Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1328106Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1352920Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1354130Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1355184Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1393738Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1410324Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1440361Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1445067Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1451117Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1452890Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1510463Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1517413Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1548314Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1558817Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1570248Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1574271Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1632242Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1639953Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1657580Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1658546Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1680790Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1693110Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1778399Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1789698Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1799066Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1800639Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1804505Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1809858Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1829625Z Completed 1.6 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1838362Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1904547Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1934855Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1943471Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1962589Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1968858Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.1970495Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2053397Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2056464Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2059466Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2064163Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2104581Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2111423Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2165876Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2183566Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2211180Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2213133Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2226305Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2270720Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2295335Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2317996Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2332609Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2341371Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2354585Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2382461Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2413465Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2455056Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2469206Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2474597Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2486735Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2495223Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2502324Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2526508Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2558844Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2574372Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2599110Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2609523Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2635411Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2645629Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2686583Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2693703Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2699875Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2741907Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2750473Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2775409Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2778890Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2796806Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2819916Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2846574Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2853100Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2903158Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.2975122Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3003139Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3004637Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3008690Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3028866Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3105934Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3107233Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3110152Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3123686Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3130093Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3149243Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3266087Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3279486Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3282863Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3291884Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3311184Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3313580Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3355415Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3362493Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3460934Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3462343Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3463812Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3527882Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3529905Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3536775Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3556142Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3596290Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3630841Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3631955Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3643729Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3666308Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3684886Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3722787Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3747122Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3757528Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3763982Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3794244Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3817341Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3831897Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3874110Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3898807Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3902005Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3923400Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3932527Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3941369Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.3991444Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4021116Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4025170Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4032585Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4074132Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4092880Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4123961Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4128263Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4133916Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4149791Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4192970Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4216838Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4248573Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4258905Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4275565Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4284270Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4323730Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4342082Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4353193Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4375977Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4391742Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4401009Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4433684Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4458066Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4470759Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4491023Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4492795Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4502404Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4549230Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4550468Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4603963Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4633338Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4643796Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4658203Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4669621Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4672487Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4683420Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4748489Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4751209Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4765637Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4795441Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4804385Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4807425Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4821979Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4850662Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4868660Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4912251Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4920297Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4927387Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4942882Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4949335Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.4988516Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5035851Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5040121Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5049350Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5050756Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5057315Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5096577Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5160044Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5169517Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5175625Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5196717Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5204896Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5205974Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5240375Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5293113Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5302833Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5312150Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5321603Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5323773Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5351128Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5388298Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5404689Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5452377Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5456084Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5456992Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5482142Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5485811Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5520477Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5527112Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5567637Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5580458Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5593293Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5640494Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5647820Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5663474Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5695669Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5712588Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5760333Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5805503Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5823391Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5824509Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5844184Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5851706Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5880466Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5929682Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5938403Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5948135Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5966250Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5984666Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.5993324Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6032846Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6034291Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6036061Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6037171Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6087391Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6104934Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6109835Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6133483Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6147211Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6149120Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6177331Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6223778Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6225059Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6248972Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6250287Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6271186Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6299037Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6364086Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6372331Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6375161Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6383709Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6410447Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6459993Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6480697Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6482389Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6484692Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6513367Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6529500Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6543795Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6583417Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6588729Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6595340Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6606481Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6639270Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6654654Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6660246Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6694557Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6701973Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6706302Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6738339Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6777785Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6794279Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6802108Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6878965Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6904397Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6920133Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6926103Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6934960Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6937146Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6960382Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6966838Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6969482Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6976078Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6981980Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.6996304Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7011652Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7026786Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7035091Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7044159Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7059681Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7067587Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7096102Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7171512Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7187297Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7193455Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7260260Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7295212Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7317344Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7376440Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7394190Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7404528Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7458305Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7470792Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7483255Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7491446Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7509862Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7521545Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7527332Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7532842Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7560368Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7575377Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7586125Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7601377Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7607710Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7623332Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7630353Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7641783Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7663758Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7682897Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7700823Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7743376Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7776424Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7787282Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7830211Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7861561Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7892814Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7910891Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7918108Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7919982Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7937526Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7972125Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.7995554Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8003147Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8007797Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8012106Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8018813Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8165139Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8262889Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8269920Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8315506Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8355617Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8380791Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8397112Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8398634Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8426697Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8431150Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8454346Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8459147Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8463252Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8471983Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8510864Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8517392Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8526471Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8567444Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8571814Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8576793Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8602429Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8611438Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8614647Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8649295Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8651368Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8656326Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8682792Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8685116Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8695542Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8728214Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8734721Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8735805Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8777541Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8779596Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8788109Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8797786Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8813627Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8814815Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8835377Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8859860Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8892949Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8936977Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8945179Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8951876Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8993356Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.8998125Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9007419Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9010189Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9019053Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9025566Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9030299Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9038590Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9044037Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9048629Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9062201Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9070105Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9076991Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9083813Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9090666Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9102290Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9110461Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9112294Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9118591Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9125480Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9264480Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9284207Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9311391Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9314664Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9342200Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9353149Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9361976Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9377207Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9378921Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9404797Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9420350Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9429271Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9463740Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9485165Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9487983Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9511826Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9528195Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9533639Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9563785Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9591957Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9625961Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9627502Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9628731Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9631161Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9667984Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9676246Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9719112Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9720292Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9727834Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9732803Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9743599Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9748798Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9761037Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9771170Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9780878Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9786333Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9793393Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9801041Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9808234Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9815564Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9831108Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9838294Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9843942Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9911515Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9919153Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9925616Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9931842Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9939491Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9948070Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9958828Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9967316Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:27.9976286Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0012361Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0018468Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0020176Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0028975Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0036531Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0041374Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0049170Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0056795Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0064773Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0079219Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0082384Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0089476Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0101881Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0109929Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0119575Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0130407Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0133730Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0140550Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0147945Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0156321Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0171846Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0182752Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0218947Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0221007Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0258733Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0265791Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0287357Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0337530Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0348153Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0393128Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0401821Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0436697Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0441200Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0498140Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0508014Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0517122Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0531704Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0584510Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0592833Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0639162Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0657652Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0671069Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0675354Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0695481Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0698544Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0720564Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0729773Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0738523Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0747665Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0754417Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0764063Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0769939Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0778966Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0786157Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0796611Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0798636Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0809837Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0811450Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0824574Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0829772Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0843962Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0857955Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0884418Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0924034Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0930504Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0943370Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0961573Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.0976477Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1003504Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1025802Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1051748Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1060102Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1065929Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1075762Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1083822Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1119621Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1140630Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1180484Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1185065Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1185980Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1219426Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1226817Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1275178Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1279457Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1291363Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1339754Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1349884Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1355100Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1362071Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1404963Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1414989Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1437283Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1462561Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1470073Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1476405Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1498738Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1521027Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1562201Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1575846Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1590791Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1591955Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1657578Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1658641Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1664429Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1687922Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1697049Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1711278Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1773010Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1774335Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1781261Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1814388Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1827341Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1856422Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1868063Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1890788Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1896606Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1920853Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1945718Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1983031Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.1992892Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2007389Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2017792Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2019525Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2050176Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2088973Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2093741Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2096903Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2119646Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2125508Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2176360Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2193130Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2198736Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2209097Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2252077Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2275164Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2290897Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2294965Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2310543Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2349633Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2375393Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2383589Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2384464Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2391457Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2440468Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2446990Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2473141Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2476109Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2519535Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2527506Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2556289Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2563284Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2570808Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2620063Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2664296Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2698779Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2724659Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2745210Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2748350Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2783446Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2823723Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2877484Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2883324Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2890091Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2906496Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2926298Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2934686Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2969477Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2988963Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.2992556Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3005767Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3025307Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3051560Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3083447Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3088805Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3090498Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3105037Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3145596Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3172802Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3186583Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3192953Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3216722Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3257056Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3283801Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3286157Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3290446Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3300227Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3308084Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3345984Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3350073Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3378240Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3379331Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3388985Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3400994Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3421347Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3481118Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3483235Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3490730Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3515732Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3623389Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3646590Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3659910Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3745100Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3770671Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3777053Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3800160Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3849039Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3864252Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3867694Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3879016Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3915385Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3947635Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3956529Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3970372Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3978448Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.3990149Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4009852Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4018576Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4031046Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4037137Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4045818Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4059653Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4063845Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4067432Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4085724Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4098711Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4138333Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4161396Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4187614Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4188479Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4216469Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4225614Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4264934Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4356016Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4368270Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4378148Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4388995Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4407001Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4415180Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4426479Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4433357Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4441836Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4443864Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4450408Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4458731Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4468312Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4496563Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4502606Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4509041Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4514802Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4521418Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4530414Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4538371Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4546711Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4552546Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4560443Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4600867Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4648909Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4725653Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4731706Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4780907Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4794302Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4803011Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4807013Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4818019Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4824287Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4825279Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4870823Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4875647Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4888948Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4911608Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4912884Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4918261Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4927013Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4965227Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4977431Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.4980302Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5003277Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5015811Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5027175Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5045734Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5072140Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5083607Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5089911Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5131858Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5138955Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5151498Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5168965Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5173999Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5201477Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5203718Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5212235Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5268991Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5276132Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5286143Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5303535Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5315082Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5327026Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5343248Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5352341Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5361264Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5368342Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5394031Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5397029Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5402278Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5409889Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5478731Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5479886Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5480983Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5519134Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5520655Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5521792Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5559754Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5567342Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5572057Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5573401Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5618684Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5628484Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5642233Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5645816Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5669212Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5685112Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5697421Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5713442Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5720576Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5724697Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5769183Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5788033Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5804151Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5812166Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5845150Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5866344Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5882463Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5887438Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5920131Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5924378Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5938373Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5961976Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5982408Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.5988192Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6007670Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6032207Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6052396Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6071497Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6075487Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6090301Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6094873Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6132844Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6134352Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6136423Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6137729Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6140199Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6167286Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6174889Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6184497Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6203116Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6213991Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6225159Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6240566Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6249875Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6259566Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6266319Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6302248Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6309330Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6323655Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6331814Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6345971Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6355220Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6375277Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6381475Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6386841Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6396127Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6412846Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6421760Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6426572Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6452210Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6465845Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6471352Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6508796Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6514818Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6545136Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6552192Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6603299Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6626864Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6645358Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6690886Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6697962Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6736343Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6840029Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6863167Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6864202Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6882384Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6883777Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6915362Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6916383Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6969612Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.6996028Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7026626Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7032323Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7063676Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7064561Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7102866Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7118706Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7133922Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7150733Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7167187Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7196794Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7201826Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7206574Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7263805Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7269366Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7273208Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7293893Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7324708Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7326862Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7375068Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7395069Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7398191Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7400605Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7412595Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7458512Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7476540Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7493129Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7503064Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7511979Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7541682Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7576852Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7589336Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7601375Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7604805Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7611841Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7657109Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7685415Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7692208Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7700496Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7704381Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7735276Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7775224Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7784826Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7793875Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7804592Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7810782Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7849372Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7863407Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7880947Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7915548Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7927823Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7950373Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7965497Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.7969317Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8009532Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8015897Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8020663Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8060747Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8089731Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8099709Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8100639Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8106449Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8122813Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8156722Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8202267Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8204262Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8205856Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8229963Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8277263Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8300282Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8317646Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8323671Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8347591Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8382815Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8384171Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8390307Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8475880Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8512559Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8537029Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8546492Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8551860Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8553362Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8590507Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8612578Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8638022Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8673474Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8685541Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8697098Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8719947Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8751374Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8792410Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8803204Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8806299Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8832181Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8835021Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8875018Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8880325Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8889521Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8893667Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8949242Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8950087Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8951250Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.8963681Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9001434Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9016441Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9025933Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9054164Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9067526Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9083719Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9104359Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9129932Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9134152Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9156418Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9171951Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9199556Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9206240Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9222113Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9312262Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9321588Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9325906Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9338831Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9471862Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9504177Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9511427Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9524503Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9560523Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9620096Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9626075Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9639269Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9650297Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9666295Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9680317Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9691261Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9696610Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9724823Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9731999Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9739876Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9757179Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9772273Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9801480Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9849207Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9867046Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9924379Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9945861Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9992934Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:28.9994864Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0022851Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0036433Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0079476Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0089286Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0090714Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0138091Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0154712Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0191474Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0209103Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0217078Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0225743Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0226813Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0289657Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0291865Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0297256Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0300997Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0329792Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0338127Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0339328Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0365505Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0377529Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0384943Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0391828Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0405682Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0422461Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0428982Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0435136Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0443787Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0449037Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0456123Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0461985Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0463789Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0470408Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0485515Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0492894Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0515884Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0530054Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0563161Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0570038Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0577051Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0589262Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0624627Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0628773Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0683876Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0704920Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0712862Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0738180Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0745740Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0829366Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0839494Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0845996Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0850181Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0856002Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0884002Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0900040Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0903292Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0942130Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0943694Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0951450Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0956949Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0966760Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.0980180Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1001320Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1009611Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1045175Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1053249Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1076097Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1097825Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1144467Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1159128Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1162192Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1191687Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1228013Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1248943Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1262478Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1289362Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1295273Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1327138Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1329673Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1354352Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1367479Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1449326Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1450868Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1452235Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1454430Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1498897Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1514709Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1536581Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1551688Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1576125Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1586478Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1593121Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1618264Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1663496Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1685102Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1700160Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1705094Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1727156Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1734275Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1747467Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1777154Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1778646Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1811782Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1832392Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1857600Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1858685Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1901024Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1908705Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1924827Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1935275Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1962402Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.1971382Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2003421Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2031153Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2040088Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2067284Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2074793Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2094008Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2135513Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2141118Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2146011Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2180820Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2190366Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2192001Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2225560Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2250733Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2264713Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2289276Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2304499Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2305346Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2345788Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2356937Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2381334Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2407219Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2426429Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2427636Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2461492Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2475799Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2476880Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2483315Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2528636Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2549671Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2554538Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2590215Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2593806Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2608766Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2613839Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2670428Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2709679Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2720974Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2725840Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2790260Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2839114Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2942562Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2956284Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2975484Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.2988830Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3005547Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3014042Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3019696Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3067608Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3105339Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3124181Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3130745Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3139161Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3149635Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3180046Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3183636Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3245254Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3252883Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3258457Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3264013Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3270373Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3309241Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3331951Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3369021Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3379770Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3383790Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3393910Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3402042Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3438124Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3466231Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3481068Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3493407Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3524342Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3525903Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3536948Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3567246Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3588820Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3595125Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3613356Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3641613Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3642545Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3658466Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3712999Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3720312Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3726779Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3730309Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3751000Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3771326Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3811774Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3818263Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3819314Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3822352Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3847170Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3875940Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3916383Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3920144Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3943623Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3952612Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3972398Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.3986484Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4046702Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4050846Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4066183Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4084916Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4086240Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4089435Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4115921Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4192909Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4214029Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4215239Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4216283Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4219626Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4235785Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4249809Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4254100Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4305234Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4314531Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4336066Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4367379Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4379562Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4384780Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4411336Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4439317Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4443483Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4499953Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4517997Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4554376Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4563890Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4590305Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4591608Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4618877Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4625684Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4657058Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4740415Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4743962Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4758857Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4763623Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4773693Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4800122Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4815401Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4830083Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4905291Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4915349Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4927603Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4961558Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4971770Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.4988897Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5012174Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5026898Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5045692Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5065832Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5071428Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5089594Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5129911Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5147602Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5154225Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5185663Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5201651Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5207012Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5253377Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5255352Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5264511Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5300146Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5321140Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5325050Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5350471Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5356223Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5364973Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5377246Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5413727Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5437631Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5438772Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5451050Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5476876Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5502321Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5511387Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5513584Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5545163Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5566666Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5575896Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5620481Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5623495Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5635049Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5652956Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5688138Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5708539Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5730882Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5737849Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5744746Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5763892Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5775741Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5788718Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5793581Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5795270Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5841709Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5851262Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5860573Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5893767Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5910059Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5937720Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5953057Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.5980371Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6017487Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6059727Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6071955Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6101903Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6103453Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6148368Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6152588Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6166470Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6206557Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6219433Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6238513Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6251949Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6255174Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6286542Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6317804Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6330442Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6334789Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6351887Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6389361Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6402045Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6411729Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6419943Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6455623Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6461020Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6467633Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6501070Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6523810Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6525723Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6545273Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6563422Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6573308Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6576379Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6585870Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6607949Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6618642Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6637136Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6664009Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6672595Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6688003Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6721089Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6733511Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6751648Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6758836Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6768768Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6844886Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6854565Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6866856Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6878437Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6884731Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6891288Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6895306Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6910010Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6946056Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6953251Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6961312Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6969243Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6979043Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6989612Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.6999850Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7004437Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7067490Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7101400Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7107242Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7112867Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7137184Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7196965Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7201507Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7222200Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7232000Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7265070Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7268748Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7280146Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7287888Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7324750Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7342440Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7352539Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7359921Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7369536Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7373046Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7382203Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7397650Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7400938Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7412998Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7428035Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7463368Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7472847Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7488506Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7505079Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7508645Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7540500Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7565077Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7575217Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7589129Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7644481Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7664489Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7672817Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7776264Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7826480Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7830286Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7849957Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7857450Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7860752Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7877033Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7882178Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7904694Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7913740Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7923708Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7947059Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7958734Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.7992413Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8018468Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8021997Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8036803Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8067961Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8070793Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8090845Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8101578Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8115123Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8158537Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8160022Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8171247Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8200545Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8205031Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8241165Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8257604Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8258446Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8313196Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8342464Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8348846Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8355960Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8369800Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8403949Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8411637Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8446913Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8460081Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8496145Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8505352Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8513392Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8519043Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8531699Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8558903Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8567345Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8588458Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8609212Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8615289Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8618648Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8620909Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8630948Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8682043Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8712511Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8725944Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8752070Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8759011Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8779098Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8789310Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8808331Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8811066Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8835115Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8837931Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8859134Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8870763Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8943131Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8951730Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8955669Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8984533Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.8989191Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9016147Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9055749Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9090732Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9121900Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9138585Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9139763Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9156087Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9171593Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9196428Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9215860Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9223816Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9234559Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9279055Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9293520Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9298370Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9322139Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9330565Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9345090Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9395694Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9408519Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9414650Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9415366Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9452148Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9471877Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9480146Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9490187Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9528747Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9547307Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9549635Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9557582Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9608250Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9614464Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9644926Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9663316Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9682196Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9691466Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9721216Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9783668Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9812962Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9822341Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9830705Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9835470Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9896596Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9897752Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9929568Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9936311Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9956102Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9972900Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:29.9984204Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0022871Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0031482Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0058424Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0063941Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0095456Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0099496Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0107498Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0124185Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0184453Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0191260Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0198878Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0223760Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0251353Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0265699Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0349208Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0368912Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0388982Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0402327Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0411053Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0449692Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0454190Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0506224Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0538532Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0546753Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0582041Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0595310Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0604366Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0611960Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0635251Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0640599Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0658812Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0708836Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0724723Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0731220Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0733402Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0768057Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0775346Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0815042Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0850220Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0855036Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0862766Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0872294Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0876097Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0914822Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0952325Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.0979384Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1005012Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1013464Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1014442Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1033639Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1072401Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1094258Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1103412Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1114273Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1151590Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1166863Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1206242Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1227077Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1253191Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1283696Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1301619Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1340792Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1356303Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1391036Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1406058Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1418974Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1420298Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1444767Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1478431Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1503563Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1520590Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1525284Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1547043Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1554816Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1565918Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1628569Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1647921Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1653883Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1678839Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1689497Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1713481Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1728002Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1747736Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1762019Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1784470Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1804748Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1809687Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1836348Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1849660Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1859991Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1911039Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1917187Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1929318Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1956422Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1968052Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.1981578Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2009169Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2038053Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2068472Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2105842Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2110895Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2118120Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2140267Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2176774Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2205058Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2241885Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2284711Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2285769Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2296246Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2303851Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2318035Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2335256Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2381180Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2384949Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2406843Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2422089Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2454365Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2455847Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2495879Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2531725Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2537700Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2569482Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2570667Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2576093Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2602391Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2620535Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2646257Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2675265Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2677181Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2720685Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2727293Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2729358Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2743878Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2824005Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2825177Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2836564Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2846564Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2864679Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2933580Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2935424Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.2974179Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3000825Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3023364Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3049191Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3050287Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3076247Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3084185Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3151654Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3188985Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3191920Z Completed 2.1 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3200131Z Completed 2.1 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3200972Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3236543Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3241061Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3297553Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3308014Z Completed 2.1 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3329670Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3331559Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3339280Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3350250Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3367473Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3437242Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3456935Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3465976Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3466893Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3483869Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3499742Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3544582Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3570482Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3571734Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3576235Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3593830Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3619092Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3664234Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3669294Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3695798Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3699747Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3702001Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3743082Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3781853Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3782806Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3794477Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3802964Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3809120Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3842548Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3889383Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3895923Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3897577Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3904497Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3906372Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3981808Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3989245Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3990245Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3994168Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.3997141Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4085825Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4087313Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4092491Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4093766Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4102163Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4179340Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4187740Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4193801Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4200367Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4205574Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4248461Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4279108Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4317589Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4328769Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4330074Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4354271Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4363680Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4369713Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4409657Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4464404Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4486570Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4500921Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4507070Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4517111Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4569431Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4586032Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4595275Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4605665Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4626788Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4649051Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4666279Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4718896Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4733680Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4745320Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4761821Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4788169Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4789627Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4817158Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4866969Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4871713Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4888367Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4892953Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4907187Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4943390Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4981403Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4989169Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.4995101Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5006645Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5008431Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5042232Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5087079Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5090115Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5111938Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5117581Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5142849Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5192108Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5197497Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5223436Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5230479Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5269492Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5280627Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5300638Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5308638Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5328863Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5358130Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5364588Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5385422Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5417267Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5433077Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5446700Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5489566Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5490850Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5495725Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5537124Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5542567Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5573683Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5585772Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5617973Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5627721Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5632480Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5667036Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5669530Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5709734Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5715396Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5730055Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5740662Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5754127Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5767062Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5777248Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5785109Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5796096Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5805249Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5824240Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5887378Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5888649Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5914489Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5920788Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5938294Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5990417Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.5999287Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6009380Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6023868Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6056843Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6084317Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6098815Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6104719Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6151402Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6153732Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6233007Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6251123Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6260095Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6298216Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6340903Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6363937Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6386409Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6401239Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6419356Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6453318Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6480210Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6489870Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6512587Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6534352Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6549776Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6591728Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6610239Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6624911Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6634112Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6643027Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6666102Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6667291Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6673348Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6700381Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6707130Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6732190Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6741834Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6760628Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6764612Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6781128Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6782868Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6796814Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6802568Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6842502Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6878359Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6879931Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6904816Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6907559Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6942819Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6948794Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.6961136Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7005948Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7079455Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7086782Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7119731Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7135619Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7142232Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7157225Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7168673Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7175149Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7181746Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7184705Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7198663Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7205581Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7216670Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7227936Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7251788Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7262061Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7312356Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7351810Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7352558Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7367159Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7380263Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7406160Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7415047Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7435448Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7440696Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7451049Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7470501Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7471655Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7477004Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7483298Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7492370Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7513973Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7524171Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7539113Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7558386Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7581353Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7583349Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7597196Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7625953Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7636895Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7654545Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7658313Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7684515Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7689777Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7709122Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7730473Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7743046Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7771355Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7822001Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7826243Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.7850894Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8041411Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8056078Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8066537Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8074918Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8087834Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8103871Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8116763Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8134629Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8140441Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8147087Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8152545Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8163347Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8169194Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8180909Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8186258Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8192084Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8198458Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8207062Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8214355Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8276394Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8298231Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8303399Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8305414Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8337108Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8360162Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8368858Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8376413Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8386054Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8391773Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8404064Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8411958Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8423681Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8451656Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8462871Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8490842Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8545166Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8560097Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8590417Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8627880Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8678548Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8805735Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8811929Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8819312Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8826203Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8831921Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8838596Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8844973Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8850927Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8857202Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8863404Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8956481Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8974086Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8980801Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8989476Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.8997181Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9009055Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9033690Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9040729Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9054661Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9059677Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9069716Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9099770Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9114627Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9119534Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9133530Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9145354Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9186878Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9189731Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9212055Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9230098Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9249372Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9250742Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9281975Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9299190Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9307148Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9337400Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9348678Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9366900Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9369740Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9412955Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9420231Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9424060Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9426979Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9458387Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9463054Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9467692Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9491529Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9498696Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9509090Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9516591Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9523304Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9531687Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9661702Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9666931Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9672550Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9678670Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9684320Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9689669Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9695316Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9700534Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9706292Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9712000Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9731404Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9737941Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9745100Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9751722Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9758175Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9765276Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9771495Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9778643Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9785345Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9791068Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9874900Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9894716Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9904267Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:30.9984943Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0012204Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0018606Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0025702Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0063183Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0066476Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0087019Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0100550Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0127635Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0151684Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0153209Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0172232Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0204532Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0215718Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0224753Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0231876Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0261254Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0265040Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0276877Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0286066Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0291920Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0295828Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0306972Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0313725Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0341012Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0345313Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0353582Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0361286Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0386684Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0392969Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0398997Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0419950Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0437988Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0575553Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0582273Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0589475Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0597582Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0605025Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0613139Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0620829Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0627513Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0634047Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0641547Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0650282Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0669175Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0676257Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0682972Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0688715Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0695504Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0701537Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0707833Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0714419Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0720015Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0911448Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0937550Z Completed 2.2 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0941192Z Completed 2.2 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0964688Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.0973882Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1023710Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1044052Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1047806Z Completed 2.2 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1055191Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1073631Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1080609Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1087401Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1093926Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1100205Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1106511Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1112816Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1118288Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1124628Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1131475Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1201400Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1210080Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1223602Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1232099Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1238034Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1251583Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1254821Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1265424Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1271128Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1318228Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1336483Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1343003Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1358883Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1506012Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1513255Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1521521Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1529842Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1537989Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1544476Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1552167Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1562958Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1571965Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1583084Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1586847Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1598423Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1679205Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1685422Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1692928Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1699175Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1707512Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1711737Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1719698Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1723887Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1735821Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1736539Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1784930Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1827670Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1869454Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1892268Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1938948Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1945887Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1958421Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1973507Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1995532Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.1996737Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2014527Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2018937Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2029334Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2035032Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2048453Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2052521Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2063879Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2066848Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2077624Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2080289Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2091466Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2099005Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2122794Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2125284Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2130792Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2140394Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2151889Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2157416Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2164336Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2172069Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2179949Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2186724Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2273397Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2282438Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2288240Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2295344Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2301720Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2308526Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2317582Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2323353Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2329372Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2336429Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2418061Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2440369Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2577775Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2585848Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2593814Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2600377Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2606849Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2615855Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2622354Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2629994Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2635440Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2649952Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2657559Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2663149Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2668408Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2674971Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2683263Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2686615Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2699819Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2707066Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2713151Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2720050Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2728308Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2737704Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2799462Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2828004Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2853138Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2869623Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2902224Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2907867Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2914264Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2934367Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2939220Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2948244Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2957657Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2968748Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2973168Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2991028Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.2995431Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3009919Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3192030Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3199740Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3207854Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3216680Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3224848Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3231829Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3239799Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3247890Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3254878Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3261491Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3474780Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3492374Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3499546Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3507827Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3515461Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3522094Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3529235Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3536452Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3558063Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3565559Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3569517Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3583719Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3604492Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3611463Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3623897Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3630703Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3638733Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3652328Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3677315Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3678528Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3694497Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3714096Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3721769Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3727191Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3750009Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3766646Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3781905Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3793261Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3801231Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3821846Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3827431Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3831391Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3844492Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3846694Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3860329Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3868091Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3873590Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3881031Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3888269Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3895806Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3902290Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.3910431Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4077111Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4082926Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4088771Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4093799Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4099581Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4112323Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4120499Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4126702Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4137681Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4148736Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4154703Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4159371Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4166073Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4172449Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4178633Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4183372Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4188761Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4194880Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4200935Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4205791Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4375385Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4387401Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4467951Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4480944Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4498596Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4506140Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4516805Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4532244Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4537261Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4549293Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4577893Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4595006Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4601321Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4618220Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4620101Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4637325Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4655799Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4708256Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4721830Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4744393Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4749970Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4762041Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4766570Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4781129Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4788005Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4794813Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4800976Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4807131Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4834058Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4840985Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4847418Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4854044Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4860485Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4866975Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4873604Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4879873Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4886748Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4893114Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4921147Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4926408Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4931340Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4936895Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4941692Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4946860Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4951684Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4957351Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4961960Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4967377Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.4995010Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5004660Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5013432Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5022128Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5035414Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5039444Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5055613Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5057562Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5067114Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5073926Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5082114Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5090681Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5261699Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5270277Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5277383Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5284652Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5292985Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5299513Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5307353Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5314828Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5321378Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5328702Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5352905Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5369796Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5383977Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5422162Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5457239Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5499290Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5521791Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5538407Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5564038Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5699492Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5705704Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5713323Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5719537Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5756534Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5763705Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5771204Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5778988Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5786825Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5793711Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5799120Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5806190Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5813353Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5819377Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5879819Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5887999Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5895418Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5903467Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5913464Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5929505Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5933617Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5948534Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5951275Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5969913Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5974708Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.5987610Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6009827Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6020807Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6025019Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6033298Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6041799Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6049403Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6058142Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6066668Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6167326Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6177337Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6196110Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6204976Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6215202Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6223739Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6234123Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6242878Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6252573Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6263088Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6344402Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6378511Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6420644Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6432514Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6440054Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6446651Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6453147Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6460445Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6467122Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6473946Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6479396Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6486179Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6492017Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6691279Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6698757Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6707450Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6714386Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6721409Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6728980Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6737136Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6744183Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6750069Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6757088Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6793858Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6802940Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6813544Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6823507Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6847702Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6859726Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6865790Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6879570Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6886462Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6889370Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6899958Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.6936431Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7071743Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7077557Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7090555Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7102063Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7111352Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7127186Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7128704Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7147738Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7158027Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7168464Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7177592Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7180244Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7186811Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7193118Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7199493Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7205617Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7211752Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7218267Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7224977Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7238978Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7243684Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7250110Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7256572Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7263465Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7271837Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7278879Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7287435Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7293496Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7301886Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7309180Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7329213Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7337444Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7353238Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7355485Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7361711Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7369736Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7382225Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7395533Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7400827Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7410037Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7415785Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7423469Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7431673Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7436224Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7442175Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7448726Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7454355Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7460214Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7466243Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7472773Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7627594Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7637332Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7707892Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7717729Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7885777Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7889066Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7896238Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7902028Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7908368Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7914801Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7920980Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7930169Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7934716Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7940800Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7969458Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.7979383Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8071636Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8096243Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8105363Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8115019Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8121987Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8129827Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8149021Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8163768Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8165410Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8180488Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8181402Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8194777Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8204252Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8208462Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8222141Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8233280Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8236489Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8246472Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8253085Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8265194Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8269778Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8301901Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8307149Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8318736Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8337342Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8353118Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8362865Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8371403Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8378226Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8389530Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8398885Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8404323Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8413043Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8420924Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8429234Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8434929Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8440294Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8446368Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8784704Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8791060Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8809221Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8812211Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8828413Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8830149Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8844761Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8845902Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8860138Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8867119Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8878166Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8888505Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8896256Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8903680Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8907357Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8921117Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8924062Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8930171Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8937113Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.8992892Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9013445Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9023616Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9033457Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9042235Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9050475Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9068056Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9075703Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9087293Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9105670Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9113868Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9123359Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9131820Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9194483Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9217631Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9263949Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9275418Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9281846Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9297420Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9333404Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9334678Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9342307Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9372600Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9373899Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9379015Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9382914Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9397541Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9408782Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9422562Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9439419Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9443402Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9473240Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9494015Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9495106Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9536515Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9539789Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9547013Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9569579Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9574470Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9586114Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9684400Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9691452Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9705620Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9715791Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9729564Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9735425Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9748608Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9756644Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9771509Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9773228Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9787595Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9790927Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9806332Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9809775Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9827183Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9844364Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9853495Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9860350Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9891942Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9909578Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9933883Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:31.9999753Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0035012Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0063446Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0102846Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0124873Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0175063Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0208509Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0233001Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0254254Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0271333Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0273511Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0285595Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0301090Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0302403Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0334412Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0336863Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0345395Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0391598Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0393417Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0408687Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0410789Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0430647Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0452047Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0454327Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0468740Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0488416Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0505481Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0513113Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0526861Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0550658Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0564909Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0598854Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0605418Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0628916Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0653527Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0668996Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0678995Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0710727Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0713040Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0731264Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0736243Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0744210Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0778467Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0782859Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0793377Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0812998Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0818404Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0830905Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0832436Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0847794Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0848916Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0861471Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0864423Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0877021Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0879612Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0891249Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.0898099Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1087468Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1158594Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1160773Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1174261Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1191062Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1202125Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1212335Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1228109Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1240114Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1244882Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1271530Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1275925Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1280437Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1312075Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1354332Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1356764Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1367173Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1398708Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1417661Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1425424Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1437789Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1450876Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1474931Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1476038Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1493399Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1501929Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1526777Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1547748Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1556161Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1588934Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1598928Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1618819Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1625910Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1641559Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1654260Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1669687Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1683277Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1704448Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1714826Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1732897Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1748149Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1765329Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1789687Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1835303Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1841431Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1846823Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1852254Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1857886Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1863192Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1868505Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1873955Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1879422Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.1885241Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2016054Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2088990Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2091079Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2097005Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2116896Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2131555Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2139761Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2149241Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2164153Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2173247Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2204523Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2224824Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2237729Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2281704Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2289197Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2318113Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2345132Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2397754Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2399642Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2423137Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2433784Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2448706Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2496020Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2505436Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2530932Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2559388Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2565125Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2583275Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2617834Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2632380Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2647398Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2668549Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2688576Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2730422Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2738042Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2743785Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2754861Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2765851Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2785289Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2792946Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2809207Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2825138Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2841836Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2856141Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2871059Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2874221Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2894598Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2895967Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2900214Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2929097Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2934018Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2957060Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2977698Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.2998396Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3049258Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3072288Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3079748Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3081083Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3103077Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3145977Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3181771Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3184418Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3191895Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3198244Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3217767Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3255632Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3274286Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3298983Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3308446Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3322330Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3345125Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3346313Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3363909Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3382969Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3409341Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3417835Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3445170Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3516283Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3530880Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3561408Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3568129Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3574651Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3598742Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3601371Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3602790Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3613769Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3615079Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3621949Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3642455Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3652127Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3662271Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3668792Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3677423Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3700414Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3708625Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3718619Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3731645Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3739910Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3749396Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3752354Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3781591Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3787223Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3799307Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3807055Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3815642Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3828261Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3840421Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3842445Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3867122Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3900320Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3913025Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3957987Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.3985955Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4005896Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4029498Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4081428Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4092905Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4102503Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4119531Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4135925Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4161738Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4177639Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4182399Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4190017Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4208239Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4216841Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4236325Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4241497Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4271882Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4282969Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4286222Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4293015Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4323351Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4345901Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4351706Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4365366Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4437871Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4456090Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4461060Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4491445Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4498432Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4514082Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4521566Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4541898Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4552263Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4568215Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4599722Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4626066Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4630126Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4637687Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4665842Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4681373Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4689864Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4716251Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4733226Z Completed 2.4 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4742861Z Completed 2.4 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4750645Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4775537Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4802063Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4861209Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4864562Z Completed 2.4 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4870429Z Completed 2.4 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4889640Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4917145Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4928776Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4932896Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4954298Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4966132Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4992157Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.4993291Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5043272Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5048357Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5064676Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5096271Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5115540Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5124501Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5171092Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5184399Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5195120Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5225676Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5230969Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5248489Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5309825Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5324479Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5327430Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5348699Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5370551Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5410382Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5418309Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5432235Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5445042Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5452390Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5468743Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5501992Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5503410Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5511630Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5524264Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5548232Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5586230Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5608478Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5624172Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5630344Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5650009Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5681453Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5705116Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5711256Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5745364Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5767784Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5793619Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5797430Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5801373Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5840779Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5841977Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5850709Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5900408Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5910487Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5915929Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5938377Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5943035Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.5989167Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6037562Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6044230Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6053230Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6070962Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6075606Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6109677Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6171784Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6173768Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6174771Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6176981Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6180002Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6183604Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6198146Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6247552Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6259569Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6260821Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6270681Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6330447Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6345782Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6350330Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6373814Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6386401Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6422992Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6430715Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6454633Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6471895Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6489437Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6521796Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6526015Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6562523Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6563899Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6605439Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6616070Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6623087Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6635193Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6646133Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6687823Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6703696Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6725478Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6728078Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6750610Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6780273Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6791602Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6801556Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6828117Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6851602Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6854869Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6868171Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6879514Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6882229Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6900227Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.6905486Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7002953Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7010316Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7011362Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7016999Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7053122Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7060286Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7127824Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7144427Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7197222Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7234910Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7244705Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7305197Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7335722Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7336846Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7393545Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7394819Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7408917Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7437028Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7454045Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7455479Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7483349Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7520669Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7530438Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7544609Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7565781Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7595411Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7633250Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7646829Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7655493Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7661157Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7701007Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7754749Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7757814Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7773381Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7793883Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7797443Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7831141Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7849290Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7879716Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7881048Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7881874Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7931140Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7940898Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7961138Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7991331Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.7999692Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8013344Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8024186Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8063660Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8077600Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8080948Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8108644Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8138172Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8148543Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8159019Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8165608Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8217527Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8221386Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8227480Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8237424Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8243928Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8259232Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8264454Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8279878Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8331924Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8360384Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8388919Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8394109Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8437422Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8443950Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8469115Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8509099Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8516815Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8537552Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8549903Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8570799Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8633106Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8661109Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8662272Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8701214Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8743534Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8755388Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8756544Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8766700Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8819341Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8865952Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8868283Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8882140Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8891352Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8898515Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8899801Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8978000Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8987292Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.8988822Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9016957Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9037585Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9038783Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9062607Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9076838Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9115176Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9120774Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9140235Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9155514Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9171830Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9178013Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9198449Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9226657Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9246771Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9281727Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9291252Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9305572Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9309368Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9320452Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9341950Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9352033Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9363640Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9423274Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9431905Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9438163Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9469413Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9477420Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9478735Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9485745Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9530278Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9546564Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9551852Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9569269Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9586884Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9610933Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9643258Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9650653Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9659315Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9694163Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9704381Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9734509Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9763866Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9781727Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9820220Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9851455Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9886424Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9902442Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9939200Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9974889Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:32.9983740Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0001450Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0006029Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0043540Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0065135Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0088706Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0099533Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0101295Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0113393Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0147638Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0183929Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0185054Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0212055Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0230824Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0236549Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0238462Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0289573Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0331034Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0337331Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0346514Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0347237Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0380102Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0445819Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0459883Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0463470Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0475192Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0485670Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0570127Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0625771Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0635592Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0651955Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0712548Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0713800Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0737312Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0774319Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0775722Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0808305Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0829929Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0859796Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0879020Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0892975Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0902444Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.0947304Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1004003Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1005369Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1006570Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1053491Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1098349Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1104622Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1110581Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1118628Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1146453Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1165522Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1169424Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1217011Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1243102Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1268122Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1273303Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1279579Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1292844Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1309592Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1356861Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1364070Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1372925Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1384454Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1395538Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1422055Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1460064Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1470814Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1488630Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1490350Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1491276Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1548402Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1574426Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1575536Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1593681Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1601559Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1608673Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1660255Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1682589Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1684755Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1721325Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1722484Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1726945Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1793753Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1794925Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1796155Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1818346Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1856473Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1878361Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1882003Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1914036Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1946997Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1948284Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1957214Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1977247Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.1994586Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2030553Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2037909Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2051674Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2073791Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2101535Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2115860Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2134186Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2186291Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2190066Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2196830Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2213733Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2214622Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2232392Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2255089Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2263026Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2281573Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2317712Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2343810Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2359805Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2370846Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2381103Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2394140Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2433478Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2439078Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2449853Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2472302Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2485826Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2510371Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2523369Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2536057Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2590389Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2594106Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2619280Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2625268Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2632970Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2639432Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2654394Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2669245Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2698518Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2769230Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2783950Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2788559Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2791855Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2819383Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2842429Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2880221Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2932474Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2937943Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2939124Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2940428Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2972796Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.2974265Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3003421Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3040610Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3042166Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3056983Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3097319Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3098632Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3129154Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3155515Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3159236Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3185533Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3188029Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3194103Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3253164Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3268532Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3283134Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3284043Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3314164Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3327082Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3356219Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3360054Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3370029Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3406891Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3431729Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3440574Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3447604Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3452825Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3515039Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3522211Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3539489Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3540555Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3541476Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3614083Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3622986Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3624062Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3643619Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3644880Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3688997Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3716749Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3727995Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3739123Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3752464Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3784343Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3799650Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3810669Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3820485Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3830884Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3852929Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3888214Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3904632Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3936422Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.3955568Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4004345Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4017943Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4041156Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4053056Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4096944Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4113711Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4115364Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4131930Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4140997Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4156119Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4163595Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4184762Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4210482Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4245851Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4269659Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4279114Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4285146Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4308667Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4342977Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4395862Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4396712Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4410230Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4426873Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4464420Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4481078Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4499673Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4516085Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4523746Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4558946Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4584419Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4591444Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4623040Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4634485Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4681155Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4698743Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4712084Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4736494Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4741104Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4792604Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4827160Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4832241Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4850778Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4858534Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4899455Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4917323Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4926575Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4929181Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4947556Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.4990225Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5000904Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5009840Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5018285Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5062595Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5068073Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5074560Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5086414Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5094121Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5109860Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5146159Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5183930Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5186589Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5228746Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5274733Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5317669Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5349297Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5373617Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5390614Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5402199Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5403424Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5467257Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5468096Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5482203Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5486221Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5496885Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5543730Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5548352Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5567819Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5587074Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5590587Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5596283Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5627279Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5633832Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5661028Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5680350Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5681754Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5721597Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5731850Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5745618Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5746956Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5763870Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5787050Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5801547Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5803844Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5823735Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5842848Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5847687Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5878013Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5893891Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5913411Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5919783Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5928996Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5940545Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5962524Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5970182Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5984785Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.5995800Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6004449Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6027098Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6034031Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6043884Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6061268Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6075070Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6081450Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6099314Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6128223Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6129402Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6143406Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6179097Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6234678Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6308834Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6320298Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6369532Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6403114Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6406895Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6446739Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6494171Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6515091Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6522424Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6541367Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6578975Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6580208Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6610812Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6625049Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6647175Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6686349Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6758959Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6764530Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6775023Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6779318Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6788853Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6789616Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6874594Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6901301Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6903036Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6911125Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6912867Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6923756Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6995263Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.6996459Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7022875Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7028347Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7034711Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7035842Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7091470Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7094835Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7111395Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7134560Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7138625Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7154188Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7190160Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7211037Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7213101Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7232463Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7244565Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7260889Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7262286Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7267457Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7319831Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7348300Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7355126Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7356234Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7392188Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7432821Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7441420Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7449686Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7480903Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7496116Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7540613Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7544924Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7551086Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7572482Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7580872Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7609906Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7642907Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7656162Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7682594Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7697238Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7707201Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7723162Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7734912Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7769526Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7797843Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7803804Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7823521Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7859900Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7865102Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7905518Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7916250Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7922895Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7942527Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7950708Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.7989658Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8004375Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8053867Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8054684Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8055329Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8069648Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8071586Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8086524Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8137955Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8160670Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8190164Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8198336Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8199464Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8213084Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8219511Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8226545Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8272292Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8301893Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8307826Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8328947Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8341986Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8347630Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8353283Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8354877Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8408520Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8452145Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8464094Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8502532Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8521080Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8527490Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8553400Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8562255Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8602039Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8628226Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8647569Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8654295Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8684985Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8720637Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8743193Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8761037Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8762263Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8778115Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8830919Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8832178Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8840085Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8851565Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8859063Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8898135Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8900946Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8907814Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8958408Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8989312Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8998181Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.8999342Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9004873Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9015441Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9051496Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9096315Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9108105Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9111434Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9149519Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9150912Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9152973Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9173103Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9221898Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9227557Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9235726Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9275781Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9283315Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9312388Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9321769Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9326991Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9360545Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9373991Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9414838Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9425790Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9429686Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9448971Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9470255Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9471471Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9482183Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9516225Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9539157Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9559639Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9569187Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9573470Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9626616Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9629526Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9655240Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9661650Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9685451Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9693287Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9724290Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9753702Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9777644Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9808487Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9809328Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9818906Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9831262Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9869598Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9921325Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9923230Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9929067Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9936969Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:33.9997351Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0000779Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0013229Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0019786Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0094510Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0166890Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0188244Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0213548Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0247429Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0248805Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0257640Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0259211Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0260486Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0268489Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0301516Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0383300Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0386461Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0400611Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0420165Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0428606Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0448018Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0507827Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0522489Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0523438Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0528773Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0537451Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0538788Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0626464Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0630136Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0632209Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0639985Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0643414Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0724367Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0729578Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0740655Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0748614Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0763323Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0827524Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0841892Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0849128Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0854632Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0898571Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0903169Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0923179Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0944153Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0948065Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0977669Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.0980443Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1020340Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1030664Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1053636Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1091184Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1116076Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1157676Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1158818Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1166590Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1178431Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1207012Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1252825Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1256872Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1259082Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1278312Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1320073Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1354051Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1371280Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1380350Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1408867Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1418513Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1441590Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1464769Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1470122Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1525798Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1535976Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1545566Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1557053Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1645630Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1646833Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1647758Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1694579Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1712134Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1713687Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1751162Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1773889Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1778778Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1787744Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1811080Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1830244Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1874336Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1925886Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1946517Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1955176Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1962989Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.1998357Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2018762Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2068947Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2070387Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2076867Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2084314Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2115446Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2133654Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2155668Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2161958Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2184630Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2217852Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2224034Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2229688Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2253800Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2290982Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2304845Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2328983Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2349289Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2376573Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2383209Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2420667Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2430720Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2438381Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2453273Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2486610Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2500093Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2528507Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2536626Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2561716Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2583363Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2587803Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2619842Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2641327Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2642435Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2664451Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2680041Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2707915Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2723800Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2748183Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2752470Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2770170Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2775721Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2795396Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2817130Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2865315Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2877463Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2886032Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2904787Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2906262Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2950939Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2970793Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2978969Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2980183Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.2990049Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3057295Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3068439Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3104448Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3105582Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3106829Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3186037Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3187309Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3200449Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3209451Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3255860Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3313325Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3314495Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3384167Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3388422Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3428766Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3483551Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3485319Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3486799Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3529903Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3551537Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3574682Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3584157Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3587740Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3637020Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3647268Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3669191Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3686573Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3687845Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3721842Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3748223Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3756978Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3775494Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3783619Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3805628Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3847733Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3859830Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3862939Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3877313Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3892932Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3924405Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3948465Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3954416Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3965256Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.3989276Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4012905Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4039736Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4050060Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4075752Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4087745Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4090144Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4117602Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4125852Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4169116Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4170226Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4224660Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4234898Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4236031Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4238458Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4253996Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4292936Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4303288Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4314957Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4363643Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4369876Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4374725Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4380915Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4395819Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4410727Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4420375Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4430504Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4440943Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4464669Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4476034Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4484119Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4527964Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4540920Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4556113Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4570247Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4594812Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4648435Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4662770Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4682315Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4708276Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4709500Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4734253Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4748114Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4765488Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4811533Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4860235Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4893930Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4896330Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4918127Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4949316Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4962574Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4963840Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.4980947Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5011420Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5039354Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5049994Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5069151Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5103115Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5126580Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5128561Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5150164Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5151214Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5160244Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5165858Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5209721Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5215850Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5255473Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5269438Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5270548Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5287293Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5293121Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5324163Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5365652Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5385071Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5391732Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5393522Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5415867Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5439692Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5477212Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5513825Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5518153Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5534336Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5538788Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5546756Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5547982Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5594384Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5641829Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5650183Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5653018Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5663504Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5669857Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5694989Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5726489Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5743427Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5769692Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5784815Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5790991Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5819615Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5821121Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5843533Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5872200Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5903088Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5911297Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5923484Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5925524Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.5929434Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6003800Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6005055Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6009674Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6020477Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6026446Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6124716Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6133779Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6141440Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6168046Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6198401Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6200074Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6210054Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6271192Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6286698Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6296279Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6331045Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6340825Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6365656Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6385433Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6409829Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6434291Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6453114Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6478816Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6498951Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6514601Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6524973Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6563139Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6569988Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6598345Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6615370Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6637713Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6665616Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6695326Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6729604Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6743094Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6747351Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6801758Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6811556Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6914799Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6929161Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6938485Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6942073Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.6952114Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7014225Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7015406Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7029367Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7084869Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7087770Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7088540Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7089328Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7112149Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7118466Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7129827Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7167777Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7199064Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7204642Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7214681Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7239974Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7255085Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7293255Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7296348Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7301391Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7315464Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7351694Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7383234Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7388814Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7403271Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7407409Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7449275Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7466382Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7491152Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7505510Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7542119Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7547257Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7556488Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7585651Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7591208Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7599904Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7608489Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7667641Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7673972Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7676417Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7679864Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7697179Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7747431Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7755304Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7757688Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7776726Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7782006Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7822009Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7834632Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7835592Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7862337Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7901054Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7911467Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7947425Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7957670Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7974385Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7985281Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.7988934Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8013906Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8037126Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8041561Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8059896Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8067644Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8121061Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8144794Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8154761Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8185198Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8191426Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8231911Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8239257Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8250580Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8255321Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8283228Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8313166Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8329856Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8359293Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8369180Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8381282Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8385487Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8401968Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8437826Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8472114Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8492592Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8515709Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8517660Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8527889Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8539269Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8545917Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8615678Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8642276Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8685296Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8686424Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8687420Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8709735Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8733232Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8768429Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8793583Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8805696Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8806998Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8808057Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8847366Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8893070Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8894426Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8909713Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8914648Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8931032Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8979254Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8991386Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.8992375Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9025084Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9037018Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9041240Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9123394Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9146104Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9168233Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9177509Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9187188Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9202520Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9241067Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9251555Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9269805Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9277539Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9311717Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9313362Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9369001Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9372313Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9395098Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9410559Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9420385Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9460908Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9473197Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9495416Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9511967Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9522516Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9553248Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9555998Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9581426Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9583829Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9634585Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9636640Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9667991Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9677934Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9691962Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9712488Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9718991Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9760397Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9796742Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9852347Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9866893Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9888718Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9889892Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9894044Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9968489Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9990143Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9993870Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:34.9999118Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0012422Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0023476Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0078220Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0080767Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0101553Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0124145Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0141012Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0151314Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0169268Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0199372Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0224707Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0225870Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0236030Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0262341Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0292218Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0308446Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0323549Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0355145Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0369497Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0411095Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0443966Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0459683Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0473872Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0477805Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0525769Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0555193Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0590724Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0608048Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0611769Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0625309Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0632115Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0704470Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0708705Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0724794Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0730671Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0750199Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0754988Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0819750Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0829918Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0840006Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0840917Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0851404Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0873562Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0918351Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0942301Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0978975Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0980113Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.0980882Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1020082Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1039681Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1052582Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1063299Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1084913Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1094613Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1113120Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1132473Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1169339Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1183543Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1213322Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1227157Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1241156Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1272598Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1274939Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1293894Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1315116Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1338935Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1361491Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1362291Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1393362Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1413101Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1416980Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1443639Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1497700Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1510234Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1518693Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1560768Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1562032Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1576641Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1577787Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1583706Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1605330Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1679087Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1687975Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1711389Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1713037Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1713862Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1742895Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1797496Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1823545Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1829346Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1840650Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1856632Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1874144Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1897300Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1918621Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1946548Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1961875Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1971621Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.1997590Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2020516Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2029683Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2058262Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2073007Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2074116Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2082303Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2129943Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2157454Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2190774Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2199689Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2221773Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2228959Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2258424Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2282471Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2317644Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2347060Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2364464Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2370360Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2391150Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2422202Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2456973Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2458154Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2494144Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2500093Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2503740Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2553107Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2554550Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2583309Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2604403Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2605165Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2630535Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2665848Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2682944Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2689443Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2690442Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2714948Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2821036Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2822222Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2823659Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2841482Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2843733Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2894074Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2914562Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2933424Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2953274Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2956186Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2969005Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.2999899Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3003039Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3066269Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3069555Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3080903Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3085883Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3091713Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3117789Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3163979Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3179143Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3180852Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3206096Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3218393Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3236850Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3279770Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3300307Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3302401Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3311384Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3333697Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3367038Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3435804Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3437268Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3457973Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3468423Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3491811Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3499549Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3538426Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3584041Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3588601Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3592027Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3612801Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3639524Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3640696Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3690755Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3698124Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3749255Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3757259Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3790788Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3795495Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3815283Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3853986Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3869738Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3880649Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3902389Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3915608Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3969859Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.3991067Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4017666Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4035138Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4036658Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4048963Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4052593Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4117472Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4134183Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4140092Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4145993Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4175336Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4194432Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4198427Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4242912Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4256910Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4261676Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4276959Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4294706Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4309689Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4355192Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4376557Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4377602Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4383853Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4389175Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4404821Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4456082Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4474323Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4487579Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4492003Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4507611Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4508821Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4568430Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4576139Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4586433Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4608721Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4629794Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4630910Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4681527Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4694610Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4719752Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4735889Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4750873Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4773365Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4774358Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4815944Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4837809Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4864960Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4868046Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4876448Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4890885Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4914472Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4954260Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4958069Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4984737Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.4989512Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5015215Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5066959Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5083363Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5093621Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5137321Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5138509Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5157238Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5166960Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5183670Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5198003Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5270279Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5280869Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5298291Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5301885Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5321610Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5362171Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5384427Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5394199Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5406025Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5407213Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5452922Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5454127Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5511265Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5530895Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5541653Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5549940Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5551317Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5563729Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5636072Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5647082Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5650858Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5668025Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5675654Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5705204Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5755677Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5759564Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5776440Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5777554Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5801786Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5816566Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5852088Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5878297Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5886092Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5925353Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5929777Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5937274Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.5968422Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6000343Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6007201Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6020520Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6040868Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6131108Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6145712Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6150502Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6170359Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6174474Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6215482Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6253996Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6266640Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6289161Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6299942Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6307811Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6363793Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6400169Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6407560Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6432193Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6439513Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6493586Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6538290Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6539030Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6553422Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6561685Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6601661Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6612095Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6660907Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6672529Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6674173Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6723760Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6741118Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6752793Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6785799Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6795035Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6796044Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6829744Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6851321Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6861224Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6893033Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6902997Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6917260Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6940073Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6950340Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6967135Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.6993293Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7007328Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7030711Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7048028Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7060166Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7080727Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7108847Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7134801Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7147526Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7148373Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7186255Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7207110Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7240273Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7241824Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7260908Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7273164Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7301963Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7341532Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7350023Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7373339Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7410903Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7414977Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7447957Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7469251Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7478774Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7488831Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7540472Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7547560Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7577201Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7604982Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7608854Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7644645Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7663149Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7669813Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7698651Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7711715Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7731077Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7767875Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7768957Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7783812Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7805533Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7827867Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7838060Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7874850Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7933056Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7938087Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7965944Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.7974786Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8016241Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8045608Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8069481Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8077152Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8118243Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8152082Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8162443Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8168073Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8183340Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8196067Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8260920Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8266228Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8267305Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8284082Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8288525Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8307921Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8362603Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8373085Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8387718Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8398688Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8399686Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8416231Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8464724Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8477582Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8487980Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8511425Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8517080Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8533446Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8567935Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8576021Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8615919Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8623693Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8651767Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8672374Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8675013Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8694460Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8733208Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8741308Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8748090Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8783291Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8786270Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8803492Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8853400Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8856892Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8876054Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8915347Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8916948Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8931993Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8968869Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8992507Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.8997400Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9059872Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9061937Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9064682Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9128691Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9169648Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9202143Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9203439Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9219112Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9240831Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9278678Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9290164Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9302462Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9327051Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9346177Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9352262Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9400663Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9410475Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9422788Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9447602Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9453294Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9473109Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9495464Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9501260Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9538928Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9553056Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9583648Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9594964Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9606577Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9611180Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9659853Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9670601Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9697504Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9706988Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9731556Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9737536Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9769977Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9771233Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9821822Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9837077Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9838175Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9859598Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9869012Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9878468Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9927912Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9944473Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9945509Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9950508Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:35.9995275Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0009709Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0064571Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0084262Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0092948Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0093972Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0119393Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0160234Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0163832Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0190859Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0243227Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0251383Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0254916Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0286650Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0297599Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0352126Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0382837Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0384378Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0386352Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0447140Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0466431Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0487234Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0501297Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0522282Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0538628Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0560359Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0581649Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0604903Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0625410Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0645332Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0662591Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0668357Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0704723Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0715199Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0730959Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0755761Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0778162Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0794926Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0802989Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0837192Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0841544Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0860258Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0895489Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0902094Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0928349Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0948151Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0949319Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0964302Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.0970444Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1039726Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1041012Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1056573Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1057496Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1068421Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1118006Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1128761Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1129986Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1144642Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1155178Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1194347Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1203290Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1219096Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1247512Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1271776Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1304961Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1315025Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1331130Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1345608Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1364498Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1375972Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1399759Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1420609Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1461496Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1477146Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1483641Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1490432Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1496979Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1506775Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1546865Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1629132Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1630358Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1633815Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1638343Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1649878Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1659603Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1700774Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1752374Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1793759Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1819376Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1822454Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1825244Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1846536Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1862587Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1878729Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1920019Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1934873Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1944511Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1956470Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1968450Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.1979755Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2009381Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2042484Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2059387Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2071209Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2088049Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2092410Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2123007Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2162985Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2176278Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2176996Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2185037Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2210667Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2227685Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2272327Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2285540Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2286570Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2292459Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2335198Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2371635Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2373233Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2379039Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2383301Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2432237Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2480112Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2483900Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2498007Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2503555Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2521785Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2570243Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2594497Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2603714Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2626920Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2635401Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2670617Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2689993Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2691325Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2725117Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2745330Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2753133Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2774802Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2800584Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2827252Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2831950Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2843351Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2863506Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2905935Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2916603Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2927041Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2934702Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.2981658Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3011727Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3019557Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3033306Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3048078Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3058140Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3086586Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3100243Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3135927Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3148203Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3159242Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3160164Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3207025Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3215428Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3248649Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3270058Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3274224Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3373019Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3374534Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3375854Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3394384Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3402533Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3409923Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3464045Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3474999Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3477240Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3498198Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3514499Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3536890Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3583264Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3591556Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3604833Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3615636Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3636638Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3679492Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3696559Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3701685Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3714790Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3718121Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3810449Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3826585Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3831081Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3838340Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3872148Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3932991Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3951622Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3960626Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3971962Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.3998670Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4027092Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4042532Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4070874Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4074565Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4094605Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4117276Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4145268Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4153068Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4160667Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4191297Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4202946Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4240470Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4241699Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4249936Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4265262Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4306173Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4324459Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4334487Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4335265Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4345032Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4383101Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4391900Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4402964Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4408083Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4452058Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4463661Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4465264Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4466955Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4493033Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4500754Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4546554Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4552178Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4564034Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4648954Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4653999Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4657816Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4697346Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4794478Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4804260Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4821832Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4827709Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4831998Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4840014Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4856295Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4863486Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4874630Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4882111Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4895471Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4904001Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4922188Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4941719Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4961678Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4971914Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.4988385Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5002383Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5037434Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5053815Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5069890Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5093905Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5100074Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5131991Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5143343Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5170167Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5180301Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5200796Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5241273Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5269110Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5293974Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5297130Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5302786Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5348636Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5372150Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5373819Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5382565Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5407117Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5424190Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5442388Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5452783Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5489575Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5497084Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5515237Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5516689Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5525660Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5534222Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5551586Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5560474Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5575232Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5608755Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5681820Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5728072Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5746200Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5758994Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5770029Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5780355Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5789335Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5814280Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5837060Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5838935Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5864729Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5889856Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5912273Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5924504Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5945378Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5953815Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5964509Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5991511Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.5996440Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6033894Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6040756Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6052954Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6063529Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6077725Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6129068Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6130274Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6132118Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6144591Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6168901Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6175327Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6183536Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6201427Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6213985Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6273103Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6288109Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6304896Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6308938Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6325284Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6353385Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6378359Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6384990Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6392986Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6421964Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6428645Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6429958Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6479174Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6501497Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6503733Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6537080Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6563752Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6564896Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6566888Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6593027Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6598295Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6610331Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6620518Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6623134Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6634775Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6646642Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6648927Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6661393Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6681134Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6727852Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6748306Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6757091Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6763069Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6789912Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6828736Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6848062Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6854926Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6878525Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6885303Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6892908Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6951949Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6957084Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.6974999Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7005897Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7018492Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7019800Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7028545Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7073283Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7076129Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7099007Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7114424Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7123834Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7160531Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7180310Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7188028Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7206012Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7223103Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7270206Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7272169Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7276654Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7284904Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7311886Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7356552Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7370819Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7379909Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7381511Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7396310Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7428711Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7456138Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7467078Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7491186Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7506697Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7507707Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7563700Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7573369Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7593553Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7613231Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7614903Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7627989Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7689656Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7711018Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7764603Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7766755Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7780299Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7804443Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7845415Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7875545Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7890830Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7936685Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7946884Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7952909Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7954061Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7973206Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.7995680Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8064246Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8070244Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8077630Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8083863Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8088017Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8110161Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8111653Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8130374Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8175881Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8192555Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8211152Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8222198Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8231555Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8241731Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8261767Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8300113Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8315219Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8336604Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8355418Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8360546Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8365799Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8422459Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8434695Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8451245Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8472181Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8485791Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8499961Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8544039Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8571492Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8583484Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8586594Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8598932Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8632905Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8641992Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8649264Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8676647Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8707556Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8731363Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8750532Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8754964Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8767259Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8791760Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8824451Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8833414Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8838901Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8868059Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8905039Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8919905Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8929787Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8933335Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.8986213Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9014070Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9032163Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9037733Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9042427Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9089961Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9097653Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9116261Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9127154Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9146499Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9197332Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9214425Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9226257Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9234428Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9299616Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9312502Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9330321Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9338268Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9346953Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9415436Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9417200Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9459004Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9461949Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9463351Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9525439Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9538261Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9543000Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9546557Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9564399Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9638435Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9648654Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9661576Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9667772Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9670664Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9743789Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9751321Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9775227Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9776943Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9796391Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9811932Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9844018Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9859311Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9882862Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9889750Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9895565Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9948008Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9955327Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9980531Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:36.9997956Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0001700Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0006772Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0060521Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0068765Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0078207Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0090330Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0091147Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0130431Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0182246Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0183634Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0185615Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0204570Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0227817Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0290282Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0291457Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0293269Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0301763Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0303106Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0376283Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0377009Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0410532Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0418271Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0419533Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0451338Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0484256Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0490190Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0512907Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0529402Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0555391Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0579808Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0583666Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0597118Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0626041Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0646288Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0673325Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0674179Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0684727Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0715984Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0740713Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0765380Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0781599Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0787034Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0822013Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0848284Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0856664Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0878397Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0923504Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0931120Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0936542Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0955526Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.0975168Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1013836Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1030779Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1036338Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1042076Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1065925Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1094060Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1154527Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1156582Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1157864Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1158868Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1161794Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1231235Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1238128Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1240361Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1243992Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1265980Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1307996Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1312203Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1330414Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1331744Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1357757Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1409745Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1427974Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1431927Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1452052Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1479132Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1543394Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1562516Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1570898Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1586336Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1591896Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1614053Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1661648Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1669424Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1690218Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1698510Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1712370Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1744153Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1759572Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1767912Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1809514Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1815653Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1821449Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1834332Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1867175Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1869446Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1925268Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1926498Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1929877Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1962586Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1977723Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.1978812Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2019819Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2027370Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2036054Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2088326Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2100760Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2107877Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2125785Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2130162Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2141348Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2199110Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2210343Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2227179Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2234924Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2249362Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2250100Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2290177Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2327334Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2343310Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2354008Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2366980Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2368253Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2403001Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2414228Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2452478Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2466671Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2475964Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2504827Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2508228Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2538497Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2557632Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2577193Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2601321Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2610982Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2628177Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2663806Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2684244Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2701787Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2711078Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2744426Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2764778Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2766036Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2834290Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2889535Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2903598Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2904431Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2917493Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2943097Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2952504Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.2987110Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3005949Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3011427Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3060376Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3107985Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3111892Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3120239Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3124354Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3145829Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3200284Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3210253Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3223303Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3236748Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3248421Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3296501Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3305021Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3324366Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3329295Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3355356Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3404255Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3405583Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3406846Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3422302Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3460487Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3482567Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3484397Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3498723Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3517894Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3550689Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3568336Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3587676Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3602327Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3619153Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3644218Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3663259Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3677889Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3691869Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3710765Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3715406Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3766231Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3767884Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3788373Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3797376Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3805722Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3865963Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3889026Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3893385Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3894749Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3905158Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3937093Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3948464Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3962202Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3968962Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3985599Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.3990986Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4051280Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4053044Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4063364Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4087935Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4124916Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4129576Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4153220Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4176735Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4241876Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4249324Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4295512Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4306023Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4307297Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4312982Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4333623Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4387251Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4401423Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4435263Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4436483Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4459457Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4460432Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4465031Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4515791Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4530000Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4543771Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4547341Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4554694Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4572166Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4607756Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4648131Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4649723Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4662081Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4684365Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4694547Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4732281Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4750300Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4777004Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4788667Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4797888Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4820278Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4860867Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4870218Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4882960Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4907116Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4925227Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4942175Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.4959472Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5007398Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5008674Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5017131Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5041278Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5057113Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5091200Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5099331Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5110364Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5111708Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5123921Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5129127Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5143899Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5179822Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5184519Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5192819Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5208456Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5254339Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5266805Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5270437Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5311891Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5327769Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5343608Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5356664Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5376565Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5407273Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5419021Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5450400Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5456226Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5469264Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5494188Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5514010Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5517268Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5532377Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5559866Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5576690Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5578127Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5605396Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5614051Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5618731Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5627947Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5638588Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5652916Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5671130Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5718809Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5721630Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5747582Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5758750Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5831223Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5837794Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5851795Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5898347Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5937789Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5951563Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5969844Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.5999926Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6042996Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6065580Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6090536Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6129089Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6157408Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6164229Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6179384Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6211709Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6217966Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6238389Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6269755Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6287608Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6328214Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6328923Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6363269Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6407399Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6410633Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6411325Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6432438Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6440584Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6514702Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6515896Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6556134Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6566936Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6645615Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6648894Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6657895Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6683240Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6696789Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6718656Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6738066Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6742438Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6773714Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6790411Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6795852Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6830090Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6852822Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6863811Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6870053Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6880302Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6901468Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6936281Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6967335Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6970286Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6979944Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.6985410Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7020374Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7047355Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7057964Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7060901Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7075853Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7121200Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7127048Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7139642Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7164707Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7178753Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7208879Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7218824Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7232317Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7258659Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7265256Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7277622Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7283985Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7295503Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7325619Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7332250Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7343723Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7351313Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7367115Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7407364Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7413751Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7421961Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7428281Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7435934Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7443541Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7452509Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7496871Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7527916Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7571411Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7594836Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7601363Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7614786Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7617532Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7631186Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7664043Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7665996Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7683436Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7714493Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7728589Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7739283Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7762004Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7793276Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7794705Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7795790Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7829232Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7836123Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7850589Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7866602Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7890760Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7895904Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7924365Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7932786Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7943846Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7956916Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7965633Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7971947Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.7983037Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8057815Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8065939Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8134218Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8176686Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8211508Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8214396Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8219657Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8246274Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8255663Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8269827Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8334241Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8351693Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8355443Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8365884Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8374093Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8390682Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8429180Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8446707Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8452994Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8459632Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8466631Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8474059Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8487997Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8499468Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8505391Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8521739Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8527042Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8545796Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8560227Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8576214Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8584803Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8631290Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8664295Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8678780Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8686527Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8731856Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8733532Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8740381Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8776220Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8785492Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8794199Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8819110Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8823430Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8848841Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8862877Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8880362Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8914718Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8930758Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8934200Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8941929Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8946125Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.8958158Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9004931Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9017395Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9018518Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9024141Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9046017Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9051709Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9062485Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9068062Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9088247Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9108396Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9110587Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9149187Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9163521Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9172569Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9181996Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9189847Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9199391Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9214986Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9254128Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9282166Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9292555Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9301555Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9308455Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9369777Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9376562Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9383255Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9394107Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9409672Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9411772Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9418983Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9433140Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9438251Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9467233Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9497494Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9515914Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9540513Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9547161Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9559057Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9601006Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9618636Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9630044Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9670712Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9673686Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9743288Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9762616Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9772188Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9788383Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9816706Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9848226Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9850170Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9865402Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9880878Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9938589Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9943658Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9947275Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9960882Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:37.9993683Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0041842Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0061199Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0063686Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0071308Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0126614Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0128779Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0136696Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0139413Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0145855Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0211557Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0219787Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0221656Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0223042Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0253505Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0257446Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0260997Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0268887Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0275681Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0280474Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0291987Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0298843Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0308539Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0323103Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0332048Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0342495Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0356773Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0361060Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0385470Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0441871Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0462133Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0482098Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0487923Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0527911Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0557864Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0599429Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0607053Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0611905Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0710653Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0718569Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0757397Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0763159Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0768929Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0774740Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0779270Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0784518Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0787591Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0794373Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0797324Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0813142Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0826592Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0838381Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0863183Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0881686Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0974577Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0980536Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0986409Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0993325Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.0996636Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1000639Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1025206Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1041049Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1055451Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1056511Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1074322Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1091072Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1099859Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1108859Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1118117Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1127793Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1136473Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1159291Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1168495Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1177517Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1204547Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1219203Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1225699Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1247739Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1256107Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1265262Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1274513Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1281709Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1288682Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1297057Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1302839Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1308750Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1314824Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1318452Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1449112Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1529242Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1548324Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1622022Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1631977Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1652921Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1694849Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1704629Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1713269Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1723256Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1743414Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1750474Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1756647Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1763715Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1779579Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1788919Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1800731Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1802997Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1812368Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1821200Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1829988Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1837858Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1846487Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1855736Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1863094Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1869048Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1875793Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1913384Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.1969253Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2013171Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2025595Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2036159Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2038709Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2050058Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2062219Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2066253Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2078910Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2081910Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2103313Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2104608Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2105414Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2108470Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2113449Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2165995Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2174763Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2183188Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2192107Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2200264Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2209242Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2217451Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2226779Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2235600Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2242173Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2475521Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2552143Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2561762Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2592000Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2601537Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2620749Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2634386Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2652058Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2661482Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2667226Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2684471Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2691972Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2698217Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2719713Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2730359Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2740917Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2750947Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2759714Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2767537Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2784843Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2802342Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2804654Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2819116Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2824522Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2836471Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2844640Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2849583Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2857009Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2864512Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2870513Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2888368Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2894120Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2900067Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2929742Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2940398Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2952373Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2968386Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.2984002Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3019957Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3025861Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3031601Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3038172Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3050737Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3053008Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3064114Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3070686Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3085932Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3115737Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3124324Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3141805Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3161573Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3169045Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3173516Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3202570Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3208289Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3213470Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3219407Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3225217Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3231372Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3237177Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3243161Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3248896Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3450876Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3491110Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3641230Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3650922Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3661897Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3672514Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3692055Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3695237Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3713666Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3739499Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3748183Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3759185Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3779002Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3789940Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3804864Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3819907Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3826017Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3840686Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3851021Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3865842Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3891551Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3914390Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3918038Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.3962221Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4008666Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4009971Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4026823Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4032186Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4067123Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4080789Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4083081Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4107211Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4150062Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4173620Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4180125Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4186016Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4220684Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4232383Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4261185Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4276882Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4289370Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4294196Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4325289Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4341312Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4358027Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4364641Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4389883Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4404784Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4407302Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4421834Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4440302Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4451182Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4483261Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4484529Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4487078Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4501258Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4519124Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4531798Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4533186Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4538867Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4547375Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4553539Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4566046Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4574828Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4580952Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4611771Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4637965Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4659921Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4680511Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4689689Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4717759Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4730803Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4761824Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4791017Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4826576Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4838042Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4851367Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4888335Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4913062Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4934832Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4949471Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.4979083Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5028729Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5032121Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5050799Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5092204Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5115590Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5131430Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5156917Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5206912Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5229731Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5232223Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5253444Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5257491Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5291631Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5301602Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5305486Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5314322Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5327990Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5337684Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5363403Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5389510Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5404439Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5405686Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5449349Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5476783Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5494160Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5502458Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5527562Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5558489Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5588013Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5618448Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5648638Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5653377Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5673360Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5696539Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5709218Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5742466Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5781639Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5783033Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5798619Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5813807Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5824067Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5856651Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5875353Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5908039Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5909155Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5929804Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5936609Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5947212Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.5984062Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6010154Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6017732Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6027703Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6048326Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6079615Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6088410Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6113433Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6130943Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6146188Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6165544Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6171030Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6177962Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6183407Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6188976Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6193171Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6249329Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6254224Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6269063Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6284300Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6296171Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6329280Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6331835Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6333309Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6384217Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6423930Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6431400Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6444433Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6473194Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6493858Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6507174Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6534901Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6542272Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6570448Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6599750Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6624849Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6644452Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6658651Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6669219Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6690760Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6746323Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6753998Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6758955Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6774073Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6778429Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6807560Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6855689Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6885209Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6892095Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6895346Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6898812Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6939155Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.6987139Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7001126Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7007688Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7011071Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7013147Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7036832Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7075740Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7093248Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7113998Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7128123Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7152469Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7157291Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7177408Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7213297Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7221816Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7229120Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7270057Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7294277Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7296432Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7301909Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7354395Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7359154Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7391415Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7393750Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7416988Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7497322Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7535646Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7548661Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7551139Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7557003Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7565402Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7574245Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7636021Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7640525Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7661784Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7675674Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7676624Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7746959Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7751539Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7786335Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7811285Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7812459Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7866959Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7883843Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7887500Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7907617Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7929458Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7934836Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7954369Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7972989Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.7986117Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8029584Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8039347Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8061170Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8090743Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8124775Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8126838Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8133949Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8183309Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8199457Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8207944Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8243745Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8263983Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8278028Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8313449Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8341056Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8345869Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8355143Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8369393Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8378825Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8425832Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8427252Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8433768Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8439150Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8486201Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8496987Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8522955Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8533138Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8537526Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8571669Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8594835Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8606792Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8612843Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8619703Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8626966Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8634132Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8643929Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8645649Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8674625Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8679324Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8692245Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8708395Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8752535Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8771674Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8774432Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8779086Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8801627Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8805133Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8819383Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8855589Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8878261Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8880476Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8897613Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8899640Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8955017Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8966555Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8982037Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8987658Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.8996136Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9044193Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9045892Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9058767Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9069556Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9081597Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9095395Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9100944Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9122201Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9140081Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9192565Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9203942Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9226424Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9230462Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9266129Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9286136Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9300562Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9305401Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9319503Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9368975Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9396937Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9425631Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9431628Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9445741Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9473727Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9498712Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9520774Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9563148Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9564499Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9598143Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9617432Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9624177Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9654714Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9658722Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9714542Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9722244Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9759214Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9770184Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9775502Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9776522Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9789127Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9827852Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9854139Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9881333Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9887455Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9901850Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9910410Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9927106Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9935942Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9987623Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:38.9998813Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0010863Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0011854Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0044156Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0065659Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0070712Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0077382Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0118653Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0124226Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0125270Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0180309Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0198890Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0213317Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0220687Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0230289Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0238522Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0251149Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0299209Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0314097Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0349266Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0363259Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0364194Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0370061Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0397856Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0441446Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0452170Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0463304Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0472411Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0485646Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0491060Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0524181Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0558977Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0573488Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0582165Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0596413Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0600782Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0641680Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0693636Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0698289Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0714115Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0739808Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0767342Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0781322Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0838763Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0850522Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0878961Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0880368Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0910398Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0924364Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0932006Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0974962Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.0995598Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1007673Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1026251Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1043552Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1044716Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1053530Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1123656Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1154119Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1165173Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1186034Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1203519Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1221041Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1274766Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1275939Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1277073Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1308690Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1318430Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1324936Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1365967Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1408559Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1414004Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1417063Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1443030Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1453986Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1475155Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1502873Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1514985Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1562116Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1563804Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1565559Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1574053Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1592075Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1643013Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1646897Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1654308Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1687511Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1714405Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1720860Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1744090Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1756825Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1790623Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1806544Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1859610Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1869568Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1878760Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1897450Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1906516Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1965462Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.1994099Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2021417Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2034346Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2035566Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2077549Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2102064Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2118511Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2140641Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2143080Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2153219Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2186946Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2192244Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2204439Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2223493Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2264182Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2291659Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2303767Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2305094Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2310403Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2329452Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2377537Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2386213Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2417823Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2441649Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2451068Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2467047Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2474127Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2496859Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2535527Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2564962Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2593896Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2616581Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2632234Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2647203Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2665829Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2687571Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2734440Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2763831Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2765353Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2769313Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2789610Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2790674Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2833307Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2839574Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2903977Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2910800Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2918883Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2928711Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2936714Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.2956525Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3025235Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3026256Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3031472Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3044297Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3047099Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3111645Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3140486Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3162900Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3163784Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3172533Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3179092Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3193956Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3265704Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3275333Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3283399Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3293493Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3302989Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3327890Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3329184Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3392313Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3411765Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3414087Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3416915Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3432322Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3435098Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3465806Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3482219Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3497292Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3505287Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3537945Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3551616Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3577036Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3581687Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3614033Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3631490Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3641288Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3670716Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3675238Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3720790Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3724832Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3736994Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3755708Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3768474Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3798922Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3832545Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3846263Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3897734Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.3926637Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4052162Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4053506Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4054569Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4092268Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4094058Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4097157Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4098828Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4119845Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4122296Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4123581Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4180362Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4191603Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4208306Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4224259Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4253430Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4265148Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4290944Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4316080Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4326700Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4354562Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4367697Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4369118Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4402962Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4415074Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4436276Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4441062Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4461653Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4495434Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4508183Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4541075Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4544762Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4558256Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4579204Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4587729Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4642116Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4644769Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4649484Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4673778Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4680455Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4719525Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4729677Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4749555Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4760029Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4767503Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4806296Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4829140Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4836264Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4944280Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4953845Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4957914Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4964353Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.4979055Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5001604Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5003077Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5045793Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5054923Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5103327Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5133541Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5141640Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5170236Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5182443Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5222387Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5235485Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5257856Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5275352Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5279867Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5333324Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5335014Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5343063Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5375453Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5384417Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5416951Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5439807Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5451262Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5481801Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5486835Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5509148Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5521795Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5546085Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5558982Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5577264Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5598007Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5604395Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5630265Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5639327Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5678067Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5681662Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5712153Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5727854Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5735267Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5782560Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5791170Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5829719Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5830807Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5837013Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5860665Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5892310Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5930298Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5931654Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5941290Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5943093Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5959488Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.5997007Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6011709Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6013425Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6024816Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6055471Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6059350Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6071791Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6082392Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6084975Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6093309Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6116799Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6166414Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6180660Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6194624Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6268833Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6269960Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6279189Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6291624Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6317153Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6328227Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6349850Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6364596Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6393669Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6403709Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6419277Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6435586Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6455177Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6477820Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6484686Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6496673Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6539752Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6558170Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6559285Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6582341Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6584134Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6623225Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6635640Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6643991Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6679489Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6685759Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6690663Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6697085Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6717140Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6742479Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6755715Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6770050Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6794421Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6799567Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6810476Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6863842Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6874635Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6889316Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6914447Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6941186Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6945922Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.6950520Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7012812Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7065312Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7070380Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7071737Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7073213Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7102155Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7109674Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7112253Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7133329Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7136799Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7143877Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7173665Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7197331Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7211088Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7226860Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7271050Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7279551Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7303846Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7326412Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7327567Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7376441Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7377713Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7386908Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7406851Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7423188Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7440163Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7497525Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7499750Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7507806Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7520247Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7547197Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7567268Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7647526Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7653138Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7655803Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7676522Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7703491Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7719743Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7750276Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7778020Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7807893Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7814978Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7846550Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7881192Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7882207Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7892257Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7894004Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7954054Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7963042Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7973376Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7984470Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.7992140Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8004421Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8081079Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8091926Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8101896Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8109216Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8110368Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8111468Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8133558Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8229267Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8233116Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8234323Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8247015Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8263353Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8270310Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8285232Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8388200Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8409527Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8410823Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8415550Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8437554Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8446428Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8482974Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8487391Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8515894Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8526276Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8558143Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8559311Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8572979Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8611169Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8628552Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8654892Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8656207Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8657467Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8731688Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8732962Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8748546Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8801138Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8802022Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8810823Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8811914Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8843014Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8853582Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8905802Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8919341Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8938365Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8946193Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8958603Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8991780Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.8998261Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9021814Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9040237Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9060419Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9077319Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9097255Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9120297Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9133029Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9144148Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9182412Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9183674Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9197762Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9201127Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9246052Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9264365Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9276073Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9298868Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9307312Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9333525Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9355772Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9391158Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9408757Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9412299Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9424596Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9434725Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9461500Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9474385Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9521550Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9548254Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9562952Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9564190Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9564994Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9590624Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9631414Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9642186Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9649065Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9684357Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9685869Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9695661Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9742824Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9750669Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9756407Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9757597Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9801302Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9835059Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9839771Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9866664Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9887101Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9911036Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9920067Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9928539Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9975953Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:39.9985478Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0013080Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0025101Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0045030Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0078294Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0118950Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0124775Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0159634Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0162244Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0167876Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0222012Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0237019Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0264813Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0265604Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0281493Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0285713Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0397607Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0398861Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0400027Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0408967Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0419865Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0443797Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0494217Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0520261Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0521410Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0536148Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0553429Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0569165Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0620103Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0626180Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0647413Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0649511Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0682283Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0683723Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0724065Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0732898Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0756602Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0777918Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0785521Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0789337Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0829545Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0861440Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0862516Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0868774Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0879556Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0926662Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0939143Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0983199Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.0984653Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1000343Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1014087Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1034976Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1062577Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1095441Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1108087Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1115825Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1137193Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1146130Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1147352Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1174084Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1205598Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1226704Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1258087Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1262443Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1317771Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1319057Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1357893Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1391345Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1402103Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1409069Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1440801Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1466020Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1467108Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1475410Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1509728Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1517165Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1573547Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1574808Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1595205Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1625659Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1628814Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1664636Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1669885Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1679644Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1723425Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1730617Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1757003Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1765905Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1777098Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1785026Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1826741Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1849443Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1867914Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1869004Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1895548Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1897786Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1938060Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1949104Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1976194Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1985564Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.1991372Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2023653Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2066483Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2083226Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2113465Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2125401Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2175788Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2185316Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2186663Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2236062Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2237559Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2239875Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2261702Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2298937Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2329568Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2360487Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2363214Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2379730Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2409472Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2413459Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2428046Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2449839Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2469889Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2510649Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2516131Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2521627Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2532529Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2560172Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2626017Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2629830Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2635310Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2646295Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2659237Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2678869Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2730542Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2731738Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2772070Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2781900Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2808139Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2824130Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2850016Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2877408Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2904270Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2906301Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2938684Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2957118Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.2960538Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3008029Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3011772Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3024845Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3037702Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3059354Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3093604Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3097903Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3103591Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3137477Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3160664Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3164928Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3165949Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3210216Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3221302Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3224197Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3227556Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3259733Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3263380Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3277732Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3323611Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3334880Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3342857Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3353022Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3361242Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3365404Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3370999Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3378950Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3412412Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3434032Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3456961Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3467600Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3468872Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3480582Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3483541Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3495721Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3575107Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3583754Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3601412Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3638910Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3671708Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3694520Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3702458Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3752491Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3801493Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3806873Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3813835Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3845340Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3896478Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3909941Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3929017Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3955761Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.3994112Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4032959Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4043432Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4065693Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4103500Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4148201Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4186811Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4188032Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4196448Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4211820Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4219594Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4221844Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4245221Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4301784Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4306728Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4352602Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4389003Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4390817Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4399285Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4436785Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4459454Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4476990Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4491028Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4501329Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4521518Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4563811Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4572534Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4583518Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4599052Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4616625Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4627751Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4672818Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4695067Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4710053Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4717541Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4741889Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4753372Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4759418Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4802906Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4804060Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4834280Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4856997Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4874101Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4879606Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4901511Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4906388Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4941022Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4963876Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4984800Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.4996786Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5009402Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5020963Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5050447Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5087352Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5100248Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5119402Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5123221Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5128622Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5154320Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5173566Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5219054Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5226803Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5228118Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5249493Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5287802Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5291168Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5302335Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5316797Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5358472Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5364493Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5416520Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5420991Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5426265Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5467853Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5486298Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5487467Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5504323Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5511410Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5566749Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5571853Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5606533Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5620041Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5635771Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5639633Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5655858Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5668032Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5684885Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5724528Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5740742Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5769217Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5770271Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5810447Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5811806Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5835155Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5845179Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5868930Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5882301Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5887542Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5927001Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5942425Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5949539Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5954265Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.5962318Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6020165Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6021366Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6057341Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6067064Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6068255Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6069972Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6089290Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6146008Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6174275Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6193300Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6207863Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6209272Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6214124Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6243112Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6299306Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6355906Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6414201Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6430412Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6436049Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6450367Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6533451Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6553579Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6563510Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6587673Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6596106Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6606741Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6634052Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6674593Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6690256Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6706574Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6719380Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6724092Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6738906Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6780954Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6805164Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6831447Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6839532Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6841950Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6853669Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6934476Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6938627Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6940272Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6949203Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6954682Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.6971365Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7040110Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7052019Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7058927Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7068186Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7071650Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7108814Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7131378Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7144652Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7170019Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7178415Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7214360Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7228273Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7291724Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7311396Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7323446Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7324575Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7346855Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7378972Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7380363Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7428354Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7443927Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7453166Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7473038Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7474006Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7519157Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7586208Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7600416Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7622881Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7624973Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7632980Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7668232Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7691759Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7700957Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7732418Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7733713Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7768823Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7783938Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7786596Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7814427Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7816440Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7850238Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7853196Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7894073Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7909793Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7939032Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7944545Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7946935Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7970025Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.7980761Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8010593Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8035236Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8051421Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8073184Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8100138Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8104684Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8118508Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8148960Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8196432Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8216672Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8224396Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8230115Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8248329Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8275794Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8329159Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8333264Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8387296Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8388524Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8398004Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8406733Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8424166Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8426377Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8478482Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8482326Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8487860Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8534334Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8552431Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8559376Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8597804Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8626977Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8640444Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8646906Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8654925Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8676163Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8680935Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8725485Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8738184Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8757043Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8778162Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8781312Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8795702Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8822922Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8861565Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8868260Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8879504Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8901984Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8931931Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8948893Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8958379Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8977608Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.8995891Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9006817Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9045673Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9056853Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9073987Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9086604Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9097535Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9136188Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9140895Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9158744Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9173939Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9199761Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9212979Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9224576Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9257950Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9268845Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9286698Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9306406Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9326539Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9333543Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9349194Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9376662Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9382407Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9410646Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9440688Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9476790Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9492116Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9500788Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9558343Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9567446Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9591557Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9604314Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9646651Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9669394Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9712533Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9713795Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9737763Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9769985Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9779021Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9803643Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9804796Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9814558Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9896654Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9899278Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9912506Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9949699Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9951345Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9959372Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9960297Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:40.9970625Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0001491Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0017735Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0054430Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0062063Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0065644Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0092479Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0098643Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0138437Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0146844Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0148022Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0200385Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0207499Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0220097Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0236231Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0237186Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0284343Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0290664Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0302915Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0329098Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0348066Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0371325Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0384669Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0413358Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0447011Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0456498Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0468237Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0473459Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0508987Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0563159Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0583221Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0589502Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0596196Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0603425Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0656917Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0663588Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0701881Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0703022Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0705246Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0756163Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0777836Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0791442Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0816127Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0839527Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0850950Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0909640Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0912050Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0954381Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0973023Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.0997930Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1024544Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1049519Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1055270Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1118658Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1131219Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1134086Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1151474Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1176269Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1194268Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1198299Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1271412Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1294500Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1298814Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1315188Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1316773Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1326010Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1357011Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1407416Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1426174Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1437161Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1440040Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1442837Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1455433Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1470900Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1515351Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1522598Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1550119Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1551312Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1575286Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1586387Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1595647Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1621580Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1662058Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1673421Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1675498Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1698369Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1718400Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1751189Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1785257Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1789194Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1811429Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1821149Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1830612Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1872588Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1881044Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1884673Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1920699Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1928340Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1948527Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1983007Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.1986680Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2013835Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2017939Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2049994Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2057157Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2067428Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2117767Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2119030Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2126985Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2150633Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2183595Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2193450Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2235739Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2253919Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2260088Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2270925Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2282462Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2321476Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2331483Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2346486Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2384316Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2386941Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2401912Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2429228Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2433689Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2460262Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2507417Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2515365Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2527845Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2555608Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2556953Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2569382Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2631088Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2631888Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2648706Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2655424Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2671415Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2676756Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2750897Z Completed 3.4 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2757380Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2788133Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2789066Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2837828Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2861542Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2917951Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2932003Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2969550Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2970712Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.2977629Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3043346Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3082246Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3084038Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3129685Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3132770Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3175718Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3189673Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3199322Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3253558Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3258663Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3277203Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3284297Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3293206Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3300000Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3341907Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3361031Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3373065Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3379627Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3388243Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3437945Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3457387Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3470259Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3471662Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3476254Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3540801Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3556718Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3559744Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3564337Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3582278Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3630861Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3677945Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3693677Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3706514Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3718825Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3733200Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3799540Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3823457Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3854168Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3879875Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3914904Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3956503Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3958160Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3964354Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.3986841Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4023714Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4041679Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4057681Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4063172Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4067414Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4110497Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4141300Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4153187Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4154472Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4157493Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4206275Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4236648Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4246833Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4271134Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4288034Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4307481Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4317895Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4324213Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4359216Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4389689Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4402892Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4434011Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4437787Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4457645Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4468111Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4484937Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4515317Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4531823Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4543911Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4569108Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4603615Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4604568Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4617680Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4641532Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4658993Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4666925Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4701195Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4736066Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4744292Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4763865Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4824802Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4825714Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4850977Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4869641Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4882917Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4896493Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4972347Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4985633Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.4991807Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5037061Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5038236Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5063695Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5087307Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5116385Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5121885Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5158691Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5159584Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5160612Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5170439Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5208272Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5237816Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5243292Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5279547Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5293149Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5298923Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5307726Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5309049Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5361913Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5369363Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5400519Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5408909Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5421873Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5431874Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5458646Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5495329Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5501534Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5534452Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5543804Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5552152Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5568176Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5583013Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5625918Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5635200Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5657358Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5663066Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5682326Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5699175Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5709109Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5761042Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5773080Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5780988Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5806280Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5818384Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5837744Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5848275Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5876143Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5913891Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5916683Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5971478Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.5980118Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6013093Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6014227Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6049548Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6050656Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6095546Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6116270Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6134342Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6138006Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6162797Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6180095Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6198060Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6266890Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6267630Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6276214Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6291126Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6313360Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6318089Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6344933Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6381085Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6384763Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6394326Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6421888Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6425915Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6479204Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6488293Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6496945Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6528122Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6529078Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6559453Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6601286Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6609845Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6630041Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6640822Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6653145Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6666040Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6707247Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6711955Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6734377Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6744247Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6758825Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6806062Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6815189Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6819515Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6838649Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6851717Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6891955Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6901353Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6915038Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6920700Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6941565Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.6986936Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7000112Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7013729Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7021948Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7052330Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7100777Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7114243Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7119824Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7129296Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7139827Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7154635Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7218492Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7229622Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7238352Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7241371Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7249662Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7289295Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7332182Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7339675Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7343930Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7350323Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7369816Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7408708Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7466588Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7467758Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7476204Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7490742Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7532487Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7641340Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7680395Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7777722Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7779097Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7780178Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7781065Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7781947Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7783366Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7793103Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7818033Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7833305Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7861087Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7865230Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7893025Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.7941923Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8004088Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8020672Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8034927Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8046999Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8050105Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8097338Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8149113Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8168470Z Completed 3.5 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8183299Z Completed 3.5 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8184538Z Completed 3.5 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8193086Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8204945Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8222348Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8271247Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8294309Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8298630Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8307524Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8333147Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8349213Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8359639Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8385352Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8407150Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8425280Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8435138Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8444928Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8484740Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8490262Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8512956Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8533711Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8539892Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8545202Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8601275Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8607231Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8622175Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8642492Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8643855Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8650371Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8697185Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8706268Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8716870Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8726763Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8746287Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8770782Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8798927Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8808185Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8829975Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8837813Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8862366Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8882104Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8919079Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8926058Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8937581Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8968470Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8989598Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.8993395Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9043409Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9048847Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9082985Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9088864Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9104768Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9121419Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9168196Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9184666Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9194041Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9195175Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9219673Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9238194Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9275592Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9276792Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9316696Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9325274Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9353542Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9354641Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9375543Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9409609Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9448476Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9467772Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9471564Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9535740Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9538516Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9550805Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9605039Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9622587Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9660841Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9661915Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9672797Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9678311Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9719859Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9743932Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9773309Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9777922Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9782827Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9784064Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9836410Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9858027Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9868514Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9869319Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9895727Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9949262Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9950412Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9959450Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9960155Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:41.9965614Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0074171Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0076684Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0083229Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0089493Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0120226Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0136697Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0154072Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0155190Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0167030Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0186988Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0263709Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0268783Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0275715Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0284850Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0305267Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0345530Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0367740Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0383346Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0384192Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0391752Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0443853Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0460201Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0484784Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0505654Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0512578Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0525456Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0526859Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0612318Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0613749Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0642488Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0643854Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0668680Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0720346Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0749177Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0750002Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0765581Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0801366Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0830947Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0833347Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0854514Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0876063Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0883399Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0929966Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0935600Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0945234Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0946657Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.0953229Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1008914Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1027909Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1036754Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1039783Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1056030Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1096129Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1105487Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1109416Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1133403Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1140210Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1151074Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1173719Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1186581Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1198882Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1219961Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1229308Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1240534Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1256282Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1287480Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1317064Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1369268Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1373070Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1409928Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1411091Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1416816Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1451619Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1454597Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1468732Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1471190Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1483374Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1491067Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1495165Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1512885Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1531315Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1557810Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1570068Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1602303Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1616267Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1630407Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1637111Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1667473Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1677417Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1727274Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1731130Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1737225Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1750889Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1786017Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1790641Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1827196Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1844738Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1859571Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1873086Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1878973Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1904591Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1931723Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1946440Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1979668Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.1992358Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2047852Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2048639Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2057900Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2089921Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2113807Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2127256Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2155677Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2160292Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2197652Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2234934Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2264656Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2266779Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2268114Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2298191Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2339137Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2350500Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2386310Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2393654Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2403396Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2413261Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2421759Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2503427Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2527734Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2539700Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2540851Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2548634Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2563584Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2577795Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2600685Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2637507Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2654528Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2657628Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2672460Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2686910Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2689311Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2743292Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2758680Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2763438Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2777870Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2796287Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2845545Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2852606Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2868244Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2875488Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2888010Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2942558Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2950203Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2957484Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2963433Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.2984549Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3043669Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3051719Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3053588Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3069966Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3087996Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3137834Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3140890Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3145098Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3152124Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3176503Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3231802Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3254012Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3256011Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3259809Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3262007Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3323836Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3330693Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3358624Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3367586Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3371304Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3395944Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3453865Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3455407Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3460870Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3468438Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3504388Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3505975Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3571287Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3586375Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3587516Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3611588Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3612926Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3628627Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3663054Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3710373Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3723887Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3745828Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3757026Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3801421Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3832439Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3869512Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3879295Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3934780Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3935846Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3958796Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.3960369Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4008771Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4038117Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4062311Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4083308Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4088666Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4104676Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4106924Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4149934Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4160321Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4197219Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4211972Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4217681Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4236604Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4256958Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4274899Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4299850Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4317958Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4319057Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4320097Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4367902Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4379985Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4407224Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4425574Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4426594Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4445810Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4467608Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4491107Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4533599Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4534840Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4536104Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4563738Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4565040Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4566467Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4607427Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4649301Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4658948Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4668759Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4674813Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4684156Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4687486Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4734993Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4760221Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4761365Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4790070Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4799342Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4801254Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4836613Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4858181Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4877496Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4886056Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4893303Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4915770Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4943539Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4965208Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4967571Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.4979102Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5023634Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5069094Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5076293Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5085177Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5089053Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5117310Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5188481Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5196414Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5197568Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5206719Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5230193Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5249072Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5297342Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5306644Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5312824Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5331416Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5332793Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5338156Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5386518Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5428138Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5436713Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5446335Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5450321Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5461914Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5491247Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5496368Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5552824Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5571026Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5574435Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5593930Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5601118Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5629696Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5649741Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5661858Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5707360Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5714381Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5732162Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5767113Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5824714Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5841509Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5866221Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5870153Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5897220Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5915647Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5964423Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5982098Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.5983370Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6012563Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6017130Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6171869Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6173239Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6174285Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6175302Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6201116Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6232394Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6233917Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6259209Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6268967Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6328912Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6365665Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6395871Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6412153Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6415635Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6428576Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6454491Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6489659Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6495598Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6520932Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6535749Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6554200Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6561406Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6586655Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6589865Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6624623Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6630156Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6655872Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6683907Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6696502Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6720281Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6731386Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6732510Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6766635Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6767907Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6792138Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6806685Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6839789Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6840617Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6873489Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6884188Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6920991Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6924984Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6935650Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6952576Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.6962880Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7008908Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7031058Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7034489Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7051556Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7106086Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7112569Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7116980Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7134530Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7149866Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7155853Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7205404Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7225349Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7230115Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7252972Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7260150Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7263771Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7294234Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7299104Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7336856Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7358153Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7380002Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7390583Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7426345Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7506643Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7535043Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7555367Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7573931Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7575099Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7616289Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7648428Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7687729Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7699803Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7727187Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7728207Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7741681Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7777555Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7809976Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7824270Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7849126Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7865753Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7866855Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7887252Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7936381Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7962210Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7971794Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7977786Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.7995256Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8012422Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8049015Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8062954Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8094586Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8099887Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8109321Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8113445Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8154453Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8188032Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8199806Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8201838Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8213462Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8233154Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8267259Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8286221Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8294150Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8320110Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8347976Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8362540Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8383536Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8400843Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8404479Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8427318Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8463054Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8468409Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8504959Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8516617Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8521727Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8573735Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8595301Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8596823Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8608083Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8648519Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8676698Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8725446Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8738408Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8744791Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8766804Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8797133Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8822808Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8843855Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8855926Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8877858Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8927259Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8963139Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8977194Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.8978406Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9004356Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9035396Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9072318Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9081873Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9107912Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9118098Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9137936Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9156050Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9167304Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9192552Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9229261Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9234660Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9252972Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9255718Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9278107Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9285528Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9331489Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9338251Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9348692Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9365030Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9372088Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9422320Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9432904Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9446036Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9470209Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9486474Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9501930Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9533356Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9534341Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9564738Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9579366Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9606288Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9618127Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9625434Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9642997Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9673456Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9697484Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9709882Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9741850Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9748821Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9765445Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9809157Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9819986Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9854114Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9857286Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9863387Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9896735Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9908473Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9937680Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9953237Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9963132Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:42.9993897Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0009350Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0033646Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0037356Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0046704Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0075106Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0115627Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0179200Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0200313Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0207724Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0220445Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0250709Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0255610Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0297531Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0340084Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0381318Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0390329Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0405563Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0425996Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0436281Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0505414Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0535146Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0590890Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0644149Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0667025Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0679362Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0708422Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0715357Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0746001Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0800179Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0812154Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0829015Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0835590Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0858638Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0860048Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0871178Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0932010Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0945267Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0950362Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0967778Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.0986575Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1010310Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1046398Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1070850Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1077669Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1101117Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1119573Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1124548Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1133989Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1178410Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1198462Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1200786Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1209705Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1221822Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1266567Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1289247Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1293535Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1312138Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1316658Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1326934Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1373214Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1404174Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1404960Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1405639Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1443082Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1447085Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1475189Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1505004Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1506023Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1553828Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1557331Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1562011Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1570578Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1587694Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1634351Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1638327Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1645904Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1649088Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1675833Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1720334Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1733324Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1740321Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1772111Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1775130Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1800793Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1820299Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1822406Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1865136Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1869112Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1894728Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1912848Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1940416Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1950732Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1986616Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.1998132Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2017571Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2035992Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2058071Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2064786Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2114060Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2143621Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2144610Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2145351Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2167779Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2172511Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2217286Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2244848Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2271547Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2274063Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2282904Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2291720Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2310851Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2320650Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2370506Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2386033Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2398736Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2413388Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2430873Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2443686Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2455452Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2487727Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2497234Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2543721Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2546673Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2547888Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2576678Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2580940Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2599848Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2609728Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2657214Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2701033Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2704102Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2711996Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2725531Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2726629Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2777361Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2800819Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2806802Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2840555Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2857024Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2861901Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2888612Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2945958Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2953806Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.2971506Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3002451Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3017023Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3029005Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3051518Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3083108Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3109758Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3115927Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3117586Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3125034Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3156963Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3200480Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3222567Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3236153Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3243487Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3263594Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3296872Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3310998Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3321730Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3329932Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3343748Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3393835Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3409687Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3419844Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3428473Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3442295Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3501976Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3503612Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3512090Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3524042Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3525290Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3596536Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3604477Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3612027Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3617961Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3623673Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3688830Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3698731Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3700023Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3701589Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3712437Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3750567Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3755122Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3766987Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3798757Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3832434Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3873752Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3892123Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3952023Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3959833Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3965513Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3977373Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3985152Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.3998563Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4008161Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4026642Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4044400Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4050294Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4057825Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4070534Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4089474Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4106836Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4120619Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4140230Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4161253Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4165878Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4187326Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4194546Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4210866Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4218626Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4226476Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4238015Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4250967Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4265144Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4277219Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4298234Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4304615Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4305710Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4321012Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4338223Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4349047Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4387475Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4389677Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4434096Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4459079Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4476451Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4478092Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4565592Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4583824Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4597645Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4641495Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4663570Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4666834Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4679591Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4756055Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4778612Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4801698Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4833814Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4870826Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4888655Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4919619Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4933084Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4938346Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4939696Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4971614Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4981474Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4989716Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.4998548Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5009431Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5045698Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5105153Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5140641Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5141792Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5145568Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5176991Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5201875Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5203111Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5204150Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5221106Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5259612Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5262506Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5282265Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5283167Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5286462Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5307801Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5336201Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5342266Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5362764Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5370330Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5375805Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5381019Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5386881Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5392229Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5397641Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5402536Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5408105Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5413418Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5619601Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5624304Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5629140Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5634259Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5638825Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5644189Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5649220Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5654757Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5659579Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5663648Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5798228Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5816418Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5840498Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5910379Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5924441Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5930562Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5936706Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5943677Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.5967955Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6009917Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6063863Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6075327Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6088726Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6097226Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6120786Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6168575Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6175544Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6193449Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6229851Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6250577Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6261792Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6284708Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6293317Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6301108Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6309676Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6315174Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6348952Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6375255Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6376348Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6404429Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6423342Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6459227Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6483406Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6488427Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6491341Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6552203Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6560396Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6562462Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6569719Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6573076Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6643812Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6645288Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6646234Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6648099Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6723010Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6726218Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6734298Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6741858Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6762282Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6773833Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6808799Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6811970Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6829762Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6859658Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6867057Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6879668Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6886575Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6934463Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6948158Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6955024Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6958067Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.6960909Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7019649Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7020763Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7022245Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7030362Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7071108Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7074002Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7081375Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7089444Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7096576Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7102149Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7127561Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7149782Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7171829Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7187074Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7198553Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7204794Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7223244Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7235741Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7240689Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7263544Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7283277Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7297937Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7320630Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7333424Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7342555Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7393766Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7397747Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7404241Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7427486Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7482555Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7489359Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7495803Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7532309Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7549105Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7586870Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7594276Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7595102Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7622841Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7630623Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7676289Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7688530Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7697126Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7738119Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7740587Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7746916Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7753205Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7809825Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7818946Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7844541Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7856960Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7870002Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7889127Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7924418Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7939359Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7958331Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7975945Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.7997744Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8021092Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8051426Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8085749Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8096328Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8101421Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8110866Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8134249Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8146816Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8148058Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8199266Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8214332Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8226284Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8242068Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8254466Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8261863Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8274793Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8307120Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8370013Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8395335Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8401882Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8403307Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8420080Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8435053Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8436942Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8438315Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8615906Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8628225Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8646684Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8647631Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8665925Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8667478Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8718836Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8720600Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8766317Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8777852Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8784737Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8792952Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8801406Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8820537Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8826304Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8885311Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8903883Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8919043Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8920265Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8933248Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8945379Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8961953Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.8997694Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9039058Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9050703Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9056963Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9069507Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9074890Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9080821Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9118275Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9193062Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9204490Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9213148Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9234454Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9253824Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9266119Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9302326Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9324442Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9329919Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9354139Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9377387Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9381599Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9389300Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9432019Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9449002Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9466663Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9476162Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9508558Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9515153Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9523946Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9549057Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9578404Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9593696Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9630053Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9652206Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9682405Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9688498Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9733400Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9747127Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9765422Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9769123Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9785883Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9826811Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9839073Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9859410Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9877522Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9914060Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9927919Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9937705Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9944846Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9950573Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:43.9963676Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0009058Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0046105Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0047804Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0054930Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0066709Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0076684Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0110108Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0122980Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0130871Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0138504Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0168223Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0213605Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0218239Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0236895Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0249343Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0251588Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0303054Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0311313Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0341045Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0347304Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0350061Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0378651Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0404119Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0436067Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0447609Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0453153Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0473336Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0488055Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0542391Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0552936Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0559045Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0570287Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0601465Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0636363Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0648555Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0677084Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0698378Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0704011Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0709934Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0729446Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0797034Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0814939Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0817704Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0823320Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0857498Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0907991Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0910359Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0939316Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0947914Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.0956628Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1024538Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1025724Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1034119Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1079835Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1080817Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1126146Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1168513Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1196106Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1197534Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1249638Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1250694Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1263598Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1302494Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1354358Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1356450Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1393680Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1397507Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1398798Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1409075Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1437576Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1442393Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1453131Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1457943Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1502202Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1554971Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1567597Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1569452Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1596037Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1603836Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1638254Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1673148Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1677129Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1687848Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1688746Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1737841Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1768518Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1774881Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1778234Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1786922Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1832970Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1871975Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1885107Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1892851Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1907134Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1919060Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1933367Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1972085Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1976793Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.1995905Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2006998Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2017048Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2022147Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2055962Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2061129Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2076648Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2095102Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2105120Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2111312Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2120078Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2126963Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2134354Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2141190Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2160904Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2169892Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2190168Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2202749Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2204948Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2212119Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2220717Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2229643Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2241072Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2246818Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2255898Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2269543Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2298724Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2304859Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2320834Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2375118Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2377562Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2384458Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2408339Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2423727Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2437551Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2446532Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2453099Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2469229Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2482044Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2488336Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2491587Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2518137Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2533477Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2534198Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2558475Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2569230Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2585607Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2598099Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2611009Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2627755Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2636705Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2637890Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2660078Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2664757Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2681296Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2688692Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2697051Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2705677Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2712876Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2724671Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2745084Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2751391Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2767103Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2830065Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2840830Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2845361Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2865366Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2908725Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2938612Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2956230Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2980780Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.2997758Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3015487Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3027170Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3040427Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3043302Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3054828Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3057224Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3063212Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3087609Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3093655Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3120131Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3134750Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3138404Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3166256Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3174026Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3178662Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3216944Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3224004Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3226255Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3255803Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3263162Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3272452Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3294002Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3302109Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3317309Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3321579Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3339489Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3349835Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3370229Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3384936Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3396553Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3413943Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3424599Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3451813Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3498485Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3511395Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3520415Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3529881Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3550369Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3573216Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3593827Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3602229Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3610946Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3619447Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3627685Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3711705Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3713846Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3797463Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3798647Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3855070Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3895780Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3921715Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3951341Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3967203Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3975963Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.3993256Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4005068Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4016396Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4040539Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4051606Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4057285Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4092293Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4097230Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4108704Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4118007Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4170348Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4184762Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4187844Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4191757Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4231825Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4253763Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4255713Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4257874Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4263857Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4274710Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4282311Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4291789Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4328286Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4335409Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4347983Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4390598Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4396201Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4411006Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4430687Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4440481Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4501580Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4505692Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4520873Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4548835Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4550932Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4590448Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4605131Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4606450Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4617668Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4630956Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4666379Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4677078Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4679159Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4698947Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4730385Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4757465Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4763679Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4772919Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4808875Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4817983Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4831298Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4842597Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4912229Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4931271Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4947665Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4948831Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4960839Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.4969460Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5004372Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5040294Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5045731Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5058740Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5072189Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5079565Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5141308Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5150026Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5151396Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5163466Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5184271Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5224610Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5227805Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5236424Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5239723Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5257839Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5296837Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5302269Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5314314Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5339949Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5358405Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5362523Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5368050Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5401738Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5412578Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5422339Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5435112Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5452599Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5461704Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5468027Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5475106Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5500852Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5512165Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5520829Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5532260Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5549101Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5555384Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5594527Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5598021Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5628347Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5639297Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5657018Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5679692Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5680619Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5693801Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5710101Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5729880Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5737136Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5759454Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5763371Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5765706Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5781733Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5785143Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5793227Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5801019Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5809701Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5818662Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5890642Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5906765Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.5917555Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6007090Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6015730Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6034174Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6089884Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6110795Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6168181Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6173908Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6188748Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6247533Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6254983Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6256258Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6276997Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6318550Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6330244Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6343934Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6373294Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6385509Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6419353Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6443548Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6444618Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6445688Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6481070Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6484412Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6525977Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6554463Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6586764Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6605123Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6630420Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6679862Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6689913Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6707651Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6710325Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6727763Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6767663Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6784447Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6789298Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6807316Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6816569Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6848826Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6869985Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6894845Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6901414Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6903049Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6911859Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.6946491Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7009398Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7033070Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7035915Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7037367Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7073641Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7092204Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7121574Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7134105Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7143722Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7144550Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7161901Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7193492Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7228652Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7235185Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7238991Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7246057Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7297133Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7318412Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7322614Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7329062Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7332578Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7396150Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7403318Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7410217Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7411992Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7432343Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7452285Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7462960Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7473502Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7505760Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7531354Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7551034Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7556179Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7572318Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7585279Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7645386Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7655986Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7666054Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7670879Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7713479Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7728042Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7734013Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7768460Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7774102Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7792211Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7816132Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7828629Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7852109Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7863513Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7897930Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7908149Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7919988Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7930748Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7942169Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.7993169Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8000312Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8003589Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8026325Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8031456Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8055042Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8097622Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8101507Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8107765Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8115621Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8153216Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8192171Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8196548Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8222462Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8223924Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8225209Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8306017Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8328815Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8329653Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8332190Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8342906Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8355207Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8392812Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8434449Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8443433Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8454192Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8465680Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8484992Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8497225Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8505853Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8543358Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8559863Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8610899Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8613893Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8643047Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8648338Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8677193Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8693512Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8721285Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8753144Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8758044Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8785301Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8797865Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8846229Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8860960Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8869869Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8870659Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8910020Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8924710Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8949849Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8967682Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8992340Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.8993730Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9005019Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9019064Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9059122Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9078556Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9084429Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9108828Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9122892Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9139241Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9171684Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9183014Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9215596Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9218101Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9226526Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9273466Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9289693Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9291162Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9315804Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9323493Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9374521Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9379904Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9393485Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9396668Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9397488Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9463167Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9477093Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9481802Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9485370Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9486565Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9492936Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9559169Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9577441Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9583060Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9588330Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9597343Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9648955Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9652566Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9665754Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9705858Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9706900Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9717282Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9745621Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9749581Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9831868Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9855273Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9877255Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9897215Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9910019Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9956641Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:44.9965504Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0004623Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0010810Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0016678Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0046384Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0078377Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0095058Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0103326Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0133573Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0143413Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0163834Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0191369Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0203433Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0214843Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0243512Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0270026Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0279021Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0302404Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0326929Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0388922Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0389702Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0395326Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0410518Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0415414Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0449562Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0457494Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0473677Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0476345Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0532973Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0549219Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0578153Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0579251Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0601542Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0633291Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0642548Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0654723Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0683276Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0713387Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0724175Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0725218Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0743893Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0777646Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0794177Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0810966Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0833105Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0848908Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0859209Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0860477Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0887542Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0894910Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0946996Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0948887Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.0993655Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1051969Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1090601Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1096695Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1105688Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1113356Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1119314Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1127982Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1133753Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1139820Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1147125Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1152815Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1160613Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1184384Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1201230Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1235208Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1297723Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1341213Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1413609Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1420294Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1522351Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1551703Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1585335Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1593979Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1601629Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1612090Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1622566Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1633979Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1642313Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1651232Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1652546Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1661253Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1663253Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1671420Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1719177Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1790281Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1913075Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.1990859Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2002226Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2006842Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2018520Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2031036Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2040439Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2049993Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2058572Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2067491Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2073916Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2090579Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2122856Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2207151Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2280252Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2397076Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2508325Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2516325Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2527291Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2551227Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2552614Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2585726Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2603548Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2605339Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2608453Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2658526Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2659955Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2670929Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2684461Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2693941Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2711529Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2733090Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2742444Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2745861Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2758793Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2763584Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2772580Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2776636Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2783925Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2852976Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2886968Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2899969Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2916153Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2928005Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2939533Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2948519Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2950436Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2957534Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2966301Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2973331Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.2988453Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3111842Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3118198Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3124180Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3130267Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3136412Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3142128Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3148252Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3161028Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3163656Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3169475Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3428841Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3438409Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3448223Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3464740Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3475049Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3481992Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3521500Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3543954Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3561015Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3581073Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3586446Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3613526Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3621413Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3624472Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3642467Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3658973Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3680594Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3711768Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3733407Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3745468Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3759127Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3777265Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3817714Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3818911Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3845539Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3856452Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3885186Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3889121Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3916389Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3922034Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3938719Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3940437Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3950168Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3963642Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3981418Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.3986613Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4001589Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4030629Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4044088Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4046432Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4065573Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4070097Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4105641Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4108617Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4110815Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4114361Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4117551Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4122009Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4129577Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4274516Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4282987Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4291458Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4301527Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4311251Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4320938Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4330332Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4340843Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4349982Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4361111Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4377551Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4386931Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4395168Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4404145Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4432583Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4453777Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4473653Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4481440Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4526433Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4584550Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4589240Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4593281Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4636991Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4646632Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4657391Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4665750Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4678598Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4715133Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4730213Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4731819Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4786202Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4793614Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4823381Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4835108Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4858059Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4866190Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4878532Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4891988Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4908801Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4914405Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4931642Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4939563Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4957313Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4975284Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.4985860Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5007367Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5015849Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5022955Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5029917Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5037961Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5045058Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5052838Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5060262Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5200401Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5208713Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5214361Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5222035Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5229219Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5237186Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5244694Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5268886Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5284559Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5293715Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5302173Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5309405Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5313113Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5324002Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5333498Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5338479Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5344093Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5348266Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5354155Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5360001Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5372131Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5378921Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5385335Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5521752Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5526509Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5565128Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5568490Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5588593Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5604275Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5644077Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5656041Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5679522Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5690102Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5696287Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5715694Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5719300Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5726350Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5745509Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5754673Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5771424Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5778273Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5819522Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5821886Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5877390Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5878722Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5880621Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5899129Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5910596Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5920905Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5938636Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5953288Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5958138Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5969905Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5973823Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.5984086Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6113158Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6121062Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6128355Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6135932Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6143256Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6151264Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6158091Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6183804Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6204886Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6243320Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6249025Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6274102Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6284118Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6287164Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6293642Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6309216Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6315096Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6324336Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6331461Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6346566Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6347768Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6370176Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6374656Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6379800Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6407785Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6415252Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6423652Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6427789Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6436042Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6464692Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6490801Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6496208Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6510241Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6554934Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6600296Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6613014Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6623446Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6632801Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.6664747Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7021736Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7028811Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7036544Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7055745Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7060924Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7066427Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7071975Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7077282Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7082946Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7088355Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7099245Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7109574Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7114248Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7141814Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7153671Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7156393Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7184638Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7193502Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7215069Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7217631Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7227297Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7240945Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7250485Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7254003Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7270490Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7283083Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7284580Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7291889Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7305316Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7314381Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7327761Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7334608Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7453659Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7459136Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7464968Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7470253Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7475770Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7480711Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7486500Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7491479Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7496649Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7501445Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7513624Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7521058Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7529874Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7538139Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7546532Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7554639Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7560713Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7567815Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7575578Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7583062Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7706030Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7720634Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7721839Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7729089Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7737256Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7745568Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7814954Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7816284Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7817381Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7818512Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7978416Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7987349Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.7994560Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8002581Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8008882Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8017790Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8021081Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8027642Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8070148Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8077228Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8085705Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8092776Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8111764Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8123449Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8141821Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8146043Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8150400Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8159941Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8163750Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8194483Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8213014Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8227664Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8236905Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8373551Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8385994Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8395826Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8441140Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8451146Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8460060Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8469162Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8476765Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8493218Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8499162Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8603997Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8620299Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8624946Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8644145Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8647380Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8664667Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8669255Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8683721Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8689684Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8698704Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8707320Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8714725Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8726320Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8732015Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8742820Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8748376Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8758311Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8763358Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8771631Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8840515Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8846415Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8852214Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8858254Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8864193Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8869775Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8875349Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8881314Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8887322Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8899498Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8903667Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8915768Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8925085Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8933085Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8936482Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8946346Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8955535Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8978150Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8991911Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.8995214Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9035780Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9061775Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9082911Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9134490Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9139088Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9144011Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9148909Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9154087Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9158864Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9163899Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9169032Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9174192Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9178979Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9292416Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9300766Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9310692Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9318255Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9323975Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9508459Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9510294Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9527507Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9537676Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9558171Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9572284Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9604275Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9616534Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9621722Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9654510Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9658912Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9671117Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9697252Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9698339Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9712456Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9726252Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9732069Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9741763Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9752510Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9759495Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9813197Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9835134Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9866830Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9872334Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9892120Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9905396Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9947303Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9955442Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9963422Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9968335Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:45.9990735Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0004253Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0005386Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0024836Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0026939Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0038006Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0044790Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0054526Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0064364Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0071853Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0079640Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0086013Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0091147Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0097583Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0103102Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0108915Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0114643Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0119836Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0125380Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0130668Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0209069Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0217607Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0225118Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0231885Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0239921Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0248072Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0253946Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0259771Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0266125Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0272337Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0404187Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0415114Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0418264Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0436735Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0442582Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0474758Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0481124Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0519126Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0528473Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0535345Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0539424Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0562157Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0570197Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0589945Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0596487Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0616571Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0629784Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0636897Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0682205Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0688375Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0692263Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0716278Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0719739Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0724998Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0733414Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0747593Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0806916Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0808724Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0812177Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0870060Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0879680Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0916694Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0927761Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0939742Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0950729Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0976588Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.0992784Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1005844Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1018435Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1057572Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1059823Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1078251Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1089322Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1094753Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1123502Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1135598Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1141361Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1166359Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1175251Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1178067Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1206711Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1215887Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1224953Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1257134Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1259474Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1276633Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1282496Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1285694Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1301517Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1304726Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1328522Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1330976Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1342571Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1347355Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1385260Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1426657Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1437399Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1448542Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1481987Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1522284Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1541968Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1555981Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1566497Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1571547Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1613209Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1640837Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1656304Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1660667Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1685819Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1697455Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1711728Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1748704Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1761353Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1784808Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1791356Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1812552Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1851376Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1854662Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1876716Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1878669Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1925190Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1930689Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1939731Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1952348Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.1984133Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2001850Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2012594Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2032192Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2033535Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2047446Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2051919Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2079624Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2080705Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2107436Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2110845Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2114765Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2136930Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2184585Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2209572Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2228231Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2297766Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2308007Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2318028Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2323749Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2329369Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2335246Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2341135Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2350907Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2360483Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2367578Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2377375Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2382192Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2388668Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2394348Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2412914Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2436677Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2440898Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2473326Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2522048Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2526738Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2587618Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2589795Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2643459Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2653989Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2658458Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2670528Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2730970Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2761698Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2785327Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2821674Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2822951Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2832087Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2840255Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2849831Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2861234Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2873659Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2884538Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2890881Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2900694Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2907454Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2923460Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2925492Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2938764Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2944339Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2960372Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.2970966Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3007762Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3025031Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3061363Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3067367Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3113526Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3137963Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3154896Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3226306Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3238645Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3245397Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3253179Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3264347Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3278049Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3281088Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3289958Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3296155Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3321503Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3342913Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3350312Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3352342Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3358209Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3544630Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3558204Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3600040Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3669206Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3689926Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3698660Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3725877Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3738225Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3761979Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3773534Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3828724Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3829761Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3840582Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3871902Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3898485Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3921609Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3929582Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3945857Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3979901Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.3987348Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4006525Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4034356Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4045079Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4053227Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4067130Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4103028Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4119446Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4122818Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4130333Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4163476Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4174219Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4197770Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4208544Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4254429Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4273423Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4284213Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4303440Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4309844Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4341698Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4349616Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4359273Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4369295Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4407380Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4429910Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4434300Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4463630Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4483778Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4497034Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4506419Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4538647Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4548140Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4560481Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4576244Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4598869Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4626107Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4627421Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4645933Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4649872Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4698696Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4727559Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4730495Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4731631Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4742128Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4796481Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4804743Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4814357Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4830621Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4860996Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4873512Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4889799Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4894422Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4942881Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4965646Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4968773Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4976145Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.4989669Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5044090Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5068674Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5089971Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5101698Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5103082Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5113324Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5126935Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5175262Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5199239Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5215396Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5228629Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5240285Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5259688Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5281132Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5352085Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5380924Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5397298Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5410207Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5416256Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5445781Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5446918Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5489804Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5529438Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5543395Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5544797Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5566666Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5595910Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5623741Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5642190Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5648677Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5654360Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5697055Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5698544Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5734410Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5757542Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5783298Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5790012Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5791004Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5813671Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5825280Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5872399Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5899951Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5903511Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5907743Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5925822Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5937335Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.5964136Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6007510Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6014857Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6020014Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6056916Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6078373Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6099460Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6122566Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6139217Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6158105Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6167728Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6179271Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6236228Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6252014Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6253316Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6257057Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6267851Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6310673Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6343572Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6354990Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6366796Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6370481Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6388390Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6428364Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6444563Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6472206Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6479913Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6491877Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6537991Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6546918Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6597268Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6598638Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6599874Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6610691Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6658876Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6686235Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6690063Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6719511Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6752008Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6755362Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6788739Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6814955Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6820111Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6839062Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6882838Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6883807Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6891981Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6919917Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6930907Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6956349Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.6967952Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7001475Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7012602Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7035240Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7044708Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7053182Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7098860Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7103618Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7121682Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7134786Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7160250Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7170008Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7186691Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7194650Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7220930Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7228358Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7254313Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7274700Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7275950Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7300860Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7332916Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7345950Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7375115Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7384265Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7427627Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7432192Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7439764Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7456771Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7486188Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7506095Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7511085Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7518703Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7570724Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7588004Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7591562Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7609366Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7620362Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7662324Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7669352Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7674411Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7706147Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7722832Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7726750Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7731744Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7754067Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7785227Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7800030Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7815783Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7824934Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7838405Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7861144Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7869810Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7890659Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7909752Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7919016Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7929063Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7931595Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7938474Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7946394Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7952917Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7956753Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7965358Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.7972081Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8009108Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8055468Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8125890Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8149677Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8193081Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8227960Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8263776Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8289915Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8331830Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8350185Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8381546Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8413937Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8449763Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8456966Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8538400Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8539707Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8585319Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8598857Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8642074Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8667895Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8691666Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8698196Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8735070Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8742389Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8783208Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8793827Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8800334Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8822885Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8832489Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8860457Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8869668Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8878522Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8887181Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8895931Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8907935Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8924209Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.8977515Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9096478Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9187010Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9196320Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9229436Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9238161Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9253069Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9259300Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9270527Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9276236Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9281599Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9302454Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9313623Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9324520Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9335377Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9343758Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9377301Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9398885Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9447000Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9477315Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9508387Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9519341Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9527698Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9541431Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9553012Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9561735Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9563063Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9570174Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9587889Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9603609Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9608132Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9620355Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9621389Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9639439Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9667149Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9670051Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9676438Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9711094Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9720914Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9729806Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9765120Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9781663Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9795238Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9800776Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9808070Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9824391Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:46.9836848Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0045020Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0067760Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0074527Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0082303Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0091800Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0099897Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0105785Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0112909Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0121212Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0131991Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0137024Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0148142Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0160979Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0169532Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0173741Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0181727Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0206634Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0231117Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0236022Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0265108Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0277586Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0289880Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0314291Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0325771Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0337606Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0341678Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0398671Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0400580Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0401777Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0407132Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0425158Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0480605Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0497940Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0504914Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0507772Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0523627Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0563229Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0584379Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0599050Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0611903Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0635946Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0651053Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0674367Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0695542Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0703998Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0729074Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0729967Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0757477Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0768127Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0776037Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0799514Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0827268Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0833701Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0844220Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0872837Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0877706Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0897064Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0906780Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0930963Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0938576Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0948068Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0956275Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0977084Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0987655Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.0994184Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1000335Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1006791Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1011992Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1017992Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1022611Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1039909Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1062007Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1074508Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1086130Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1100719Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1115287Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1152016Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1157964Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1161993Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1175286Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1209023Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1235165Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1241521Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1252057Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1261753Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1298753Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1311917Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1318897Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1343538Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1348731Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1358133Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1408673Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1414913Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1437907Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1461705Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1464386Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1475140Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1516698Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1528457Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1553450Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1563430Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1579401Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1590968Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1625416Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1638941Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1656203Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1697074Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1699777Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1711316Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1735694Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1736774Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1809832Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1815243Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1831703Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1833815Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1869833Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1923161Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1928331Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1931320Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1940514Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.1986977Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2008181Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2041515Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2071130Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2082380Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2089446Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2124399Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2131681Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2132919Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2169222Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2190187Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2191430Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2229871Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2236507Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2260641Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2271093Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2273048Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2302806Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2317840Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2333665Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2392453Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2396094Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2400995Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2408853Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2436427Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2455486Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2493729Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2495068Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2511021Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2550062Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2579641Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2591675Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2594237Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2626130Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2627218Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2673517Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2712599Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2713905Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2736818Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2746461Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2747622Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2798732Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2825750Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2846344Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2856771Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2874053Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2879862Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2928385Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2934009Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2939909Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2960970Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2976293Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.2986339Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3026642Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3082163Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3083243Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3087275Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3100051Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3149406Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3161906Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3183083Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3204115Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3211756Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3222140Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3239052Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3268246Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3283773Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3289936Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3313718Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3321875Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3344344Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3377122Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3394076Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3406983Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3413531Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3419475Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3466511Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3478528Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3498467Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3509920Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3511619Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3567204Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3570567Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3600975Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3607282Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3608660Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3653821Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3659046Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3665749Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3687470Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3694744Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3720310Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3726142Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3732210Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3757557Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3763424Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3772905Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3783463Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3790628Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3793921Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3801593Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3814863Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3823216Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3825755Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3847040Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.3907502Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4032535Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4055898Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4109396Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4115981Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4120105Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4125574Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4134961Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4143634Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4152143Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4159105Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4169150Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4188386Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4208453Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4217958Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4220571Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4253014Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4279600Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4361469Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4364705Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4429416Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4456338Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4546199Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4618112Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4622285Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4635266Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4651510Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4664590Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4674947Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4682965Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4702428Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4709711Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4711169Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4718768Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4726559Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4747268Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4868795Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4875874Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4881996Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4888346Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4894383Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4901394Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4908249Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4914066Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4919637Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4925269Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.4997929Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5028497Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5037175Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5045110Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5057408Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5068436Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5069916Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5079695Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5089115Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5107338Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5137817Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5147652Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5152955Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5225180Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5303299Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5381789Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5404528Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5407703Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5415826Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5424464Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5431110Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5439998Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5453612Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5456609Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5465814Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5484953Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5492893Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5524086Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5531751Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5550034Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5553825Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5575257Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5586685Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5598848Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5614485Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5617425Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5633153Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5636818Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5645159Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5653727Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5767854Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5775692Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5783467Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5791122Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5798270Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5807217Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5814940Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5821633Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5829255Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5835667Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5923295Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5949703Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5956173Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5978839Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5985321Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5991278Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.5998619Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6018614Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6022569Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6028635Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6055987Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6067305Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6120152Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6201478Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6207503Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6212868Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6219249Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6225195Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6231323Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6237132Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6243183Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6248619Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6254452Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6281641Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6287722Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6322611Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6329862Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6337371Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6343388Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6349706Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6356994Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6364233Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6389743Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6424119Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6426403Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6438750Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6443388Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6457477Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6463359Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6477512Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6485107Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6499632Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6527372Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6531865Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6547756Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6571070Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6573595Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6583006Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6610413Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6615600Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6626503Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6649076Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6650356Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6675289Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6690690Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6708173Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6740973Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6758030Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6764064Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6800418Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6813329Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6818952Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6820253Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6874085Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6885899Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6908135Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6909209Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6943519Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6959409Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6974552Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.6981853Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7015629Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7019714Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7025905Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7034777Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7040516Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7049083Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7056220Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7065483Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7070899Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7083305Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7087184Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7092266Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7116861Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7124411Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7130903Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7146382Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7152990Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7159508Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7166343Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7173704Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7186684Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7190229Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7203990Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7207442Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7218350Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7236366Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7243972Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7251726Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7258494Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7265017Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7271863Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7287021Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7336819Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7353384Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7366831Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7374067Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7383365Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7397921Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7424682Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7433635Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7454066Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7464548Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7475102Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7489780Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7512978Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7540362Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7563700Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7577701Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7583667Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7603231Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7618344Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7646774Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7651316Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7669406Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7674196Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7699903Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7731523Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7746562Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7747738Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7758905Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7795281Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7798650Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7810716Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7824534Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7830241Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7861040Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7890118Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7892343Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7935446Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7951277Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7971770Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.7987177Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8003674Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8010014Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8035593Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8044491Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8057488Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8063931Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8070161Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8080233Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8093444Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8112244Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8125942Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8130336Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8136442Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8142784Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8269837Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8305195Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8306088Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8343271Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8352611Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8358171Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8385411Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8396480Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8403550Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8424399Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8428775Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8436706Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8438746Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8479635Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8480637Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8502832Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8518439Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8541783Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8562404Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8581546Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8594059Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8621831Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8623224Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8651761Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8656735Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8696300Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8719355Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8720604Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8776271Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8790496Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8791900Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8796573Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8847889Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8857529Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8862572Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8870628Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8913787Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8927625Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8930111Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.8947879Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9009323Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9010711Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9017242Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9028854Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9040006Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9084746Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9085891Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9090381Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9103124Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9120238Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9126025Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9141860Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9156750Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9162141Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9174290Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9176471Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9208404Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9210896Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9221775Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9226615Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9266976Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9291225Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9292182Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9299378Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9340589Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9342346Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9348839Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9363639Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9365178Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9470757Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9478078Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9496266Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9569381Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9609437Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9629006Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9642436Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9652029Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9664872Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9666661Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9670345Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9677076Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9685626Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9693164Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9700089Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9716644Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9726541Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9737969Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9765810Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9791917Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9810711Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9848457Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9890001Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9943619Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9987971Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:47.9995226Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0033912Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0037040Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0040806Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0065813Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0076795Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0079211Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0095073Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0102076Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0112483Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0118668Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0127850Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0135282Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0144114Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0155203Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0164977Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0201851Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0393274Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0401600Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0447800Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0506362Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0513142Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0522198Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0531615Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0539066Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0571238Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0574188Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0580432Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0605719Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0609345Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0612610Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0625453Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0644982Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0653160Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0667156Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0758127Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0759267Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0760315Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0764762Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0778719Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0790404Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0795150Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0797668Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0835336Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0836480Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0853654Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0859533Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0864679Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0904684Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0908660Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0922537Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0960539Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0963132Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.0995208Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1001153Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1005153Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1031890Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1038161Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1057753Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1066953Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1071573Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1082159Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1088451Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1093966Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1105322Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1110644Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1341955Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1343364Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1419504Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1427121Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1434990Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1439910Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1445861Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1450912Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1461398Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1479772Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1487759Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1508563Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1511813Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1556303Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1557346Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1562959Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1574015Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1611061Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1716128Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1726805Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1747375Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1753280Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1763484Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1771656Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1779735Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1786957Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1794207Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1800181Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1810862Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1825914Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1826904Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1840149Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1847227Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1853517Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1868420Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1870933Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1890714Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1931832Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1969085Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1984729Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.1996526Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2014847Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2017153Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2030304Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2037255Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2043519Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2055426Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2056555Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2104087Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2116398Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2128525Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2134264Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2159928Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2174217Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2177124Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2193457Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2216303Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2218215Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2229939Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2253399Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2257778Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2266943Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2288110Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2298019Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2305893Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2325101Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2344834Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2352275Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2365766Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2386371Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2391710Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2408382Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2409457Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2479927Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2492457Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2493796Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2498819Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2523539Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2556261Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2558985Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2565873Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2575474Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2580165Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2589196Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2592978Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2603553Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2607388Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2619352Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2621155Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2635413Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2637782Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2648944Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2654470Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2660716Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2674548Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2696155Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2708801Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2721492Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2750961Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2762255Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2790907Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2798298Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2813307Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2860207Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2864201Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2869835Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2922526Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2936193Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2950113Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2963638Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2973756Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2988146Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.2989333Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3001093Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3045956Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3060167Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3066301Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3093732Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3100169Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3113930Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3135688Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3143107Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3154535Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3177244Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3187561Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3206820Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3225481Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3237553Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3252848Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3273769Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3278776Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3296685Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3315073Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3320376Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3324296Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3343343Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3348978Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3352420Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3433917Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3445072Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3448381Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3480514Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3494598Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3507436Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3522432Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3535090Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3547957Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3562945Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3575164Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3584374Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3593671Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3636178Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3643006Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3648618Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3711419Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3717311Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3722492Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3755913Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3761936Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3766891Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3843849Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3866045Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3868237Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3883004Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3912830Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3924846Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3939008Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3947130Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.3971566Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4005108Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4011332Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4026410Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4044621Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4047606Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4141347Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4143205Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4186613Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4194267Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4205047Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4248890Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4295225Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4296681Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4297981Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4299470Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4318481Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4335928Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4400068Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4405365Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4421750Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4435430Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4452523Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4457681Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4476481Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4511624Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4531579Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4534675Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4573616Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4575059Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4601993Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4616307Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4658485Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4690250Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4690957Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4700425Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4711899Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4738522Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4742440Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4778081Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4783598Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4802036Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4844294Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4860823Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4863660Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4871117Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4904661Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4919204Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4938569Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4954908Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.4960744Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5003588Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5030483Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5031754Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5042131Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5064218Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5067083Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5104070Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5117362Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5133108Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5153999Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5155105Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5158208Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5177734Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5191205Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5245125Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5246871Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5312053Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5330968Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5362568Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5401604Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5409919Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5415481Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5427561Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5433565Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5441202Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5445798Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5453243Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5485036Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5492445Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5518341Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5531061Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5539348Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5544328Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5562582Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5572099Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5593751Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5621872Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5629056Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5636031Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5642494Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5651675Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5667576Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5668866Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5677701Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5720578Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5748390Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5837912Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5844763Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5850904Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5860295Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5871198Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5878857Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5885543Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5895533Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5902363Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5910200Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5917952Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5926672Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.5973806Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6050125Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6056924Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6068351Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6082191Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6093464Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6112390Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6170226Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6268363Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6285909Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6338585Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6367560Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6386618Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6388980Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6393171Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6398638Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6418734Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6441515Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6476437Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6485832Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6514164Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6515197Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6557668Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6559532Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6568049Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6600124Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6611752Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6619349Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6634225Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6650686Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6652590Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6662494Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6694150Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6719592Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6720717Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6721845Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6741588Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6809565Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6817254Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6834566Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6862161Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6880036Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6889532Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6892782Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6900844Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6908589Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6917922Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6925659Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6934316Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6942576Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6949883Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6962031Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.6992039Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7012867Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7020391Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7023639Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7079049Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7109269Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7224084Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7237778Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7266124Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7300959Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7311689Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7354150Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7365108Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7379187Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7387795Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7397341Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7409609Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7417689Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7424764Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7430995Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7435974Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7444662Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7452991Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7462523Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7469726Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7487157Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7514676Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7532529Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7536788Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7550695Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7553716Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7576085Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7599284Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7607715Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7614886Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7700043Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7715197Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7775206Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7782499Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7788624Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7801513Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7819696Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7850382Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7888588Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7898342Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7909113Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7923871Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7958539Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7969601Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7971940Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.7987899Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8021648Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8038801Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8056231Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8061031Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8112472Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8116241Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8147378Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8150809Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8173035Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8184207Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8205208Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8222980Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8249174Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8265178Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8269023Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8283500Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8377552Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8400721Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8419740Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8425172Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8434416Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8448915Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8457961Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8503294Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8533520Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8559379Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8568496Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8578986Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8598331Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8629375Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8644425Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8657580Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8667177Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8695974Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8709978Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8724307Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8748814Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8757883Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8778076Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8786353Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8803416Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8815418Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8860449Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8879824Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8888363Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8903543Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8912524Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8927961Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8979174Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.8997247Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9023690Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9026292Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9033754Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9084875Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9093907Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9105688Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9110388Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9130779Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9183129Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9224613Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9225735Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9242897Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9248012Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9296778Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9312257Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9316168Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9326514Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9362575Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9387621Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9388587Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9391332Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9430510Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9454803Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9459201Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9470852Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9504540Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9511054Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9562994Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9570850Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9575978Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9613333Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9652321Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9743000Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9751329Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9774661Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9815677Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9825806Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9826984Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9864286Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9867499Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9877243Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9910971Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9912143Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9975188Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9977542Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:48.9986605Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0007084Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0017929Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0028071Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0068449Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0088661Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0089666Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0093846Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0119951Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0137667Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0184715Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0216735Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0228757Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0280222Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0282597Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0315858Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0406907Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0453874Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0471408Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0491710Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0508930Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0515132Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0523578Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0573199Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0589272Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0605448Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0620692Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0635354Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0640610Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0659825Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0686867Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0711861Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0743665Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0747011Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0748441Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0766516Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0799105Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0820365Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0831772Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0869427Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0886910Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0898031Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0940402Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0945143Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0956425Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0961346Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.0972033Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1021401Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1040647Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1072861Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1077713Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1089614Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1097499Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1111739Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1126970Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1159448Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1168596Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1192488Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1215832Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1224515Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1231373Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1250973Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1255757Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1282157Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1325570Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1335892Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1345886Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1351144Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1366275Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1381430Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1422190Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1445356Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1458741Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1475414Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1477827Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1497867Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1527186Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1578651Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1605263Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1609740Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1617658Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1625948Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1629547Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1647603Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1660035Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1705851Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1726980Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1732908Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1750011Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1756121Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1774744Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1779921Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1817046Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1851453Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1858323Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1868857Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1893238Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1901888Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1941054Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1961997Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1991426Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1993166Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.1994373Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2005304Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2059432Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2062827Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2083639Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2088091Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2114834Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2135446Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2159710Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2166544Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2190213Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2204057Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2223125Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2261251Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2271716Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2280030Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2293743Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2325299Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2352515Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2353823Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2373381Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2396191Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2408349Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2431053Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2439609Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2477967Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2479786Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2485235Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2523117Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2534476Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2551484Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2573050Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2577882Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2606768Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2618715Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2641680Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2659595Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2714828Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2748245Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2765565Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2789192Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2802258Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2812137Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2826801Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2899197Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2914767Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2971361Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2973597Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.2980328Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3098165Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3099327Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3152827Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3158158Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3170441Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3172459Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3230831Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3232506Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3233849Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3248264Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3257018Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3284246Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3344522Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3351508Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3356566Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3381401Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3385650Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3398868Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3448396Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3454178Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3470802Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3471616Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3500331Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3523271Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3554971Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3565378Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3582258Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3603503Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3626796Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3630735Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3654213Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3677443Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3690907Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3695738Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3727276Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3735385Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3746084Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3762225Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3767842Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3775470Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3826632Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3858479Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3938429Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3948359Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.3982866Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4026980Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4059094Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4067831Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4071184Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4107336Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4112471Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4139107Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4149351Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4202605Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4208429Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4221001Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4233454Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4245314Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4262160Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4307253Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4338293Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4345323Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4346498Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4353074Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4384732Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4437005Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4440726Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4465158Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4471652Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4474259Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4479674Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4551081Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4556276Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4563393Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4564726Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4602530Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4622454Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4669161Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4673806Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4682589Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4724986Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4728066Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4782511Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4824719Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4843769Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4845205Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4846317Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4850637Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4861205Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4893377Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4949743Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4969651Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4996563Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.4998899Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5001801Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5014595Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5041851Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5092926Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5109820Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5119734Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5131316Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5146591Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5150264Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5167110Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5205895Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5225664Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5230469Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5254645Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5264888Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5294284Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5305618Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5308760Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5349024Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5360995Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5448240Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5471688Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5497777Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5519406Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5545383Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5546403Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5568920Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5597670Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5625957Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5635863Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5661953Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5703571Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5708507Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5740330Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5742359Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5753825Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5790466Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5796779Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5853581Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5866674Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5867948Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5922475Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5951629Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5959446Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.5999866Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6001021Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6050110Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6073949Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6080889Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6102887Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6132977Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6135050Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6173993Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6209391Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6223875Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6228957Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6256180Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6262068Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6281889Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6333216Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6338507Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6339932Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6341030Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6360813Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6374573Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6384981Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6408819Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6446602Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6467737Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6471778Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6489053Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6519347Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6547733Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6558362Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6573075Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6579986Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6629144Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6634699Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6672255Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6675961Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6736550Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6764491Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6765510Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6812895Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6848588Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6862273Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6868945Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6901576Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6909108Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6919543Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6940345Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6983728Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.6995471Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7013554Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7023132Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7038619Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7047052Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7058865Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7089644Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7120186Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7151575Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7169126Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7181912Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7206111Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7210010Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7242445Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7266966Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7273979Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7278075Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7293729Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7336898Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7346145Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7355211Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7397651Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7408151Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7413261Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7421521Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7441218Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7469620Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7475447Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7495863Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7557537Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7567362Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7574604Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7603668Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7605566Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7609235Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7625992Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7637860Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7646081Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7704258Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7729403Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7738299Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7759145Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7770778Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7772334Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7773416Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7775821Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7788976Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7853138Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7870759Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7884499Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7914662Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7933004Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7934252Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7941319Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7956392Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7984791Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.7993267Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8032895Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8034380Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8045878Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8055472Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8087777Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8097002Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8111803Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8122101Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8139078Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8180346Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8192378Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8206781Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8237761Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8238506Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8239158Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8255730Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8292022Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8308946Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8338841Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8339861Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8367340Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8389066Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8394253Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8410373Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8411439Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8451167Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8454975Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8464551Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8501208Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8512028Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8541935Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8560450Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8568872Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8574089Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8586675Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8626763Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8630962Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8656807Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8693468Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8696251Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8706069Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8708547Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8726268Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8759326Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8780551Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8795036Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8815183Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8816245Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8864376Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8879088Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8889273Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8907987Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8927239Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8957656Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8978006Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.8996939Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9002580Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9013044Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9043894Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9069505Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9092553Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9099348Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9108848Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9151897Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9164231Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9176881Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9218132Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9219617Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9254523Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9263453Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9268545Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9318577Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9319792Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9338426Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9353321Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9360711Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9397178Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9414775Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9440580Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9449069Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9465063Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9484699Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9508234Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9538818Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9541330Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9543498Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9575809Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9599744Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9634512Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9640129Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9654436Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9660138Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9673563Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9753811Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9781549Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9811968Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9813601Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9830773Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9903163Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9967067Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9968390Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9969621Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:49.9970968Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0018660Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0020753Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0021938Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0028360Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0072412Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0109939Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0117304Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0153071Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0161458Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0177680Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0189156Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0197329Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0212222Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0234517Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0243048Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0248180Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0279122Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0303233Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0336441Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0342876Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0395028Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0402104Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0429538Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0462774Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0492258Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0515667Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0547744Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0569745Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0601459Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0605356Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0727840Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0752528Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0803013Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0831665Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0858309Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0905376Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0933311Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0935711Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0954093Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0965752Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0973980Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0982518Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0985294Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0994061Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.0998069Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1017545Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1024959Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1031511Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1038858Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1087119Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1134294Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1136290Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1148601Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1159254Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1160286Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1188317Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1189296Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1207621Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1240356Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1270759Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1273762Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1275194Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1276400Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1281515Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1303302Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1316509Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1325678Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1331034Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1338687Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1364534Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1373170Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1406117Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1412516Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1420558Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1449560Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1460266Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1465259Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1487587Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1493843Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1505137Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1506644Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1521017Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1524960Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1536920Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1544156Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1552560Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1559471Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1566603Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1849360Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1871359Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1881999Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1892468Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1902282Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1912459Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1934694Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1943788Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.1953407Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2013032Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2016221Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2031571Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2063609Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2070179Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2077378Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2094940Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2114977Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2123571Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2137886Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2163618Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2195840Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2197017Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2202032Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2251282Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2252548Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2265952Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2312484Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2313669Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2336024Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2355942Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2374998Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2391231Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2414674Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2428040Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2470434Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2484095Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2504222Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2505509Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2519782Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2548938Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2557256Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2571934Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2583170Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2595248Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2621142Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2649775Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2650799Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2672893Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2689130Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2697645Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2706060Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2729548Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2744080Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2749237Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2761621Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2775908Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2786649Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2803433Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2808948Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2822570Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2824787Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2837281Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2920798Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2942035Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2943348Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2961641Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2967660Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.2997559Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3000640Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3017818Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3026145Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3047124Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3070276Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3091312Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3110527Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3160226Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3190080Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3220184Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3225827Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3248461Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3250383Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3309631Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3362389Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3375402Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3391695Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3430260Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3442570Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3458855Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3483344Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3491871Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3511930Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3563945Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3586222Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3600151Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3607910Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3633518Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3669930Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3715770Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3763979Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3765689Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3768018Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3774939Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3779351Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3814218Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3841580Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3870256Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3906449Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3932937Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3947662Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3985238Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3987196Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.3989576Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4009245Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4010397Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4021502Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4035293Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4123668Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4160453Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4161857Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4164646Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4174112Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4186557Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4187539Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4223306Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4239549Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4292100Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4302268Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4331538Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4347947Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4351657Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4357055Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4371490Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4406544Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4428958Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4488869Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4490075Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4507978Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4510214Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4533506Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4537801Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4563265Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4580892Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4618709Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4631509Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4641878Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4648186Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4679240Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4680123Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4708928Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4734307Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4771017Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4772475Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4774957Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4777476Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4801894Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4803757Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4870058Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4876831Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4898057Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4898996Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4899860Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4953691Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4984202Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4985392Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.4995586Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5002324Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5034952Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5051349Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5090552Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5109458Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5129579Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5130415Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5131084Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5148632Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5195772Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5214822Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5221586Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5227107Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5246908Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5296384Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5318068Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5325046Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5344975Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5372191Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5432979Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5447875Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5460424Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5464600Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5466892Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5519733Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5521930Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5526045Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5580182Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5597240Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5638038Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5644345Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5653852Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5665395Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5682413Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5732281Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5737038Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5779446Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5780653Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5783521Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5863507Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5878077Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5898986Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5906599Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5912817Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5974477Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5981202Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5982499Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.5984354Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6043480Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6083709Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6092218Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6093655Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6104658Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6146343Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6163726Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6167588Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6169504Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6186840Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6192428Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6213145Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6225295Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6241394Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6245351Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6280353Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6303332Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6325548Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6382312Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6390843Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6399959Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6415171Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6463230Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6495784Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6517587Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6533490Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6567250Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6579559Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6587040Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6623361Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6636125Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6659509Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6676097Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6677044Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6684487Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6691070Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6696650Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6722426Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6730417Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6748543Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6755892Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6785741Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6797569Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6807667Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6811664Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6828307Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6834330Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6880842Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6935872Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6949373Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6969295Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.6998624Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7000859Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7031245Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7036052Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7064490Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7088466Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7096029Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7100889Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7125775Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7138194Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7157903Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7165371Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7192402Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7234467Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7235611Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7265863Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7266861Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7267579Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7277195Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7281615Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7299293Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7308218Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7314709Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7315965Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7331905Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7346100Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7353413Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7361955Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7370289Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7377113Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7395479Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7403245Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7412528Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7419387Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7425354Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7451460Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7454896Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7461629Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7469101Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7479260Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7486467Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7494603Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7501014Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7507511Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7515956Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7523195Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7553506Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7568042Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7575881Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7596289Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7603238Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7610890Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7618644Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7658444Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7701468Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7706179Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7716348Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7758431Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7764566Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7771872Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7780669Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7786490Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7794181Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7803839Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7812471Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7818890Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7825893Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7830216Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7944069Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.7963089Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8000901Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8066623Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8118826Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8150987Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8180818Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8200327Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8219342Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8226914Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8278672Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8288453Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8296444Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8303236Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8312595Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8320914Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8329911Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8338489Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8346032Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8353472Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8372312Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8390887Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8399356Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8408832Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8440544Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8448073Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8454902Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8461088Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8471669Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8477993Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8485860Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8492913Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8502071Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8509183Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8532017Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8532895Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8538969Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8561702Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8565338Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8573658Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8589546Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8594905Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8629774Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8634101Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8646899Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8652586Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8658766Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8665954Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8679168Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8689437Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8698520Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8705827Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8711365Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8729988Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8732286Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8738552Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8747409Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8755149Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8761587Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8847267Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8865281Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8921497Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.8987092Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9022595Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9055335Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9083838Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9111776Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9128728Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9136753Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9199935Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9212351Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9220891Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9228377Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9236339Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9243420Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9251631Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9259890Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9268404Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9274157Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9294472Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9311968Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9314697Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9325880Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9336461Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9346217Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9355436Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9361945Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9367402Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9390293Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9403404Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9421531Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9437761Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9443442Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9470757Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9481216Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9515991Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9538460Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9541471Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9560953Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9599160Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9610225Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9621368Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9643136Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9654125Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9678974Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9690017Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9691127Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9716729Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9731708Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9752034Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9770182Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9773194Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9785437Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9823095Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9833540Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9850756Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9870445Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9896395Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9941388Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9942402Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9953258Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9956629Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:50.9963351Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0001597Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0002804Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0033095Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0050510Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0063682Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0066365Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0108498Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0109677Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0126673Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0157601Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0166280Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0184346Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0194383Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0239791Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0246976Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0262795Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0276150Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0300345Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0310387Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0329902Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0355008Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0369984Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0385465Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0401639Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0436126Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0439473Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0454024Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0475394Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0509831Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0517355Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0519196Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0529748Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0560711Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0588593Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0613040Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0614146Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0649338Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0653514Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0687245Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0740594Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0741759Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0770844Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0777289Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0790416Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0802937Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0821936Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0858499Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0870694Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0890830Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0913008Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0955253Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0959026Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.0967701Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1001624Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1013635Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1044168Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1046973Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1053204Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1097718Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1101145Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1110019Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1123009Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1172396Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1188250Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1192557Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1200516Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1218960Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1237898Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1249005Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1254478Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1292848Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1313182Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1319255Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1344746Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1380865Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1419198Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1420384Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1429111Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1448755Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1467426Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1482120Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1496153Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1501562Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1560298Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1593033Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1613319Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1691281Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1715093Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1733204Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1748405Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1789830Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1798322Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1819768Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1876732Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1898739Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1906086Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1912140Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1963152Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1968630Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.1970863Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2004886Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2033414Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2057128Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2077313Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2078891Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2119591Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2121113Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2154889Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2180157Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2185656Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2187507Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2193818Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2238820Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2244754Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2261417Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2287933Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2299238Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2327208Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2331140Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2332247Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2403390Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2404196Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2421769Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2428759Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2462878Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2478510Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2491633Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2493092Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2508883Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2533138Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2549408Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2568044Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2574183Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2595216Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2608506Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2621128Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2634715Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2646431Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2659816Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2671437Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2683752Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2688218Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2695198Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2707321Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2716088Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2731069Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2745807Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2776075Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2797499Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2814646Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2823625Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2828655Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2838084Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2840453Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2853195Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2864160Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2873204Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2881976Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2889264Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2897400Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2924592Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2929122Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2932856Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2952218Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2955334Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2963257Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2970107Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2977347Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2985447Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.2992919Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3000794Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3008272Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3021433Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3033273Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3040387Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3049764Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3061422Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3081927Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3093305Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3101881Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3110246Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3121208Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3126521Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3141800Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3145809Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3158097Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3167490Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3171626Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3179142Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3191530Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3235405Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3277699Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3331726Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3365052Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3411230Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3443663Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3456750Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3472390Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3511564Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3518827Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3532325Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3555780Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3567720Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3580534Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3593842Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3606564Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3616448Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3737685Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3749088Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3757856Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3773714Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3789045Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3817507Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3831918Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3844852Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3858841Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3876735Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3902023Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3905035Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3910009Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3937169Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3971893Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.3976913Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4019640Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4048290Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4052578Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4082118Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4089202Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4096597Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4134597Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4143742Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4156832Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4172269Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4218456Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4230817Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4250729Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4256437Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4296585Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4304927Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4312596Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4325140Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4360065Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4361239Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4378311Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4388663Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4400267Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4403413Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4448386Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4449459Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4476061Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4482039Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4508429Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4511703Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4542870Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4570278Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4577984Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4581865Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4600680Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4608085Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4615272Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4621972Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4629665Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4637904Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4654356Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4663112Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4671850Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4682235Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4689002Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4696354Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4724362Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4727055Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4763342Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4772219Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4781397Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4799426Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4807509Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4838595Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4839927Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4869073Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4872367Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4905308Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4925373Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4951202Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.4960268Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5008496Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5021515Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5025629Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5065164Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5085654Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5101079Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5106910Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5112260Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5169072Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5174818Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5181905Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5234016Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5235388Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5255671Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5266608Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5289585Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5301261Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5322617Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5349756Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5351838Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5396086Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5411551Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5421703Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5444392Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5450571Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5491667Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5498899Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5506959Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5520723Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5525321Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5551419Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5563173Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5568602Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5609709Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5621729Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5645635Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5648469Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5659116Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5702387Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5719141Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5734511Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5744171Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5746770Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5790094Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5797068Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5819793Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5840394Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5868773Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5871206Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5888959Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5927645Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5935177Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5968561Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5969434Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5982084Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.5992278Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6016371Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6051390Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6055514Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6057280Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6087045Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6097917Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6100325Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6108392Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6120004Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6127160Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6132569Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6142188Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6154782Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6169612Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6188250Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6194877Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6205111Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6276061Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6323052Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6336251Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6376370Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6414354Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6455795Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6460898Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6486510Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6506215Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6537029Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6576672Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6597419Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6633521Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6672486Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6704868Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6718713Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6739233Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6746601Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6819144Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6829077Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6830838Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6896546Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6913988Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6932273Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.6976350Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7014482Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7051656Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7060106Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7079970Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7088096Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7096424Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7134174Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7143997Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7174267Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7217134Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7226625Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7267671Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7320880Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7341199Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7389946Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7391707Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7453304Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7460966Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7551119Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7555994Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7634699Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7674086Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7675345Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7700462Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7711644Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7722092Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7738891Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7742587Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7758756Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7762260Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7771755Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7781527Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7792989Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7804302Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7817737Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7828404Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7866657Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7900628Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7939794Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7955404Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7972548Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7984986Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.7986113Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8010329Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8021739Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8057636Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8075851Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8096595Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8111814Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8129224Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8185192Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8194493Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8219935Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8226556Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8232504Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8238624Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8244068Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8250302Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8257109Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8262870Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8269185Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8275606Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8381751Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8389221Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8394203Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8399802Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8406285Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8412259Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8418946Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8425634Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8433117Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8439868Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8511954Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8517714Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8523644Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8529905Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8536478Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8541280Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8546019Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8551159Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8557792Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8570905Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8617326Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8620784Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8633427Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8640691Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8655351Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8680416Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8687807Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8699633Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8796031Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8802242Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8809697Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8817860Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8977273Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8983592Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8990178Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.8997068Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9003390Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9011660Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9020390Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9028737Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9035950Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9043160Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9071539Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9076792Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9081891Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9087122Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9092070Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9097670Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9102905Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9107801Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9112540Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9117842Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9139722Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9146385Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9156788Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9163421Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9170716Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9177430Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9183022Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9190142Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9196730Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9202014Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9294531Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9303008Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9312987Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9319390Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9327290Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9335769Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9344545Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9354338Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9360907Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9367059Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9444369Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9452426Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9459239Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9474085Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9481665Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9489428Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9495902Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9502920Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9508489Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9514572Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9524640Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9536044Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9548671Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9556967Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9572568Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9597290Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9604762Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9757972Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9763640Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9769484Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9876487Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9884059Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9891491Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9899052Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9908109Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9915983Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9922519Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9930283Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9937176Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9944285Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9972302Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9977877Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:51.9983252Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0001151Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0002163Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0006045Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0012139Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0018137Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0023107Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0027948Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0058258Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0066076Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0077506Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0084856Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0091439Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0099518Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0106348Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0113882Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0119060Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0134994Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0206613Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0215145Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0222830Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0238564Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0245834Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0252474Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0259482Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0266542Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0274686Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0281175Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0364194Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0373133Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0380355Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0394748Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0402123Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0412563Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0420108Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0428705Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0437540Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0450070Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0457892Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0466793Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0474347Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0500825Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0522028Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0531076Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0538510Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0545788Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0551466Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0560292Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0567146Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0576190Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0583562Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0593602Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0600122Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0610281Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0616272Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0625198Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0633740Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0641226Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0648170Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0776670Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0784611Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0789950Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0804324Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0811928Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0818486Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0825594Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0831648Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0839045Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0844518Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0871213Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0879814Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0887741Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0896471Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0905331Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0914017Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0919610Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0925150Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0977367Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.0984312Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1119090Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1125932Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1294788Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1308193Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1342455Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1349119Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1357126Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1364000Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1371629Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1378028Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1384708Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1388551Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1400769Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1407006Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1414408Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1417784Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1433428Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1446192Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1447337Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1456456Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1467559Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1478304Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1483023Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1497192Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1501669Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1515173Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1524287Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1529993Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1546696Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1548171Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1556709Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1564159Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1573641Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1580242Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1672224Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1681650Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1789455Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1819219Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1828834Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1837302Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1844727Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1852227Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1860412Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1865910Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1871705Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1877651Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1883567Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1889643Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1895755Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.1901519Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2240928Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2248024Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2255893Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2263664Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2271746Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2288578Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2318658Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2344508Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2350694Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2359421Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2377485Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2382467Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2403673Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2405364Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2421028Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2424827Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2440260Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2443636Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2456476Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2462904Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2474069Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2480125Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2487690Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2495491Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2500911Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2741603Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2764247Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2772168Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2791345Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2795532Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2808501Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2821301Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2835606Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2855688Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2864051Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2882865Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2888535Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2894588Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2900620Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2906517Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2911989Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2918567Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2924172Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2929705Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.2935792Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3144769Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3154531Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3161615Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3178435Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3180226Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3188363Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3194960Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3202885Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3211606Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3238900Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3241261Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3242595Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3269016Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3272050Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3303397Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3331252Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3661635Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3689904Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3699640Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3709944Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3717361Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3729580Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3742783Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3755303Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3785328Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3792102Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3814373Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3823033Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3831179Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3840036Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3848658Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3855272Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3861195Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3867340Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3874287Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3880038Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3929319Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3932342Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3941960Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3948751Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3958044Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3964730Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3974418Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3979886Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3988392Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.3995624Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4005316Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4011861Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4039874Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4058389Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4079651Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4080538Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4107474Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4141970Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4144481Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4156396Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4179897Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4203030Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4206789Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4219975Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4249835Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4257850Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4268415Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4272799Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4285282Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4288471Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4300903Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4304084Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4309544Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4315317Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4355711Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4360887Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4368803Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4371905Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4376828Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4381822Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4387256Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4392152Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4397282Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4402458Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4501743Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4508987Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4515467Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4522234Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4528966Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4538750Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4542547Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4550946Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4580666Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4582262Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4601407Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4609749Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4732115Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4749607Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4758617Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4767374Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4777213Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4787053Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4796598Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4802491Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4808642Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4814853Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4840082Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4845395Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4855302Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4867208Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4877027Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4887109Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4897144Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4903609Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4922458Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4924669Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4939173Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4947891Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4952335Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4979800Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4983093Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4996461Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.4997970Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5019816Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5038861Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5061870Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5093197Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5110113Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5124017Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5153300Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5173830Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5186558Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5202396Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5218970Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5226309Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5233653Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5253295Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5261824Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5269417Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5275826Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5281413Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5293815Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5301381Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5307259Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5313145Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5318958Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5400136Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5408092Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5416524Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5423055Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5431886Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5439480Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5446362Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5453259Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5468365Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5481076Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5619472Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5625383Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5632309Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5638813Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5647039Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5657414Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5665839Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5678867Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5682773Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5689294Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5695719Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5712255Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5769825Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5774868Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5786056Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5797398Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5804942Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5812176Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5827607Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5848042Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5860441Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5893812Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5926259Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5939805Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5946686Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5975081Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.5980056Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6007499Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6028644Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6043925Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6057625Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6075082Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6090411Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6118095Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6125944Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6155279Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6172004Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6195147Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6198894Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6200049Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6234748Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6248823Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6266056Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6277042Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6291517Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6339089Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6365581Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6370974Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6376005Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6395608Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6405119Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6437171Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6440842Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6464197Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6467828Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6492616Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6505089Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6515368Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6543565Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6575053Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6578562Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6593718Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6635804Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6647188Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6654959Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6658455Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6723246Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6725645Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6727350Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6748909Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6781408Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6804249Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6836050Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6837161Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6846876Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6854617Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6886058Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6895302Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6931770Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6947302Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6977162Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6984418Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.6995385Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7000995Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7009207Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7017692Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7089231Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7097456Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7133279Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7138137Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7161832Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7163074Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7181541Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7207895Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7230533Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7257146Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7264046Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7292604Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7294260Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7340043Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7371677Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7405105Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7405871Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7410937Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7416389Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7476426Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7486730Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7511321Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7516648Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7520782Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7536842Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7588032Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7592533Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7594488Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7610544Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7655493Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7664978Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7676959Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7685114Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7730590Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7731918Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7740156Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7750527Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7792511Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7800377Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7816376Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7826762Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7851522Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7868672Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7881407Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7906775Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7916566Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7936918Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.7953563Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8026061Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8060196Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8094701Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8107736Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8213869Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8236557Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8238415Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8243209Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8347326Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8357093Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8363941Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8375644Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8444088Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8447846Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8448759Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8490265Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8495337Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8506270Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8519976Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8558668Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8573704Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8575296Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8601593Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8634676Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8673518Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8678260Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8683644Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8692390Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8731288Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8761412Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8765631Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8775391Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8786034Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8806198Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8849794Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8853475Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8865101Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8890580Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8924211Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8930314Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8933320Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8945560Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8963157Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.8986723Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9009974Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9017144Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9031199Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9041281Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9056445Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9192414Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9216351Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9290292Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9307368Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9365877Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9394487Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9437298Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9451373Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9452203Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9500197Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9511164Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9516618Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9527407Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9532094Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9547095Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9559701Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9590639Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9596809Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9628125Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9654414Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9673955Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9676826Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9678001Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9751048Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9768847Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9769721Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9785159Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9789574Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9802389Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9898885Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9900182Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9927448Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9933468Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9935721Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9950994Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:52.9997499Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0030339Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0060592Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0099170Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0130000Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0131227Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0132373Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0133676Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0146991Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0149189Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0188533Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0209431Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0247963Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0257711Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0270670Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0280100Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0320928Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0341249Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0367667Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0370295Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0384527Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0407542Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0413013Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0421796Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0433473Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0489035Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0505004Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0520484Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0539245Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0550229Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0561128Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0570691Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0617989Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0634466Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0635328Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0648520Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0658521Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0688838Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0701475Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0727851Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0756036Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0759284Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0765530Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0797297Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0834038Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0845812Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0853614Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0875095Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0880562Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0897754Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0927141Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0956957Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.0962514Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1001242Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1007136Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1037459Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1040446Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1103184Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1120335Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1141903Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1143249Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1192082Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1211066Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1254584Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1269435Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1275182Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1300006Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1328522Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1330027Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1352142Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1359657Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1392944Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1407289Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1430171Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1458468Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1466411Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1481909Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1525454Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1537595Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1582943Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1584183Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1585457Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1586461Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1587742Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1641449Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1652892Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1679726Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1694292Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1705673Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1726798Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1740552Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1758908Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1781636Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1790447Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1821431Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1831306Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1896808Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1913769Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1933145Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1935649Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1951837Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1961540Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1973369Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.1997653Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2007389Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2025189Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2043085Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2090552Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2092029Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2125292Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2134837Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2164937Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2185078Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2199361Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2200357Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2218252Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2245454Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2252405Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2289587Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2300304Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2326436Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2358222Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2379263Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2386646Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2412378Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2423017Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2433117Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2459770Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2461386Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2507580Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2520977Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2535633Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2562371Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2569464Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2589481Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2614148Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2616803Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2638606Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2654778Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2683931Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2685482Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2703504Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2728079Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2758798Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2767690Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2816353Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2817951Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2828485Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2830161Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2847674Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2865866Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2893418Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2894569Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2952309Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2953728Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2966765Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.2976044Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3001122Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3016032Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3024582Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3025908Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3061899Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3087520Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3095175Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3129224Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3145023Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3161717Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3188093Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3199815Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3207473Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3219593Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3247131Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3285730Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3287644Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3295315Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3297110Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3334775Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3343712Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3396914Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3431204Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3443181Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3502276Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3515672Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3536257Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3558702Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3574574Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3615009Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3638678Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3649745Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3680617Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3698966Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3718489Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3729644Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3753869Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3790878Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3792041Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3803081Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3811926Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3819245Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3866171Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3877256Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3923035Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3924273Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3927090Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3936676Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3954555Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.3996363Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4012942Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4021245Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4043071Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4050254Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4077679Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4102607Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4118064Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4126214Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4129849Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4147052Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4165713Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4196459Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4216622Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4229483Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4242157Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4262225Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4276321Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4296056Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4329406Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4333237Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4342857Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4366140Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4376484Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4391884Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4417613Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4430284Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4462505Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4464418Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4471618Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4506510Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4534148Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4544059Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4553566Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4560678Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4581434Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4601529Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4616839Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4626222Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4649095Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4673043Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4706367Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4707204Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4764460Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4783584Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4790240Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4811677Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4833761Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4883354Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4884582Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4906021Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4914813Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4954030Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4958687Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4981540Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.4982503Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5016158Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5053694Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5060324Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5097710Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5107179Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5115195Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5148631Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5156299Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5196040Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5202122Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5209510Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5219237Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5228338Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5263036Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5293479Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5314222Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5331250Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5332812Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5347098Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5382048Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5386374Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5400981Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5415330Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5453203Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5470525Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5528241Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5530250Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5607181Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5612809Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5640884Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5732360Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5733936Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5735051Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5810169Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5843283Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5855358Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5888100Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5959188Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.5986736Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6003715Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6061509Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6097507Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6144182Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6146411Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6167236Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6171061Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6185879Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6199356Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6205556Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6213006Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6228703Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6244242Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6259220Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6270882Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6276565Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6285075Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6315101Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6333462Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6404975Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6475680Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6566502Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6623357Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6685580Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6737345Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6743094Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6750721Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6760205Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6766835Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6771990Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6778785Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6783246Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6791811Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6801230Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6809072Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6842376Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.6952240Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7000710Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7012259Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7020262Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7044139Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7048191Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7056548Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7077258Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7094667Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7097652Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7114464Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7121570Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7129434Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7167204Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7174955Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7192055Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7215091Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7231692Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7236365Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7270100Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7272424Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7299060Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7304874Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7313605Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7324474Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7332531Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7367374Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7377986Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7389044Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7412068Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7421098Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7427429Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7445217Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7455912Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7468576Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7476224Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7491014Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7497824Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7508588Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7515892Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7521901Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7529920Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7541931Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7545175Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7583230Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7589597Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7597594Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7604031Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7609967Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7615944Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7621780Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7627505Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7638014Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7645002Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7651746Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7665368Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7670048Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7680274Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7686534Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7695529Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7716658Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7719399Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7725518Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7730924Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7736891Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7743164Z Completed 5.0 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7911280Z Completed 5.0 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7918705Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7928809Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7937288Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7960393Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7991739Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.7997382Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8026439Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8029402Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8050228Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8063024Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8067605Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8099337Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8130856Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8151256Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8163130Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8165132Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8203771Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8228019Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8229096Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8253543Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8268492Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8273102Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8286137Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8300858Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8334309Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8341203Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8363774Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8379701Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8401848Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8412918Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8424395Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8450875Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8475497Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8486456Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8498826Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8527230Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8566312Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8597443Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8606267Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8610304Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8622973Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8636109Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8693200Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8700935Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8709669Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8713424Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8723097Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8756564Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8771225Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8775913Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8813120Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8822351Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8833165Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8850341Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8857138Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8916107Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8947591Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8954707Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.8979008Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9014119Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9055057Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9064708Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9075473Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9099542Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9128255Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9169225Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9171333Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9172109Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9178803Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9233471Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9257392Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9258686Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9270186Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9276824Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9294532Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9298727Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9337391Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9350325Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9390057Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9391101Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9398793Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9413864Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9456613Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9457785Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9463523Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9469117Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9513200Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9547713Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9554176Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9569568Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9575017Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9580904Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9598898Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9617401Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9641543Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9688645Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9698817Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9710438Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9726172Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9752179Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9753656Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9759345Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9786170Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9832405Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9852509Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9863942Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9880944Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9882244Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9893318Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9902262Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9926753Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9933712Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:53.9980720Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0003106Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0021930Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0027723Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0038223Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0048450Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0056587Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0068018Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0118517Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0154483Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0167368Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0178486Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0179819Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0183302Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0196226Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0286564Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0301736Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0307702Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0309974Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0322500Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0324008Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0326305Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0336549Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0435722Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0441742Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0457741Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0459070Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0463486Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0472430Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0475294Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0493233Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0565288Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0569147Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0578685Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0585637Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0621692Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0625938Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0644603Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0663122Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0671658Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0702137Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0721887Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0723341Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0750242Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0808641Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0817306Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0850501Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0876896Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0886109Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0894617Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0922198Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0955099Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0988959Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.0996700Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1001614Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1026853Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1052345Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1084093Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1094090Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1109271Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1123311Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1134853Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1176265Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1207708Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1216579Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1218728Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1234833Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1261552Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1286492Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1300726Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1316715Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1321269Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1353102Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1392294Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1403495Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1412224Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1420416Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1437834Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1489937Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1504958Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1508924Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1530085Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1547863Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1564738Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1594604Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1595960Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1597615Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1654149Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1675211Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1683236Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1687707Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1731271Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1744451Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1753301Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1755103Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1787892Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1804542Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1823023Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1842867Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1888780Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1924029Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1937129Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.1997639Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2044788Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2073274Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2078974Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2086068Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2093067Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2104772Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2116356Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2128442Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2152932Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2172994Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2174516Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2191451Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2200770Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2205936Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2230660Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2237828Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2262113Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2263522Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2312348Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2373064Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2393886Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2457103Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2473295Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2552356Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2569182Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2623290Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2629067Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2653646Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2666558Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2684769Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2686993Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2697155Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2711373Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2718359Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2734990Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2743192Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2755613Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2765095Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2770995Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2778253Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2815609Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2947975Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.2998095Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3014578Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3026443Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3052207Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3056308Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3066194Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3095770Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3113857Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3125803Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3167908Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3175671Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3189324Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3198726Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3207268Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3213164Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3218247Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3224085Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3231309Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3237633Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3241948Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3249236Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3259966Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3348751Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3414905Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3505233Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3507058Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3514140Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3520286Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3525770Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3531605Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3545907Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3553902Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3565112Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3571553Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3602448Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3613485Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3615195Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3650002Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3654226Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3656116Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3683962Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3698216Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3707199Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3710979Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3723133Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3725008Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3730749Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3743763Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3745009Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3756214Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3762498Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3768886Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3829370Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3835486Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3841226Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3846892Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3852466Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3858442Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3865171Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3870712Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3876549Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3882083Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3903017Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3917366Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3937124Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3949149Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3975854Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.3992345Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4017396Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4034202Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4046342Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4093403Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4106331Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4113291Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4122285Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4129415Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4147956Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4154448Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4160497Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4167976Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4185962Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4191980Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4205997Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4216598Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4223429Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4230615Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4237318Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4243150Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4249693Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4256983Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4262875Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4269083Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4429152Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4433099Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4440495Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4450472Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4457753Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4469189Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4471263Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4480420Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4514297Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4528823Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4543195Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4576210Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4579622Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4586864Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4611423Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4663651Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4665274Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4666439Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4686001Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4696512Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4715398Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4743668Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4760805Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4794198Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4795831Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4797020Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4824713Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4874299Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4875648Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4884386Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4906962Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4944222Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4959672Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4966816Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.4967932Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5015986Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5038128Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5057785Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5067123Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5069428Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5077446Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5128872Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5129829Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5141223Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5144492Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5182374Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5201656Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5219822Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5227408Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5239463Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5261380Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5291425Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5293011Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5297201Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5324179Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5346593Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5363860Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5382374Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5414766Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5417997Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5439943Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5465485Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5474954Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5510002Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5527281Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5537517Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5544586Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5574775Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5605359Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5606514Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5613866Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5628484Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5664822Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5678059Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5680319Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5702506Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5729983Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5738417Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5764682Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5770471Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5783396Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5804256Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5829100Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5868233Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5888456Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5898091Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5899109Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5899869Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5916637Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.5939015Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6006901Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6021782Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6043173Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6044294Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6048359Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6059073Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6076811Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6080446Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6160089Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6179159Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6184164Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6200934Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6201769Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6226365Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6244222Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6314563Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6365366Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6405862Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6433384Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6466031Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6472445Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6477200Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6503092Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6523036Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6540435Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6566181Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6579166Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6608365Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6613055Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6650016Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6653978Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6658314Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6673011Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6722056Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6741643Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6776150Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6777406Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6778500Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6791316Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6800314Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6846365Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6882385Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6900507Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6901471Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6906855Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6915474Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6919328Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.6987358Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7016336Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7017337Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7026736Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7027861Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7056541Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7057645Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7115461Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7123291Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7128699Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7150118Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7171960Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7174724Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7197593Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7249662Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7258733Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7276608Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7277664Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7307500Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7323230Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7333763Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7358965Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7390180Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7407362Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7424084Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7431944Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7436738Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7488845Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7501841Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7512444Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7516670Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7554131Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7597097Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7599454Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7618993Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7629288Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7653901Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7683692Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7711885Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7713183Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7714244Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7794438Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7801213Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7817717Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7828448Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7834705Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7871030Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7882232Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7890043Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7895232Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7937354Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7943619Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7946536Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7963731Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7977141Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.7995245Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8003910Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8009230Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8017877Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8021739Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8103967Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8132768Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8173494Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8210446Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8268555Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8281337Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8369843Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8395915Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8428208Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8438801Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8447132Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8459036Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8473179Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8483913Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8488701Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8499876Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8514751Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8535716Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8578748Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8586538Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8594486Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8605645Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8638078Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8676392Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8705144Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8710943Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8758764Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8768218Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8785858Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8839023Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8840558Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8855670Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8866796Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8883558Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8892273Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8910897Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8944979Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8967969Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.8980184Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9000374Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9003879Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9007878Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9029063Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9032224Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9046206Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9049070Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9060607Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9068375Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9071199Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9077387Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9142973Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9242373Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9314061Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9319058Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9330004Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9338071Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9350278Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9361991Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9401949Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9416885Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9420197Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9427020Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9435301Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9500582Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9527933Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9557543Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9581617Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9588039Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9595226Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9604176Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9609420Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9615715Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9620702Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9627157Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9634566Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9636109Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9644335Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9731411Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9734106Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9768436Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9772032Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9806668Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9833586Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9873740Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9908266Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9925693Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9936241Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9948988Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9956406Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9968065Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9976251Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9981490Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9986869Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:54.9999842Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0009840Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0016214Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0022075Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0027923Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0034192Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0040579Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0046822Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0052942Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0059360Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0065910Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0181713Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0188114Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0194463Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0200670Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0207710Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0214915Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0223678Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0226754Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0239164Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0242208Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0257117Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0259815Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0273252Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0276554Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0282506Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0301962Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0318735Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0335087Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0380553Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0403260Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0441711Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0463356Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0467049Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0473952Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0510253Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0515908Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0534972Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0540351Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0571487Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0573446Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0586837Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0595051Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0602109Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0609577Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0620256Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0627591Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0633471Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0642510Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0649381Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0655963Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0682427Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0687975Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0692615Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0704801Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0727085Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0796799Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0842031Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0867622Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0880562Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0897066Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0907444Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0915793Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0925821Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0935322Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0941657Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0950386Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0957375Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0964835Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0974195Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0981612Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0988820Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.0996951Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1100930Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1110598Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1126277Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1136653Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1148152Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1164166Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1194711Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1201000Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1204117Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1216829Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1220690Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1233999Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1237477Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1251246Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1254950Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1266727Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1269647Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1282759Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1291388Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1298193Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1304750Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1355643Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1368585Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1400246Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1419557Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1437715Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1451732Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1462285Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1475393Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1498090Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1506757Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1521390Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1528004Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1536807Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1548471Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1555576Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1576010Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1586338Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1589658Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1617220Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1630463Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1658628Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1664005Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1672340Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1681254Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1687780Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1693839Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1700507Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1708138Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1714773Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1721423Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1728030Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1734865Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1806858Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1822370Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1837759Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1852885Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1859845Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1867043Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1874810Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1881821Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1889245Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.1896339Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2033754Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2040194Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2049768Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2058030Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2068152Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2090053Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2094344Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2133070Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2141513Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2153659Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2157439Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2176512Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2201244Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2209759Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2226428Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2242065Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2250289Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2263642Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2289258Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2305636Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2307138Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2315765Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2365294Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2376684Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2402808Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2419803Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2429074Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2467551Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2480714Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2493171Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2506524Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2525890Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2532787Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2561495Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2587276Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2602198Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2613410Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2639837Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2651495Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2656430Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2677171Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2681642Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2700649Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2702910Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2731604Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2737205Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2744969Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2769930Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2777628Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2778988Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2786931Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2793973Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2800110Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2958802Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2964127Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2972050Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.2981176Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3008975Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3036833Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3038013Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3075253Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3085733Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3113125Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3128635Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3169203Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3175997Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3207803Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3238305Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3254410Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3259558Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3270792Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3279263Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3290512Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3305457Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3316166Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3329885Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3335125Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3353223Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3358835Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3383691Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3414101Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3426759Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3435134Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3461819Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3477042Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3479215Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3495324Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3524003Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3535725Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3569742Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3580984Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3602146Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3624486Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3667942Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3693295Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3707456Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3717039Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3723299Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3872547Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3883577Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3896913Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3914363Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3916188Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3934857Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3953051Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3961646Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3969701Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3977025Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3983487Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3989666Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.3994641Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4002396Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4021070Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4039518Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4098619Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4145948Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4158604Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4162812Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4180483Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4198949Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4216866Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4233490Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4247529Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4258645Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4263948Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4282527Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4353209Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4355547Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4402356Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4437745Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4440500Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4461065Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4466556Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4475967Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4489001Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4496507Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4503802Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4522568Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4530855Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4537944Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4544863Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4550932Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4558078Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4586175Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4782110Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4793714Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4804570Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4811042Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4847712Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4862132Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4871485Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4881753Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4889999Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4916496Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4925268Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4951851Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4959930Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4969148Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4972256Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4978659Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4984881Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4990756Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.4997090Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5003058Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5009008Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5015393Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5068576Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5088986Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5106047Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5122208Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5137789Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5154410Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5168227Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5182440Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5205593Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5279477Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5333542Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5344307Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5350327Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5360634Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5380819Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5389827Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5397884Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5405072Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5413868Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5418691Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5431322Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5438110Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5447198Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5457103Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5473415Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5478492Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5480663Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5486178Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5492176Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5498442Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5575354Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5581057Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5587308Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5594417Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5600369Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5606825Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5612448Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5618614Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5624138Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5634462Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5690767Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5697426Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5704871Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5710778Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5716528Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5742877Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5758864Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5779925Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5788162Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5797206Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5853668Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5869521Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5878083Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5892114Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5899106Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5915363Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5922517Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5926726Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5939748Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5944447Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5967403Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5969301Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5982981Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.5987221Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6002835Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6019542Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6025157Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6046171Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6060329Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6061696Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6088656Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6240599Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6242954Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6261447Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6263802Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6285079Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6294470Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6302782Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6307540Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6315865Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6347642Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6352885Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6363890Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6376641Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6384308Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6394234Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6401591Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6430608Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6431734Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6433000Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6496035Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6505443Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6513017Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6529858Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6538019Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6546204Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6554172Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6564358Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6567660Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6572893Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6587842Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6596176Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6608886Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6613326Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6627124Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6629916Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6636393Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6642379Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6648100Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6654263Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6659958Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6665700Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6671636Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6736372Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6752749Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6769755Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6778416Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6800240Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6803650Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6818606Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6828154Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6834884Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6847435Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6849554Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6858433Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6873517Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6885598Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6893130Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6903473Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6924571Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6940388Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6966940Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.6976495Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7004345Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7010419Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7017573Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7024580Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7030262Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7038234Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7042137Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7048060Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7054032Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7059882Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7123000Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7139518Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7146816Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7163252Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7190586Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7196547Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7209452Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7219915Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7221927Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7228725Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7249036Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7259944Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7415997Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7423203Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7432493Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7449538Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7456019Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7465239Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7471481Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7479293Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7495778Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7510808Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7521822Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7536533Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7542940Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7549611Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7556174Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7563300Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7577818Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7579071Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7585980Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7591171Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7597064Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7602390Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7607767Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7613133Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7618422Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7623859Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7629210Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7635616Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7646591Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7653552Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7670755Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7757538Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7764234Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7770996Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7778390Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7785965Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7793124Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7807584Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7825174Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7876189Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7892247Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7923299Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7936334Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7943447Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7950074Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7958016Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7965637Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7973670Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7980325Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7985592Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.7990542Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8019162Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8036796Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8055080Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8334022Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8340689Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8347889Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8354239Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8392312Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8405586Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8426787Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8430663Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8441281Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8447942Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8461728Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8467853Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8478256Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8486218Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8494404Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8518009Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8519151Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8544369Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8558523Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8564389Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8589729Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8592840Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8596922Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8624108Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8627253Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8637010Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8641093Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8651850Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8657710Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8663527Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8668860Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8674649Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8678155Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8686936Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8694112Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8841550Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8854657Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8865113Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8874576Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8884287Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8896604Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8907262Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8932382Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8938735Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.8946026Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9260444Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9266402Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9271966Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9279755Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9283960Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9297972Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9300922Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9312124Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9319306Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9339491Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9347652Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9355442Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9360520Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9374735Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9379106Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9386957Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9394296Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9411041Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9433022Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9442467Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9481357Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9486252Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9511960Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9517578Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9544810Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9547292Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9573569Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9578673Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9590473Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9598028Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9604692Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9611897Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9618330Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9759896Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9774117Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9971133Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9977968Z Completed 5.4 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:55.9985157Z Completed 5.4 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0004508Z Completed 5.4 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0019448Z Completed 5.4 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0021800Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0036798Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0038038Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0046184Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0060940Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0069238Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0075522Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0080486Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0092873Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0098788Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0105497Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0111636Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0117754Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0124157Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0210952Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0217417Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0224462Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0230663Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0238063Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0244091Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0249863Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0256877Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0266052Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0275184Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0278911Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0299669Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0307242Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0321183Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0337471Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0356301Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0376477Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0389439Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0415717Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0423066Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0431793Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0445045Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0451175Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0466329Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0476965Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0479851Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0494484Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0506749Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0516524Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0519628Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0526774Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0808191Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0813193Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0818143Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0823022Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0828094Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0833501Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0838670Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0843544Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0848369Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0853447Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0878327Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0900043Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0912950Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0918812Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0930566Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0937342Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0953197Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0958952Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0969701Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0975762Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.0992466Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1000739Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1004225Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1010830Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1018068Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1028268Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1034901Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1042614Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1052111Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1059441Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1113201Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1119719Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1135614Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1143568Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1201259Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1202498Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1203471Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1204957Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1206059Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1207180Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1208320Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1235693Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1236787Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1238427Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1268535Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1274228Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1290327Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1304606Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1329853Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1351851Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1370676Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1377716Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1385113Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1394866Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1398819Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1417510Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1427006Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1433385Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1440187Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1446258Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1451962Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1479563Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1625666Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1630772Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1636587Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1641622Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1647210Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1652516Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1657909Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1663306Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1668757Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1674525Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1728820Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1737397Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1746516Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1754219Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1762284Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1769975Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1777434Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1783629Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1790343Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1793078Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1821534Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1833406Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1836085Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1848052Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1856346Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1868195Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1877740Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1897844Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1899115Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1903629Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1916614Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1918980Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1933667Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1939699Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1950781Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1960653Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1969656Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1977826Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.1986267Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2014674Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2020795Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2045137Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2065015Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2120479Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2128486Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2135175Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2158859Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2164613Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2182122Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2196847Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2203238Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2214054Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2226016Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2243386Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2247445Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2259097Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2263986Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2278212Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2291656Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2301045Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2325404Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2334772Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2340490Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2360518Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2375810Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2384708Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2390892Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2397985Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2441977Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2449396Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2521955Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2528900Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2536619Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2541190Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2547469Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2552461Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2560810Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2566848Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2572333Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2577942Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2648881Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2661844Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2669095Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2676439Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2695208Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2721780Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2738947Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2761398Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2766237Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2773595Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2780024Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2786564Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2792131Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2797581Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2805018Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2811119Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2968522Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.2990269Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3044083Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3051195Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3059386Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3063045Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3083305Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3089270Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3111263Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3127020Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3130068Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3140813Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3143678Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3163099Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3178830Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3188191Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3199669Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3204830Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3210859Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3217784Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3255192Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3262118Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3289573Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3419932Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3438319Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3445082Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3451256Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3457725Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3463913Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3469835Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3476074Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3481959Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3488032Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3568326Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3581127Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3914330Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3920364Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.3963883Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4004540Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4009505Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4016010Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4023982Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4030942Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4046525Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4052787Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4060073Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4077376Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4081589Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4099054Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4101783Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4118763Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4121672Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4128195Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4138888Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4148011Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4157800Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4167621Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4188636Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4330128Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4341545Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4640683Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4646363Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4651932Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4658107Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4663628Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4669625Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4676120Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4681066Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4686820Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4693168Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4926421Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4933820Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4937971Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4945209Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4951415Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4966573Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4974183Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.4982408Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5000210Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5021069Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5045438Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5047497Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5274264Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5278873Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5284153Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5289549Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5298250Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5305679Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5311703Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5318915Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5336309Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5343219Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5401722Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5407865Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5413602Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5420629Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5427683Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5434085Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5439672Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5453049Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5456950Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5463819Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5469755Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5481736Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5489898Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5496430Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5512161Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5517914Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5523490Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5529851Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5537104Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5548452Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5554444Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5560386Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5566566Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5573196Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5579303Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5586385Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5592207Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5599365Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5605781Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5611136Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5837187Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5849473Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5864004Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5870666Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5878959Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5889370Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5900545Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5908669Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5920620Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5958319Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5967124Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5976244Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5983501Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5990380Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.5997728Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6005108Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6012120Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6018561Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6025460Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6031921Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6188503Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6199782Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6208181Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6215262Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6224081Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6231284Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6256117Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6265734Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6270868Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6280933Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6287303Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6296291Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6314687Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6324658Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6326155Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6333528Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6377553Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6383654Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6394634Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6407284Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6409212Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6431988Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6468517Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6476787Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6489713Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6499210Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6527072Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6539886Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6549126Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6608472Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6614597Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6651313Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6655198Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6677873Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6685765Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6696565Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6735881Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6746419Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6756749Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6758589Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6772433Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6837010Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6838556Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6839902Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6854943Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6860656Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6908086Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6920982Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6932150Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6950924Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6966385Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.6977786Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7003495Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7006514Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7010861Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7060551Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7081138Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7089324Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7102232Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7120929Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7139576Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7147719Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7156787Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7164954Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7190051Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7194155Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7203623Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7208586Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7262174Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7286623Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7301292Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7302535Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7315312Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7353278Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7403683Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7409404Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7413273Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7422840Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7430271Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7431773Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7490372Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7508332Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7543585Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7545244Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7546207Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7570068Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7586018Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7615153Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7616015Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7659606Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7699752Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7700679Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7710591Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7735427Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7744967Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7755641Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7786902Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7802380Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7831996Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7850544Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7852042Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7864262Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7891760Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7898722Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7940824Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7971981Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7976646Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7980489Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.7982884Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8002011Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8024481Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8037465Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8106937Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8116129Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8149232Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8168578Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8178179Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8190749Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8207216Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8263036Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8271170Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8282422Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8326278Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8328544Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8346541Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8347753Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8374262Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8412516Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8453533Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8471411Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8474649Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8483965Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8485624Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8526284Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8534475Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8596861Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8598002Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8613844Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8616049Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8631786Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8645308Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8646409Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8722408Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8743299Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8744574Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8752854Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8753880Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8772036Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8784410Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8875989Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8887734Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8888943Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8907377Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8910126Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8911048Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8930136Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.8993656Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9013850Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9016793Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9022445Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9043538Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9056178Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9095614Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9104338Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9127298Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9142282Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9150890Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9187868Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9193007Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9209868Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9238934Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9248372Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9284301Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9297991Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9307139Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9326787Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9341908Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9387196Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9410532Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9411727Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9433291Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9434261Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9497951Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9499243Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9524454Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9531885Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9553466Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9577512Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9583360Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9608255Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9638960Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9639934Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9670866Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9678335Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9707922Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9742205Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9747812Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9782087Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9799432Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9819064Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9821516Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9824856Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9909991Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9919834Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9920926Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9921860Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9931872Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9981002Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9986801Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:56.9999465Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0040586Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0045273Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0050097Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0065661Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0067696Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0070421Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0082909Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0157881Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0159548Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0166546Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0167899Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0183134Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0191869Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0199481Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0204511Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0214898Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0220681Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0229405Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0238608Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0244186Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0249531Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0259467Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0265943Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0352068Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0370581Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0385965Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0444460Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0494057Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0512195Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0529210Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0583890Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0606046Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0652373Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0682149Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0735820Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0767933Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0773664Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0835034Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0856577Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0888520Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0913831Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0929388Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0966872Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.0977587Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1002412Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1007173Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1039728Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1064843Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1070948Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1076029Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1084975Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1104137Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1111942Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1120723Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1138126Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1156449Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1174372Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1178402Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1182534Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1194231Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1203103Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1211911Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1221061Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1228708Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1230956Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1260686Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1268375Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1273430Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1282491Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1289626Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1312550Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1386463Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1488646Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1548527Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1555044Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1561436Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1568475Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1577634Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1586773Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1594042Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1600023Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1606410Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1612846Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1627962Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1711083Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1718710Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1721992Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1728882Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1745600Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1747130Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1754038Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1759831Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1769070Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1777531Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1785665Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1808259Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1875857Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1911383Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1920981Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1949675Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1958506Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.1983995Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2005868Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2026875Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2037553Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2039451Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2055961Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2071808Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2081040Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2099460Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2101123Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2111674Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2127683Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2159123Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2168559Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2173424Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2179961Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2188227Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2238931Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2244205Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2249840Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2258993Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2261986Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2267583Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2273537Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2280465Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2290515Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2297693Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2304124Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2330142Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2434269Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2445069Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2460684Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2467460Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2477706Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2493593Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2505841Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2513275Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2519124Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2532273Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2540595Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2556905Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2567013Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2572239Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2583169Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2605255Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2633122Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2642188Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2685517Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2695680Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2706884Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2711103Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2730710Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2743108Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2748763Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2767778Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2782809Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2789109Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2802175Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2803638Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2816712Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2821338Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2860052Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2876779Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2887038Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2894881Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2920989Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2938057Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2950330Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2975510Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2990026Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.2994882Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3001746Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3028336Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3034914Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3043641Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3064630Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3071866Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3078212Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3084991Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3091891Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3182905Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3191230Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3198237Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3205891Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3212519Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3219610Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3226908Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3232785Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3238775Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3244974Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3355050Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3362599Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3370255Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3377895Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3393356Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3406201Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3418386Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3427092Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3437712Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3455524Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3459177Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3473910Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3477857Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3496980Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3512249Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3515730Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3520940Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3522154Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3575391Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3580128Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3604876Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3613778Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3636098Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3644229Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3658537Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3697800Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3712879Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3720914Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3735461Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3754999Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3774737Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3825797Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3835099Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3853494Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3855291Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3873550Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3918106Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3927416Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3939435Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3940979Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3950939Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.3989661Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4000656Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4011590Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4026607Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4068361Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4085165Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4089134Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4124839Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4139952Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4152243Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4169067Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4202962Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4210789Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4229663Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4234729Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4286759Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4291377Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4325502Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4364555Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4365380Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4393199Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4394540Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4473941Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4486201Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4512302Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4513777Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4524241Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4556032Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4571413Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4625046Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4626162Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4641533Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4667352Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4681478Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4702553Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4718492Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4734417Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4746842Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4763677Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4778614Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4806022Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4831509Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4848174Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4852438Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4887477Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4894320Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4932832Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4943715Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4948966Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4975742Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.4984871Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5030965Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5061034Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5068545Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5084938Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5115280Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5135086Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5138176Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5164603Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5205598Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5224643Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5232283Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5236429Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5284622Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5304676Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5314813Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5341616Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5348602Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5358595Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5395551Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5406244Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5443741Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5454362Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5470219Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5475536Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5518472Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5539033Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5554719Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5563551Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5588966Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5657053Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5678949Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5699327Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5712015Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5720391Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5750213Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5762491Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5787724Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5824740Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5832919Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5860629Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5866033Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5882879Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5913624Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5923824Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5940063Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5941401Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.5963635Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6014721Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6015964Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6028603Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6036259Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6037200Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6078946Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6084813Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6103513Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6119844Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6133191Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6134501Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6144258Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6149763Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6156982Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6255523Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6256362Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6294365Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6300903Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6346511Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6383213Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6420747Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6423921Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6467005Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6501842Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6508955Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6517352Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6528728Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6538765Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6543111Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6544569Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6558994Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6569317Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6578438Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6587511Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6597717Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6615328Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6666692Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6680115Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6691603Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6721874Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6755743Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6776780Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6784455Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6789006Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6841576Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6854961Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6881831Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6903516Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6932372Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6956347Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.6978632Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7021519Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7023572Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7024696Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7025462Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7064626Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7065836Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7066871Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7075960Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7089980Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7110834Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7125301Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7126963Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7135044Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7141809Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7152164Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7160343Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7171532Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7180328Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7215362Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7226661Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7233688Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7240241Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7246361Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7255228Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7261567Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7267650Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7278914Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7281865Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7288996Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7296249Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7304172Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7366028Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7426912Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7429828Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7436130Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7443451Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7451914Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7470527Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7514539Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7517645Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7525811Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7532512Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7539186Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7545550Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7617450Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7646575Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7679642Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7728034Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7776498Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7812606Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7823152Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7927639Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7944954Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7950173Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7961716Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7969011Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7982323Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.7997666Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8013321Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8022191Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8023805Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8032482Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8040886Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8069664Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8104077Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8114140Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8125753Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8153311Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8173990Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8181431Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8198367Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8209270Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8219841Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8234031Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8239881Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8287751Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8298437Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8362556Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8366425Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8371130Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8389079Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8407504Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8417774Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8419196Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8499482Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8517743Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8528566Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8554932Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8558950Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8563310Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8614541Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8618865Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8645206Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8646297Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8670011Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8686569Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8699769Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8733934Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8762352Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8768645Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8793151Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8808769Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8813427Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8821364Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8866459Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8868217Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8881746Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8919656Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8922888Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8948815Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8963512Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.8991984Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9004172Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9027524Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9028670Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9038940Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9080484Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9096342Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9108353Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9133698Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9140218Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9149407Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9177651Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9228754Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9229807Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9230549Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9249366Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9270711Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9277232Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9316102Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9359959Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9360780Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9389022Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9391356Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9394898Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9452156Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9473978Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9479707Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9523440Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9544670Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9599234Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9603470Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9609827Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9616756Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9649396Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9677541Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9689080Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9722346Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9723526Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9735496Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9771903Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9800680Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9805380Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9807254Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9817056Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9841950Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9876705Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9894855Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9900628Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9930712Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9932212Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9946267Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:57.9973807Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0007198Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0015518Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0043047Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0054650Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0077556Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0132572Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0156265Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0198687Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0205263Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0230832Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0231807Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0271559Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0290457Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0294978Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0300186Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0352270Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0375555Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0397280Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0398778Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0405594Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0417312Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0460905Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0487935Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0501381Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0502502Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0514502Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0524244Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0583940Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0598975Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0601055Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0602199Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0613366Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0681818Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0707551Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0712133Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0718455Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0719431Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0729428Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0796474Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0805413Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0818703Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0823071Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0860096Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0861404Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0914412Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0928085Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0949253Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0951474Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0964552Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.0998382Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1043954Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1046777Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1093397Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1094230Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1094897Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1119812Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1152323Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1187394Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1208035Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1224798Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1226527Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1234870Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1264641Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1329465Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1342488Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1359115Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1368479Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1415530Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1434624Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1444237Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1457445Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1458961Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1495438Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1516678Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1555185Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1556549Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1613398Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1635555Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1657764Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1660459Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1677355Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1766748Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1767940Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1779057Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1800525Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1805648Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1831736Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1851779Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1865351Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1888408Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1921829Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1947351Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1967734Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1968737Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1985174Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.1986356Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2014401Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2029699Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2041342Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2065906Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2080843Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2100459Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2101674Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2159352Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2163514Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2173607Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2184880Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2217852Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2251447Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2261196Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2265828Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2313222Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2321395Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2347412Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2351804Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2358353Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2398916Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2400753Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2431147Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2432413Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2459566Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2487619Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2499771Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2508423Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2534491Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2574422Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2584124Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2601074Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2604808Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2636532Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2648028Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2675041Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2700477Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2708945Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2732249Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2741290Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2749107Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2767092Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2779361Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2804134Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2841238Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2867892Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2877882Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2886456Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2889641Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2913730Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2960647Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2974418Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.2981929Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3004530Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3021924Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3026613Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3131902Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3138513Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3158629Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3160145Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3166276Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3189826Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3264314Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3293543Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3294919Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3301376Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3338434Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3355005Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3368419Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3461483Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3470629Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3474304Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3497198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3511077Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3520730Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3540044Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3642198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3657299Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3705131Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3707889Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3709080Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3719503Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3748669Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3793099Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3825211Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3829192Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3847251Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3860014Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3864165Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3913359Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3947751Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3968404Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3971702Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3973198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.3989468Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4036092Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4044503Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4047311Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4068709Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4075894Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4097774Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4150163Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4151650Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4158873Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4176022Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4185903Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4229498Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4248198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4249251Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4255122Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4275829Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4332280Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4335924Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4337122Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4341618Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4368702Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4426614Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4430867Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4445573Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4452458Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4457046Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4511044Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4519434Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4537352Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4566144Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4569326Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4574097Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4596182Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4624634Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4649769Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4656539Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4670642Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4675281Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4743221Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4751152Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4757679Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4769674Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4779834Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4806508Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4844027Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4845071Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4851761Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4901860Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4903772Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4934225Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4954708Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4966514Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.4995198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5019273Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5028220Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5029395Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5050332Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5113322Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5117882Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5127610Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5176066Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5177460Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5205055Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5206232Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5307086Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5317598Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5318701Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5325869Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5341688Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5345818Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5367246Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5441157Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5471088Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5475515Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5493482Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5500978Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5572999Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5640931Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5656621Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5678738Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5715398Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5727510Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5748839Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5761583Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5783193Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5805655Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5824455Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5848276Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5866997Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5871374Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5912019Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5947567Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.5983272Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6012100Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6013520Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6019674Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6065039Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6104489Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6117913Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6136448Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6140987Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6171541Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6186855Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6223383Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6233021Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6235494Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6247156Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6255227Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6272024Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6329511Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6334825Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6336958Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6345504Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6358385Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6437921Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6445222Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6457739Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6490965Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6491975Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6533402Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6543402Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6564312Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6568987Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6583626Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6611796Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6638766Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6666380Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6679392Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6713411Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6739213Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6758407Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6787567Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6822867Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6830752Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6873860Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6902371Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6907437Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6920153Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6964284Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6969090Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.6998244Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7003699Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7015579Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7044788Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7070171Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7078693Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7099200Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7113336Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7145585Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7147439Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7161601Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7188405Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7223691Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7238206Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7257752Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7270917Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7274930Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7319863Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7329893Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7343533Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7374058Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7396544Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7408168Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7424903Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7436808Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7489651Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7490765Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7523777Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7527904Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7535201Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7564768Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7589243Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7600958Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7636144Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7651057Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7656217Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7674321Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7701679Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7717019Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7745705Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7767558Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7777613Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7779475Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7789060Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7833795Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7855064Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7856502Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7881140Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7922229Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7933635Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7960595Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.7997308Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8011675Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8019084Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8068286Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8069960Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8087617Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8113580Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8117290Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8131151Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8181077Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8215483Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8237947Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8241615Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8246288Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8249952Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8258428Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8318654Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8371759Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8381928Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8394699Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8432129Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8450308Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8502933Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8555681Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8560556Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8570127Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8589915Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8607478Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8639357Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8645572Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8710132Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8712135Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8714240Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8718311Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8726975Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8742786Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8755411Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8798745Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8807299Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8817109Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8835106Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8854804Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8887910Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8911471Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8912278Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8929064Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8931011Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.8987066Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9000626Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9006034Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9035356Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9066500Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9088040Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9101122Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9116531Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9133118Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9154234Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9187488Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9203075Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9213387Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9225672Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9249511Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9255639Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9293007Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9311932Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9313338Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9321678Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9350036Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9372451Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9387990Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9404898Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9416182Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9444097Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9467459Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9493521Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9501792Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9512816Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9540352Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9566480Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9604016Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9617485Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9631042Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9648189Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9669792Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9714114Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9715139Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9736873Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9744865Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9763929Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9769259Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9795692Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9827821Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9870597Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9873152Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9881415Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9890384Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9905438Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9935900Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:58.9957276Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0015398Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0028342Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0056679Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0057902Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0059289Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0144459Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0150068Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0180763Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0194582Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0209691Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0237204Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0275871Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0290269Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0297663Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0369337Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0401055Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0407435Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0410184Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0430194Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0455918Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0479358Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0524733Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0547629Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0563389Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0564458Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0572980Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0598081Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0653213Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0663563Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0685797Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0686975Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0716913Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0763558Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0790516Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0803093Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0828807Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0883702Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0884930Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0886032Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0910769Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0926526Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0948190Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0960824Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.0972113Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1003900Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1005054Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1018627Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1043558Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1071367Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1080048Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1085712Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1110227Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1134231Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1141157Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1154045Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1175537Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1198518Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1209111Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1233353Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1250713Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1273492Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1308750Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1326183Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1332843Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1343812Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1391928Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1403303Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1410660Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1415067Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1435628Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1475931Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1481383Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1485441Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1511012Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1528706Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1549561Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1562245Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1563825Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1588578Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1595960Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1627770Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1644573Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1648793Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1683110Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1690550Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1697962Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1710920Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1774903Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1776158Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1776824Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1781165Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1788209Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1826507Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1885299Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1904965Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1953882Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1955963Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1957509Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1989634Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.1996918Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2000677Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2028145Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2100548Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2107128Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2119912Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2121025Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2131295Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2174400Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2180669Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2205859Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2226495Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2233406Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2246877Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2264545Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2306886Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2339962Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2344188Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2361441Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2375354Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2413986Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2442472Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2462427Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2472249Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2477024Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2501612Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2562573Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2569387Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2637867Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2649001Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2658762Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2684483Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2686765Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2703183Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2757112Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2762453Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2777354Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2778276Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2783163Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2859405Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2866732Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2877288Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2882926Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2884515Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2951406Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2955787Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2959404Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2960364Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.2978929Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3040299Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3049104Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3061028Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3061927Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3108945Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3123566Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3155821Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3168831Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3204712Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3238817Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3239818Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3276023Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3309038Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3309872Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3341953Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3360194Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3379779Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3408659Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3450340Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3461779Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3467012Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3480062Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3510617Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3522071Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3545496Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3549827Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3579318Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3595787Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3631056Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3647376Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3657930Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3682771Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3706744Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3735328Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3761709Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3770882Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3790109Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3795128Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3809680Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3853859Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3861574Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3875422Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3898676Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3904468Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3922310Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3957646Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.3996567Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4006475Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4009445Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4027113Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4037979Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4063353Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4099720Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4126326Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4127709Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4128504Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4152113Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4172586Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4197592Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4223413Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4264316Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4310858Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4334215Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4353988Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4368386Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4405420Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4429034Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4497737Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4526554Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4537066Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4541261Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4592497Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4593772Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4610406Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4645285Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4667532Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4690418Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4693150Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4715809Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4731873Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4743489Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4798439Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4820732Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4821582Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4827762Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4849608Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4887406Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4899264Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4924259Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4965815Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4972608Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.4973919Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5028019Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5031462Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5036828Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5070976Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5103305Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5104428Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5132220Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5133499Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5159451Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5164070Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5209126Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5216442Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5225756Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5250002Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5251152Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5304929Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5316480Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5317672Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5328053Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5333576Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5387300Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5399403Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5411509Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5433999Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5438072Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5480832Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5484673Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5488205Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5535050Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5547079Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5597419Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5610434Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5612097Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5619698Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5646570Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5672168Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5701675Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5735464Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5747878Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5761281Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5762555Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5764125Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5828899Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5830504Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5856934Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5867789Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5885050Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5890637Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5900217Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5954597Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5960998Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.5999760Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6009371Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6019829Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6026892Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6083994Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6094550Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6109172Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6114717Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6143299Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6156053Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6179376Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6211671Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6228600Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6245301Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6251357Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6267495Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6283856Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6286210Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6326320Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6363427Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6380306Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6383899Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6390118Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6436358Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6445215Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6484840Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6500693Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6613321Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6618903Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6681768Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6736270Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6767304Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6783300Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6791704Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6811725Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6829906Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6857476Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6897828Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6899116Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6916101Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6938303Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6947859Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6948942Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.6969812Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7027992Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7033076Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7045559Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7057903Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7060986Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7082435Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7110095Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7139806Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7147741Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7153881Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7185974Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7209614Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7219582Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7236288Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7253260Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7271341Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7297682Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7323428Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7334557Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7349397Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7359330Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7362096Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7387888Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7426329Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7437063Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7466735Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7471629Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7518565Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7530646Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7567076Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7570769Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7585810Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7594289Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7612444Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7672957Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7702592Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7708082Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7710806Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7728792Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7760026Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7770763Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7785273Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7797777Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7818967Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7840939Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7849743Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7892884Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7909961Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7930552Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7931856Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7961114Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.7991945Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8005105Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8026209Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8029229Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8040489Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8109749Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8123054Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8127755Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8141033Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8152144Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8169164Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8221715Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8227217Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8244603Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8257949Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8264678Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8273695Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8321927Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8363818Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8371000Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8384011Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8392090Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8423334Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8425242Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8444744Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8455251Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8482937Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8485836Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8535145Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8536321Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8547582Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8552953Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8567933Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8635450Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8656369Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8658632Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8676329Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8693431Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8752862Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8764100Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8778262Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8790355Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8808745Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8851867Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8867960Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8875186Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8882232Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8887842Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8927106Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8948115Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8967360Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8987924Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.8993461Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9011851Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9035597Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9073057Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9087876Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9104804Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9113589Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9138287Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9209416Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9215587Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9219436Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9225938Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9259848Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9388617Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9389654Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9403138Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9404061Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9407860Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9427097Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9468220Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9497351Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9516928Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9525949Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9535637Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9600028Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9608614Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9625458Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9626946Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9649897Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9691567Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9704736Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9730647Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9757882Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9769240Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9795312Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9807579Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9815624Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9847385Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9865495Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9894353Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9900940Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9913375Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9934035Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9945452Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9981683Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:54:59.9991463Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0016432Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0024755Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0026626Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0046799Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0085708Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0087549Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0091676Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0120298Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0154289Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0164495Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0173462Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0189100Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0211610Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0218919Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0224372Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0235551Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0238957Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0346283Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0353223Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0403396Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0418068Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0430280Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0458618Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0467942Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0468779Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0488387Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0495686Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0501491Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0505821Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0512334Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0527287Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0545761Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0552274Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0564221Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0567656Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0583051Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0591653Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0619692Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0631833Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0646466Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0653161Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0673299Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0679673Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0691846Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0698507Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0728491Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0758715Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0776236Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0789020Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0796184Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0847406Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0865843Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0871772Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0929825Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0950237Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0957052Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0969985Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.0990317Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1046775Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1050461Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1054174Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1061692Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1078436Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1115649Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1124234Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1171576Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1183852Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1199525Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1221781Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1224869Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1262597Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1271253Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1294641Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1318571Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1355477Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1371509Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1377102Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1386220Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1432462Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1476680Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1480234Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1488765Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1492024Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1522298Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1566829Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1581645Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1585043Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1604666Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1611086Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1648940Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1676791Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1690840Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1703295Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1717830Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1754848Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1778218Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1815149Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1818660Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1826003Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1839846Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1855117Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1902495Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1924959Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1941788Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1943199Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1954786Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.1980858Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2003178Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2021817Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2054621Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2062938Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2068234Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2098271Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2108596Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2147873Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2152919Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2174815Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2188597Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2199269Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2242860Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2257219Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2270515Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2293936Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2297236Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2324682Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2347879Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2376039Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2376936Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2397683Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2399660Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2438655Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2447388Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2460879Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2486488Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2501267Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2531358Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2544117Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2571838Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2573089Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2587323Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2617922Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2641331Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2648604Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2689726Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2718727Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2745516Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2766636Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2770018Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2771085Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2786165Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2841379Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2876191Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2941733Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2958579Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2959757Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.2964539Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3039909Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3041908Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3061421Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3124880Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3167649Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3169349Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3179476Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3189679Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3208757Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3225834Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3246846Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3273150Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3304173Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3314712Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3325976Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3349131Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3355403Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3384248Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3389969Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3414192Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3440640Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3446140Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3470535Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3481863Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3502545Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3510820Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3540646Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3557084Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3591898Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3598247Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3604957Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3634083Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3642503Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3679857Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3693301Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3709309Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3744886Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3749876Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3754173Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3805085Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3817656Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3829866Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3874931Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3878891Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3888126Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3923133Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3944730Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3972006Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3984492Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.3996823Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4015128Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4050244Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4068986Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4085913Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4089879Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4103294Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4175039Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4181012Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4203827Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4207620Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4210823Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4255601Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4277127Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4296755Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4321240Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4328356Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4329436Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4375081Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4395719Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4405476Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4412081Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4440553Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4456180Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4478768Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4508876Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4531455Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4533642Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4562326Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4568572Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4601696Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4608363Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4624421Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4652088Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4746929Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4751610Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4754656Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4760789Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4780757Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4797305Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4833088Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4847786Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4860530Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4873584Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4910114Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4927558Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4954362Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4955238Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4961264Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.4975014Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5019491Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5040577Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5052180Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5082536Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5097672Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5111098Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5128770Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5147630Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5152994Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5180841Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5228757Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5233261Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5240654Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5252083Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5255353Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5297547Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5343215Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5349133Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5359366Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5368005Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5377812Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5398665Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5444114Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5447080Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5488747Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5489763Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5493228Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5500501Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5564081Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5572515Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5656689Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5668626Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5696551Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5697838Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5838071Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5875128Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5888574Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5895384Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5904599Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5919507Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5955357Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5990286Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.5999574Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6022312Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6041080Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6067204Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6082875Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6101604Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6119301Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6134355Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6149067Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6165843Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6187665Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6202835Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6215001Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6269381Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6270225Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6288505Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6303200Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6323543Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6331144Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6356848Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6357716Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6407295Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6517077Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6518248Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6523746Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6524865Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6547647Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6585886Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6598868Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6607737Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6625424Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6644259Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6663959Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6679065Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6698230Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6703410Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6707468Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6720068Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6736438Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6743364Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6759244Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6775850Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6787461Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6828214Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6841550Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6844408Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6898187Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6911985Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6946973Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6953449Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6988590Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.6997738Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7029885Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7050448Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7053550Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7069955Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7083117Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7118123Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7126168Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7157395Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7160288Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7192186Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7197010Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7209123Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7240701Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7253193Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7287567Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7291145Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7298746Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7313415Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7336343Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7380537Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7381598Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7441004Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7452596Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7459291Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7473310Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7524131Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7532150Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7583841Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7630617Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7639790Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7645595Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7672223Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7717096Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7730288Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7744725Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7757922Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7770656Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7775625Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7781774Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7844303Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7855774Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7866328Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7886916Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7900283Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7912810Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7940534Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7960938Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7964646Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.7974805Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8010494Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8017184Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8045936Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8059312Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8101203Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8113026Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8120327Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8132832Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8143584Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8173255Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8183378Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8228529Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8253091Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8263619Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8283536Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8323360Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8329185Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8345662Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8356218Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8375491Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8446993Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8448372Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8460995Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8466406Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8487547Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8522074Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8544298Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8551459Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8553412Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8586387Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8624867Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8630791Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8646084Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8654818Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8693278Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8719586Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8733924Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8751590Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8758662Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8784015Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8785688Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8832446Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8853617Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8867129Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8883394Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8902142Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8925722Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8926656Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8979909Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8980924Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.8990700Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9016873Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9048745Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9065684Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9069007Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9076979Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9115695Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9144756Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9158340Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9170248Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9190178Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9210345Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9234439Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9245818Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9263198Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9269854Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9293067Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9335157Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9360876Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9368739Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9374017Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9386832Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9390357Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9467590Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9469415Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9488457Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9489672Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9510971Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9522204Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9596620Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9604831Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9610086Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9618436Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9663923Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9664875Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9665624Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9758575Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9762104Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9776202Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9796451Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9797996Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9800146Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9820465Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9843462Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9864637Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9896927Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9935882Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:00.9939519Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0002994Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0004138Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0009086Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0024279Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0053419Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0068177Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0118431Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0143529Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0153363Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0188505Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0194848Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0221233Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0246225Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0247921Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0283301Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0302016Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0317848Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0337238Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0348880Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0370528Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0390731Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0402901Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0415498Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0424537Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0458644Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0494665Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0508830Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0514151Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0524183Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0538652Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0582204Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0584059Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0596360Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0625047Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0642802Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0661765Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0665657Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0693299Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0712810Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0718020Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0766062Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0789525Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0810240Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0830991Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0838356Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0853403Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0865405Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0873418Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0910390Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0933307Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0943826Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0971810Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0981823Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0986194Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.0998552Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1001204Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1026217Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1033563Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1040248Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1048187Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1053295Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1068665Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1083258Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1096211Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1111718Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1133971Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1163820Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1194631Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1195528Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1220106Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1238417Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1250029Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1262272Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1298524Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1331342Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1336121Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1354882Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1367044Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1382056Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1411931Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1423304Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1429745Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1448813Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1457196Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1470559Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1509933Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1520348Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1525340Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1546182Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1569292Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1608721Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1614190Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1641209Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1642148Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1659300Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1718173Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1719461Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1748402Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1750558Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1763223Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1816343Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1827597Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1832225Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1838474Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1853327Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1871543Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1913592Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1917464Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1953156Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1975242Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.1988400Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2045997Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2047750Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2060471Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2066339Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2106858Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2126781Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2146503Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2157226Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2192035Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2209205Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2216555Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2252934Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2259677Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2277886Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2289239Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2299448Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2357350Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2362027Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2369743Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2377705Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2384772Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2402236Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2455639Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2458157Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2463980Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2487651Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2492083Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2529817Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2551278Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2566375Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2573052Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2576031Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2604936Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2671003Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2673492Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2690036Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2711543Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2726629Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2763465Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2768474Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2776083Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2795863Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2839695Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2876275Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2880262Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2891496Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2905943Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2936887Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2949875Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2955393Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.2965695Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3008972Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3020262Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3021388Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3066579Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3111540Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3114615Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3124276Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3133552Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3148706Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3198656Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3209318Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3215053Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3222774Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3228522Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3234009Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3245917Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3254802Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3276103Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3303608Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3331332Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3332325Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3336515Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3354126Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3393519Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3417473Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3424915Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3442486Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3463035Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3484829Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3515278Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3524690Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3529059Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3580488Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3696707Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3715077Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3716316Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3741700Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3745005Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3748018Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3774033Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3815164Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3817012Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3865019Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3871426Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3947855Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.3993907Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4013970Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4017686Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4018830Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4049061Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4060770Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4079633Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4099846Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4107006Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4114798Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4174840Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4198772Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4208030Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4210072Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4235680Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4239791Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4251826Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4308883Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4331831Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4359871Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4361377Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4371669Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4418200Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4430073Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4439400Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4446677Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4455995Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4463401Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4490749Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4493284Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4500389Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4523527Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4532592Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4539688Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4552968Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4555993Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4565943Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4572022Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4578919Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4653834Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4780223Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4883099Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4948855Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4974864Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4983932Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4989990Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4993835Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.4999782Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5006752Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5045768Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5051321Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5064471Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5098949Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5131288Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5136504Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5172286Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5174049Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5198852Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5210261Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5222351Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5251240Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5277118Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5302121Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5307163Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5333380Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5350446Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5377452Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5379979Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5418738Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5457488Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5463282Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5466870Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5485114Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5526883Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5556056Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5566180Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5575823Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5607125Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5616881Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5639041Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5673414Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5694136Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5716609Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5736368Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5763395Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5794335Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5795425Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5823728Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5847273Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5872416Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5874366Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5918575Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5940724Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5949819Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.5995545Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6026250Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6054727Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6079339Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6090042Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6091945Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6149214Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6159471Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6183918Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6192242Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6216265Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6217468Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6279063Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6279913Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6280677Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6313439Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6334480Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6340784Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6384860Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6386158Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6435505Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6443852Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6454544Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6498698Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6518670Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6527929Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6532781Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6555607Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6585609Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6598009Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6622869Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6640788Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6647134Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6667286Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6695511Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6728473Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6747945Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6761098Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6773988Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6827041Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6861134Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6861965Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6875088Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6900617Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6933527Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6934784Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.6999099Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7061569Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7072857Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7074264Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7095650Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7107546Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7174754Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7194474Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7195536Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7210031Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7215323Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7218143Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7222573Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7311390Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7321036Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7330729Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7351505Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7363868Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7397835Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7399003Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7445945Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7454706Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7458733Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7492912Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7507189Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7520966Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7537695Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7538990Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7581279Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7619768Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7639363Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7692610Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7696726Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7714867Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7733409Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7734321Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7770390Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7803575Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7816285Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7850837Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7865414Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7877247Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7898213Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7937815Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7946874Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7960298Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7977590Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.7985579Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8006998Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8008399Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8045857Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8072994Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8105009Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8105733Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8143537Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8155234Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8166238Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8181900Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8188674Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8208897Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8237079Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8268595Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8291534Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8301066Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8318933Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8319970Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8344971Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8361911Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8400671Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8402096Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8432389Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8441108Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8458668Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8475974Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8500710Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8505774Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8507422Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8509842Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8583175Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8606693Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8619760Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8626402Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8633294Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8650405Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8676194Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8677247Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8743055Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8754794Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8756264Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8761005Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8783889Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8787078Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8810222Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8859581Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8895431Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8907424Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8908571Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8930885Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8941621Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8958869Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.8975393Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9020466Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9027852Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9059304Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9065254Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9071705Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9078925Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9107450Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9115861Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9178248Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9179189Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9188269Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9196263Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9232615Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9247733Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9260094Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9277292Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9285826Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9323790Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9334885Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9346235Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9365867Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9366893Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9394875Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9401606Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9458107Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9478925Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9484233Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9497587Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9500091Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9509738Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9581483Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9583085Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9593637Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9601304Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9612106Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9626436Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9678583Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9698097Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9704572Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9705904Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9721968Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9789836Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9808011Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9831535Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9833027Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9854779Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9900183Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9902453Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9910950Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9927467Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9934981Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:01.9994042Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0020543Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0037708Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0061628Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0074677Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0081069Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0124161Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0137588Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0163542Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0188704Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0190521Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0195356Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0228653Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0236131Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0276130Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0282119Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0302400Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0311129Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0339590Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0445012Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0448163Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0462049Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0465124Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0502333Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0507407Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0538727Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0565640Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0592497Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0600944Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0602120Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0603716Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0628679Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0674944Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0724815Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0726117Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0730110Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0750360Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0762145Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0791425Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0801531Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0830441Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0838852Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0859716Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0896041Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0897255Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0898273Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0923684Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0950677Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0974918Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0981754Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.0983429Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1010857Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1019391Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1024063Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1075569Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1115223Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1123100Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1132517Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1137531Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1143448Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1169782Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1179816Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1195653Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1216995Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1221834Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1224133Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1230718Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1238228Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1250362Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1261308Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1350141Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1415045Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1459177Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1532383Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1542885Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1582973Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1649925Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1662250Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1672593Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1681741Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1689878Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1699575Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1709397Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1727093Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1738904Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1765158Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1770939Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1785772Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1792572Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1797089Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1821775Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1824541Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1835292Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1844086Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1849054Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1853767Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1859486Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1865077Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1870474Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1927693Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1933995Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1940962Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1964492Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1968762Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1974220Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.1985979Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2003887Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2019738Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2040190Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2048067Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2073961Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2075321Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2076564Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2082105Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2090773Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2100230Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2115010Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2123562Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2131872Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2145825Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2149464Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2172321Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2182174Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2191248Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2253638Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2339002Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2346356Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2354422Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2361928Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2369411Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2379864Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2386860Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2394028Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2409464Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2415019Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2546873Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2560990Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2574427Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2581189Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2595435Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2603482Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2631187Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2672074Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2675343Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2697186Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2724119Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2737534Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2755430Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2763033Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2770526Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2778154Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2785565Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2792504Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2800243Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2807838Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2869702Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2877552Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2890144Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2896351Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2913102Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2941133Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2948144Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2958919Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2969223Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2978686Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.2986931Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3010503Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3026725Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3037553Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3045281Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3075081Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3094748Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3104222Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3116043Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3235465Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3244894Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3249159Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3264647Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3266821Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3279529Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3282298Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3295042Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3298557Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3310540Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3318292Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3323442Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3336167Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3339146Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3351538Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3354912Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3365992Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3371084Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3376361Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3449875Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3460367Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3474168Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3489805Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3492861Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3505305Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3507763Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3524034Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3527239Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3542034Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3550317Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3554110Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3560701Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3601589Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3607313Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3615763Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3639137Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3655420Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3657524Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3679458Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3698318Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3706646Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3714167Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3726107Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3731239Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3737708Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3744042Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3749885Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3757779Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3758782Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3768209Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3787758Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3793692Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3806157Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3823294Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3837404Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3860286Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3868971Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3876680Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3884985Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3908535Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.3922086Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4123679Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4132922Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4145025Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4150469Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4161305Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4185615Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4191750Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4203210Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4223859Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4232378Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4253450Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4288561Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4297421Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4320835Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4335631Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4370491Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4377099Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4381612Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4399461Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4412889Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4441448Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4468816Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4507887Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4509579Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4521253Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4539789Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4564202Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4596687Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4617505Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4627254Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4639602Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4646316Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4658696Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4662200Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4711520Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4719874Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4721041Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4766344Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4767496Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4776557Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4799585Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4832102Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4852849Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4855904Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4887573Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4908015Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4920764Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4927210Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4941096Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4968219Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4974355Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.4984865Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5017186Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5024365Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5045789Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5058802Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5065405Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5102565Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5110968Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5117614Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5152101Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5177858Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5180058Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5217297Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5219617Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5244756Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5277894Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5293110Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5318170Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5321631Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5333317Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5343363Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5390370Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5416813Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5418903Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5439760Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5452533Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5485425Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5513828Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5521672Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5542184Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5556820Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5578543Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5610013Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5614428Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5629450Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5636126Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5667117Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5685847Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5693552Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5696015Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5717320Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5721209Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5751070Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5754834Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5783060Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5791308Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5821414Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5851622Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5855143Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5922124Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5923306Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5931929Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5941374Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5968566Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5977269Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.5995560Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6000428Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6034660Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6043099Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6056186Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6062256Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6118348Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6169840Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6177317Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6196770Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6226588Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6285312Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6286466Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6287587Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6288709Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6313965Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6317878Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6343261Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6360323Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6377325Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6434438Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6437938Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6467642Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6492485Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6520237Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6522604Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6537283Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6548599Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6573982Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6609581Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6628480Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6636750Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6644982Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6668522Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6689175Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6703397Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6710980Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6724073Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6734967Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6750922Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6778054Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6789598Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6800586Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6810081Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6814423Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6849678Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6874507Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6907193Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6923680Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.6971979Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7006486Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7102903Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7124410Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7143683Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7150982Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7162980Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7165968Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7187636Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7191794Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7201863Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7210928Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7218212Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7233590Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7260098Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7266656Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7275714Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7281138Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7287663Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7294571Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7299967Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7344116Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7350888Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7358726Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7404155Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7429849Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7438722Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7446244Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7456548Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7464862Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7491317Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7509173Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7510393Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7553941Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7556218Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7566147Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7572418Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7610039Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7645283Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7650572Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7654854Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7704519Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7729183Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7734469Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7760738Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7788871Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7792202Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7797599Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7816639Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7843203Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7852800Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7853933Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7868421Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7876448Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7900845Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7916459Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7922854Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7928814Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7934952Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7940703Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7946926Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7953002Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7958544Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.7964485Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8048956Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8062228Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8096615Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8126134Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8135736Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8138225Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8164114Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8175166Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8184740Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8190330Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8195599Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8267102Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8273209Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8281757Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8340997Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8355478Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8363501Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8374619Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8383219Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8418395Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8435024Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8442594Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8472083Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8497309Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8507900Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8517071Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8554864Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8559994Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8577076Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8642912Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8658973Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8670340Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8698270Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8706819Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8726946Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8740153Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8763186Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8776631Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8811494Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8843667Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8848784Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8854993Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8861446Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8900672Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8915610Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8921010Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.8986352Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9053957Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9072361Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9101696Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9109388Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9111287Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9156030Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9162333Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9178676Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9181815Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9231254Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9238334Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9244395Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9245961Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9266406Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9275908Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9281517Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9332788Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9349019Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9353997Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9360937Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9375496Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9428808Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9435069Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9451926Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9469717Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9470630Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9520134Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9531164Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9542836Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9555727Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9564030Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9610576Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9623965Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9638294Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9643867Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9655916Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9681924Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9733433Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9734650Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9738997Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9765540Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9793441Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9816505Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9827774Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9844340Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9860427Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9892154Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9898348Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9922088Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9923447Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9924229Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:02.9993543Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0009068Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0024509Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0026270Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0027630Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0052794Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0064271Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0108468Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0125495Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0130803Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0174277Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0183092Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0189649Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0223823Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0225314Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0240891Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0287750Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0320098Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0327916Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0353821Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0361399Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0373316Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0378686Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0385727Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0391384Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0473097Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0479372Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0491981Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0507797Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0509074Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0511167Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0530689Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0552240Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0578011Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0613968Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0624359Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0625668Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0675183Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0695563Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0722918Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0734885Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0755733Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0770076Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0789665Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0848143Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0875867Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0901173Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0914035Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0937073Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0952968Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0956389Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.0987496Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1004275Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1008522Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1071058Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1072481Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1082382Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1106702Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1119575Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1124729Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1167792Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1174949Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1180588Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1228647Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1234437Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1242903Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1280582Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1298499Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1306285Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1339161Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1362344Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1373659Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1386447Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1421918Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1427966Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1433514Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1464887Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1491564Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1515870Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1525468Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1535975Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1557743Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1586674Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1598846Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1609111Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1633190Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1662443Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1688901Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1697713Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1699089Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1735989Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1754169Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1761515Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1786359Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1796624Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1853151Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1872215Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1885234Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1910382Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1926780Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.1928350Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2029962Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2039848Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2053330Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2067328Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2068458Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2170236Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2197271Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2216712Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2218133Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2219934Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2231118Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2261493Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2290840Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2313250Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2344803Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2357930Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2388740Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2389839Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2432445Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2454327Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2473446Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2474379Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2489689Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2510985Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2538852Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2574753Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2578635Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2654076Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2656871Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2667856Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2683200Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2700273Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2733673Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2750178Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2785858Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2788445Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2794987Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2825626Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2855719Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2884462Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2890411Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2896189Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2925108Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2942339Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2958519Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2977507Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2991805Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.2993005Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3025825Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3047256Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3055062Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3073889Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3098087Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3115445Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3130303Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3167290Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3168664Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3179214Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3201918Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3227199Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3243148Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3247467Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3289161Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3326046Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3330943Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3342820Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3361764Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3408212Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3412561Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3459079Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3460146Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3461511Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3483743Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3518113Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3529677Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3550122Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3557720Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3561157Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3616277Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3621227Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3639172Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3652269Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3663341Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3697451Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3709427Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3717443Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3760976Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3772373Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3790945Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3818830Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3825111Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3829627Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3851337Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3904918Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3947136Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3980604Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.3981712Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4008732Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4029634Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4060858Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4077261Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4081674Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4088687Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4119333Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4120635Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4190899Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4192134Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4201297Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4248490Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4251395Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4273554Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4286457Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4296659Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4328739Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4354006Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4374526Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4387007Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4411260Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4426869Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4469004Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4479187Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4499431Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4512005Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4517653Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4562258Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4580198Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4586452Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4592535Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4667148Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4696495Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4702481Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4730449Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4734708Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4743131Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4782425Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4794853Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4832476Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4844902Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4861739Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4892157Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4897857Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4942575Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4955974Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4958975Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.4976458Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5010410Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5048786Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5066353Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5090665Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5100088Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5107658Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5142434Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5155303Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5206423Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5226057Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5236548Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5254439Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5287044Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5330103Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5336139Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5369680Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5372346Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5423669Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5456837Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5479021Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5495317Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5496660Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5497575Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5549999Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5562959Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5589162Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5590835Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5607413Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5619234Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5676699Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5683031Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5688423Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5720793Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5724083Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5783959Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5798211Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5799104Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5810250Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5827392Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5845910Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5896286Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5919680Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5928056Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5945572Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5946644Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.5960760Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6009909Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6036487Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6046772Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6050202Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6059126Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6076332Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6097503Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6149739Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6159030Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6191062Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6208140Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6209592Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6230415Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6239158Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6263242Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6294716Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6301781Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6305664Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6349951Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6364526Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6381911Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6392847Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6441326Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6446989Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6460865Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6502001Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6542283Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6554137Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6555007Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6574753Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6583217Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6584345Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6646936Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6663497Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6667035Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6701602Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6708300Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6715639Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6724050Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6761224Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6777940Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6801134Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6824545Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6832024Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6858779Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6863905Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6884275Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6885057Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6923466Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6945399Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6962462Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.6980821Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7006243Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7011685Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7034813Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7064464Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7072805Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7079847Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7092135Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7146452Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7159029Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7187812Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7216359Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7230379Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7232275Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7239761Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7247560Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7300673Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7317338Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7324723Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7339118Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7366702Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7375047Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7415717Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7438526Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7455769Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7466096Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7467927Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7499884Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7520567Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7538888Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7548596Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7562943Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7566008Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7603437Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7604662Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7633949Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7656501Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7668134Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7682468Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7691317Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7715637Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7745936Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7748288Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7771987Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7792374Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7813240Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7820420Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7826458Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7849149Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7856047Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7865759Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7923752Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7931586Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7974968Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.7993883Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8035677Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8085610Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8104349Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8118763Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8183870Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8195816Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8198503Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8242400Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8288536Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8318866Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8341935Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8366852Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8378052Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8402995Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8406965Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8456137Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8470874Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8499032Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8509614Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8534649Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8537564Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8585676Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8625584Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8630276Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8636737Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8642868Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8699901Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8717875Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8750324Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8797818Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8813364Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8865040Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8878407Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8934742Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8938970Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8940158Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.8966915Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9013344Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9039293Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9074025Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9093732Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9098593Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9123284Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9142002Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9169662Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9178573Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9189007Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9201955Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9226225Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9254264Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9255465Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9279060Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9290971Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9313733Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9314644Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9331786Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9366540Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9371678Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9379578Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9393636Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9402959Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9425307Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9428509Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9433653Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9465643Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9470581Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9481392Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9488770Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9507409Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9584763Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9587661Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9595011Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9601818Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9607831Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9619610Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9626438Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9632053Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9639394Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9642520Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9650572Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9658821Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9670912Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9706450Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9839679Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9900247Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9940088Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9947255Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9955536Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9959147Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9968260Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9972151Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9983087Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:03.9993208Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0001934Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0014201Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0025772Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0037667Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0044272Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0126264Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0146432Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0167581Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0182778Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0225221Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0227976Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0239695Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0254659Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0291173Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0312291Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0314281Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0331712Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0356763Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0360255Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0378603Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0419204Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0427315Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0441638Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0469289Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0479056Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0497271Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0524515Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0567651Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0589320Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0600807Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0626320Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0641505Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0662430Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0663811Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0676266Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0721322Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0729045Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0735616Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0760038Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0777676Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0789783Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0793715Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0826149Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0838772Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0849215Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0868199Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0873843Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0893192Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0902578Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0903922Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0910630Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0928198Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0932956Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0972168Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.0990255Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1002227Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1009141Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1039310Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1040575Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1056170Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1091999Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1118141Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1146908Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1148211Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1159343Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1177471Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1211353Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1233540Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1251242Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1275660Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1277098Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1339043Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1343276Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1346561Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1365306Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1379704Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1384943Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1408028Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1430817Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1467539Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1516512Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1528384Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1531577Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1558199Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1570845Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1572402Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1632529Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1648650Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1658368Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1659851Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1671518Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1712061Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1729249Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1737294Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1740710Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1777888Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1790182Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1800868Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1828653Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1856081Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1886065Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1896007Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1905169Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1928352Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1964592Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1965443Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1969415Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.1993364Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2040625Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2067536Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2069426Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2087929Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2107556Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2127620Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2135081Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2149231Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2161225Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2189283Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2199204Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2221153Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2255855Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2259543Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2261673Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2292809Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2316305Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2335957Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2337049Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2347612Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2371948Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2402560Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2411360Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2428639Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2459360Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2471677Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2486049Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2487233Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2507203Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2520842Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2569826Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2581615Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2582922Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2600346Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2623453Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2639635Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2675026Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2705021Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2729460Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2730683Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2746240Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2758088Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2773467Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2785984Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2846420Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2858752Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2877620Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2884306Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2908729Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2913964Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2927320Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2928501Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2998285Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.2999732Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3001937Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3028678Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3048466Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3075111Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3076067Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3094160Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3127609Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3139252Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3144736Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3149567Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3198670Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3210849Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3218397Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3241719Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3253309Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3277490Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3281696Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3339107Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3348697Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3350011Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3350829Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3377363Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3403740Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3421064Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3456242Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3471243Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3497650Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3508493Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3510309Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3522868Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3550198Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3586406Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3591706Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3601325Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3615106Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3646422Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3647611Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3760680Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3770234Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3783758Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3794177Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3819144Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3820382Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3821468Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3890850Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3934858Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3946225Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3954026Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3980828Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.3983710Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4030918Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4075531Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4087293Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4088887Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4098576Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4134637Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4145858Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4158923Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4171036Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4202439Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4212821Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4234314Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4247520Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4273749Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4306216Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4312007Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4318471Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4344808Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4368841Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4379204Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4397285Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4407181Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4434576Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4445636Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4495130Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4495941Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4512142Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4585488Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4599712Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4619491Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4647123Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4682185Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4733391Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4767195Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4795148Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4811696Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4851306Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4899156Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4912158Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4937621Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4953282Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.4983657Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5011401Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5019195Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5030055Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5056352Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5058414Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5119004Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5139410Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5195852Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5197285Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5218859Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5272872Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5305562Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5306759Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5340150Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5361063Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5388571Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5403404Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5464673Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5488692Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5504880Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5532281Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5557006Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5595022Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5609187Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5610325Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5626676Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5644950Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5682426Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5700753Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5715323Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5724728Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5740929Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5777162Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5793006Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5814240Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5829163Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5830641Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5855800Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5890957Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5913713Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5928889Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5930679Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.5968146Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6001406Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6018040Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6028210Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6040025Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6047659Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6076649Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6120014Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6120739Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6128821Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6135515Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6173020Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6202483Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6207146Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6210115Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6220624Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6253770Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6263170Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6277182Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6304203Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6317390Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6328326Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6344212Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6384117Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6400405Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6424251Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6443309Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6457138Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6478917Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6534211Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6600414Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6606437Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6609651Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6615810Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6679108Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6689798Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6703333Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6709322Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6713106Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6732815Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6794322Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6801602Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6802825Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6817200Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6826104Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6854444Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6914462Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6924942Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6939274Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6940509Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6972354Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.6989103Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7018439Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7038500Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7063738Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7085594Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7105979Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7148153Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7163490Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7193040Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7230970Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7235378Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7240132Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7248076Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7290281Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7294720Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7334271Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7363061Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7373184Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7385408Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7421058Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7448439Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7474532Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7491076Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7500100Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7523272Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7541874Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7550831Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7563255Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7616023Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7636280Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7646072Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7683015Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7689496Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7713941Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7779593Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7796719Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7797938Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7809495Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7818810Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7880100Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7881252Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7933659Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7956351Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7961436Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7966413Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.7980611Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8006581Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8038068Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8069139Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8083455Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8102385Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8106615Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8129791Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8133048Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8139949Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8229322Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8235582Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8257655Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8263152Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8278199Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8279991Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8285697Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8344547Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8358536Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8378682Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8388542Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8400930Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8402474Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8410621Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8426802Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8480947Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8506817Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8520640Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8521983Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8546377Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8550119Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8558273Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8590326Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8599765Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8627055Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8639077Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8658978Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8679710Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8705560Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8710111Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8741758Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8764914Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8798345Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8802564Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8805322Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8828855Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8854499Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8885421Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8891425Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8947642Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8948474Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8966792Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8972089Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.8978679Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9014555Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9015429Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9039295Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9084291Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9100116Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9122292Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9127132Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9132943Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9147492Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9173060Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9198534Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9205521Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9237828Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9257057Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9265669Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9294929Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9300495Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9338013Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9344888Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9358369Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9384919Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9394567Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9418606Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9427936Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9434076Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9483931Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9496641Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9510238Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9516053Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9534771Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9556720Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9578797Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9580070Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9646022Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9666921Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9691959Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9741966Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9743139Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9751072Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9796177Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9806697Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9827889Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9855422Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9881174Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9918115Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9926813Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9944710Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9963581Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9986178Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:04.9997400Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0008564Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0020545Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0046750Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0055331Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0089231Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0106758Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0129810Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0137725Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0154592Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0158293Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0189565Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0242342Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0256350Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0271500Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0284747Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0288887Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0317946Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0335432Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0398341Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0399838Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0408063Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0417025Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0423110Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0503005Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0505139Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0536993Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0565585Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0566698Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0576607Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0611609Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0649370Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0653807Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0670515Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0684033Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0704998Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0716176Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0764024Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0765146Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0772413Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0796870Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0809349Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0843178Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0856184Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0883632Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0885206Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0921118Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0922307Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0953101Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0983121Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.0988125Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1016919Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1020240Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1039840Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1047819Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1093282Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1094347Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1108280Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1143202Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1156605Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1190033Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1197542Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1244940Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1267316Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1268637Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1295474Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1313529Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1324890Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1372578Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1394448Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1402407Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1410774Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1423188Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1467961Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1485362Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1492343Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1524616Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1549339Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1569799Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1602497Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1612458Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1625848Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1646277Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1670745Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1703820Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1754193Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1776342Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1780767Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1791189Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1793571Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1848312Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1854044Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1875505Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1896822Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1904196Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1922323Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1964634Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1974727Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1975945Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.1982483Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2018954Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2080774Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2105835Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2106989Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2108053Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2136237Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2158942Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2178599Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2202579Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2207144Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2211537Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2223105Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2241211Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2281963Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2287504Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2307350Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2311002Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2351839Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2370697Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2401217Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2402379Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2443487Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2462140Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2479126Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2483012Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2502113Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2550009Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2555162Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2566321Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2587480Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2606307Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2608233Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2609462Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2617913Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2645942Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2649430Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2657673Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2663929Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2687104Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2700931Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2713216Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2718035Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2751036Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2810703Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2817876Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2821911Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2831573Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2842475Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2852825Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2864890Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2873973Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2886513Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2895232Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2906128Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2911977Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2918532Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2920099Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.2944019Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3022374Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3033172Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3110707Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3147169Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3148755Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3208961Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3235310Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3271136Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3286258Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3289678Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3297523Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3316453Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3321318Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3331054Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3340891Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3351430Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3355105Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3369414Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3382452Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3384342Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3413166Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3426149Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3436310Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3455446Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3489214Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3518642Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3521195Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3549859Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3558405Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3566696Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3597103Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3612949Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3622610Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3626659Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3705013Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3731459Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3754355Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3762568Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3800667Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3807900Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3821110Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3838211Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3838952Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3852212Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3922132Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3923511Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3924979Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3928487Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3932155Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3959699Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3980992Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3984564Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.3998109Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4002598Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4015229Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4024484Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4032842Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4056991Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4063928Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4069515Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4076899Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4113481Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4119071Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4179451Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4189775Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4200907Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4210464Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4212963Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4230367Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4247577Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4256594Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4270157Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4296440Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4300766Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4310931Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4316427Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4366578Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4367758Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4384467Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4389067Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4425778Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4442521Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4451620Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4456081Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4497623Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4515391Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4516248Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4551252Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4568795Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4575555Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4585175Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4611425Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4613976Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4622801Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4638427Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4676709Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4684269Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4703928Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4709651Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4727946Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4762810Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4769854Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4792971Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4811054Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4830278Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4831279Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4861146Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4868133Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4889958Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4908857Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4912818Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4935514Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4942998Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4955753Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4976784Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4981453Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.4995287Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5012023Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5025292Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5039491Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5049810Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5063533Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5068806Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5098951Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5108780Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5126178Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5153379Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5189272Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5209776Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5216854Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5245013Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5291876Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5307199Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5346382Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5347465Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5376132Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5424359Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5445355Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5454109Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5498063Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5504296Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5549210Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5559170Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5565847Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5577939Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5587799Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5604970Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5656586Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5669399Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5687753Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5710177Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5719429Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5721545Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5723590Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5796857Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5802235Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5813078Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5825744Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5852205Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5859044Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5878955Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5911672Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5949404Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5961136Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5963791Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5968857Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.5978682Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6026161Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6063218Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6067057Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6068247Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6087780Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6098929Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6177508Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6178725Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6187803Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6193467Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6202214Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6209067Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6322087Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6323547Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6324840Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6326095Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6338083Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6356069Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6413688Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6433398Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6438662Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6449383Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6457932Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6494383Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6521981Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6533682Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6548412Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6587565Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6588765Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6609572Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6634451Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6635471Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6659743Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6665905Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6697123Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6722901Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6741942Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6767910Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6779415Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6784931Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6808740Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6823620Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6865267Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6900222Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6904973Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6914363Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6929018Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6962590Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6973510Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.6998018Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7012331Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7040487Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7078489Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7086584Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7087851Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7102077Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7158803Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7172928Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7200908Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7235379Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7239709Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7248331Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7280623Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7313924Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7330675Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7341951Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7374927Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7376651Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7377781Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7379393Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7451937Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7452953Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7475308Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7502521Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7503923Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7504780Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7563062Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7572505Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7595601Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7601982Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7613512Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7638985Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7673703Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7691069Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7705901Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7711173Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7712047Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7763984Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7778062Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7793409Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7800390Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7802235Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7877138Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7877898Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7885093Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7903899Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7906895Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7960867Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7965270Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7985030Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.7996832Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8018869Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8043494Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8047830Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8082306Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8141276Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8144419Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8179062Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8180613Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8189983Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8196515Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8229285Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8277292Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8296353Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8318122Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8328928Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8369673Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8383414Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8403824Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8418665Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8444209Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8445235Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8474530Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8521285Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8535476Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8547286Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8554047Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8568776Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8591796Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8660035Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8660947Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8665852Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8669762Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8677368Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8721029Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8806509Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8811332Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8824815Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8838238Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8847732Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8863173Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8930077Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8945822Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8961507Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.8986525Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9003628Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9020661Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9050992Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9055880Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9063138Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9092426Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9116463Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9120642Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9128726Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9166198Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9181143Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9191240Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9204675Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9233944Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9255911Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9258508Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9267268Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9317801Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9325821Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9331913Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9349441Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9420662Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9428158Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9436901Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9446899Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9448391Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9505281Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9526102Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9536145Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9554631Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9558926Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9568028Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9653707Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9655591Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9663380Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9665974Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9678122Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9683626Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9769457Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9774252Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9775686Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9787467Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9813935Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9818802Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9880363Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9881106Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9890097Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9923409Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9950083Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9977094Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9982610Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:05.9990039Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0008221Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0103597Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0131187Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0190218Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0197520Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0203172Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0211179Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0287941Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0297109Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0331327Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0361025Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0371698Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0383587Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0384459Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0413575Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0456232Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0475352Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0476490Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0488061Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0520826Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0522083Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0586565Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0587644Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0591490Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0603534Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0626879Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0699233Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0747392Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0757464Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0758604Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0787791Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0792547Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0794175Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0888245Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0896635Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0899770Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0903036Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0909903Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.0935531Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1005863Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1008370Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1017323Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1031555Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1049597Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1059671Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1061227Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1099519Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1112193Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1149127Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1158815Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1164541Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1206018Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1210407Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1233114Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1234134Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1268782Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1288580Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1299360Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1332543Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1346136Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1368863Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1386155Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1402017Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1472435Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1510952Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1512344Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1550022Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1567127Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1574045Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1588094Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1630808Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1653618Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1660463Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1680538Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1730508Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1740041Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1745198Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1749389Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1765600Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1783416Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1820139Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1863929Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1875900Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1883549Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1905896Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1911300Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1928752Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1976178Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.1988362Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2006451Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2039488Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2048115Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2058919Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2081025Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2091069Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2124114Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2137066Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2144543Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2181150Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2199909Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2219495Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2241220Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2250326Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2268593Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2269906Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2314379Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2335141Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2360328Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2370092Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2376921Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2387092Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2402130Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2460625Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2477725Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2485711Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2511777Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2537260Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2547865Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2583658Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2598191Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2627628Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2628500Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2656795Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2661315Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2718853Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2727558Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2747132Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2751559Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2789841Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2803964Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2810752Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2853032Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2854029Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2887443Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2912015Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2920520Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2947426Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2950739Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2955334Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.2975436Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3019589Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3028903Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3040587Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3069317Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3090691Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3091827Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3124396Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3141047Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3153966Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3172247Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3185934Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3211467Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3223320Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3229830Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3285403Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3293479Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3300172Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3304311Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3335682Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3346011Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3378437Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3412076Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3425193Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3430740Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3443339Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3458207Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3464935Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3496153Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3523004Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3525239Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3560320Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3574438Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3583894Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3606770Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3641880Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3660486Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3670871Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3683407Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3711255Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3719283Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3732568Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3786577Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3799945Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3847452Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3851443Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3900269Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3916305Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3917371Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3955474Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3981010Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.3982326Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4059189Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4065462Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4115123Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4137677Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4161102Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4188486Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4189638Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4190778Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4243746Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4269184Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4291276Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4298446Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4313611Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4324681Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4354068Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4393788Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4397780Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4430827Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4441471Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4457876Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4493611Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4494845Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4500456Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4527844Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4536334Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4559139Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4599531Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4602567Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4614561Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4632762Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4667002Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4690682Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4695028Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4702069Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4754134Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4782580Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4806812Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4807851Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4827720Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4851280Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4864661Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4909645Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4923275Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4932411Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4958161Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.4976373Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5007138Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5060291Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5065787Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5074292Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5080187Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5114535Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5115736Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5205253Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5206816Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5248185Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5260386Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5268307Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5287586Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5291091Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5305872Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5369257Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5385124Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5439479Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5459804Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5467708Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5478400Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5498299Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5516175Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5550904Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5578118Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5588984Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5601503Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5607925Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5623492Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5640400Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5665378Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5700108Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5706522Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5711112Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5733270Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5771617Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5799874Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5801122Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5811958Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5818224Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5864160Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5890595Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5908766Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5917186Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5920834Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5953131Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5957345Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5972376Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.5978017Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6010133Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6011233Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6037959Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6058746Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6084012Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6092283Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6107974Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6130269Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6137747Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6142758Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6192045Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6197565Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6203545Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6217580Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6228915Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6230972Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6244275Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6251311Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6269415Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6279288Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6289867Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6301293Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6309098Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6318466Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6342296Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6354901Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6374999Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6434333Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6447999Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6449396Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6476306Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6477712Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6488170Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6502133Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6534678Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6536024Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6558936Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6563556Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6570779Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6593448Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6652130Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6680652Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6685824Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6716950Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6727111Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6747597Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6761364Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6773471Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6776708Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6874036Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6876116Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6892364Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6899920Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6912236Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6921310Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6928429Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6960334Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.6981461Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7019963Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7033927Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7060207Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7087103Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7102366Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7115696Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7129093Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7131677Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7157899Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7164457Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7178442Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7183122Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7209367Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7217840Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7238048Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7254980Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7266959Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7274284Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7276242Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7284172Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7317811Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7330382Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7352851Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7372402Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7376441Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7381579Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7402260Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7415761Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7420341Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7435402Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7445568Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7455035Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7466754Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7492268Z Completed 6.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7540462Z Completed 6.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7604728Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7614428Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7628398Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7629570Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7655764Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7688313Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7696125Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7785018Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7808006Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7831901Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7850777Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7855956Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7886617Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7937165Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7948772Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7956015Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7965552Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7978110Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.7995022Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8006789Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8018562Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8047861Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8066224Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8094882Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8114386Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8126461Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8148487Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8217532Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8229343Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8281990Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8290595Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8301050Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8313760Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8316464Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8362310Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8371791Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8403097Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8404311Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8407334Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8434976Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8449780Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8494000Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8507580Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8517748Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8534070Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8538995Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8562966Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8577693Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8626692Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8631454Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8632461Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8656325Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8680787Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8709423Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8725997Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8731850Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8747413Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8767246Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8790589Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8819458Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8832977Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8841822Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8879182Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8888919Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8890717Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8940970Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8942174Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.8975004Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9014805Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9029344Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9035856Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9040900Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9049703Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9069189Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9105070Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9155925Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9157183Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9158410Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9170917Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9182038Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9186626Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9247421Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9248800Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9254319Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9268345Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9294245Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9301630Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9383164Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9384447Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9391900Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9397279Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9428774Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9444975Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9449991Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9486157Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9503817Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9534432Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9548695Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9565737Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9587984Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9594027Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9617232Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9638748Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9668485Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9678578Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9693323Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9698804Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9711884Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9737330Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9752136Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9822898Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9824111Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9849285Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9853616Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9854778Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9883197Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:06.9884460Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0018363Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0036385Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0045856Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0052067Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0066571Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0079376Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0171276Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0200374Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0203900Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0209726Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0210603Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0254012Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0299382Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0304440Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0320358Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0330817Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0341046Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0373959Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0414275Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0428121Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0439597Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0440515Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0446473Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0479093Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0531064Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0554097Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0560968Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0597697Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0613669Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0621805Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0672256Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0704568Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0724288Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0738463Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0743171Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0803883Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0812324Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0824853Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0853861Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0870215Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0871566Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0880707Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0910045Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0943912Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.0977639Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1018933Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1019971Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1036564Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1039935Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1094976Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1110700Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1116131Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1136281Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1155730Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1217367Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1222577Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1250110Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1262189Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1263604Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1267468Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1314272Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1351025Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1365801Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1383161Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1388130Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1444382Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1452285Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1491989Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1493891Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1509568Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1517656Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1533335Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1561749Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1608838Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1628501Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1629417Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1630108Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1653092Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1671692Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1713115Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1727000Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1737514Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1745026Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1774153Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1779818Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1817593Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1860291Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1861348Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1878552Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1881908Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1900833Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1908303Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1914903Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1979990Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1996690Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.1998130Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2019709Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2024100Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2025137Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2059149Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2128779Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2139568Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2140696Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2150038Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2161090Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2180945Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2190020Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2246569Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2273165Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2281884Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2297997Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2307128Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2325902Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2333054Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2429340Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2433076Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2456946Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2467704Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2481945Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2490357Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2502191Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2563384Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2580794Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2601442Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2602502Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2608971Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2616631Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2683614Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2693171Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2704220Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2712093Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2719667Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2755444Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2761086Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2821027Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2823056Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2831701Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2833417Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2862177Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2874820Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2884333Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2915336Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2933826Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2963561Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2974331Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.2978545Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3027973Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3038451Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3051198Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3057945Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3078605Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3093881Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3138359Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3139760Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3159450Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3186180Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3197921Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3220326Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3237322Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3238041Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3280177Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3298776Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3310316Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3319660Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3337234Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3382956Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3385883Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3402121Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3414170Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3428682Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3429915Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3450934Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3514468Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3541641Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3543097Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3566679Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3585687Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3649855Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3656101Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3675358Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3687871Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3689530Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3701088Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3707196Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3761184Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3790071Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3791799Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3808842Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3819931Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3856820Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3884708Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3890849Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3900110Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3913105Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3971609Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.3986944Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4010399Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4012275Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4013342Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4074234Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4085208Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4094090Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4104233Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4130547Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4179439Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4206333Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4208467Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4209960Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4244097Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4261652Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4291335Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4316422Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4317317Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4318228Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4354994Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4411724Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4414170Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4418211Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4448332Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4468566Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4484124Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4505148Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4514953Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4530989Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4546909Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4580611Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4582550Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4637560Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4650260Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4659687Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4662947Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4697989Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4717808Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4782616Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4784010Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4795920Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4805754Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4828302Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4859937Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4876648Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4909828Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4918363Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4947040Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4969325Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.4996283Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5002879Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5030342Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5037576Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5067669Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5082052Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5088760Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5134560Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5136404Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5167908Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5190200Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5194406Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5211667Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5268834Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5289642Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5296692Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5305471Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5318802Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5327130Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5374687Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5408641Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5409789Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5421747Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5425076Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5429960Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5492780Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5502144Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5514805Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5533525Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5540496Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5547775Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5602587Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5633275Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5634352Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5646819Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5658089Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5688739Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5709045Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5729249Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5734021Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5743020Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5782044Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5811518Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5812899Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5828905Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5840265Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5859197Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5906201Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5911580Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5915411Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5930812Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.5950738Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6016248Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6024845Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6026090Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6053755Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6059690Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6145094Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6161271Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6222481Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6265296Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6267527Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6268338Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6269150Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6284831Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6297476Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6345087Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6360338Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6361455Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6387231Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6417753Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6441456Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6460786Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6473594Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6479778Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6504917Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6510315Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6517652Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6540038Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6580550Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6616534Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6633130Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6668177Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6672923Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6677665Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6705917Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6746423Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6761274Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6767536Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6775891Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6793420Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6844303Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6869638Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6870623Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6892395Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6908773Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6925817Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6964485Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6965826Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6970969Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.6993698Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7028775Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7033583Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7040030Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7076190Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7102240Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7130028Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7131333Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7132015Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7167891Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7172535Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7199366Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7216224Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7238467Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7245400Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7273758Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7336377Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7341466Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7391281Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7392175Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7405909Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7477156Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7504214Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7522318Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7532418Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7533570Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7560022Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7596151Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7610802Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7616564Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7633711Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7643425Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7664004Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7700575Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7732537Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7736832Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7751335Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7757776Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7776100Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7795059Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7849446Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7858182Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7870840Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7881861Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7888695Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7910666Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7919693Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7985628Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7992394Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7993851Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.7998239Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8008503Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8025588Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8057571Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8084280Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8112054Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8121515Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8128775Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8129945Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8147565Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8179350Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8213639Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8217026Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8226329Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8255298Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8261536Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8287909Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8294096Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8359023Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8380222Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8411275Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8418834Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8448407Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8449962Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8486079Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8490245Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8537570Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8563204Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8577989Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8593112Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8628378Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8640137Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8652787Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8658176Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8755927Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8769624Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8804364Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8805251Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8817291Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8850795Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8879401Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8894471Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8901326Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8920025Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8926089Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8940796Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8973072Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.8980568Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9014548Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9035661Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9057595Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9064150Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9084302Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9089673Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9111117Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9126014Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9190482Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9201339Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9211184Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9213129Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9227993Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9234684Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9239379Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9297184Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9322457Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9331806Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9344999Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9347287Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9353616Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9371810Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9420067Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9435170Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9450858Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9467274Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9478314Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9479527Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9520131Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9571032Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9577579Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9580911Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9583346Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9589812Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9641985Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9675855Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9687258Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9694688Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9708938Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9722156Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9733208Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9740722Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9810078Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9825138Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9847297Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9856037Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9866870Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9867806Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9876281Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9939556Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9943352Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9962139Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9973014Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:07.9987755Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0006592Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0047410Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0052600Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0068466Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0094776Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0099996Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0107503Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0152074Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0156203Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0174392Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0191717Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0206185Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0245789Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0262827Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0266061Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0281190Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0321406Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0359283Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0360161Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0368908Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0372490Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0424898Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0456565Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0465328Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0543499Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0597719Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0626523Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0627682Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0628740Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0655607Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0664807Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0684485Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0685930Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0688404Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0695733Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0705506Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0819565Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0835686Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0855357Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0859245Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0889742Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0929011Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0945931Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0957554Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0985078Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.0990090Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1013721Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1037635Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1053968Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1074333Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1090804Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1109592Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1134320Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1141877Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1177079Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1184503Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1222100Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1225321Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1257765Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1304241Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1305204Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1339636Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1344548Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1365435Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1379624Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1386735Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1409119Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1433726Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1434633Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1451203Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1453506Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1550405Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1569981Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1577884Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1587114Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1628211Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1724982Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1759072Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1773963Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1823831Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1827729Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1839713Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1847864Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1856913Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1863857Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1889242Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1893258Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1922415Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1933737Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1956513Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.1981667Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2005490Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2006727Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2026116Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2038293Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2079576Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2087165Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2102061Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2106554Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2123159Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2152293Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2158615Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2164263Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2198352Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2216115Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2228239Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2235548Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2242221Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2262250Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2268501Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2289426Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2291199Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2311846Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2314649Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2321768Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2346114Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2357575Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2365316Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2379021Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2484341Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2491278Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2498088Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2503781Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2514057Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2519020Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2524629Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2530790Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2539355Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2545794Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2552087Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2649373Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2657000Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2664834Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2670495Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2676759Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2687466Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2698053Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2706161Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2714130Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2722445Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2731057Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2737330Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2751449Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2761502Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2767267Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2775324Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2797604Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2821415Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2867511Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2875066Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2885098Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2886768Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2949047Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2961488Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2973938Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.2998034Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3015458Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3034464Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3051345Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3061249Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3101390Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3104338Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3133723Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3147246Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3164292Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3188627Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3197899Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3208237Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3221898Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3234660Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3243391Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3247843Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3278206Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3289030Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3382526Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3392227Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3399974Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3406542Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3413760Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3424664Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3432768Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3440154Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3447547Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3453357Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3567386Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3576728Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3585362Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3597589Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3606749Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3616049Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3624993Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3634832Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3644508Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3655795Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3659136Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3673780Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3684151Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3710024Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3719993Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3751610Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3797473Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3809055Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3826705Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3899380Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3906097Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3914714Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3931927Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3936094Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3973051Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3976815Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.3990657Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4016969Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4020813Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4029022Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4079141Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4102502Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4120132Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4124632Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4125915Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4160640Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4181841Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4191493Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4210648Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4232565Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4252954Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4260649Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4267465Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4311669Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4323353Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4340882Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4353176Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4373054Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4407548Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4409488Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4449260Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4469633Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4472883Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4546703Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4568050Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4569099Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4585974Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4619354Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4677279Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4678290Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4687820Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4712917Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4735325Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4752186Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4768076Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4775041Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4798561Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4805362Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4811736Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4833685Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4866710Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4910900Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4916668Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4929253Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4936992Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4947461Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4954184Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.4976265Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5006074Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5041216Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5075417Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5076960Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5078180Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5081615Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5100466Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5117263Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5164634Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5189735Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5205110Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5210653Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5218845Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5224734Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5241144Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5242321Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5307769Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5312403Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5334636Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5349129Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5350052Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5362810Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5428377Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5431505Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5456394Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5457600Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5458954Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5460004Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5523779Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5541210Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5561170Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5570331Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5575630Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5590504Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5661886Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5666707Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5680555Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5688383Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5716939Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5725836Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5779155Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5787336Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5823147Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5846205Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5853892Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5865083Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5870722Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5875454Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5907357Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5956420Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5961645Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5985438Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5989147Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.5996247Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6008833Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6058336Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6068775Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6082609Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6091348Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6117678Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6138678Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6140879Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6165441Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6196896Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6221749Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6240324Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6271098Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6282057Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6321563Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6369975Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6374933Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6389278Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6406645Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6419622Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6504195Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6525903Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6532437Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6564848Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6619121Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6646514Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6676641Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6678392Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6689714Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6738396Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6777091Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6786678Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6788589Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6809040Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6871834Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6883323Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6892876Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6910842Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6929477Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6990817Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6992142Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.6996507Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7040040Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7042531Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7099369Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7100550Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7103310Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7161276Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7163697Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7168547Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7175752Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7185172Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7248743Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7256023Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7264591Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7265690Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7273042Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7338368Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7340991Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7342132Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7355230Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7379878Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7404805Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7410691Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7436311Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7451381Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7483295Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7492311Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7498841Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7505148Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7523231Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7544185Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7596563Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7626682Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7644390Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7652786Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7688209Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7696357Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7706298Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7711549Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7721663Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7735604Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7755413Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7802077Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7810445Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7826365Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7847888Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7866732Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7873727Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7890883Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7956868Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7971382Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7979243Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7986700Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.7996354Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8000411Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8074976Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8091713Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8096588Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8097512Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8109018Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8133817Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8179227Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8192254Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8197022Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8246791Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8280489Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8286414Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8296448Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8301751Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8308606Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8352380Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8374200Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8378524Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8387274Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8401483Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8438794Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8453383Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8459136Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8471565Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8508635Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8513050Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8521596Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8535736Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8580867Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8590633Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8592053Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8612832Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8641890Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8651166Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8691781Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8705861Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8716317Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8760421Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8785708Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8804200Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8812412Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8820204Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8863280Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8871544Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8936205Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8949466Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8961836Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8984307Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.8996428Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9007610Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9041264Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9046980Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9058870Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9119828Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9125000Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9151156Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9162299Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9165707Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9167237Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9175462Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9181926Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9218804Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9228309Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9252131Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9272276Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9318373Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9331700Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9337538Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9355268Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9380298Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9389889Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9410641Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9426805Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9441571Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9450393Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9471651Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9519968Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9528337Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9529546Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9546107Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9576442Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9630280Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9635883Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9636939Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9671886Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9676941Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9748399Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9761431Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9770094Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9794292Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9833956Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9854725Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9921161Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9944475Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9956510Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:08.9960827Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0024575Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0038812Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0069505Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0070651Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0088543Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0097571Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0122870Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0165577Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0176677Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0180595Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0199126Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0221434Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0267069Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0280524Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0319912Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0325614Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0333005Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0334141Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0414348Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0438389Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0455320Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0457123Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0477843Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0480136Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0486816Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0524201Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0553405Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0567560Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0599749Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0600808Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0609580Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0624789Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0670867Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0683717Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0707486Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0722128Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0738272Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0751980Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0778274Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0798459Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0821217Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0838991Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0843550Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0876133Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0883214Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0921781Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0944257Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.0957898Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1018792Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1035443Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1052029Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1065454Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1075763Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1118821Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1145661Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1156123Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1166340Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1179276Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1195128Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1211965Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1229870Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1235017Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1274151Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1294870Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1315775Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1327775Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1368507Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1369601Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1375645Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1383706Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1433093Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1434903Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1455754Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1474985Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1477827Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1491648Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1520996Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1570762Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1594230Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1596346Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1601785Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1612245Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1640909Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1656876Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1695593Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1755678Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1765302Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1768490Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1781632Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1807816Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1808959Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1834214Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1863999Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1895902Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1902539Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1908885Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1943689Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1958263Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1981867Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.1989939Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2015377Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2028976Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2035091Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2053573Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2086448Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2089560Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2093366Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2134384Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2157791Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2177085Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2192130Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2207098Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2209419Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2282130Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2289136Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2295229Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2306359Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2307274Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2334943Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2385279Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2398539Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2399616Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2430268Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2448116Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2449894Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2500608Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2510380Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2519145Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2544210Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2563488Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2587457Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2591461Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2649552Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2698150Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2722154Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2723642Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2741588Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2749217Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2782230Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2808897Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2816902Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2827924Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2873776Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2884240Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2917692Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2927995Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2941270Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2970255Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.2986261Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3012890Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3017088Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3070672Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3077923Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3087544Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3095212Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3131007Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3153998Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3161412Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3173415Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3227182Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3228483Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3275167Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3283940Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3312330Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3343058Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3351836Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3357498Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3374533Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3426370Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3443051Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3454205Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3458616Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3483868Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3498449Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3528222Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3529803Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3559209Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3567164Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3587729Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3609454Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3616285Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3628787Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3666563Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3674117Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3685431Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3718758Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3740001Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3754865Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3772790Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3778270Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3806655Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3823216Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3839294Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3860691Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3864597Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3890250Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3901478Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3906239Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3916817Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3924845Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3929098Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3936852Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.3943809Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4024930Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4027822Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4037471Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4057116Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4065688Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4073856Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4126389Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4127703Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4172801Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4176274Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4212117Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4213362Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4263343Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4286418Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4298443Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4318584Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4330660Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4393609Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4429256Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4438054Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4448411Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4449544Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4458818Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4523257Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4547913Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4567298Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4580411Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4581506Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4607300Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4618237Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4647944Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4652392Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4674733Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4691593Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4701626Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4711058Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4731306Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4733707Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4752361Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4775169Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4777867Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4788112Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4819826Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4829767Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4833424Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4839492Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4876287Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4891925Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4893774Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4927205Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4932235Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4938247Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4968102Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4973742Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4987800Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.4993401Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5018196Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5029884Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5118695Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5123155Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5221535Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5246290Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5270098Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5380375Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5409316Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5424445Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5433328Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5445003Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5446168Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5458858Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5467052Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5477650Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5487181Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5503317Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5505691Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5517649Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5527102Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5537563Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5583438Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5598510Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5631065Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5634907Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5662965Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5678183Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5696925Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5714338Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5759365Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5768301Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5787787Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5807364Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5811367Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5831272Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5849734Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5866712Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5873289Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5899476Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5904011Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5932331Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5941904Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.5953425Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6062969Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6204077Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6211755Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6273122Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6280456Z Completed 7.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6286540Z Completed 7.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6293887Z Completed 7.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6303595Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6311292Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6318583Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6331228Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6345096Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6355295Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6358801Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6370767Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6410282Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6419062Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6424863Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6431995Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6445376Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6454168Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6467426Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6478214Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6482797Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6498459Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6501641Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6523173Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6525673Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6534121Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6552067Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6563489Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6575378Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6605747Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6610550Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6649458Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6672946Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6698233Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6719819Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6724490Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6754595Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6766190Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6793429Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.6846233Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7029656Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7145792Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7186950Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7195716Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7204632Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7209989Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7220948Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7227275Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7232782Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7249146Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7291464Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7298743Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7307680Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7354120Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7356830Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7380840Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7398073Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7426506Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7442502Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7480872Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7491664Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7505862Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7525742Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7531121Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7539822Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7553206Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7588463Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7605768Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7609304Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7644159Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7680243Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7685537Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7700827Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7705517Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7737130Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7747028Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7760549Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7781135Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7799696Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7828761Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7850140Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7868614Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7887663Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7900924Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7906278Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7941242Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7983831Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.7988233Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8014589Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8054862Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8055974Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8080545Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8105062Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8106325Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8196745Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8202432Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8204245Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8221551Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8224874Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8237034Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8303796Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8315879Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8319599Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8324922Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8368040Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8378927Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8402887Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8423012Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8440882Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8475448Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8479062Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8498246Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8519772Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8524155Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8551592Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8572916Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8574368Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8601451Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8630509Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8633123Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8649009Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8652408Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8710406Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8715143Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8734447Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8747031Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8766883Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8809827Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8815659Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8830081Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8837573Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8887522Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8896044Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8919221Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8949204Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8958521Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.8992965Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9030790Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9063590Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9077411Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9092562Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9131377Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9147622Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9154458Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9188635Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9219654Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9241300Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9243042Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9244674Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9267668Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9356044Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9363666Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9364826Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9369704Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9385651Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9412182Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9443285Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9451002Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9452994Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9467748Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9511498Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9541838Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9543182Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9555598Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9556313Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9610773Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9625739Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9631785Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9642544Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9643899Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9708699Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9765726Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9785569Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9797777Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9815732Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9838839Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9873217Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9892201Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9917967Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9919145Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9952934Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9980999Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9992179Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:09.9997208Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0018773Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0046343Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0077072Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0097460Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0106419Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0110733Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0179707Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0182117Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0191850Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0204115Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0205880Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0221023Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0300893Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0305691Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0308987Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0315470Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0329139Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0332578Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0419346Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0427727Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0439470Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0447136Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0450090Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0466022Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0514990Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0535358Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0562151Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0574283Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0575837Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0591646Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0605566Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0643352Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0653721Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0681807Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0685330Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0702408Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0703770Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0723610Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0753580Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0798855Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0813734Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0815022Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0819808Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0863465Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0882118Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0899310Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0909712Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0917770Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0937886Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0944321Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.0980421Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1009284Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1060036Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1061299Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1068987Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1115723Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1117150Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1140370Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1157204Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1162611Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1206544Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1219720Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1229065Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1250303Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1261136Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1290279Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1309118Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1333358Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1334675Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1375501Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1393561Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1415307Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1416789Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1423490Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1452091Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1466005Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1485099Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1491655Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1504368Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1513425Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1520255Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1576774Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1605064Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1617183Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1630956Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1678825Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1720103Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1777819Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1786817Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1807257Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1817023Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1835717Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1888742Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1890506Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1896783Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.1928164Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2000312Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2006200Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2033036Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2076928Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2107771Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2110103Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2176438Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2189057Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2197654Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2228267Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2245636Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2264546Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2265699Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2324032Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2327718Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2353514Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2354643Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2358444Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2365387Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2389543Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2400918Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2427833Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2429073Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2462231Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2477714Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2487757Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2557490Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2563282Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2608456Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2610698Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2613280Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2642312Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2653086Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2680434Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2686946Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2730777Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2746417Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2764149Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2770328Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2791704Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2813445Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2822848Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2838467Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2845753Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2864822Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2931633Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2969847Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.2984802Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3001206Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3010101Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3080930Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3085028Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3116457Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3125779Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3151642Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3163043Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3172851Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3178982Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3286171Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3294842Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3320504Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3327906Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3339476Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3348849Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3363259Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3374115Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3404929Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3412194Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3417422Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3425244Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3434563Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3439828Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3445283Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3447874Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3459648Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3473853Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3483646Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3489956Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3505796Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3515630Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3519583Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3528958Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3540357Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3555802Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3571744Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3577657Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3583465Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3608911Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3617699Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3629755Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3646570Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3658386Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3671936Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3679449Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3690392Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3709369Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3723525Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3729628Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3749163Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3757777Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3779743Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3788736Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3797000Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3817567Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3819562Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3825588Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3843663Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3849613Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3855146Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3860350Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3867770Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3874118Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3879974Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3888159Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3930830Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.3933328Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4038295Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4041172Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4098947Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4213304Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4226975Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4230779Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4242331Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4309121Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4321565Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4335019Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4343143Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4356013Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4365808Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4368952Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4378922Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4385236Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4420083Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4431550Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4441331Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4446357Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4456418Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4480834Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4507052Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4518495Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4521028Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4536523Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4545643Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4565835Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4596111Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4607157Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4630207Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4653736Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4660738Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4684295Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4688647Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4693470Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4706991Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4719212Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4723501Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4735298Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4745525Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4757238Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4763643Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4774743Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4783051Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4788604Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4795581Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4803076Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4809072Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4896181Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.4980106Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5057477Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5215894Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5223784Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5233993Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5240303Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5246868Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5254519Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5270219Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5271736Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5294021Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5297136Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5305594Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5334604Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5335744Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5345581Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5372069Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5374034Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5381318Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5424117Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5433503Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5442085Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5453761Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5456560Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5463508Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5490212Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5503761Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5511495Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5517379Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5544388Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5558568Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5564341Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5619859Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5626051Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5631880Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5666133Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5675977Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5679740Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5695228Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5696440Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5709870Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5711772Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5736601Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5741373Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5763420Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5776912Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5783579Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5796267Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5816764Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5822428Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5830889Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5836914Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5846691Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5855005Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5870761Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5883821Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5890716Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5903415Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5908553Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5917436Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5925950Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5931137Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5942423Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5946270Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5956783Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5961500Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5967152Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5974450Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.5977534Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6117925Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6124301Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6133428Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6182000Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6196820Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6224366Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6261116Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6287828Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6296762Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6299849Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6307642Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6347041Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6380942Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6393350Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6398054Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6428378Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6468183Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6476025Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6480240Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6537559Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6539528Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6588126Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6658017Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6668826Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6680320Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6689281Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6726220Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6727704Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6729910Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6741042Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6748033Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6762035Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6774895Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6796153Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6805422Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6808900Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6840369Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6847192Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6856880Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6880855Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6892186Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6903653Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6909702Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6918986Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6924820Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6936085Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6940242Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6949583Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6956553Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.6962012Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7107746Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7130879Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7150884Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7180828Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7237829Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7268582Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7303094Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7314520Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7374792Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7404899Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7583821Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7591628Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7595935Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7608795Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7618576Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7643488Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7654345Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7656766Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7670293Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7745907Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7751106Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7755478Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7760310Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7791993Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7831815Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7840746Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7883794Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7897649Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7963801Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7965982Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7968028Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7969389Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.7970537Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8000545Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8008645Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8011238Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8059577Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8061167Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8062267Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8069786Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8086015Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8094913Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8103614Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8177695Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8186626Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8189884Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8195816Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8244341Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8248514Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8263495Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8282093Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8283815Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8432180Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8437756Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8443985Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8449736Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8455804Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8461988Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8468737Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8476937Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8483733Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8492504Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8504398Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8511799Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8517786Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8533071Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8542324Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8568820Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8570178Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8580800Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8598357Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8607308Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8667738Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8669927Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8688616Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8697322Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8709825Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8778826Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8800701Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8847846Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8887115Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8931371Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.8947010Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9006259Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9074783Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9089150Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9093122Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9107032Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9126530Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9137193Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9156303Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9198254Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9201000Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9216942Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9251006Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9276121Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9286778Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9301354Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9329471Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9345448Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9369791Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9389388Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9399003Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9423359Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9442807Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9454706Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9487532Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9497500Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9505953Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9548075Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9599900Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9615495Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9617885Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9623253Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9646859Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9662437Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9702267Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9726374Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9738530Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9770613Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9778129Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9786158Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9794619Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9881835Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9895927Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9897096Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9903105Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9933636Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:10.9990016Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0026566Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0028973Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0030290Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0031469Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0063079Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0138164Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0143965Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0154347Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0167173Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0193828Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0194940Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0258370Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0262518Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0296187Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0299239Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0304466Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0318419Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0353898Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0372770Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0395443Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0412560Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0413901Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0427168Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0459817Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0478727Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0516914Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0540372Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0543812Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0558166Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0571170Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0603030Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0621030Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0631724Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0645890Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0658984Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0697275Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0711946Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0719016Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0729920Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0771322Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0790066Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0799925Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0815206Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0823530Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0874504Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0877253Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0892905Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0910982Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0924161Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0987920Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.0998002Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1007439Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1008568Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1027438Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1033631Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1038349Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1119988Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1121736Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1126596Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1128584Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1148674Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1187251Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1224541Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1240383Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1261851Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1278968Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1295151Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1327554Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1383768Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1384974Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1411412Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1433735Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1485396Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1487504Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1507836Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1541849Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1547016Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1553478Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1558020Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1605337Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1635384Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1646970Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1652911Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1658350Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1681690Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1687458Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1729284Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1762195Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1773444Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1774348Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1790664Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1809923Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1842574Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1871137Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1875320Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1893151Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1900862Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1903317Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1942172Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1962280Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.1969799Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2013147Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2032986Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2044857Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2058378Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2061056Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2070833Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2095510Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2134558Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2149282Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2162064Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2163162Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2167962Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2207346Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2245869Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2264183Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2283760Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2284714Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2314534Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2341820Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2385051Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2416951Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2429366Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2443384Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2476481Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2502020Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2522287Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2581608Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2584685Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2595452Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2632384Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2636925Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2649791Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2676880Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2687280Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2694773Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2733203Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2734991Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2768838Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2793424Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2800999Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2813867Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2833544Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2847769Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2875283Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2902353Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2903507Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2919051Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2938642Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2965830Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2974165Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.2982602Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3009842Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3037594Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3047142Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3068207Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3075534Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3091981Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3128574Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3165456Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3175959Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3193072Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3211056Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3215631Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3277475Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3290723Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3306060Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3321361Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3338867Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3365344Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3376156Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3416375Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3422894Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3448311Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3450015Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3495127Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3496559Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3514630Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3521428Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3555936Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3577539Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3589135Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3597294Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3659099Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3664692Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3669717Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3685658Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3697578Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3754294Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3765849Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3787158Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3788449Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3789665Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3817050Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3855458Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3867700Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3894312Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3900368Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3908924Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3929014Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3962375Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3989100Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.3992780Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4014511Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4054321Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4088793Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4092372Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4099506Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4193091Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4247654Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4285802Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4290576Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4293155Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4304354Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4368691Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4412178Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4424753Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4431217Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4436982Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4446536Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4512168Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4518142Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4524582Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4583623Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4584805Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4615260Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4639076Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4647616Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4658775Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4702850Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4734316Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4765425Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4766806Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4790770Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4796377Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4803112Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4839197Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4858716Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4884007Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4905089Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4936217Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4937826Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4964863Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4979851Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4991571Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.4997479Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5030874Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5035259Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5068718Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5083185Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5094566Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5095820Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5125084Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5149079Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5158216Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5171387Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5208789Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5231637Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5247477Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5254755Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5262928Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5283510Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5294023Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5320613Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5357919Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5361830Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5379707Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5423100Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5453220Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5455194Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5464669Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5472141Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5511416Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5553220Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5557538Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5566501Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5571256Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5626997Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5637843Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5638950Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5639996Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5673748Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5695646Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5710270Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5720692Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5745069Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5769374Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5784633Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5791793Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5809976Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5852054Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5867726Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5885748Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5902151Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5930449Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5933737Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5959096Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5976999Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.5990747Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6028308Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6037321Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6053897Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6109831Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6116752Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6121555Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6141377Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6195509Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6203207Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6250356Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6269056Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6323686Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6330996Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6337815Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6345607Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6372588Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6409566Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6412023Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6434685Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6456401Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6461342Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6493567Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6495157Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6528032Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6540129Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6564241Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6571599Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6595799Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6634338Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6663100Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6675719Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6701327Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6727591Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6733192Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6762312Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6799209Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6800476Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6833210Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6842239Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6878373Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6899677Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6911817Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6926973Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.6975265Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7006323Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7019532Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7042616Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7052840Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7086350Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7093943Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7101423Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7136425Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7151852Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7170932Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7191244Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7199045Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7241322Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7274941Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7276254Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7287100Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7304776Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7366646Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7367937Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7374148Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7380641Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7406780Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7407992Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7437914Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7440369Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7486981Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7490166Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7510191Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7542289Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7543738Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7600251Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7611280Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7627855Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7638825Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7666376Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7700745Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7729144Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7729969Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7747626Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7811246Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7819105Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7843272Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7853603Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7856348Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7862165Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7910096Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7926794Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7942372Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7964061Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.7992072Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8003351Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8016897Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8032209Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8054498Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8079664Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8112969Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8120122Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8143707Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8158880Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8173514Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8199887Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8229503Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8243584Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8251139Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8264162Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8283400Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8310473Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8357664Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8358894Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8370617Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8384290Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8391516Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8418471Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8422967Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8440838Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8491463Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8505258Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8514315Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8524384Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8527749Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8550031Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8607369Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8613871Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8618890Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8639309Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8644779Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8726816Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8736515Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8738954Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8744508Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8756302Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8776378Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8846911Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8864238Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8889166Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8916924Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8918206Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8946050Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8952009Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.8997814Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9035191Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9060030Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9063325Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9076811Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9081187Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9124085Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9139106Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9163814Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9176031Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9196386Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9197666Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9241037Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9271101Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9272298Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9293056Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9294103Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9304596Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9405141Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9406168Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9435341Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9438941Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9440213Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9446898Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9543929Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9545878Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9557043Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9560840Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9566473Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9579964Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9628273Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9639791Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9650473Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9655896Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9659227Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9687282Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9748447Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9751532Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9761220Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9774806Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9784093Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9816718Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9835247Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9843589Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9853138Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9884644Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9902583Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9936757Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9944103Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9956808Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:11.9989456Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0010843Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0039822Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0053509Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0073343Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0094696Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0121785Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0157220Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0171209Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0207648Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0228779Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0252935Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0268306Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0273626Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0297233Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0349552Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0372021Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0393058Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0395795Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0439911Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0446816Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0477099Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0481239Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0508453Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0518117Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0545715Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0560197Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0583963Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0591260Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0663530Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0674161Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0706103Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0707052Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0716409Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0742161Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0764538Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0830072Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0841724Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0863446Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0864178Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0936891Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0959907Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.0970176Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1001430Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1002963Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1039749Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1047780Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1055748Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1120615Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1131262Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1152027Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1159148Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1173359Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1188262Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1200047Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1201231Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1253787Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1284181Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1285387Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1286054Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1333121Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1334259Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1352352Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1358534Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1394713Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1411216Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1431976Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1441235Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1475027Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1476452Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1486469Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1497901Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1539463Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1564944Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1567791Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1593451Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1607516Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1617760Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1630928Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1670219Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1715673Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1716579Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1717692Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1721369Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1726417Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1744710Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1781561Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1809047Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1817588Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1845744Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1854378Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1865957Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1882602Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1905700Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1940117Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1946937Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1951494Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.1966804Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2011367Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2041860Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2048706Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2067782Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2090588Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2123781Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2144206Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2145162Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2150941Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2184510Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2211474Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2212606Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2223410Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2256714Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2258059Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2269356Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2298696Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2338041Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2355454Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2358115Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2370458Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2379355Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2382536Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2431770Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2453064Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2500551Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2515139Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2529166Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2534864Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2547481Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2588159Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2597455Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2631490Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2667646Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2676106Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2678178Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2684224Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2730764Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2766288Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2791486Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2805941Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2806997Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2807687Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2828888Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2898803Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2910320Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2937622Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2938756Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2948754Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2974522Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.2990754Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3020234Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3037014Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3047572Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3073460Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3082298Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3110904Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3145044Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3150282Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3194468Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3201605Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3217846Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3234424Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3251337Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3309845Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3311228Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3333666Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3356766Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3361365Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3368216Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3415599Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3433111Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3455399Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3460513Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3485539Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3492283Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3523694Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3546184Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3566744Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3600632Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3606216Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3633655Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3656374Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3657640Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3682818Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3707977Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3711117Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3725062Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3760366Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3809946Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3814429Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3817340Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3838285Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3856465Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3900892Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3902062Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3923072Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3940060Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3954621Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.3956493Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4011198Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4028896Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4040082Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4062951Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4073439Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4118213Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4138906Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4166398Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4179665Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4198293Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4202128Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4251599Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4266644Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4275424Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4324375Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4330740Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4362424Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4390123Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4417083Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4418266Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4435656Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4442417Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4496466Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4514109Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4539762Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4554707Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4571957Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4582607Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4627720Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4645377Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4663913Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4695743Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4700913Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4710524Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4734634Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4744130Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4778073Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4786772Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4797005Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4829528Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4878767Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4881050Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4883685Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4888121Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4900053Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4944063Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4965868Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4989030Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.4997918Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5001823Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5014908Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5051387Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5069325Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5077391Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5099011Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5121547Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5134162Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5165308Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5175902Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5181331Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5203347Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5205631Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5234170Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5248431Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5286337Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5287338Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5341457Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5343372Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5391487Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5407986Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5431188Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5438243Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5462507Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5473706Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5526505Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5537905Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5553984Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5558810Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5590693Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5626958Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5645330Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5657395Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5683479Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5693285Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5708768Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5728004Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5764085Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5774104Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5805798Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5827365Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5834535Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5854620Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5856618Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5915584Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5916901Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5934153Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5940495Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.5950701Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6019332Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6039746Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6043558Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6044932Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6049994Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6113456Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6122419Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6136109Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6142310Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6157973Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6206117Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6236060Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6237485Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6238857Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6254991Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6293261Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6310672Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6322022Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6343594Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6355077Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6412875Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6423367Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6479102Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6495552Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6527181Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6551278Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6628802Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6643557Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6667029Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6708284Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6724594Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6755215Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6756604Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6780983Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6799414Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6814749Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6852553Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6854136Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6865809Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6908821Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6918023Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6937541Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6958836Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.6972097Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7020086Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7021309Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7110328Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7122499Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7191856Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7206865Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7207980Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7209077Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7230538Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7263067Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7285838Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7296112Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7303438Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7324833Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7330146Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7373297Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7392226Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7409775Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7421409Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7429698Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7430598Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7487313Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7491372Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7506675Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7521641Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7536577Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7544292Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7558864Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7604913Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7627300Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7632210Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7640337Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7656798Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7673340Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7688101Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7740408Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7745032Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7765892Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7806426Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7817327Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7829349Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7839636Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7885443Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7888121Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7894172Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7903575Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7918685Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7939182Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7967208Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.7980812Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8022240Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8032832Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8034064Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8035821Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8052017Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8078778Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8091006Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8124697Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8131148Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8165710Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8170101Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8173783Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8175698Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8210029Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8263401Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8273471Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8275974Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8311307Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8315767Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8341867Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8343944Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8350024Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8405891Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8436361Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8447163Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8454240Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8473298Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8481521Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8504016Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8520732Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8564961Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8585036Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8618150Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8632545Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8633654Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8636861Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8661090Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8705625Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8722804Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8738531Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8759625Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8778294Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8785134Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8796253Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8827323Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8849219Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8862019Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8887187Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8891297Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8940033Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8952282Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8954351Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.8989751Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9000350Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9005632Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9023760Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9063471Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9074931Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9103357Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9107646Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9108819Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9140794Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9141997Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9199921Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9213907Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9223647Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9234602Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9243843Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9278732Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9285535Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9336043Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9389790Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9404861Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9419610Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9421870Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9437085Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9501815Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9526923Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9557822Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9604612Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9615202Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9617242Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9665949Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9709798Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9723490Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9769083Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9796244Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9805966Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9823059Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9836114Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9853927Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9891330Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9901805Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9916660Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9925462Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9935859Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:12.9975860Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0012000Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0014755Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0028709Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0042940Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0065541Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0111203Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0115309Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0120771Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0127461Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0166363Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0188826Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0202593Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0206588Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0254046Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0268076Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0287496Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0288772Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0307477Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0360225Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0362346Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0374146Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0386471Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0402153Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0445402Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0458396Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0474326Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0481878Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0486121Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0559720Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0560910Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0561940Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0563291Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0566147Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0633733Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0652450Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0671017Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0679807Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0720785Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0733513Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0743399Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0756690Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0809705Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0814408Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0838361Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0857613Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0888116Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0891372Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0904713Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0988604Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0994086Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.0995486Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1023018Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1054675Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1132132Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1133547Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1177190Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1210409Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1233704Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1234856Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1251911Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1330622Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1334967Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1343990Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1345387Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1347533Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1375779Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1443288Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1444686Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1459439Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1474341Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1479639Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1490085Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1561341Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1566900Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1583311Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1593432Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1615693Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1631013Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1682390Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1697413Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1704145Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1712194Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1719124Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1785550Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1791055Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1822999Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1846635Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1882346Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1883739Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1897059Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1912273Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1920551Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1948943Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1977912Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1990496Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.1998228Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2019862Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2032342Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2085700Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2093357Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2098954Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2105720Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2113580Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2160249Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2182585Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2189139Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2201410Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2231549Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2237761Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2293392Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2307535Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2316686Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2334845Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2348501Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2367602Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2404782Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2406105Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2455469Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2474716Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2480808Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2543171Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2576576Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2577753Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2584721Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2595551Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2658314Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2663446Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2665167Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2665972Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2673672Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2715470Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2737774Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2742293Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2766688Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2771331Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2817795Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2825806Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2830546Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2844868Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2861811Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2887005Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2890626Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2908313Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2939766Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2950291Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2976426Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.2981519Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3004745Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3033047Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3040538Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3068970Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3083745Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3096351Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3114281Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3136097Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3200714Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3208686Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3214112Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3238888Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3250023Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3286551Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3287743Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3318203Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3318924Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3354545Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3368729Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3404371Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3411761Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3428083Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3442973Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3486696Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3524181Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3537798Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3575644Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3587026Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3616805Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3639488Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3645974Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3656456Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3692526Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3704617Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3737838Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3756318Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3757681Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3778800Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3825412Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3837472Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3875599Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3899949Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3913129Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3930107Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3949554Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.3994726Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4005118Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4033888Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4038680Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4083111Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4088844Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4090237Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4116589Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4137296Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4154979Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4183456Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4190689Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4211197Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4229496Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4246223Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4247322Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4256920Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4303524Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4313904Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4334035Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4351932Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4358279Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4363483Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4420095Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4448196Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4453540Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4461408Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4466708Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4471977Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4516909Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4536261Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4560752Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4563547Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4592425Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4611611Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4629956Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4659213Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4673566Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4711276Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4712575Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4720885Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4757223Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4765125Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4804756Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4816859Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4822045Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4845290Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4879221Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4890013Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4903222Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4909059Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4926458Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4948701Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4968056Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.4997313Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5026102Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5027042Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5032350Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5044333Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5087486Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5133948Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5135158Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5143118Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5145988Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5157092Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5179501Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5228086Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5232501Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5258828Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5262961Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5292296Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5318015Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5336267Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5408382Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5409747Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5435265Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5462247Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5463534Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5487155Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5493971Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5545280Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5568482Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5589104Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5604354Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5608774Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5638496Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5644289Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5664492Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5702022Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5716657Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5735399Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5747166Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5757706Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5816235Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5820674Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5851084Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5880706Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5889513Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5890635Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5964935Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5971068Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5974018Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.5982912Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6034482Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6035232Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6088919Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6115769Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6117423Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6154780Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6163300Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6169922Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6209386Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6221430Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6245410Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6246604Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6257806Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6303878Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6304728Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6338961Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6351074Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6357699Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6373677Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6416453Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6419630Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6440976Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6459099Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6467460Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6510610Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6511836Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6542464Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6543739Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6558094Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6588731Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6629315Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6632266Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6633604Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6638118Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6665765Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6686132Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6706416Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6729592Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6740585Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6745165Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6766699Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6810813Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6812138Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6837684Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6845288Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6846184Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6912891Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6914286Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6930181Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6937436Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6941067Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6954841Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.6986951Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7032231Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7071084Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7104234Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7106188Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7175324Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7177109Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7180267Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7187786Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7212186Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7244903Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7246918Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7250590Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7258285Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7303910Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7319308Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7337627Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7399804Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7409198Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7416178Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7419478Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7432222Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7450628Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7465821Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7503448Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7518963Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7541772Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7553330Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7590406Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7605111Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7664001Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7697663Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7700977Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7706439Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7713364Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7715727Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7781611Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7809756Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7821579Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7826510Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7841201Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7875274Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7888498Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7910789Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7926589Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7927356Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7975004Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7976296Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.7990473Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8016473Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8023454Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8063086Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8075338Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8092076Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8102925Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8110149Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8131781Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8145322Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8158673Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8176940Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8179564Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8188148Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8238560Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8313849Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8326529Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8329591Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8347860Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8375175Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8409733Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8414550Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8422377Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8431646Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8436281Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8453217Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8465374Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8476276Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8484148Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8488301Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8506219Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8513383Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8520345Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8532583Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8534625Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8656002Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8674617Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8769465Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8839657Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8844512Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8879122Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8889117Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8898630Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8909951Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8941892Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8943126Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8944258Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8945516Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8948407Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8957822Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8967459Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.8991390Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9002286Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9003870Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9039918Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9083693Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9119444Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9289508Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9295414Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9301630Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9309492Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9341403Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9351556Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9360858Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9370998Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9374788Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9380987Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9394186Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9402880Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9413192Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9434139Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9443673Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9452615Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9483423Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9505613Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9580484Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9583801Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9592586Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9603066Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9610135Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9616397Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9621526Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9629888Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9639315Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9646259Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9655617Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9699673Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9758446Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9783897Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9786301Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9809372Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9815215Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9826559Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9850234Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9858398Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9868372Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9874664Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9876023Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9887819Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9893965Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9908434Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9917668Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9925437Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:13.9970973Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0007026Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0020146Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0027368Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0035054Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0040471Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0045319Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0052133Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0057732Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0064134Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0069878Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0075885Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0081637Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0212193Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0219915Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0229219Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0325734Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0331636Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0341687Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0345911Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0369260Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0371332Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0383273Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0406851Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0409991Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0421128Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0427022Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0441536Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0449535Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0455233Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0461546Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0470088Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0480068Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0487897Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0520615Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0535965Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0538547Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0565250Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0572068Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0578647Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0585723Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0592179Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0599202Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0606567Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0613071Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0619121Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0651703Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0679759Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0713022Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0735203Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0761861Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0764882Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0773155Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0780584Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0786535Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0801732Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0805864Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0822046Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0823552Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0841117Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0844951Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0857191Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0864149Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0868944Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0877662Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0883988Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0914783Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0925031Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0933623Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0944043Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0958042Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0964054Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0969418Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0975302Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0980556Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.0986170Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1030049Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1037109Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1044047Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1050316Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1058045Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1065651Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1072459Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1078658Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1084827Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1090529Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1200345Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1229390Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1234185Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1247302Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1255895Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1275260Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1279348Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1310972Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1327857Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1353515Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1371547Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1399954Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1445283Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1450819Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1477462Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1485694Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1493231Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1500720Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1508355Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1527902Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1534779Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1540807Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1547074Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1576544Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1638319Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1662004Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1671913Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1675359Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1682854Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1690125Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1706656Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1727840Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1743780Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1763698Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1788407Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1810014Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1824199Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1833116Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1842068Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1848234Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1928047Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1936537Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1944791Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1953123Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1959057Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1975152Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1979728Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1991496Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.1999204Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2004202Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2014753Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2017358Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2030012Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2033453Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2043800Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2051090Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2056717Z Completed 7.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2101298Z Completed 7.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2135283Z Completed 7.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2149665Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2186718Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2210212Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2239168Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2255534Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2273150Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2320762Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2353286Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2356136Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2396439Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2582143Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2594004Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2598211Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2608880Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2614558Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2623259Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2640177Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2656875Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2664091Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2671475Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2684216Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2694841Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2705466Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2726061Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2727829Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2746434Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2765492Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2768461Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2775009Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2784940Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2796224Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2803854Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2826788Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2846141Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2854888Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2863737Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2872399Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2889080Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2900938Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2915927Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.2929911Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3004153Z Completed 7.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3033369Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3059778Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3069926Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3494111Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3514907Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3524740Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3536215Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3543123Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3555427Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3561223Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3583094Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3660452Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3667156Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3673510Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3684078Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3689639Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3695731Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3708020Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3710171Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3726120Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3741674Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3749196Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3770688Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3779007Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3791137Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3796176Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3804022Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3811020Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3828057Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3945381Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3956552Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3968530Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.3976406Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4372167Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4399968Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4406855Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4415100Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4422228Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4435332Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4440870Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4452179Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4464329Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4468326Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4481635Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4488490Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4495051Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4503511Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4507067Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4512077Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4534835Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4540135Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4545508Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4550975Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4556648Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4562086Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4567475Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4573033Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4582591Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4584829Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4607894Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4610652Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4622810Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4637782Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4639826Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4652819Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4659975Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4686443Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4690853Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4702876Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4709817Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4718281Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4724979Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4732090Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4845773Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.4879105Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5146717Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5160066Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5166881Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5181781Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5182886Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5188095Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5203490Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5209299Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5219221Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5224941Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5236243Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5246804Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5252045Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5264250Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5286353Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5289980Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5307972Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5323496Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5340995Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5381186Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5395578Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5398543Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5436033Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5445237Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5449652Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5471508Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5474503Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5480243Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5486887Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5493218Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5499776Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5508010Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5513674Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5520917Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5535336Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5564975Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5577675Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5584892Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5597280Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5607023Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5617005Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5625314Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5635132Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5646476Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5652575Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5662811Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5675619Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5682484Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5688378Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5701547Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5703207Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5717255Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5718726Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5741623Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5755009Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.5762010Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6041503Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6050536Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6068478Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6073496Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6103815Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6111756Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6116726Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6143665Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6158548Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6175643Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6176653Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6177330Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6185879Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6217009Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6267091Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6279204Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6280221Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6319901Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6325002Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6344963Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6351775Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6375292Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6407646Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6418623Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6434079Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6455539Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6481651Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6490399Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6491534Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6497295Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6522417Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6557261Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6590894Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6624147Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6648150Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6663061Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6677174Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6689291Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6750524Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6772345Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6773775Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6788173Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6805673Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6818657Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6828236Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6829339Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6867653Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6878058Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6907162Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6941222Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6957960Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6962223Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.6994400Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7011348Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7022802Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7039884Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7068913Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7074748Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7107621Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7126386Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7129750Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7149596Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7173272Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7175865Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7181484Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7214924Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7261684Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7268102Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7273525Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7283860Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7342957Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7343711Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7387220Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7396866Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7400975Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7411941Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7423438Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7451213Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7458149Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7501232Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7525441Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7549981Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7553221Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7556221Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7558946Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7601623Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7606578Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7678533Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7681984Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7690971Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7694320Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7695798Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7703028Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7735954Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7769578Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7778388Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7816554Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7822837Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7829037Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7834604Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7893823Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7903569Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7978535Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.7980787Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8022772Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8044733Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8091351Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8113041Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8149030Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8159194Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8171644Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8188251Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8218497Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8234512Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8243495Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8260873Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8273112Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8284469Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8337541Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8341630Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8361739Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8364594Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8380047Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8389358Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8438381Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8463214Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8478740Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8489416Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8506219Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8507284Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8565505Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8578793Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8587162Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8599880Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8601367Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8615199Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8660591Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8671747Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8673715Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8675241Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8704986Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8710951Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8721463Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8748413Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8753074Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8760204Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8803054Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8805488Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8811444Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8909313Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.8950382Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9007990Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9075498Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9107188Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9125170Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9181130Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9183504Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9195311Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9205938Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9216951Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9223434Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9239244Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9243282Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9253304Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9260328Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9267836Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9274229Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9296910Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9302785Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9331323Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9355872Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9403145Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9444917Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9467523Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9493937Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9555560Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9560314Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9613358Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9639339Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9648761Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9653125Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9682046Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9735561Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:14.9924352Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0060570Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0122830Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0131547Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0144100Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0153411Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0159651Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0168451Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0178146Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0188724Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0198291Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0207199Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0217094Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0271784Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0397256Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0519483Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0561496Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0599442Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0619681Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0656180Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0739740Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0746546Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0752475Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0758510Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0765782Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0772331Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0780884Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0789892Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0807958Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0816113Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0847528Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.0983887Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1004146Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1041696Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1051558Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1063016Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1095419Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1197094Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1198483Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1219503Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1220404Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1246492Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1247967Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1259964Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1263344Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1273476Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1297673Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1314110Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1334257Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1338443Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1356278Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1359875Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1372297Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1379673Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1388893Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1396948Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1406963Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1414349Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1421362Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1426339Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1432504Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1438085Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1669733Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1671305Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1673514Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1679412Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1688607Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1701156Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1707722Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1713663Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1726175Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1733989Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1744419Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1946388Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1962364Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.1970509Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2029468Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2036389Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2043124Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2048838Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2053538Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2058888Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2064278Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2069368Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2076716Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2083027Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2084506Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2108886Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2119981Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2145449Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2163371Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2187584Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2203403Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2240841Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2249988Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2261559Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2276194Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2281884Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2292782Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2313868Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2318167Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2332607Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2339001Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2345533Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2355354Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2377626Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2392560Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2420311Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2422998Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2424014Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2430155Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2437524Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2445420Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2453622Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2462028Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2471194Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2588150Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2593657Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2600604Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2608182Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2614546Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2622248Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2628910Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2637023Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2640145Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2646664Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2653666Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2956843Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2972428Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2988320Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.2996552Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3021948Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3023361Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3046807Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3054691Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3133880Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3141699Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3159207Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3201140Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3207317Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3231337Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3237015Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3241207Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3263467Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3291709Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3299097Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3307871Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3352817Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3376397Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3387763Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3396506Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3417305Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3420374Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3426629Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3452563Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3459820Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3468177Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3479739Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3484262Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3502888Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3515645Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3527559Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3534546Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3569286Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3580180Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3591457Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3600674Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3628684Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3629896Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3648863Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3680181Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3686999Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3698837Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3708676Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3714495Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3719717Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3725736Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3731334Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3737166Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3742451Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3747970Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3753810Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3895399Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3899611Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3913648Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3922037Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3928846Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3947684Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3961354Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3972926Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3984313Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3990021Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.3997741Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4004529Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4017128Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4080863Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4085530Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4133400Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4139814Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4161145Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4168189Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4200994Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4219522Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4242448Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4269133Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4299056Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4333584Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4373525Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4377078Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4390153Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4394720Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4404604Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4413145Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4420420Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4427012Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4433400Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4439717Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4443641Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4453691Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4462037Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4494728Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4592337Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4643096Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4653858Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4663682Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4667719Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4676962Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4693807Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4701781Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4709034Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4716026Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4724375Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4730077Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4807988Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4821678Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4837239Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4868545Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4885325Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.4899597Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5075617Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5143784Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5214970Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5285876Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5304156Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5320872Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5329185Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5333309Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5341328Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5353489Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5363062Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5371076Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5378926Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5385583Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5534306Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5656378Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5662190Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5668507Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5673955Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5679457Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5695510Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5701331Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5707474Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5767627Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5778164Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5788894Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5797376Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5807667Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.5814886Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6058299Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6202366Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6220524Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6257256Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6269441Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6277466Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6285247Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6292501Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6303400Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6307190Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6317885Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6319286Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6332477Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6338644Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6341998Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6353585Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6358559Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6368567Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6371533Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6377581Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6383701Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6396149Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6461538Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6576752Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6661826Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6670912Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6677984Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6686698Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6693869Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6700875Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6708020Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.6715130Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7121889Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7147568Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7159727Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7245779Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7253496Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7260755Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7267451Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7684173Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7691739Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7699512Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7706552Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7713755Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7720886Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7728088Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7735042Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7741891Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7748811Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7856434Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7952848Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7960617Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7977242Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7981952Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7985305Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.7993180Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8001195Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8007956Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8014590Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8040444Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8155202Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8171020Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8178247Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8185433Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8190323Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8196915Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8202506Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8207561Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8211991Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8216740Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8221225Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8281693Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8585615Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8593981Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8601600Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8609352Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8617117Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8625014Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8633289Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8639918Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8647873Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8653647Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8749395Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8755329Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8886317Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8893592Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8900476Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8907436Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8914595Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8920912Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8929030Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8936621Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8943100Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.8957431Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9068569Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9078913Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9087704Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9093294Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9108556Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9115293Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9126917Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9138121Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9143956Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9156967Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9167013Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9199637Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9205429Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9211529Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9218518Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9225595Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9489052Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9491730Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9509040Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9514874Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9529080Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9530240Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9541084Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9553403Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9557634Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9569351Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9576220Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9589190Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9595367Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9605523Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9614923Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9625420Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9632145Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9648742Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9666648Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9802902Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9812565Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9820814Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9829733Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9839185Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9847944Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9856903Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9864860Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9872292Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9879557Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9887292Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9958537Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9975559Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:15.9989366Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0014370Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0045116Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0062397Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0066036Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0102409Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0128894Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0134484Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0139518Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0374569Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0394276Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0401709Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0415584Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0419461Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0428389Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0449184Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0461457Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0479187Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0496491Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0516199Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0532577Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0543200Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0553072Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0559989Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0584140Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0720252Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0733210Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0855332Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0871254Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0887161Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0913384Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0941853Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0962970Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0974966Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0983337Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.0989484Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1003784Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1037049Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1046702Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1053623Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1322002Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1337835Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1348406Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1407280Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1413931Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1420031Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1426926Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1439466Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1444595Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1457047Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1469222Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1479302Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1482831Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1489158Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1495314Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1521146Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1524115Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1535839Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1542025Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1547646Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1729880Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1741747Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1758149Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1772488Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1791954Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1802326Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1811680Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1813922Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1826055Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1841672Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1848343Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1870722Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1876666Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1897971Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1921357Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1922830Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.1923831Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2239541Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2254551Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2273802Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2384722Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2393327Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2399743Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2406315Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2413967Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2421182Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2429320Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2436274Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2656654Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2673480Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2681903Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2699563Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2708600Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2717593Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2725509Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2740065Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2764622Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2776790Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2788808Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2799941Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2806626Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2811907Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2823470Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.2828987Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3079704Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3091744Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3098826Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3108620Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3114920Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3121202Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3128172Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3134169Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3140339Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3146746Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3153475Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3276914Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3285562Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3292921Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3300659Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3308802Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3577370Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3607401Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3608989Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3623575Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3627490Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3634764Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3651409Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3655451Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3683718Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3687442Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3701817Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3706384Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3720555Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3722437Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3729486Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3746633Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3747794Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3754970Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3765967Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3773760Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.3779503Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4004211Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4023986Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4028293Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4042230Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4054663Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4065206Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4073545Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4078965Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4084809Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4090112Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4095869Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4101644Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4107191Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4477736Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4505184Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4511667Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4523057Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4530040Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4535342Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4558847Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4577024Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4584759Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4614215Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4626262Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4642450Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4651823Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4668662Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4674470Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4686578Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4688037Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4718961Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4719878Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4743648Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4757780Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4764607Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4776116Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4782532Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4795374Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4811923Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4822126Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4828217Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4836796Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4841870Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4851559Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4857059Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4866669Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4871812Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4943813Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4962835Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4981215Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.4997093Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5008313Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5015647Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5022318Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5030983Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5037726Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5043134Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5425966Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5432528Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5442860Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5456813Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5462531Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5485913Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5507240Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5515375Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5547483Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5555253Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5556332Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5592928Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5604680Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5648069Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5651335Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5673746Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5703848Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5706847Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5718307Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5744074Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5758501Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5777931Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5792266Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5800676Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5814039Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5820785Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5854940Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5857072Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5895612Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5913202Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5929651Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5940506Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5971228Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.5999186Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6008260Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6017440Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6018697Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6032030Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6044300Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6060345Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6064061Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6070016Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6075194Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6091738Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6095319Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6105044Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6111945Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6117972Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6123566Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6129749Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6135405Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6317119Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6322112Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6364005Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6366247Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6373566Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6379716Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6392120Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6395467Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6404425Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6410848Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6428425Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6430066Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6439784Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6472430Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6511131Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6564302Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6581934Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6620378Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6666756Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6692948Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6700049Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6714310Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6734293Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6745720Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6778269Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6796851Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6839597Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6859304Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6897644Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6928278Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6934259Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6951137Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6968360Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.6981164Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7019687Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7030431Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7037226Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7048868Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7072994Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7074890Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7085967Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7105808Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7112581Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7119073Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7139559Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7147790Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7154961Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7162500Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7205154Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7217636Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7230307Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7236977Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7253393Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7257341Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7285814Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7293507Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7307579Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7313347Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7325563Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7342829Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7344927Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7361210Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7402288Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7485805Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7524265Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7596937Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7651031Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7675529Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7708879Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7748803Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7779195Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7843512Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7910711Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7957077Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7998274Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.7999563Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8001719Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8019675Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8026176Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8036505Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8050201Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8063218Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8070492Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8106522Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8122134Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8136077Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8146791Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8156603Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8166246Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8168900Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8184096Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8189212Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8202406Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8212071Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8213640Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8222158Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8257913Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8265896Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8273143Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8279247Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8284322Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8490887Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8496553Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8502176Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8509664Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8516369Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8524663Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8535075Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8539929Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8546213Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8551937Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8653171Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8700925Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8708170Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8713336Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8719915Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8728627Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8739860Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8751389Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8753042Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8762219Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8769820Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8777094Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8784360Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8834804Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8856904Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8903185Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8935758Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8964647Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.8994088Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9020599Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9040156Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9052253Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9060455Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9067921Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9087117Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9095077Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9105226Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9115600Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9121281Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9140808Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9178181Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9189031Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9197503Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9205552Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9211587Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9217431Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9223699Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9393452Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9398986Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9407831Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9420181Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9423906Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9430140Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9436827Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9443580Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9450502Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9456345Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9476278Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9627716Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9637030Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9645113Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9653174Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9662369Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9676825Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9693182Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9708950Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9716704Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9721750Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9739605Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9770571Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:16.9799474Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0099957Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0107480Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0115659Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0123248Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0129038Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0134995Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0145638Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0204171Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0209479Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0215249Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0221839Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0228260Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0235928Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0241645Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0256775Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0261899Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0267586Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0288032Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0302604Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0312090Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0319705Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0329450Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0340431Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0346988Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0357035Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0371280Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0388769Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0396504Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0406369Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0408948Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0421641Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0427612Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0437124Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0444066Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0451721Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0456291Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0553749Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0564743Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0570670Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0577319Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0585132Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0605722Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0626259Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0635722Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0642436Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.0649241Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1019787Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1026289Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1032794Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1041106Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1047785Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1053878Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1059020Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1085543Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1119929Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1126946Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1134237Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1141229Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1148590Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1155958Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1161340Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1173782Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1183371Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1198536Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1221358Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1228209Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1244896Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1248968Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1255280Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1265210Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1270340Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1299966Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1311222Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1331153Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1333652Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1355188Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1377721Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1380905Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1392277Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1399464Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1401971Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1408831Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1424498Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1429474Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1445209Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1449426Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1455799Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1467020Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1487687Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1499650Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1507666Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1919516Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1926784Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1935175Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1944243Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1952211Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1959998Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1970204Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1978248Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1985837Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.1993800Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2038860Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2046269Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2053217Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2060521Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2067706Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2074729Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2084706Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2094864Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2118078Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2123527Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2138806Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2161989Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2163147Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2174114Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2194999Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2196982Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2224396Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2225507Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2236250Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2255832Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2258830Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2277968Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2320957Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2321948Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2339789Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2357492Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2368866Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2378998Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2380266Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2411630Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2455719Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2457036Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2460081Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2461262Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2462356Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2484103Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2488279Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2505044Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2530437Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2544793Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2551163Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2557320Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2563760Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2569564Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2575704Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2581700Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2587624Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2593623Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2813131Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2822420Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2829672Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2836215Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2845286Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2852003Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2861206Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2870273Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2877873Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2885015Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2956087Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.2961754Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3003697Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3025839Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3070083Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3081722Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3088493Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3116602Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3119769Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3129759Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3151930Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3155833Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3167609Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3202052Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3243430Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3254189Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3284408Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3326453Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3367737Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3385577Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3404512Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3425295Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3432901Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3446344Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3454917Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3462582Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3469665Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3477302Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3484077Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3490506Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3497040Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3524396Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3529781Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3536189Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3543037Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3549706Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3556448Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3561938Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3568401Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3574728Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3579827Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3588523Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3594821Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3600767Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3607008Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3613114Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3618952Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3625035Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3631038Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3637240Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3643328Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3708003Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3716369Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3723287Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3731556Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3739572Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3746932Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3754548Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3761644Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3770385Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3778242Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3924060Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3956574Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3964648Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3974715Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3982354Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3991540Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.3996017Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4001697Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4018061Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4028448Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4065695Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4071384Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4080007Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4112161Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4214180Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4220980Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4236981Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4243884Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4250971Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4257031Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4264034Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4271686Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4279069Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4286208Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4320825Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4328462Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4340079Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4349466Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4358132Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4368290Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4375514Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4382876Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4389503Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4397305Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4425910Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4433501Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4444533Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4452111Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4459084Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4467530Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4475089Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4482986Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4490762Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4498027Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4511184Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4519016Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4527831Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4535797Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4544913Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4552630Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4560333Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4568865Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4576722Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4584362Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4618842Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4626095Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4842820Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4854586Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4859826Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.4888322Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5141043Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5146735Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5162974Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5169667Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5175764Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5183279Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5189741Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5203396Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5214171Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5223351Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5230409Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5237789Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5310849Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5326009Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5333795Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5340137Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5353716Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5357354Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5374952Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5379333Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5392531Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5394512Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5421700Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5430468Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5460178Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5474383Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5484636Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5503501Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5511290Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5527836Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5548104Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5551475Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5557904Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5568261Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5580886Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5587952Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5596733Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5603355Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5619946Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5685257Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5690550Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5696452Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5701941Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5707305Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5713012Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5718350Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5724157Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5729588Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5735245Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5750261Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5768129Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5774149Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.5779812Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6068323Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6077056Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6089100Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6096569Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6103885Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6111466Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6118682Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6139697Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6146339Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6156484Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6213463Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6221450Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6231464Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6242215Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6249885Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6260042Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6267856Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6276976Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6309002Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6318584Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6345341Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6354797Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6378355Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6395093Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6421933Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6433117Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6586716Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6593664Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6600395Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6624493Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6626158Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6627673Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6633066Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6663242Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6683045Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6687952Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6706662Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6708726Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6726180Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6736375Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6741387Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6748144Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6754411Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6760919Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6767979Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6773732Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6780135Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6786582Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.6994633Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7005167Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7144644Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7153097Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7172401Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7185428Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7191822Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7198892Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7210391Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7217073Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7220899Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7235304Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7239985Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7253338Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7257390Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7271252Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7280414Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7283164Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7293493Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7317340Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7357188Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7485019Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7493575Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7503645Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7511395Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7518309Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7524699Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7531905Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7561015Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7574945Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7588388Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7621686Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7634838Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7648061Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7653418Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7676180Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7684525Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7694413Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7710451Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7720719Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7756472Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7764193Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7765427Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7775127Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7783568Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7792541Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7881926Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7889719Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7897305Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7903267Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7909594Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7916108Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7921756Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7928865Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7935093Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.7940796Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8065211Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8073705Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8091970Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8096946Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8104830Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8125554Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8131292Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8137258Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8143183Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8158531Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8183906Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8190560Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8201782Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8206805Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8371640Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8383176Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8394374Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8445503Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8485743Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8499423Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8515745Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8530021Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8533321Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8547376Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8551993Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8563332Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8584482Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8594621Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8599806Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8613084Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8637468Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8676202Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8685998Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8778804Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8788794Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8796106Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8812579Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8821067Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8832061Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8841850Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8850636Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8863185Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8887944Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8890232Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8898360Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8921583Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8929120Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8937065Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8958813Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8969818Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.8973604Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9003077Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9023709Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9050634Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9053388Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9066549Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9087598Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9097137Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9099964Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9123061Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9125937Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9140645Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9143415Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9155237Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9156736Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9166665Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9172580Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9178730Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9184693Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9345885Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9394290Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9398377Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9404007Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9418528Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9421844Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9432856Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9436670Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9472610Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9477818Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9479058Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9494946Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9497000Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9509355Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9517562Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9539230Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9540476Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9545637Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9549504Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9563916Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9571705Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9677927Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9686480Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9697527Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9705759Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9714000Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9726916Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9731375Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9748857Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9768158Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9772942Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9794668Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9812546Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9830680Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9835981Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9848190Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9868630Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9876270Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9915504Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9916780Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9935059Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9959804Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9967671Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:17.9979298Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0000861Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0007814Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0012371Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0027988Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0035106Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0042529Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0049519Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0058364Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0067717Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0076568Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0317850Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0331945Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0340959Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0351385Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0370430Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0410658Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0423327Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0441037Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0444765Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0458848Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0462940Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0473932Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0477239Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0489037Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0495162Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0501811Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0507255Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0513706Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0528841Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0536609Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0575407Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0588754Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0596216Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0659569Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0680629Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0701936Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0737344Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0752165Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0771308Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0800103Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0837493Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0853378Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0884667Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0906210Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0914934Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0928225Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0937749Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0961690Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0975748Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0980793Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0989816Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.0997695Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1004488Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1016846Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1018127Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1041036Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1046213Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1054097Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1061184Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1067600Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1073659Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1088496Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1244042Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1259246Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1267374Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1286143Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1296649Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1337265Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1355101Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1362538Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1369297Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1385991Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1403212Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1496732Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1499644Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1502926Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1512825Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1518465Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1524103Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1529275Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1534788Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1539908Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1559773Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1585554Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1595719Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1672162Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1679406Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1745363Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1780034Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1790477Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1794811Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1802336Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1809905Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1823952Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1825054Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1829523Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1836640Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1842976Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1854243Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1871302Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1886570Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1900320Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1914787Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1936564Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1949552Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1961461Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1971335Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.1978130Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2167783Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2183376Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2192055Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2243677Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2248920Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2259120Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2271739Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2278572Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2287502Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2288638Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2292887Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2299198Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2314686Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2326557Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2332904Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2338669Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2343686Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2349040Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2354158Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2365921Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2377612Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2389491Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2396095Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2412785Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2417414Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2424157Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2432267Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2441108Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2450420Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2458816Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2464979Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2470914Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2477450Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2512006Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2517971Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2524646Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2530888Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2537419Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2543443Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2549676Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2556188Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2562457Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2568843Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2677488Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2692241Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2700556Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2710456Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2719027Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2728079Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2737430Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2740934Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2751751Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2761974Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2770475Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2790626Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2797813Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2806862Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2816242Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2834494Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2847978Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2859517Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2869689Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.2878900Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3140199Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3146602Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3152492Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3162013Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3170418Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3199321Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3236701Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3244083Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3250456Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3256708Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3263081Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3269401Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3275360Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3286339Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3297762Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3308498Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3333473Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3369197Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3376802Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3383160Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3389418Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3396598Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3403266Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3410101Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3416280Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3422411Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3435808Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3439403Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3457562Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3467310Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3476209Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3486081Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3493634Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3502242Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3510263Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3516748Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3523023Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3574078Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3586802Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3606100Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3616268Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3624697Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3638669Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3675543Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3685219Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3697381Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3703058Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3714577Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.3717755Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4030356Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4037968Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4045110Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4059025Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4066805Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4081527Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4082837Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4098386Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4104767Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4119879Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4121046Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4140337Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4151467Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4175431Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4192827Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4223426Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4234891Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4236849Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4275176Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4302436Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4307886Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4321223Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4348317Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4371028Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4422514Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4431986Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4433303Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4441828Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4454688Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4484175Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4493909Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4518083Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4539194Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4558131Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4596279Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4598093Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4621039Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4622053Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4668640Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4685901Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4699200Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4718199Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4728363Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4764468Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4785633Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4801652Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4803051Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4843597Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4856417Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4865869Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4876321Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4906366Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4934335Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4954531Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4959912Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.4964056Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5026113Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5040414Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5054002Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5085659Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5087538Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5117654Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5126802Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5143984Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5176650Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5188024Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5222612Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5237482Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5248482Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5256532Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5281736Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5295142Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5311356Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5339793Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5367932Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5371665Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5382378Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5405488Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5454102Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5464149Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5481091Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5488079Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5498656Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5513016Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5557480Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5579895Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5602588Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5613740Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5633628Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5634993Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5643628Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5701916Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5711842Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5735056Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5736763Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5787076Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5788586Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5825039Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5836312Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5854868Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5855729Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5856674Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5891481Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5894019Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5897048Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5934201Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5963448Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5968516Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.5978371Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6014632Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6039764Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6043300Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6056409Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6094658Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6117892Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6133685Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6163032Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6164317Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6175253Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6216143Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6224290Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6238242Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6244704Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6274789Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6283001Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6297859Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6314263Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6325868Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6336592Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6347950Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6353631Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6398745Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6407243Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6418654Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6429565Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6449201Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6456064Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6473600Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6577712Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6580369Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6581627Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6667727Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6694790Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6697035Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6758610Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6788438Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6808852Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6813179Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6864184Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6883914Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6893053Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6931839Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6969863Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6980958Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.6994922Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7009265Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7054726Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7073520Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7076558Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7092540Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7116272Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7149996Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7186201Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7193073Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7202861Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7206824Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7220686Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7226350Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7240046Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7306429Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7318907Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7320024Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7343089Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7353874Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7425244Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7546028Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7596224Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7603643Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7612361Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7623314Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7629623Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7637716Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7643237Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7653649Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7662964Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7669326Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7676695Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7761497Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7808096Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7893826Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7913589Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7979137Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.7991877Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8063177Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8105652Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8118977Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8126813Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8138236Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8150047Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8161906Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8163471Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8170491Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8181312Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8184554Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8229753Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8255038Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8259801Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8274814Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8291002Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8300824Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8497682Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8500354Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8512344Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8520074Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8529075Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8544235Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8557677Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8585487Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8596366Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8600981Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8605456Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8639573Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8641806Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8653371Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8669165Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8670349Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8690179Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8716168Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8723872Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8745327Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8750366Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8768554Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8817747Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8828926Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8846821Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8862098Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8886039Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8897740Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8907439Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8919278Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8927908Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8946580Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8950836Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8978147Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8983982Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8990048Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.8998293Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9000263Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9013585Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9021709Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9034894Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9043326Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9062840Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9069604Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9075748Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9085055Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9128694Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9307022Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9315485Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9384086Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9405095Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9409959Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9442088Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9444372Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9465767Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9508076Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9522584Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9525051Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9535815Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9585551Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9589541Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9605219Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9618831Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9631395Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9684901Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9691818Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9692923Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9701019Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9737716Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9793004Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9808666Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9812142Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9823326Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9854104Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9895188Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9910025Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9916722Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9924375Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9947434Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9965892Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:18.9996315Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0006489Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0015472Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0042447Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0059464Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0096747Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0111269Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0115106Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0124777Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0134243Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0157228Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0177910Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0211795Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0217876Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0224203Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0247549Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0296712Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0299503Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0334618Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0336731Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0346431Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0380597Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0435924Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0442386Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0454813Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0460763Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0478498Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0536405Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0546660Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0578188Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0591163Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0603528Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0607439Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0620607Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0669694Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0675014Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0704223Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0755526Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0781196Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0786182Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0792377Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0803043Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0804422Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0807900Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0857914Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0865785Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0892185Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0911877Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0919678Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0930764Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.0965735Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1029676Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1039379Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1051800Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1059861Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1069788Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1082556Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1129278Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1160936Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1186197Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1193282Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1208432Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1209786Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1210487Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1255822Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1284496Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1306280Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1309314Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1336722Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1359164Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1372580Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1395116Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1440978Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1445879Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1447016Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1481508Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1503469Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1513575Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1514918Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1554641Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1576631Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1581944Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1596784Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1642408Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1650792Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1663969Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1694071Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1696207Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1716353Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1745178Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1763450Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1767899Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1788319Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1801362Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1814609Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1824521Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1848583Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1915554Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1924988Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1926236Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1928311Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1949698Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1954692Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.1963364Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2026390Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2051007Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2060470Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2071976Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2081990Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2085322Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2111463Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2134630Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2174684Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2181520Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2211231Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2214034Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2235204Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2235942Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2272221Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2301976Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2308770Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2317007Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2335399Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2368219Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2394487Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2410358Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2425292Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2443979Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2451231Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2493094Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2528331Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2558640Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2559383Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2571716Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2587194Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2613720Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2632209Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2642505Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2658766Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2692018Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2707361Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2712956Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2729919Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2757417Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2779294Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2787278Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2795004Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2831728Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2859745Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2864192Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2869478Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2898811Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2910605Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2914270Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.2976754Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3044368Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3048938Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3066837Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3080482Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3141507Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3143306Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3196008Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3256027Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3269380Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3280296Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3338680Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3342112Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3401513Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3408318Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3436766Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3459893Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3464607Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3466214Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3477150Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3516827Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3538263Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3550950Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3567635Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3579701Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3597295Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3604366Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3618106Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3629853Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3644377Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3653164Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3708377Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3709501Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3721076Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3744628Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3756636Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3773451Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3804148Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3846670Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3905646Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.3984352Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4060053Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4084738Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4168146Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4173924Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4180220Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4186493Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4197992Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4211458Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4220474Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4232026Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4240385Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4249010Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4253819Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4261728Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4268025Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4291480Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4302584Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4311777Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4319649Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4328704Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4335308Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4340320Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4394776Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4407664Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4425833Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4444635Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4460702Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4469428Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4479098Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4486541Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4514105Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4520784Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4542079Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4543622Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4553380Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4559935Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4567666Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4571663Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4582429Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4601905Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4610822Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4619091Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4627631Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4638525Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4647514Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4673941Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4683268Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4693353Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4840907Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4848164Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4865226Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4872852Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4881268Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4888979Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4896446Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4904187Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4911607Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4918328Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4939208Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4946042Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4952545Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4959144Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4965826Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4972574Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4978935Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.4995513Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5001347Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5008511Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5071383Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5082218Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5097568Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5118331Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5124299Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5138666Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5143238Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5150753Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5158314Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5165434Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5193527Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5202568Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5209888Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5217815Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5328061Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5345188Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5363839Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5383240Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5414827Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5421117Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5426561Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5446915Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5465617Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5477135Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5483706Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5497195Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5510754Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5512551Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5529518Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5532542Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5560121Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5563853Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5574534Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5593054Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5739097Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5745125Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5759501Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5788840Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5796616Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5805674Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5811093Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5817668Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5823076Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5828497Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5836270Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5850283Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5865404Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5875126Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5890238Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5897199Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5904905Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5911282Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5925699Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5930573Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5939718Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5944655Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5950403Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5956835Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5969130Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5975421Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5981085Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5989358Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5993096Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.5998744Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6012419Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6016851Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6043906Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6046360Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6053087Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6067372Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6083457Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6099682Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6119368Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6127096Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6133373Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6159428Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6166915Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6178931Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6187954Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6199706Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6220558Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6243591Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6252290Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6287882Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6314693Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6316916Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6328814Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6366104Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6368168Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6381043Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6391162Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6397577Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6438137Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6444135Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6455726Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6472581Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6479732Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6489694Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6516590Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6518255Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6519608Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6525249Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6530315Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6633374Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6639445Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6652018Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6683356Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6696265Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6704429Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6712177Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6721071Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6727859Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6738942Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6744567Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6750768Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6762089Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6780180Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6791845Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6797677Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6809076Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6814004Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6826529Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6831940Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6856609Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6880088Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6885099Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6901682Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6925983Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6963024Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6971932Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6975269Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6994388Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.6998216Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7036668Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7075149Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7087678Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7096775Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7101393Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7129904Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7148928Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7151034Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7175305Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7209450Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7211844Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7217845Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7271911Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7303480Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7314468Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7315742Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7336271Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7381662Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7408139Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7413356Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7431088Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7463751Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7489845Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7537775Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7562320Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7563669Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7565094Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7569243Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7572488Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7609120Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7625233Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7644775Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7645883Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7650397Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7700764Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7704489Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7723683Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7728844Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7773625Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7786773Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7789518Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7795768Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7807994Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7839253Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7853247Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7854420Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7888836Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7898131Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7920253Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7922468Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7930795Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7946669Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7957634Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7965248Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.7994811Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8018051Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8065690Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8087885Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8095123Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8121753Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8158096Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8168944Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8221467Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8244844Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8260895Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8276452Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8342277Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8373508Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8384126Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8462829Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8467290Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8480807Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8507761Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8526755Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8562475Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8596667Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8612968Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8626681Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8669103Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8714696Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8739890Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8787935Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8793876Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8807412Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8843180Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8855583Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8931647Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8940920Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8948454Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8968964Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.8975643Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9020990Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9098734Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9100175Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9119590Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9131800Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9151020Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9152333Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9155111Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9199424Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9203694Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9215006Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9226197Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9244498Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9263318Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9288050Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9294977Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9305280Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9309374Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9315048Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9321339Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9376513Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9469195Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9476914Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9483301Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9489734Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9495555Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9501922Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9527793Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9536966Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9545201Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9547341Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9557187Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9567591Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9624401Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9625590Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9630012Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9717964Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9718858Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9766118Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9785054Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9823465Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9872509Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:19.9975589Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0050171Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0053451Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0066785Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0075331Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0082190Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0091619Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0104273Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0118812Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0129750Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0133908Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0144405Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0163516Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0171251Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0183463Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0191950Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0212142Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0219804Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0235870Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0238413Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0243689Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0262819Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0270717Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0276957Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0285115Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0291605Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0310909Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0315669Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0319766Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0327082Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0342059Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0346861Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0354364Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0362540Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0385545Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0390017Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0408408Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0415283Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0432894Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0446480Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0447985Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0464666Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0466252Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0467449Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0471207Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0490747Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0503389Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0527089Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0533210Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0545102Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0554030Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0631902Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0748539Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0758135Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0765590Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0777989Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0785418Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0791586Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0798719Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0805467Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0811918Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0818243Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0825072Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0827835Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0977044Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0978271Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.0994060Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1007286Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1020239Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1046843Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1050220Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1062094Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1071110Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1084549Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1097314Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1103621Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1121736Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1141958Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1158510Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1164006Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1182095Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1184126Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1196917Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1204043Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1211789Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1219139Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1226697Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1234677Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1245880Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1253055Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1263732Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1269489Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1278585Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1284674Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1290304Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1297308Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1331038Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1342882Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1349666Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1356356Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1368706Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1371619Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1381206Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1390889Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1407477Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1414797Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1417554Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1425112Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1446616Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1454355Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1475957Z Completed 8.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1551527Z Completed 8.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1664758Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1667729Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1691065Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1700268Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1720654Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1723393Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1739044Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1766819Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1768583Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1770909Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1804357Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1808597Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1813335Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1845196Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1848146Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1849990Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1880385Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1887049Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1888155Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1915440Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1944538Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1956741Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1973805Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.1986908Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2008660Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2038772Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2066569Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2108291Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2112483Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2118377Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2149603Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2150850Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2184706Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2237690Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2242793Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2256734Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2262074Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2337777Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2356079Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2375447Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2406702Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2408740Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2414503Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2415710Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2446157Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2448532Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2484769Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2502890Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2509819Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2523121Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2573355Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2574967Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2594615Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2614050Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2617786Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2626842Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2654975Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2739361Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2740880Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2756955Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2760191Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2804028Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2805294Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2850940Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2872854Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2883889Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2917442Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2942419Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.2980443Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3043550Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3045810Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3051181Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3055536Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3058947Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3079334Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3134730Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3162344Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3173856Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3175071Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3177968Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3204021Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3235248Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3266549Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3275584Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3296397Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3300645Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3304805Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3327786Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3388527Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3413514Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3416183Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3420465Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3436839Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3438032Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3441325Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3534022Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3540872Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3555110Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3560369Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3561824Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3578764Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3604037Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3631990Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3649076Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3653624Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3663149Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3684084Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3719983Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3742951Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3746838Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3768529Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3820167Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3838955Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3854518Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3871580Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3886007Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3903813Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3909384Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3939940Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3988682Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.3996402Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4009081Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4038518Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4070910Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4091563Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4109644Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4127138Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4128337Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4147247Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4151084Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4213617Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4224836Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4230884Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4234661Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4247514Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4307701Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4320850Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4327125Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4331003Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4335540Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4398813Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4409334Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4421846Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4425495Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4454465Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4493544Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4499383Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4519626Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4526773Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4540955Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4574189Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4593480Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4624424Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4635918Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4640204Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4686969Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4745769Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4753561Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4767991Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4775029Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4854572Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4856046Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4857120Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4858182Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4942922Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4954723Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4967917Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.4971202Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5016965Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5066459Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5096500Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5127141Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5172059Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5206554Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5207664Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5353270Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5393603Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5394878Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5413234Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5427392Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5446796Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5475672Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5494940Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5499741Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5510070Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5516987Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5559218Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5569458Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5570875Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5584744Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5634111Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5641559Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5646100Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5654892Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5702955Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5705200Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5712097Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5726848Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5746354Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5753799Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5764061Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5780356Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5794319Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5811441Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5823288Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5833702Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5843497Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5853381Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5916595Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5942365Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5952870Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5963300Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5970405Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5977675Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5983518Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5989885Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.5997596Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6000869Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6008265Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6014513Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6046427Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6052424Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6060737Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6071989Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6081689Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6088377Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6096303Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6103728Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6111542Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6117504Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6134599Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6289229Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6292205Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6331860Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6343718Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6349397Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6359420Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6365823Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6377147Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6388434Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6399528Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6415000Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6433255Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6442932Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6447300Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6517473Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6521302Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6535388Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6543166Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6558709Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6650313Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6651771Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6653188Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6654522Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6657993Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6715911Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6716870Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6735363Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6789314Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6804040Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6809223Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6818488Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6895210Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6917054Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6920610Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6924141Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6953825Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.6981456Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7029609Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7032095Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7043699Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7098749Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7150997Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7163973Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7183686Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7197074Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7220473Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7249793Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7298132Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7304979Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7374106Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7398224Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7403302Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7422449Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7423794Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7443424Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7509669Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7519476Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7521022Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7526649Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7541052Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7543323Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7620765Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7637306Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7640923Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7641772Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7655856Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7656863Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7717204Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7740133Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7749737Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7753923Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7762521Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7800521Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7818302Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7845196Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7863759Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7878838Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7903100Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7905346Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7914232Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7959841Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7982508Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.7996734Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8004568Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8006574Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8082533Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8093663Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8094915Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8096530Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8119466Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8124118Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8181968Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8186727Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8208563Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8231687Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8239583Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8240987Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8288606Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8311357Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8329326Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8363367Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8364156Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8377833Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8388304Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8426871Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8430905Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8452257Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8515370Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8519092Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8528264Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8540041Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8541566Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8559206Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8561968Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8608493Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8643330Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8675827Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8678869Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8688082Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8698203Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8725879Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8769830Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8838172Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8873114Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8885901Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8920545Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8927072Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8939311Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.8994588Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9028726Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9037034Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9077705Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9126912Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9149590Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9150930Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9205899Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9236413Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9238336Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9239698Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9240688Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9270070Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9291678Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9347367Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9367997Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9378157Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9399021Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9406905Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9415976Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9419631Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9471774Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9496522Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9501743Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9506216Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9552086Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9553759Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9559510Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9603238Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9604984Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9622004Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9625568Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9646790Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9693607Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9694650Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9709409Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9726097Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9743263Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9769041Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9800789Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9816527Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9834047Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9851339Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9871559Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9930537Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9940420Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9961767Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:20.9992557Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0010849Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0011961Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0065677Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0075431Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0076656Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0120621Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0164982Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0166133Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0184298Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0193449Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0207094Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0219733Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0249970Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0256193Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0275296Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0285300Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0316851Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0357115Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0359106Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0369415Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0375850Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0420911Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0442095Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0460138Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0464232Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0488295Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0525321Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0554791Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0561631Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0575731Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0590225Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0610552Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0636961Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0649889Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0665475Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0679954Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0716358Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0720714Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0721653Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0816017Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0819225Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0834961Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0841334Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0897081Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0897930Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0917347Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0918548Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0947689Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.0995925Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1003436Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1011077Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1028775Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1038294Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1073942Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1112045Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1136949Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1138207Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1165361Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1203650Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1211906Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1328455Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1329844Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1330899Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1332050Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1350667Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1366059Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1419468Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1445780Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1453392Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1458471Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1471078Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1475223Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1524343Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1620766Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1651632Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1659262Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1691525Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1695754Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1703442Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1704407Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1709421Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1727752Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1798541Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1833648Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1834618Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1857449Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1901100Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1905643Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1965132Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.1987060Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2004573Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2035699Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2046747Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2051124Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2055266Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2097623Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2098480Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2146549Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2150222Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2162460Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2187957Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2205451Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2214747Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2244614Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2259041Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2264290Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2297744Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2317292Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2338114Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2354302Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2355561Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2435119Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2450778Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2493575Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2497768Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2500356Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2527662Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2533651Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2571888Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2593552Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2602425Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2626285Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2639274Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2652222Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2669620Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2688038Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2705131Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2719820Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2729228Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2755524Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2776755Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2784828Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2788993Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2835675Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2873045Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2874518Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2875720Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2903188Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2950720Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2986711Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.2994239Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3010618Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3025265Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3050684Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3056898Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3098450Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3125159Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3158991Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3160074Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3164605Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3175820Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3189962Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3264998Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3268699Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3304517Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3305653Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3306337Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3307270Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3329888Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3382467Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3432288Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3442331Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3484102Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3485127Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3493007Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3533014Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3581969Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3608487Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3609528Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3635284Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3636292Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3637139Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3721411Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3732377Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3733664Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3734397Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3737359Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3745879Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3771544Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3841762Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3876236Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3877289Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3883320Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3889830Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3899923Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3930035Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.3994706Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4001928Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4036220Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4037357Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4038561Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4113835Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4117992Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4175037Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4198405Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4203840Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4217276Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4229469Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4246301Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4299264Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4310077Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4321664Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4338710Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4343707Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4384612Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4402850Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4406189Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4426408Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4454093Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4492840Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4494188Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4517618Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4525848Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4527269Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4595783Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4602147Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4603403Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4632455Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4637635Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4703788Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4716816Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4719649Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4720815Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4730988Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4731979Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4808870Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4824796Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4828077Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4833246Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4852105Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4870354Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4903462Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4922845Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4933334Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4951658Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.4972291Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5010495Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5024236Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5028529Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5064152Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5099521Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5110425Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5133214Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5160539Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5173648Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5200034Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5255688Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5259518Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5261000Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5293154Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5310191Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5325307Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5331607Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5377217Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5392504Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5406946Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5415794Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5437836Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5452174Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5477845Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5488325Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5512383Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5530917Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5592421Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5603670Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5619435Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5625480Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5631990Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5636093Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5730862Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5747839Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5755628Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5793615Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5828617Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5858661Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5868279Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5881437Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5914289Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5939086Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5973789Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5987886Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.5995590Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6011833Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6025861Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6051453Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6056608Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6099844Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6103248Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6111639Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6120577Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6174615Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6196573Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6214914Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6220852Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6242270Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6243481Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6248411Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6323419Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6328528Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6349621Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6350369Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6356890Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6385519Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6390353Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6439997Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6470547Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6500345Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6501529Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6510060Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6511720Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6525382Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6526590Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6563719Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6586415Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6618026Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6625957Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6683741Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6691450Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6703841Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6790567Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6792152Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6809701Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6849453Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6853627Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6869562Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6892348Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6936904Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6972024Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6975104Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.6998104Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7002017Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7049084Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7051051Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7054566Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7092003Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7104879Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7122915Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7136869Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7145132Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7168338Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7175023Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7213592Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7237173Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7247113Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7254867Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7268723Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7281766Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7342405Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7343641Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7350930Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7357360Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7366193Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7402454Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7449616Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7461810Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7463169Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7468211Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7470631Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7520148Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7551100Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7565982Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7575888Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7579414Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7580365Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7630728Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7639389Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7643224Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7682969Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7689395Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7740183Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7749421Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7770498Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7776074Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7797460Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7846426Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7847464Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7854668Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7879689Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7889854Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7928925Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7958176Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7964683Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.7992078Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8002995Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8021920Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8046906Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8075227Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8097167Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8107394Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8123450Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8146705Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8154719Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8181209Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8195726Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8233719Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8242956Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8261991Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8301580Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8343720Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8356911Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8368600Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8383954Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8402851Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8408569Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8476230Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8491068Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8508844Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8540273Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8554255Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8567765Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8590963Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8619574Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8633577Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8641721Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8662182Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8683604Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8719312Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8747665Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8749099Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8778605Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8815157Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8825148Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8840324Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8870474Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8878098Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8909268Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8937249Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8955991Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8959133Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.8975107Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9044341Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9077403Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9089544Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9106490Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9107462Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9113711Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9155562Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9208176Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9218472Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9225079Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9226197Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9230664Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9251130Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9308575Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9316888Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9317910Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9333344Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9356430Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9394519Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9411049Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9421535Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9433908Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9439792Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9464682Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9485251Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9503970Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9518883Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9544299Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9586930Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9604338Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9624147Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9625253Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9633298Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9682952Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9710114Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9711007Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9711674Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9714975Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9785360Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9800765Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9809391Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9820665Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9845240Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9870788Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9900144Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9928927Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9930114Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9932188Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9963443Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9997386Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:21.9998814Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0040735Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0042056Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0078074Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0082474Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0105209Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0118746Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0169153Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0183411Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0215342Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0229089Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0246117Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0249666Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0276730Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0293600Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0329737Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0351686Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0353513Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0355785Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0396272Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0412260Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0427612Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0451853Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0495936Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0499742Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0521749Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0538307Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0564981Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0608342Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0609683Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0639902Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0645347Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0669978Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0689018Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0734966Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0748014Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0784512Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0790746Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0796066Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0803072Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0842180Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0879170Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0886001Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0891881Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0908637Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0930332Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0964909Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0983025Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0987945Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.0996447Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1024238Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1050374Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1075589Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1081831Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1087942Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1123320Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1148648Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1167797Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1178240Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1216056Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1228697Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1278550Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1323947Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1325549Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1340675Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1352079Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1411066Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1435860Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1436943Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1437624Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1487099Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1554421Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1566978Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1589270Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1598953Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1618810Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1630387Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1663449Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1721860Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1753384Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1786041Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1848587Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1858377Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1920657Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1944261Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1947852Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1959151Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1987340Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.1992349Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2003585Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2046598Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2062211Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2068030Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2096561Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2109345Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2128948Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2147672Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2162407Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2176082Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2199664Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2215681Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2239086Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2264759Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2281504Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2312840Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2324719Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2340743Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2369782Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2377804Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2403405Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2424833Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2425558Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2430922Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2479933Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2485653Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2516576Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2526762Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2537768Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2540025Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2596223Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2597002Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2620211Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2621269Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2625556Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2688098Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2721085Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2724086Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2731311Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2734052Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2740962Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2803163Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2843227Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2848455Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2850044Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2856913Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2866008Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2927126Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2938502Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2952582Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2959840Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2962311Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2974736Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.2994127Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3049898Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3068435Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3090428Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3113523Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3119723Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3132543Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3161197Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3228702Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3247985Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3280589Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3310095Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3311545Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3333980Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3335707Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3370354Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3390612Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3422978Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3424201Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3437753Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3439162Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3473102Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3476253Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3494177Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3522517Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3551790Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3553279Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3558789Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3595478Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3627459Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3631773Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3639292Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3642152Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3683027Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3693427Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3714932Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3723507Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3756691Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3762102Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3793470Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3794665Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3828103Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3847007Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3857299Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3862210Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3910295Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3917529Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3927909Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3948397Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.3960291Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4001406Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4020566Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4025141Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4041192Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4055950Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4060663Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4131137Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4140082Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4143033Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4160754Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4168648Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4213454Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4241210Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4244741Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4254343Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4261940Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4272599Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4280637Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4331880Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4333215Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4341852Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4357189Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4364327Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4451218Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4461749Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4470993Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4485319Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4486384Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4529814Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4581621Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4601919Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4625245Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4638562Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4688256Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4695683Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4703748Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4734521Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4787225Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4799519Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4810163Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4828861Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4853125Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4871666Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4909291Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4931123Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4937093Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4989661Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.4998711Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5003425Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5007114Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5060525Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5062573Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5110628Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5123322Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5144501Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5165011Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5173359Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5194830Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5240221Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5254187Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5273437Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5293462Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5298212Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5303556Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5368409Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5375639Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5414882Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5431095Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5437105Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5463498Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5488877Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5503389Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5527266Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5564937Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5584041Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5592371Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5601129Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5637608Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5641392Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5663507Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5664449Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5699009Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5739308Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5743507Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5749749Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5773858Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5785584Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5844519Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5847954Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5879556Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5891532Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5896484Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5921881Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5968286Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5973628Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.5979899Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6004272Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6020216Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6023811Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6069589Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6087645Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6098844Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6125602Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6132208Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6156836Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6165372Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6211595Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6219805Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6240493Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6267287Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6286095Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6297059Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6309460Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6310550Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6355754Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6365817Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6372831Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6429021Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6436501Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6456041Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6460566Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6461877Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6500069Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6506327Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6560040Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6561058Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6566320Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6597176Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6634120Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6642780Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6659838Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6675149Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6705819Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6768413Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6773659Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6790790Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6823518Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6838432Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6863430Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6913789Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.6990240Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7008473Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7011449Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7085739Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7093771Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7096422Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7142931Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7158393Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7160853Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7205125Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7213348Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7219512Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7242801Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7272319Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7286851Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7290974Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7317201Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7339043Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7368621Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7382297Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7388398Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7429703Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7435621Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7446865Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7480449Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7497826Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7528207Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7533751Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7562593Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7575312Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7608341Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7615080Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7617212Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7659714Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7663099Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7704326Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7713667Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7715527Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7748021Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7779473Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7793637Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7798789Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7850096Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7860524Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7873351Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7906052Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7919796Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7939351Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7950876Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.7965610Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8019862Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8021345Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8040879Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8066201Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8068248Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8107064Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8125198Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8141533Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8174353Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8192588Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8210041Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8225383Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8265400Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8270041Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8299263Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8311888Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8321619Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8363163Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8377625Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8426864Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8427998Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8454868Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8472997Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8548987Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8578974Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8633656Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8645184Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8654772Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8661804Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8685633Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8703869Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8731503Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8772368Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8813674Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8822765Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8823922Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8824809Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8832475Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8897245Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8914516Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8929833Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8935403Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8946694Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.8951075Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9017690Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9037623Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9041370Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9051375Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9052985Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9073535Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9108125Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9151472Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9164852Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9174284Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9194714Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9204111Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9228716Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9229917Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9279785Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9285091Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9303472Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9309545Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9346685Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9375981Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9400384Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9406598Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9422013Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9433597Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9465010Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9470491Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9531303Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9549045Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9557380Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9564438Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9577915Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9592368Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9676566Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9677788Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9679708Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9696576Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9713460Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9719572Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9760700Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9809633Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9824327Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9825094Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9849098Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9885920Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9903170Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9933579Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9937305Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9976210Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9977640Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9985738Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:22.9999516Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0020920Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0043651Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0074142Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0098456Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0099811Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0102073Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0132512Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0145667Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0183204Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0202426Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0217608Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0231858Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0254629Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0282907Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0293612Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0298308Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0337128Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0351137Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0365826Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0368792Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0389876Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0441747Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0446283Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0455000Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0457649Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0490078Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0523980Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0546671Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0551771Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0563744Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0603770Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0632337Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0640268Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0641634Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0667912Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0694939Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0726953Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0734028Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0747943Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0757713Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0792222Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0826863Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0831653Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0851063Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0855783Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0934765Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0942039Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0951320Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0956932Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0979995Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.0988183Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1060445Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1072784Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1082038Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1092332Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1100749Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1130058Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1146567Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1155640Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1202404Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1221228Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1235853Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1243601Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1254525Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1308197Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1340056Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1342616Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1357268Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1366699Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1435375Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1445358Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1466827Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1495160Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1496665Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1535750Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1615296Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1616916Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1627418Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1636704Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1706506Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1733394Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1744067Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1756844Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1763446Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1811818Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1819704Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1838508Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1848725Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1859917Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1892015Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1898416Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1911513Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1928542Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1947157Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1952189Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1957901Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1986904Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.1998789Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2017289Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2051415Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2073218Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2083610Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2099273Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2122036Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2126968Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2137641Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2177675Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2188900Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2203919Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2212031Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2220571Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2236142Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2248937Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2260421Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2264772Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2297397Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2386952Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2425784Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2436046Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2445975Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2546808Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2571660Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2584150Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2651509Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2666799Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2677149Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2709667Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2760529Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2769413Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2795692Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2796652Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2837115Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2853712Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2865060Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2880761Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2882538Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2938089Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2942378Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2945736Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2950773Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.2961811Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3001604Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3002940Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3050650Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3059244Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3080300Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3089412Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3099579Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3102937Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3131733Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3153603Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3166682Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3185835Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3215842Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3220478Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3249511Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3250708Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3266634Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3290361Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3303227Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3348209Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3360024Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3383855Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3427856Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3455498Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3460650Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3484823Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3509994Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3514317Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3515504Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3545327Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3553357Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3561614Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3591204Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3604439Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3611527Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3656852Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3660405Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3680855Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3691254Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3710235Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3721705Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3731258Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3742984Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3753910Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3791384Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3792996Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3841050Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3842162Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3859657Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3874481Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3903122Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3924630Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3933120Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3974447Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.3984156Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4000425Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4019532Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4032295Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4058879Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4063056Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4068761Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4093287Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4101858Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4108357Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4115863Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4121337Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4134726Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4159227Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4168152Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4172931Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4178147Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4205235Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4218238Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4249060Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4264594Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4283232Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4343228Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4352826Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4363802Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4371397Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4412992Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4419432Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4441301Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4505528Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4522532Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4558084Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4570011Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4576437Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4593459Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4596148Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4609470Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4626935Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4638472Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4672606Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4696921Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4734050Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4742041Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4760082Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4820687Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4855703Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4857158Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4858464Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4874137Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4880154Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4890882Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4947707Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4968486Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4978623Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.4999914Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5008775Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5029700Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5049338Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5057080Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5065906Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5113796Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5120447Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5130905Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5165605Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5166973Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5168544Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5235997Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5238231Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5244033Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5251871Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5252961Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5259071Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5343805Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5348625Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5360459Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5371618Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5373207Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5389903Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5449571Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5458571Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5474757Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5511574Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5519686Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5533856Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5556921Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5601466Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5610276Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5624549Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5625536Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5664906Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5680777Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5701737Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5748454Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5749203Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5784263Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5821513Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5823439Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5833633Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5871377Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5893541Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5907549Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5946672Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5948468Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5973481Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5974702Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5975820Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.5983066Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6016413Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6035363Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6078664Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6093623Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6120286Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6121865Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6123379Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6134234Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6135164Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6214299Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6219174Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6252271Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6263750Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6264817Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6314208Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6348689Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6360521Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6371066Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6378538Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6384590Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6476806Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6478074Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6496974Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6498322Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6505554Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6542448Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6574551Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6593171Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6594230Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6619597Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6642889Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6666819Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6697706Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6714654Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6737851Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6744489Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6804261Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6818036Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6819755Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6840034Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6860776Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6871302Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6919745Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6933420Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6942269Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6946704Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.6997439Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7012336Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7045201Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7054407Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7065893Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7081988Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7118728Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7126523Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7128576Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7153863Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7157570Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7213971Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7237705Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7250696Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7264625Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7295792Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7312862Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7346204Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7360194Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7361302Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7397806Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7410528Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7443124Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7487427Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7502465Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7505650Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7507950Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7537935Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7585007Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7596643Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7615940Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7661157Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7675629Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7714594Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7741718Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7745272Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7748426Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7763471Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7851132Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7861550Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7871182Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7881132Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7897070Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7904869Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7975273Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.7981376Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8000649Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8004564Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8021909Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8043320Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8074281Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8093271Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8117083Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8142964Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8149829Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8154926Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8165782Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8215459Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8230307Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8245889Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8257069Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8270413Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8271736Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8340284Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8343143Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8350573Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8363060Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8384244Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8393813Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8479201Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8486527Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8499263Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8507916Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8532069Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8547972Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8616320Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8625818Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8643724Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8657243Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8658403Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8679682Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8731204Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8744628Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8757264Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8765070Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8777926Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8809089Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8845857Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8854665Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8871877Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8873152Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8892094Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8948767Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8969524Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.8996217Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9007068Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9008667Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9062876Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9069637Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9077574Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9109769Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9139439Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9159348Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9221893Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9235381Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9236616Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9245042Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9260008Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9297140Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9327636Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9337365Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9347470Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9353827Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9360678Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9391829Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9432836Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9452056Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9459808Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9467210Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9479192Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9505721Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9539542Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9553647Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9583480Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9585723Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9631185Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9652551Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9695742Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9714574Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9737410Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9765432Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9775682Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9777148Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9825857Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9850374Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9870934Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9879870Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9901527Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9971576Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9981055Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:23.9990326Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0009684Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0015405Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0056096Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0089223Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0106950Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0110783Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0148020Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0149225Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0220573Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0255042Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0256202Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0262617Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0266344Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0340765Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0361612Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0367812Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0375842Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0377243Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0390513Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0470775Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0473301Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0480253Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0481420Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0505865Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0519824Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0558220Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0580668Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0611309Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0612468Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0628118Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0647752Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0661435Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0717432Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0738400Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0739395Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0740459Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0773464Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0797086Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0819082Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0820244Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0853406Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0863850Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0877521Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0928332Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0961632Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.0962806Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1051186Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1053502Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1060560Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1094355Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1095289Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1118104Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1138885Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1147727Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1199500Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1246614Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1251881Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1268486Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1295570Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1324204Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1389100Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1396869Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1432249Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1439715Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1449521Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1450550Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1548751Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1550050Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1554905Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1556783Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1582905Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1601947Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1612995Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1619926Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1647113Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1676486Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1714057Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1716517Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1717279Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1726400Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1766067Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1789980Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1816929Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1823929Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1834909Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1837999Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1882771Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1903372Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1918554Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1943653Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1957446Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1964819Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.1995349Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2012418Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2055074Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2062070Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2071879Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2083222Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2101289Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2121409Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2157379Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2170903Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2192080Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2193364Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2199265Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2231110Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2264941Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2290699Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2292356Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2300934Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2325757Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2336588Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2361902Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2388558Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2418463Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2431873Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2432936Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2473498Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2483191Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2505166Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2542296Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2566621Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2568227Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2588368Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2592427Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2600251Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2662980Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2690372Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2693938Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2737392Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2739180Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2741665Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2783305Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2789314Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2816302Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2863599Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2871380Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2898249Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2923137Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2938374Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.2979597Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3000966Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3032554Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3060935Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3084909Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3106314Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3107661Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3122541Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3170419Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3183331Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3196763Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3245194Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3271125Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3275794Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3299522Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3318776Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3336586Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3367996Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3376144Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3383533Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3419999Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3444431Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3452342Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3484417Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3491676Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3500986Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3524466Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3577998Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3582053Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3583275Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3615205Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3620763Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3632038Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3693127Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3694397Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3726605Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3733856Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3738190Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3752004Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3799237Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3822187Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3843929Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3856582Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3861742Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3895826Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3979596Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.3980728Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4009096Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4013032Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4056139Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4073539Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4155864Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4174435Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4185150Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4208117Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4218133Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4219297Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4240745Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4319899Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4326760Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4339759Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4343638Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4351562Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4376611Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4396744Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4404758Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4456418Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4470734Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4485295Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4504110Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4516811Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4523441Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4543466Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4584320Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4610114Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4621931Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4626566Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4631728Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4653469Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4672005Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4709288Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4751265Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4757654Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4768325Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4770765Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4772155Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4839285Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4850315Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4869932Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4881960Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4887231Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4892589Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4957109Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4958133Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4981624Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.4983133Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5000666Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5035081Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5060711Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5064766Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5069448Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5086236Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5090260Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5150885Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5177807Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5187703Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5201254Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5206413Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5213408Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5271886Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5311001Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5323687Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5324444Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5329882Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5398480Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5399662Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5404760Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5423905Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5463287Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5469533Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5484946Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5516907Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5525083Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5536920Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5544757Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5608633Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5637103Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5641546Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5664778Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5700838Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5769440Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5770857Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5792471Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5799838Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5847675Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5863819Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5897248Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5931293Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5962446Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5974127Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5980709Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.5985395Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6048036Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6059777Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6082499Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6095455Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6128560Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6158665Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6171222Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6194987Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6216107Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6242837Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6266966Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6277255Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6285402Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6370363Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6371524Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6380941Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6389940Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6390920Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6442055Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6451538Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6486396Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6495807Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6509050Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6510057Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6559853Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6577142Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6606034Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6620318Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6651087Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6675535Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6694435Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6704193Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6722200Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6753746Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6775902Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6783995Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6811913Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6816749Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6837662Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6864189Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6889628Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6936631Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6948717Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.6970799Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7004239Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7011717Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7020653Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7047201Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7059984Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7076770Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7123338Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7134478Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7148760Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7157612Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7160101Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7203768Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7226080Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7244062Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7257957Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7259094Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7266628Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7317911Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7334810Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7357029Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7375431Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7395410Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7396883Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7445623Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7461378Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7475648Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7490938Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7514857Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7526266Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7527209Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7570877Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7576720Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7611977Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7630924Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7632349Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7637903Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7663080Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7706018Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7707170Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7725377Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7766931Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7768858Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7770279Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7794857Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7807929Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7835655Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7851705Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7902800Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7904136Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7918757Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7919669Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7944010Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7971730Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.7987199Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8045287Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8054606Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8062510Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8081730Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8095732Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8096920Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8114683Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8155496Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8234295Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8253031Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8254771Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8258642Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8269256Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8291408Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8296735Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8313838Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8411880Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8428935Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8475565Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8487057Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8494309Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8506391Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8515729Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8546856Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8592604Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8618303Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8623491Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8641759Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8648662Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8654367Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8727689Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8746370Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8750763Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8760612Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8792134Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8806088Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8862553Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8880521Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8885667Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8913584Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8926049Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8950918Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.8978169Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9001412Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9011216Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9015895Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9032556Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9081236Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9082340Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9120095Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9129067Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9129976Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9130651Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9182181Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9195010Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9214354Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9227326Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9233059Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9243609Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9299121Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9325471Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9346437Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9416452Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9453277Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9454946Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9494696Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9495849Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9496519Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9532239Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9535899Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9564435Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9577174Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9584712Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9605519Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9656025Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9675482Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9689670Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9700387Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9734605Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9737394Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9756717Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9776978Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9801532Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9816335Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9821545Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9841050Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9851528Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9856322Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9879586Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9889296Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9935604Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9954488Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9979561Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:24.9982954Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0042861Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0062423Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0077362Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0082199Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0088317Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0120344Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0158512Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0171491Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0182908Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0193598Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0214188Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0238544Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0272591Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0273806Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0274738Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0323457Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0324407Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0329601Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0368496Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0375037Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0379930Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0384178Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0393813Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0481624Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0500615Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0504696Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0509076Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0522384Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0557496Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0624839Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0736360Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0768980Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0781627Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0785060Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0802395Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0834495Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0850428Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0903787Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0929323Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0936887Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0937810Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0941721Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0953865Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0986750Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.0994818Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1058880Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1071185Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1078096Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1087508Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1104521Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1114208Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1115506Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1127386Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1160446Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1203163Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1217847Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1230928Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1257876Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1268139Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1282350Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1293439Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1301707Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1343917Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1364951Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1380487Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1397395Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1398666Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1421133Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1443937Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1460616Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1481114Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1488091Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1493382Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1520135Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1551769Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1557693Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1586171Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1590792Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1594497Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1663790Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1666682Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1669296Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1678286Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1690843Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1760609Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1768795Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1785256Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1794610Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1803213Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1807164Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1865791Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1894012Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1895250Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1906108Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1912383Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1931561Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1995841Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.1997168Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2024777Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2040641Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2048782Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2060399Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2061974Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2120705Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2133868Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2144398Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2152508Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2155924Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2173989Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2241217Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2272820Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2293641Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2300209Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2301126Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2342887Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2345288Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2406600Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2414602Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2418552Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2444797Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2503737Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2521836Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2591312Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2598844Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2607446Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2613190Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2633488Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2704945Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2723675Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2823514Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2825485Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2847053Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2848179Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2871305Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2882204Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2905654Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2954935Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2972342Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2980389Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2982184Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.2990983Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3037403Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3068879Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3077436Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3096700Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3101906Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3116748Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3167643Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3208213Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3214557Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3218877Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3241255Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3263116Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3309196Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3334972Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3335977Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3344914Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3367053Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3380087Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3416369Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3452566Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3459872Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3478611Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3486030Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3538008Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3551206Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3575178Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3589282Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3609779Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3610489Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3637424Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3638714Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3674113Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3700314Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3704110Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3735288Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3766696Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3773588Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3780394Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3807306Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3819804Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3854699Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3882862Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3884132Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3911777Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3912525Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3917848Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.3979156Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4000387Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4013348Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4015269Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4046795Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4066662Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4074457Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4100184Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4122822Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4132285Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4151148Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4164305Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4211614Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4213256Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4238302Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4245754Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4266066Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4282559Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4288452Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4332367Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4348891Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4365898Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4383960Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4396757Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4419016Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4446308Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4460817Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4473493Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4509617Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4537630Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4557819Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4562013Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4585999Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4594230Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4603658Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4605189Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4667445Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4676297Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4692004Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4712999Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4715096Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4721325Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4742781Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4787709Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4812116Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4833565Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4841801Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4849875Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4869207Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4872312Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4906949Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4915493Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.4989536Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5015719Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5029229Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5038908Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5074025Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5083082Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5106027Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5134883Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5145860Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5164540Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5203651Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5227083Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5228311Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5258263Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5269175Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5332891Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5339130Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5362201Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5367034Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5372051Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5400365Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5454548Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5455693Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5467325Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5479739Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5488908Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5514716Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5564840Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5568830Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5570652Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5584272Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5605194Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5654208Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5668577Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5681456Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5694659Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5708393Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5731856Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5756385Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5781178Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5782836Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5806400Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5818669Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5841280Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5867375Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5886098Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5897144Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5909924Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5922114Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5973122Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5984969Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.5986091Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6025896Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6033344Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6073495Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6088316Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6107746Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6137993Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6143130Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6168261Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6187975Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6215984Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6230572Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6283209Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6314959Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6328697Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6351566Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6362906Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6368654Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6431918Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6439451Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6460855Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6489330Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6508791Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6525840Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6558809Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6577548Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6592558Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6593700Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6627132Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6644230Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6692908Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6694468Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6695691Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6731499Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6771266Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6795062Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6806121Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6823525Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6824594Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6834350Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6869693Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6907949Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6922496Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6925672Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6949429Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.6984924Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7004263Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7020265Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7021499Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7036624Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7046653Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7097579Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7123690Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7131936Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7137789Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7139271Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7154438Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7221635Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7228741Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7237928Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7249370Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7277378Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7285705Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7340220Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7347468Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7356298Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7370200Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7402917Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7420270Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7426169Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7478508Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7508557Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7518488Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7538671Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7550212Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7578848Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7596002Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7658870Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7680596Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7684630Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7694378Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7702868Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7704296Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7772533Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7827897Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7850018Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7851247Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7852451Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7855512Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7905498Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7951871Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7981790Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.7985949Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8013565Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8073885Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8090014Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8104467Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8105957Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8116837Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8159149Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8161538Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8182400Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8234640Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8250882Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8253086Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8272102Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8284065Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8295175Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8333633Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8350242Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8351885Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8378999Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8396938Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8419276Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8453274Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8454135Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8467474Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8488577Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8518247Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8522827Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8545640Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8565375Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8590269Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8591837Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8606023Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8621271Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8651347Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8662843Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8673416Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8690064Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8746631Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8747970Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8749453Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8784144Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8796447Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8807848Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8836681Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8858088Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8887873Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8913643Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8916201Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8917788Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8923553Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8946671Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8954145Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8964469Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8973445Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.8992266Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9009431Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9017306Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9030126Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9059760Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9066007Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9116855Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9171021Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9188677Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9211355Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9226777Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9281002Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9294461Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9303699Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9320887Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9340891Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9381063Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9401825Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9415267Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9445102Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9475506Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9479479Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9493990Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9496490Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9529572Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9588403Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9599650Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9600403Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9646519Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9653894Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9729506Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9730678Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9740711Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9750842Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9771002Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9777668Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9820261Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9841392Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9910932Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9927020Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9933929Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9953392Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:25.9978466Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0007934Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0041628Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0062600Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0066098Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0072124Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0101361Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0135530Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0141055Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0182010Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0186774Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0193198Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0227409Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0236255Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0257337Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0286121Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0301479Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0310539Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0312373Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0367989Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0383161Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0389092Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0401967Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0410930Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0458904Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0478767Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0484588Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0503557Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0506789Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0563584Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0564437Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0582559Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0588128Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0608213Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0658617Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0667625Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0671657Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0701831Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0726969Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0772208Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0785768Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0802049Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0803664Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0812300Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0830344Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0878536Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0879612Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0901806Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0920623Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0927908Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0943130Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.0984157Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1008081Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1029462Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1067455Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1069511Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1074340Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1149074Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1165342Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1240487Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1247944Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1256397Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1275011Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1276253Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1287762Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1318544Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1383361Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1400848Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1403229Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1417561Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1445875Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1457862Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1499210Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1515425Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1516612Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1535147Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1541729Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1553211Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1592136Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1630103Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1645229Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1648722Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1663347Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1674179Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1737558Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1738562Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1739247Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1761919Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1811681Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1813802Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1824310Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1840176Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1866138Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1874143Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1892304Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1923321Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1956994Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.1965138Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2006592Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2010323Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2050131Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2087301Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2115659Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2130054Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2134792Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2140888Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2147396Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2219237Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2230622Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2241613Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2257727Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2260216Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2268041Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2332007Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2382274Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2386976Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2388359Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2389364Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2431786Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2510518Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2520577Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2539916Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2549327Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2550457Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2551336Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2554555Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2645086Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2656372Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2693937Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2721516Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2743915Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2756322Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2789061Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2793393Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2810261Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2848317Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2881772Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2887591Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2913283Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2924469Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2930855Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2978369Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.2981878Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3014842Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3033829Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3039586Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3040837Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3094584Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3116942Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3118266Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3134944Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3143560Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3144749Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3220251Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3225126Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3237470Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3246825Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3252250Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3257919Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3301531Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3333256Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3342458Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3352018Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3356365Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3395916Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3420107Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3435582Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3452113Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3490619Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3492171Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3533507Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3541636Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3563803Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3575586Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3580008Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3599909Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3679201Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3679929Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3692353Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3714675Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3744709Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3750207Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3806816Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3811632Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3855346Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3859823Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3887868Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3891436Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3928156Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3953628Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3961361Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3970092Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.3984922Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4016776Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4039630Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4081800Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4084070Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4096256Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4099685Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4107882Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4124133Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4205216Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4218758Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4229630Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4230991Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4232248Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4243164Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4244680Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4333241Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4337143Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4343415Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4344788Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4383557Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4395178Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4415063Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4462250Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4463699Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4468401Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4478115Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4494211Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4527894Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4535333Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4576410Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4585580Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4608219Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4611250Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4625208Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4671283Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4721675Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4742036Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4764459Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4772958Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4790501Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4825807Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4866915Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4877115Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4886071Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4898315Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4907257Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.4955608Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5005643Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5010099Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5011576Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5018592Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5027199Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5043699Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5084931Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5147269Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5153170Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5159424Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5160487Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5167470Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5175004Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5227522Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5273040Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5300160Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5301259Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5309049Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5329287Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5359517Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5393412Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5450786Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5471970Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5483925Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5501509Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5519243Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5567779Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5572898Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5576013Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5600334Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5621473Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5631372Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5670106Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5679626Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5687842Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5695633Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5738632Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5756411Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5772831Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5782022Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5790774Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5821249Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5866012Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5867569Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5874154Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5896405Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5929943Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5957786Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5965873Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.5983658Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6001697Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6075085Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6098433Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6106477Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6136805Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6153680Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6155290Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6204984Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6215399Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6217620Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6248264Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6287446Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6295055Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6321516Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6328314Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6363219Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6381521Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6387533Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6406952Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6436997Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6461223Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6473782Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6497084Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6516593Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6537668Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6541676Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6596229Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6613215Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6643573Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6646799Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6648378Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6674404Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6682923Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6739875Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6749208Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6800794Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6830966Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6859519Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6868194Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6887218Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6892538Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6955920Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.6977762Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7003608Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7017800Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7041647Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7063425Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7079496Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7133343Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7140174Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7168550Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7171462Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7178808Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7199341Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7253148Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7271386Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7288546Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7295896Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7297098Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7322419Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7371229Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7390959Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7401180Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7415729Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7462842Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7463678Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7464340Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7493718Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7503212Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7530117Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7575442Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7585166Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7599597Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7612321Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7625078Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7643406Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7649920Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7680122Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7701948Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7706973Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7714582Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7749843Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7770634Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7798786Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7824455Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7835005Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7836776Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7850435Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7885100Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7908432Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7918537Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7933127Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7943262Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.7988141Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8004518Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8013282Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8033469Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8055276Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8090658Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8114793Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8129635Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8186919Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8189365Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8206048Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8248815Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8285230Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8296165Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8321599Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8340219Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8348702Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8364313Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8407761Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8408712Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8453020Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8472163Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8489145Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8506155Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8518448Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8544663Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8548812Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8549807Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8616680Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8622319Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8651260Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8653488Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8658585Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8685798Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8732868Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8746601Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8750834Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8767651Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8779443Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8804542Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8851236Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8855751Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8860709Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8886707Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8927167Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8977518Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8979297Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8981631Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.8987380Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9033158Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9045661Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9082856Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9089918Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9098763Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9104761Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9187910Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9188664Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9211592Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9230887Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9249276Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9277676Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9299422Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9316625Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9330061Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9342021Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9382872Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9391853Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9408477Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9471739Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9485331Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9496032Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9513211Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9516736Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9560082Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9604659Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9610081Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9625952Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9636992Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9654541Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9678610Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9709470Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9724211Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9746089Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9765416Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9786576Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9809130Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9816002Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9837734Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9843218Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9873694Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9900240Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9929187Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9935939Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9945010Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9962453Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9984968Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:26.9988858Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0026561Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0033516Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0038943Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0102198Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0109824Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0123621Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0142846Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0167307Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0216091Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0223646Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0242495Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0243751Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0244806Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0322333Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0340667Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0345411Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0374565Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0376179Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0433436Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0440862Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0472291Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0486467Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0497997Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0508055Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0543874Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0560450Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0571302Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0590015Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0625896Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0627185Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0648549Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0674296Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0723252Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0724407Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0727849Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0744290Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0758616Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0788864Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0838297Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0845668Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0852234Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0867742Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0891191Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0907795Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0929748Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0975642Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0977236Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0978480Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.0979685Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1040488Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1045167Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1050839Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1091832Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1095023Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1098140Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1104070Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1123478Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1177602Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1185248Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1208373Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1225196Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1229823Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1235378Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1282184Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1305800Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1315399Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1336776Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1384076Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1393279Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1456863Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1483349Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1508609Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1522147Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1568643Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1595262Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1615519Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1620436Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1629249Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1656451Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1717982Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1719344Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1771332Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1809379Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1818082Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1819712Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1860559Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1866803Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1918067Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1930596Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1950960Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1967797Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.1972980Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2000444Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2014328Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2030745Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2056146Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2087812Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2103384Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2122199Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2143700Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2168975Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2194823Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2211310Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2218263Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2273307Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2299261Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2347855Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2396132Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2420215Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2426013Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2444854Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2492368Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2497052Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2523241Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2539482Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2566129Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2575753Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2614117Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2617479Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2618556Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2662244Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2688995Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2693992Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2758476Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2766755Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2775814Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2809577Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2850301Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2854927Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2856231Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2887669Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2909308Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2928985Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2940501Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2961882Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.2979576Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3009098Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3034314Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3069806Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3080980Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3082092Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3102417Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3107334Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3134624Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3167869Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3175697Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3201288Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3210828Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3236876Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3238606Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3283233Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3292885Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3303362Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3331221Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3387690Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3391166Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3433776Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3471816Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3473240Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3503909Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3505860Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3579374Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3603656Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3611505Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3627149Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3639621Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3640475Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3683236Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3722445Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3734810Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3763168Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3809038Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3812913Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3833150Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3842610Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3893678Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3905764Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3960200Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3970296Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3979512Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3988438Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.3995854Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4011944Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4090221Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4123506Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4137815Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4143010Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4164853Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4169634Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4180068Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4228659Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4258774Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4266270Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4267365Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4288045Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4294213Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4306542Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4343741Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4370242Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4393432Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4406845Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4419410Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4420509Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4444504Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4470932Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4497532Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4503680Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4545180Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4554563Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4567637Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4568477Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4595253Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4602154Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4619060Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4690194Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4705528Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4710632Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4726835Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4740200Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4744099Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4769676Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4786496Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4820058Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4875164Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4894255Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4901084Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4918276Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4937768Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4956309Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.4957251Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5006237Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5019433Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5047080Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5056321Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5067893Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5091727Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5111883Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5114123Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5132473Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5152162Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5181416Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5199966Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5221714Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5223015Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5270875Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5281587Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5287924Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5291959Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5340177Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5344977Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5375143Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5383726Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5391007Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5403610Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5461823Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5473639Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5491902Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5497429Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5514076Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5537197Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5584160Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5588686Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5602141Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5607783Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5642552Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5660937Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5669347Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5699896Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5717637Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5723526Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5750292Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5757412Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5773882Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5820575Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5828408Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5846791Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5851698Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5872453Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5896631Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5919969Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5937201Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5959780Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5967494Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5971378Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.5972302Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6031233Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6042511Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6060541Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6081089Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6096566Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6165610Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6194174Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6196962Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6207786Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6213236Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6270172Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6313112Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6315149Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6344616Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6348351Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6362919Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6400656Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6440470Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6447033Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6514897Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6523207Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6542868Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6562513Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6637716Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6679284Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6685160Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6699653Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6709324Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6767688Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6768822Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6769897Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6773445Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6801733Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6833726Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6875009Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6894081Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6897206Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6959415Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6961447Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6972063Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.6990948Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7003587Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7043469Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7059648Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7065578Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7087294Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7097393Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7113299Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7140978Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7149916Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7195433Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7196649Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7208740Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7228326Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7243454Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7305658Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7335770Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7344213Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7350552Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7380083Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7424249Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7438421Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7470590Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7475916Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7479670Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7513370Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7530299Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7572950Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7594963Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7606123Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7641131Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7644021Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7670218Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7677234Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7716014Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7735833Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7753883Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7759740Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7775378Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7794163Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7808677Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7822400Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7859766Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7884095Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7911398Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7915249Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7925479Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7953804Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.7963068Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8022565Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8023623Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8059449Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8077775Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8084275Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8089190Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8114674Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8134364Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8176251Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8185809Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8197375Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8209685Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8217962Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8241324Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8295686Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8297038Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8306416Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8307564Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8329924Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8338140Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8395953Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8410033Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8433609Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8440129Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8441226Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8490998Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8523917Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8575959Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8596542Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8600064Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8643955Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8681752Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8702792Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8710049Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8715349Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8755956Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8759054Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8776220Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8807029Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8841131Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8859081Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8859970Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8887365Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8896699Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8913996Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8953010Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8954175Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8984587Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.8988964Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9033952Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9060708Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9070037Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9092213Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9103640Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9123035Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9178746Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9219240Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9220994Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9227867Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9258366Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9281964Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9309023Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9328721Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9339757Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9365502Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9368731Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9408835Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9413371Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9427875Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9460338Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9474563Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9475715Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9492482Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9514577Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9558487Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9562903Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9566426Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9579763Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9613515Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9637904Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9652125Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9667325Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9716536Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9734966Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9763210Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9794397Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9812075Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9849193Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9857077Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9887958Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9909852Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9913651Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9938256Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9974265Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:27.9981653Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0017239Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0028907Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0047072Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0066692Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0107741Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0108890Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0134716Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0154971Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0181629Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0224084Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0228066Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0237316Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0258953Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0282426Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0347824Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0359685Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0374211Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0381383Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0411068Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0426869Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0448593Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0499611Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0502221Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0508750Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0509686Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0514410Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0554484Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0584298Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0612330Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0632146Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0634891Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0639084Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0649342Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0672596Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0683423Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0740356Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0757044Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0759173Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0764470Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0771397Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0813564Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0849681Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0866801Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0868193Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0882400Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0883482Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0892560Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0952133Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0955403Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.0994426Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1020760Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1021473Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1028656Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1033224Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1088858Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1089724Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1120667Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1150245Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1152876Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1157232Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1186800Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1190183Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1219763Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1239740Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1300583Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1317253Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1319807Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1332164Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1337656Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1362981Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1393245Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1422387Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1449881Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1465900Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1467002Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1493012Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1503531Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1566933Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1587713Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1598708Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1613271Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1622520Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1640020Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1659682Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1693411Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1727527Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1728930Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1739189Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1747369Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1779886Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1804941Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1821093Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1848151Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1859604Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1883584Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1887165Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1891938Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1949927Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1958112Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1963812Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1971849Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.1997733Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2014175Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2041304Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2064426Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2070182Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2098720Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2102971Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2110204Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2163310Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2197421Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2203671Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2230343Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2236023Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2244488Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2280525Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2336557Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2337712Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2374748Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2375655Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2405867Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2434467Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2453069Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2468744Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2474553Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2475638Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2540424Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2571068Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2614788Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2626329Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2627574Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2632965Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2666153Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2679217Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2714492Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2758809Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2784561Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2789343Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2806798Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2807770Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2829202Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2870362Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2879357Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2909041Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2916334Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2924789Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2926172Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2978150Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.2998937Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3026520Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3027675Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3030875Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3056501Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3080170Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3117202Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3126262Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3139156Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3170886Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3216971Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3231616Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3248401Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3253871Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3260506Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3280674Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3300398Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3341088Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3375330Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3395929Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3412257Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3426063Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3430593Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3449068Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3489303Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3506256Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3526830Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3551745Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3553250Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3568417Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3576930Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3615985Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3655797Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3661902Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3672972Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3680374Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3700321Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3712335Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3733111Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3784539Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3785710Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3788984Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3796883Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3802906Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3823511Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3894112Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3903336Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3904353Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3934132Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3946442Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3949930Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.3978743Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4032436Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4033728Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4051129Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4052180Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4129131Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4138504Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4149534Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4185222Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4208147Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4211465Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4238372Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4249250Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4278481Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4306845Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4313293Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4339514Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4349353Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4370590Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4376778Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4430579Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4432065Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4452465Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4474576Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4478594Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4501906Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4533421Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4541205Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4574443Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4575313Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4586607Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4593950Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4642537Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4668943Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4670486Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4686723Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4715873Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4729828Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4764195Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4785289Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4786364Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4837573Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4842424Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4867817Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4880974Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4913539Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4914434Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4944125Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.4962607Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5009466Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5020497Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5058944Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5076435Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5085209Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5112426Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5167810Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5169703Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5190936Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5191891Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5200503Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5232483Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5287830Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5299246Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5313701Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5325019Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5360799Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5371094Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5405016Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5437031Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5446207Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5459343Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5470776Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5507494Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5543440Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5549540Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5569041Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5583613Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5593588Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5617140Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5652296Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5677043Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5689953Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5697002Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5716234Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5756343Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5820740Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5822114Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5823338Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5834146Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5838593Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5859445Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5933271Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5939390Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5949085Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.5974849Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6001696Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6008075Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6021936Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6048407Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6064809Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6086389Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6102487Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6108316Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6143940Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6172981Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6195731Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6201234Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6225749Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6241313Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6263246Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6297115Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6301262Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6330888Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6361545Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6375627Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6376731Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6405938Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6417581Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6449637Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6492300Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6520743Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6529693Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6531553Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6532864Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6542539Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6612388Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6623704Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6644502Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6665446Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6681631Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6682907Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6739470Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6748757Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6760341Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6766057Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6783584Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6805799Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6855395Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6856821Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6861891Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6895239Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6904387Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6938896Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6943548Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.6944574Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7008955Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7012980Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7027014Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7057788Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7059069Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7081320Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7120553Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7146321Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7159395Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7160773Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7178808Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7180054Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7228252Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7242403Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7265044Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7282349Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7284185Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7293193Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7312233Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7353994Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7370007Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7387043Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7388172Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7434813Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7437003Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7519236Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7522492Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7533417Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7569011Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7583963Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7639966Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7706959Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7721527Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7741019Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7753499Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7767094Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7767919Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7835740Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7841275Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7854801Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7869289Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7874479Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7926328Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7963886Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7970643Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7972040Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7980889Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.7982295Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8018011Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8063367Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8081902Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8088844Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8099540Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8107983Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8156129Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8184865Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8205309Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8209005Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8226388Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8230454Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8268230Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8336723Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8342067Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8351934Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8371549Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8385612Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8401301Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8418260Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8456282Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8474758Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8480746Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8491685Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8542267Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8554467Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8555670Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8560402Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8591931Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8630063Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8651905Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8653128Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8659118Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8663018Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8737179Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8746244Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8747841Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8749043Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8771891Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8854559Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8875071Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8877108Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8883006Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8888633Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8891977Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8910011Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8984160Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.8989342Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9005407Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9013766Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9020067Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9029269Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9059593Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9102274Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9131177Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9132547Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9133890Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9144188Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9145279Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9205916Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9211682Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9252459Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9253760Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9255153Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9259605Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9280781Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9327438Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9383883Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9385426Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9386709Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9388031Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9395875Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9448700Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9466856Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9472444Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9492266Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9512004Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9539210Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9542116Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9609831Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9647874Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9696625Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9698113Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9718419Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9732569Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9740652Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9748772Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9833845Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9908891Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9922431Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9927112Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9930328Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:28.9994809Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0023062Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0054533Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0055997Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0066715Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0067986Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0090763Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0131090Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0141220Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0177317Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0190296Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0205791Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0206670Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0231579Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0273828Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0290506Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0294589Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0332475Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0339331Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0382557Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0393582Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0397438Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0409229Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0422069Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0459660Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0466497Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0479345Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0503048Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0544785Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0548671Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0549738Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0583782Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0611134Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0615673Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0623723Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0643205Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0695575Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0696743Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0698914Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0726698Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0755988Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0760958Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0772102Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0783578Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0792899Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0800430Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0806848Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0814149Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0828864Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0843550Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0850368Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0856153Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0872302Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0879706Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0890022Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0892407Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0925481Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0932282Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0953161Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0963361Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0977675Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0986509Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.0994707Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1021369Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1022422Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1027061Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1031040Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1078727Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1103053Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1120128Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1132800Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1147717Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1172535Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1201953Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1211838Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1232463Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1243772Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1266202Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1300968Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1306909Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1317879Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1333029Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1344297Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1367038Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1389181Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1390376Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1398246Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1404259Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1411679Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1421900Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1475018Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1476463Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1539117Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1557481Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1579804Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1588347Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1618955Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1630379Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1636182Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1688853Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1707676Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1708683Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1716300Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1720439Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1749247Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1753531Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1771354Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1780587Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1798028Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1804448Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1816833Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1828963Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1835555Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1860224Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1870115Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1882372Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1907660Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1918276Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1928521Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1934941Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1951452Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.1995417Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2013446Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2022536Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2039740Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2057787Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2088849Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2107420Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2126021Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2137084Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2167184Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2188471Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2234008Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2246306Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2264795Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2283180Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2287074Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2297505Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2304816Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2315845Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2345272Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2346099Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2346822Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2373893Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2375050Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2410812Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2491170Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2505020Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2512363Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2547437Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2548653Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2627508Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2637657Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2658824Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2668700Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2690566Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2706083Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2711004Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2731905Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2758419Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2771505Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2780696Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2801930Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2813961Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2834810Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2835652Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2847913Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2893084Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2917055Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2918231Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2919412Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2920573Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2937040Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2944474Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2970260Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.2978032Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3003380Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3052034Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3054102Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3066305Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3076787Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3119724Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3126193Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3131060Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3142612Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3151764Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3208071Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3216035Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3222156Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3236539Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3251546Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3253523Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3283287Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3293100Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3306171Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3411220Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3419821Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3439931Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3500011Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3511798Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3522020Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3526055Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3541997Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3562228Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3567455Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3578909Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3619753Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3634968Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3655369Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3681971Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3688160Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3696340Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3748856Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3776363Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3824682Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3836085Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3845079Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3873060Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3908872Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3933482Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3938794Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3953928Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3965419Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.3991106Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4033532Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4054244Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4055550Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4057019Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4070127Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4108976Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4117145Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4122552Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4140465Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4150535Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4156232Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4170454Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4175531Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4189535Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4192115Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4206176Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4208251Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4216179Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4334104Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4340431Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4375378Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4405425Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4412254Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4427861Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4435689Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4449511Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4459643Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4472130Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4476193Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4488259Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4495570Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4505362Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4515976Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4524071Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4530767Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4540766Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4550542Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4552936Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4629234Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4668219Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4670016Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4762998Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4789116Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4857512Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4868385Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4873586Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4887789Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4901228Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4911599Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4914624Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4922049Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4936383Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4947659Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4951843Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4976355Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.4981262Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5002390Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5012247Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5016892Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5060514Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5080574Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5086560Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5095920Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5135023Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5154000Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5158488Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5201136Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5203647Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5220945Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5244696Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5249063Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5250237Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5251364Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5269842Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5286342Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5291746Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5311202Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5315919Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5352594Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5394436Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5400541Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5418484Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5436593Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5449015Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5488174Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5498869Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5523602Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5525231Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5526518Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5528300Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5548231Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5554018Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5584854Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5593206Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5601421Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5608672Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5618698Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5626813Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5693882Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5748715Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5768337Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5773590Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5776654Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5801363Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5810719Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5820616Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5837176Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5846774Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5858275Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5864802Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5865920Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5886759Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5893414Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5903619Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5913673Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5928444Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5985142Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.5991160Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6032580Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6077581Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6108194Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6110399Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6159738Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6169208Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6175815Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6195692Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6203385Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6223107Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6238361Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6242527Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6263347Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6283105Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6300957Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6343362Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6382967Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6393618Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6400384Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6402397Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6412496Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6426494Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6430047Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6465615Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6468476Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6479263Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6509688Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6521819Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6528000Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6569794Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6572495Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6579603Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6600929Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6619343Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6628902Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6641582Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6667985Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6700341Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6733291Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6735094Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6736550Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6754178Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6765424Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6792891Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6865030Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6900952Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6908111Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6909203Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6913370Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6949801Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6981219Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6984642Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.6999742Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7005535Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7038586Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7048286Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7084263Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7126055Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7130330Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7146038Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7156594Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7167940Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7190629Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7222063Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7243314Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7249823Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7262880Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7285934Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7294936Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7343925Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7345116Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7352576Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7387564Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7414624Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7416640Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7418281Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7446303Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7465922Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7487652Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7513513Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7526367Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7548806Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7551412Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7553279Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7607421Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7620772Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7638859Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7662893Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7671244Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7685494Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7703470Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7751111Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7756571Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7762872Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7768367Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7798731Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7837906Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7846145Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7874147Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7882371Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7884050Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7940358Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7951741Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7958931Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7990397Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.7994309Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8013906Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8077869Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8082528Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8083967Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8098709Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8130627Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8174285Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8201174Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8228212Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8233098Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8237318Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8259202Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8301044Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8330427Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8340078Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8349462Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8350789Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8365891Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8405430Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8434639Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8436280Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8445974Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8461976Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8497635Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8526575Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8537540Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8538526Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8560406Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8579013Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8605751Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8638662Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8643314Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8655111Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8680708Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8688234Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8716841Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8761729Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8791474Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8869141Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8917780Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8935944Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8984575Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8985961Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.8994322Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9001259Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9003681Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9069358Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9102063Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9118562Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9119925Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9146645Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9155284Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9180896Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9195437Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9224536Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9239699Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9291113Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9310649Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9349687Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9367587Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9396457Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9405721Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9418165Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9426882Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9461410Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9474236Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9513971Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9521194Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9522434Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9523509Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9556137Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9581292Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9629233Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9643581Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9648991Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9666874Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9681113Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9723660Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9756029Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9759839Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9779015Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9788270Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9809609Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9841862Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9890596Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9891553Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9897584Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9899912Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9942112Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9957705Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9976346Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9986673Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:29.9989264Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0031839Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0055775Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0072094Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0090437Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0159220Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0160575Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0161795Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0168271Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0176464Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0177906Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0219638Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0276343Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0282023Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0293617Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0294689Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0299266Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0320656Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0379852Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0398924Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0431980Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0442979Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0447299Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0454981Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0458036Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0498181Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0533724Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0535105Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0546077Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0551287Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0565787Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0614470Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0620591Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0629644Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0635076Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0672187Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0709361Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0717250Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0731302Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0732483Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0777499Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0810133Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0817121Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0823041Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0831986Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0856459Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0905997Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0909469Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0924095Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0943685Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.0967876Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1020430Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1024366Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1030206Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1048265Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1078900Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1099534Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1143166Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1158188Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1178009Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1193433Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1202101Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1242491Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1247087Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1298337Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1303868Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1338450Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1345807Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1389055Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1389943Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1446372Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1457898Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1485234Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1495366Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1511342Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1520773Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1628239Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1639901Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1649361Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1660198Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1671903Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1682088Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1753395Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1824763Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1846412Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1850167Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1882856Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1914791Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1941004Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1955138Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1962368Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.1975404Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2020059Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2067392Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2073919Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2079121Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2084293Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2143233Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2167244Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2174757Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2181559Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2191526Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2234703Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2256734Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2271279Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2282341Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2292324Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2317673Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2361561Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2365282Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2370121Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2408615Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2421536Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2470865Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2492532Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2493746Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2494415Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2511273Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2531786Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2568411Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2594484Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2602799Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2603944Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2614892Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2638133Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2671824Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2702377Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2710268Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2723395Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2736558Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2769422Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2790221Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2827707Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2830931Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2851598Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2866055Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2867715Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2882311Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2941501Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2947127Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2976511Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2992361Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.2997486Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3021908Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3037095Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3039369Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3087066Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3118219Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3123225Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3125180Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3138565Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3155750Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3183628Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3210965Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3232253Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3247693Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3264412Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3278065Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3308878Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3319826Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3320568Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3355383Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3409295Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3447758Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3458925Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3460341Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3491940Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3494109Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3494994Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3604605Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3628101Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3631194Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3632486Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3641287Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3666177Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3681433Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3684827Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3745891Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3750724Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3752351Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3776469Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3791896Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3814846Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3817394Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3845876Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3854730Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3892414Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3901530Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3933012Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3936521Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3957215Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3958561Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.3965754Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4009701Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4043506Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4058484Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4066127Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4094716Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4099398Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4109229Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4110621Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4119700Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4170657Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4194965Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4196288Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4219052Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4229736Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4247493Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4286764Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4292462Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4301185Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4327897Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4350125Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4358804Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4393360Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4404321Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4413366Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4437543Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4446810Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4475975Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4486759Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4498321Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4535558Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4548421Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4573884Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4593780Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4603259Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4624692Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4694392Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4718902Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4720939Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4730361Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4738027Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4767146Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4775853Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4833417Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4871161Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4872408Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4882339Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4926281Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4948555Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4961941Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4966366Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4985025Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.4996379Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5038328Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5065333Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5066262Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5086090Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5092091Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5093289Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5178744Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5179930Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5210351Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5226526Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5254251Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5259016Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5305835Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5313679Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5392277Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5398340Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5406689Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5413468Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5426555Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5445878Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5489859Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5491230Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5499379Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5523146Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5550020Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5581553Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5585414Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5589693Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5613897Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5626582Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5649621Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5694763Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5744084Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5760884Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5797637Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5805246Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5818514Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5845211Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5868347Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5885169Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5963592Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5993567Z Completed 9.5 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5994951Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.5996132Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6000463Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6027286Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6069538Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6092057Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6108868Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6126432Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6143368Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6150732Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6169117Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6226968Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6241851Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6243156Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6257251Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6262069Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6268541Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6332221Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6348781Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6351310Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6367505Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6373603Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6399008Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6450421Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6454177Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6476032Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6480420Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6506127Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6517501Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6568560Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6577840Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6581960Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6588103Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6589073Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6631304Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6657322Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6668667Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6677784Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6729340Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6730985Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6734089Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6738620Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6770306Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6780773Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6819834Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6834829Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6866345Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6887619Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6955574Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6956732Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.6977467Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7003284Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7016888Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7029941Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7060627Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7100047Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7109788Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7113020Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7166075Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7177313Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7206310Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7207736Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7209367Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7268700Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7269866Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7282924Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7294654Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7306377Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7342136Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7360642Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7378639Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7386841Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7392044Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7467779Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7476968Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7497605Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7499174Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7514837Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7546194Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7546949Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7551713Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7627068Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7628214Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7633630Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7643869Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7679401Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7741632Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7746432Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7754890Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7786905Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7802201Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7861042Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7868416Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7875918Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7880887Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7900456Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7949937Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7959079Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7960199Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7961220Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.7999534Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8031564Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8051353Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8054917Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8071816Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8086977Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8113476Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8127717Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8249206Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8249954Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8250609Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8276666Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8306737Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8311302Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8339215Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8340971Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8343948Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8453159Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8515795Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8537742Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8554066Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8558710Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8603241Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8604595Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8632264Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8644959Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8652821Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8676095Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8709640Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8726434Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8739057Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8745851Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8786829Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8816458Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8842964Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8855571Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8867546Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8872262Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8889236Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8928301Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8962161Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8971360Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8973282Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.8994219Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9011693Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9036102Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9073647Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9086866Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9106974Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9114411Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9116627Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9161948Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9180025Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9181159Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9209000Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9228784Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9245592Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9269836Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9282853Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9299806Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9313773Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9315542Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9353292Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9356960Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9394909Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9405239Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9408345Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9423298Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9456878Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9467755Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9510798Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9533365Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9539697Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9567259Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9581047Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9605797Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9635113Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9658791Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9666588Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9671347Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9700019Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9733305Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9765307Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9776506Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9834434Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9856694Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9879589Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9914197Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9927068Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9970845Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9980422Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9991725Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:30.9999154Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0030878Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0032119Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0046324Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0085170Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0101868Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0109650Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0116765Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0169295Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0174211Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0186990Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0193324Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0240066Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0244369Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0263638Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0275034Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0305996Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0307075Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0311696Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0344819Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0366999Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0391279Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0401323Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0411675Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0443661Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0459723Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0493309Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0501883Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0504782Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0527034Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0537993Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0557598Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0585227Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0625696Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0627264Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0641770Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0643154Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0652996Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0694681Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0702503Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0740776Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0749675Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0757193Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0767353Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0778644Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0826174Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0827686Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0848297Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0862478Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0886236Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0887336Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0902269Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0945056Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0955827Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0960220Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.0984731Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1007589Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1053599Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1063079Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1081766Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1097172Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1115907Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1145017Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1161479Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1187778Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1194112Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1210335Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1272897Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1289997Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1293668Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1294849Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1296030Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1374031Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1385316Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1403160Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1411038Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1425101Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1471460Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1483846Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1504552Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1505730Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1510171Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1563460Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1580458Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1589585Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1619250Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1627023Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1630496Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1682613Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1712426Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1713506Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1733279Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1753682Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1755065Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1832430Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1834528Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1845032Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1847903Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1849218Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1860089Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.1977861Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2011579Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2016356Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2026610Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2039854Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2063243Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2083632Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2093261Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2119615Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2126722Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2190625Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2278642Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2304765Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2308710Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2336040Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2395073Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2395987Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2409431Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2426742Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2447045Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2462568Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2474353Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2513609Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2541440Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2543006Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2564559Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2589016Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2604059Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2619049Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2624556Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2649343Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2665204Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2708721Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2715756Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2716470Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2723026Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2766781Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2777125Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2805821Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2816565Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2843377Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2849538Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2858878Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2869425Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2919408Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2930611Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2935441Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2939463Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.2959646Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3011248Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3014030Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3015421Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3040977Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3043857Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3099083Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3101339Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3105494Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3129322Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3134579Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3172791Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3178826Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3209950Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3224363Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3238685Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3259414Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3281296Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3308621Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3332417Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3343707Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3391011Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3397288Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3438752Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3440015Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3440818Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3451867Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3479064Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3521062Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3525096Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3550681Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3558937Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3590813Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3601539Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3625229Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3650844Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3656613Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3678960Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3689373Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3699344Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3734393Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3736072Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3762920Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3806668Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3807974Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3816180Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3847648Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3893766Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3906367Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3919405Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3929062Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3930161Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.3955421Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4002815Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4019682Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4026785Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4043876Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4056165Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4093417Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4114553Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4128656Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4140757Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4177799Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4209811Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4226868Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4234405Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4245988Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4251483Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4297528Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4314301Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4343756Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4359360Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4366384Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4403892Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4427008Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4436253Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4458176Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4462016Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4507291Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4529329Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4571032Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4579420Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4590691Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4624044Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4658042Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4672202Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4684600Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4686293Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4720004Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4726921Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4790510Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4800959Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4817734Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4845345Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4852206Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4886237Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4902783Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4926050Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4930579Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4952388Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4974156Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.4987162Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5001068Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5027542Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5038862Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5064140Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5104670Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5125654Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5129213Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5184771Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5188159Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5198291Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5210888Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5245387Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5266046Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5267260Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5288908Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5290553Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5299276Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5347578Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5381852Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5409028Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5416673Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5446084Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5468807Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5472775Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5484079Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5533695Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5553631Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5584287Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5611893Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5622902Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5642134Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5652920Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5691934Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5703696Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5729907Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5751722Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5791862Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5798466Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5810288Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5831075Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5836915Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5851298Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5911437Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5919011Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5935938Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5944377Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5957351Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.5966461Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6024360Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6030386Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6059403Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6088933Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6108329Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6124123Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6156786Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6190311Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6214772Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6247564Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6255795Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6265128Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6273668Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6337149Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6341239Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6342352Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6378187Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6386302Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6394804Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6407589Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6443492Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6446837Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6500994Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6505465Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6517100Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6529009Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6552430Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6555919Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6561860Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6602401Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6636325Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6639510Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6671908Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6680159Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6697099Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6709355Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6714046Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6759161Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6760314Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6792394Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6794021Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6852195Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6853315Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6902414Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6913613Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6921162Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6942489Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6962549Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.6982902Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7018437Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7024004Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7032568Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7058734Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7070410Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7094631Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7115711Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7120475Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7170367Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7176463Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7193262Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7211825Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7250327Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7278728Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7317309Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7321625Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7339932Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7363717Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7411274Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7435092Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7442156Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7453971Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7486584Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7496322Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7516763Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7544695Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7551580Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7582958Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7588814Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7605139Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7641471Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7672270Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7677194Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7691858Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7702303Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7704308Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7741808Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7812529Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7813425Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7822134Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7831254Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7839475Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7888489Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7907110Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7907914Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7948734Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7971574Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7976717Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.7978354Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8002454Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8027601Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8061970Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8073429Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8121059Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8130857Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8150955Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8163481Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8182348Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8195227Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8270557Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8299237Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8316345Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8376854Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8378374Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8385199Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8418332Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8431299Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8487028Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8488454Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8496321Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8544953Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8551060Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8579075Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8601725Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8621148Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8650828Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8654742Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8670354Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8700073Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8708505Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8730859Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8737535Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8760414Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8808196Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8818158Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8826360Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8827903Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8858902Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8860049Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8874671Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8924613Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8940052Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8956790Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8966075Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8985204Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.8995196Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9000639Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9057051Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9064564Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9098677Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9123758Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9132952Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9134020Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9138560Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9178637Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9188315Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9230006Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9238792Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9257021Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9258314Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9263936Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9305252Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9312925Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9323243Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9366162Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9380573Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9405865Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9411850Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9414983Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9458938Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9460161Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9468451Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9516498Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9523115Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9530633Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9550167Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9561981Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9577913Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9619635Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9637330Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9667936Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9672388Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9702894Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9718507Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9720023Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9735608Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9740389Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9775761Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9797639Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9820135Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9826180Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9848954Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9855765Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9883069Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9884030Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9915249Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9929294Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9942528Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9956897Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9979660Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9984952Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:31.9988606Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0005990Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0060538Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0063715Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0083301Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0111114Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0131429Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0138659Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0143044Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0177129Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0191389Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0207587Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0221494Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0240325Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0276125Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0279572Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0294548Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0315364Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0333379Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0371797Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0373072Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0394697Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0415410Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0446651Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0458785Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0465525Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0489299Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0492227Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0505765Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0541439Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0571049Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0592803Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0598967Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0604771Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0631724Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0650191Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0694535Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0701063Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0710350Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0712600Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0748409Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0787419Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0788629Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0808471Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0840455Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0862870Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0872541Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0932163Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0938441Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.0982243Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1044124Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1045043Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1052960Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1073482Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1094818Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1116456Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1132406Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1165980Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1199820Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1210135Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1211552Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1222012Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1290987Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1303480Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1304588Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1313317Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1339485Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1392939Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1404984Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1406160Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1420930Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1455459Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1533639Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1557596Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1602461Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1603735Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1619970Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1656600Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1681690Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1701176Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1702571Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1728122Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1729754Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1731049Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1748206Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1784382Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1786242Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1787713Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1805966Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1813676Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1818785Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1863292Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1868674Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1879357Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1914931Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1951366Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1966548Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.1983022Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2005007Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2014275Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2046507Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2055327Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2108710Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2120159Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2123283Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2132976Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2148998Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2152487Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2173786Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2190353Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2210939Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2223568Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2229961Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2241973Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2254615Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2290658Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2308911Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2328415Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2349495Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2365727Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2368709Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2384190Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2399558Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2403313Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2417608Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2445641Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2470204Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2471312Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2472392Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2473554Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2479848Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2491853Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2494650Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2500942Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2509322Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2518547Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2556181Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2563791Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2597325Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2609901Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2617165Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2675617Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2684479Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2728507Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2737582Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2786830Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2888507Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2893699Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2909124Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2917031Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2925324Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2931579Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2938396Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2944862Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2952203Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2957945Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.2963616Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3000953Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3002607Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3013120Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3024551Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3044271Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3066992Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3076933Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3079866Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3091514Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3099450Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3113295Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3118949Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3123583Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3130257Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3139577Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3147701Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3154954Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3162097Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3197827Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3219465Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3239502Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3254912Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3288405Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3290718Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3307212Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3319838Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3399579Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3407095Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3414021Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3421609Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3428697Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3434683Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3440382Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3718824Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3735817Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3743338Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3750466Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3756981Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3763218Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3770369Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3777518Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3786066Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3792871Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3814311Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3821249Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3828502Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3835037Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3840865Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3847483Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3854829Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3861480Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3899732Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3914055Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3923878Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3926232Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3949122Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3974024Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.3993263Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4009195Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4028562Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4033687Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4058991Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4069328Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4076957Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4085867Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4094816Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4101558Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4110509Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4135903Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4149577Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4157085Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4165596Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4179155Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4194003Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4213494Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4220418Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4259750Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4267449Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4274730Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4282145Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4293498Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4295122Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4302057Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4321005Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4326891Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4337904Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4344532Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4347466Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4362864Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4367569Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4639646Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4649832Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4662956Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4674876Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4684255Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4693686Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4704654Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4719973Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4724206Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4737596Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4746946Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4754791Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4761971Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4769284Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4776423Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4783773Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4797582Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4804447Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4811820Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4836062Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4840488Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4858799Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4881078Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4901944Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4903143Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4925049Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4933874Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4939556Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4952808Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4968817Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4975177Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.4990713Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5004310Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5020888Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5040577Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5049006Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5075393Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5085304Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5088685Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5115406Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5123802Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5125484Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5165974Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5173032Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5198939Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5204784Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5217056Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5233308Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5236786Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5250641Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5253615Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5259552Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5272563Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5274758Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5287890Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5289338Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5306727Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5307858Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5319371Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5320454Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5335119Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5339663Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5351710Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5360427Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5469513Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5475627Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5480824Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5486928Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5492230Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5499047Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5504071Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5509969Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5515661Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5523216Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5561127Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5576841Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5586893Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5595866Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5607998Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5616036Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5624923Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5627829Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5645251Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5649258Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5658209Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5668058Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5680745Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5713317Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5729219Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5758428Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5776638Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5828548Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5841085Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5862092Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5885209Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5904866Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5921718Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.5982140Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6017097Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6051262Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6061200Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6094293Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6099095Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6135365Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6139156Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6147188Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6167678Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6176151Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6194354Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6197531Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6223847Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6238822Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6246418Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6265622Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6268147Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6271668Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6288734Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6291662Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6306482Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6377334Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6389542Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6402485Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6414726Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6427337Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6435681Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6453229Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6459374Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6468696Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6479801Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6485363Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6495024Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6637686Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6654786Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6712823Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6754467Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6785924Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6826781Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6867920Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6906936Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6940322Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6956997Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6961976Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.6989876Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7009499Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7020681Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7031888Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7043679Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7050304Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7070591Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7103034Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7143704Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7165329Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7185716Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7208516Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7239177Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7245344Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7251083Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7257336Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7264501Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7276822Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7281163Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7298491Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7299692Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7310509Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7320024Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7331951Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7339221Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7355675Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7358924Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7364961Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7372377Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7379844Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7385994Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7392042Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7561541Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7574392Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7580584Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7587329Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7595859Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7604074Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7611608Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7621111Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7630558Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7640080Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7646210Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7660066Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7666262Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7856225Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7905585Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.7949157Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8143541Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8151775Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8167529Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8176902Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8181297Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8193221Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8199261Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8207394Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8216345Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8223547Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8231187Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8253673Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8296692Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8302512Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8308568Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8314699Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8320428Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8326513Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8332423Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8338416Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8344431Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8350313Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8465447Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8478232Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8488691Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8497643Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8505735Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8514939Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8525268Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8535800Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8553287Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.8561142Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9041410Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9051459Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9067331Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9080642Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9099531Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9108842Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9140587Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9148186Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9154796Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9160855Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9223975Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9230036Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9258024Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9263541Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9269444Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9274960Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9280257Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9287509Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9301291Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9304696Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9317874Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9323884Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9329652Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9335736Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9346394Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9356745Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9361359Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9381314Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9387614Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9402299Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9405844Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9419153Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9425099Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9439821Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9455476Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9462217Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9469008Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9475756Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9489985Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9494266Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9500183Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9506290Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9511461Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9516828Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9522094Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9527578Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9533554Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9539451Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9545547Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9617652Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9623228Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9629127Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9635587Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9641213Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9648328Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9654808Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9666305Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9673744Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9678305Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9938065Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:32.9949061Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0149697Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0156905Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0190061Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0191320Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0207895Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0216015Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0225428Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0235277Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0304060Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0307072Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0311082Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0325634Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0367749Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0385201Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0386921Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0403118Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0430933Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0458362Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0469256Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0472895Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0506702Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0558454Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0563130Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0571942Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0590988Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0619443Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0623950Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0656055Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0676849Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0677579Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0682416Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0706230Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0722589Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0755488Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0759686Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0765458Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0788928Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0813499Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0831529Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0848854Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0861955Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0880911Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0905974Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0909153Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0934933Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0942583Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0964911Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.0981350Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1000064Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1004190Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1025042Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1033897Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1045195Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1057944Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1073435Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1112571Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1128045Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1147241Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1149264Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1172254Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1215532Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1228201Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1245363Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1257566Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1266095Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1270134Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1285042Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1332968Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1334811Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1347743Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1405152Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1414159Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1419246Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1433150Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1448751Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1509915Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1533666Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1534500Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1546719Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1565020Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1609542Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1636893Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1639866Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1641513Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1667392Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1716759Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1732840Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1737396Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1757724Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1775469Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1790326Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1822596Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1826823Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1835548Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1878185Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1879710Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1897007Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1908820Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1949955Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1959463Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1960717Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.1987680Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2002968Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2006871Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2041407Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2055362Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2061547Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2079031Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2086660Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2108472Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2143688Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2160472Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2286656Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2330359Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2396276Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2408349Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2455318Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2495299Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2496672Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2543843Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2600056Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2626630Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2717043Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2815562Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2873826Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2937693Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.2955804Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.3167449Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.3212598Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.3271369Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.3382260Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:33.3489529Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:34.0306375Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining +2025-11-24T08:55:34.0308175Z upload: offline/default-build/output/assets.tgz to s3://public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz +2025-11-24T08:55:34.1543858Z Uploaded to: https://s3-eu-west-1.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz +2025-11-24T08:55:34.1609078Z ##[group]Run hashicorp/setup-terraform@v3 +2025-11-24T08:55:34.1609591Z with: +2025-11-24T08:55:34.1609986Z terraform_version: ^1.3.7 +2025-11-24T08:55:34.1610419Z terraform_wrapper: false +2025-11-24T08:55:34.1610892Z cli_config_credentials_hostname: app.terraform.io +2025-11-24T08:55:34.1611405Z env: +2025-11-24T08:55:34.1611790Z TMPDIR: /home/runner/work/_temp +2025-11-24T08:55:34.1612598Z CACHIX_SIGNING_KEY: *** +2025-11-24T08:55:34.1613470Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf +2025-11-24T08:55:34.1614345Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ +2025-11-24T08:55:34.1614889Z ##[endgroup] +2025-11-24T08:55:34.6602925Z [command]/usr/bin/unzip -o -q /home/runner/work/_temp/3a64fd4c-68c1-498b-9251-cdab88ca32e6 +2025-11-24T08:55:35.3981659Z ##[group]Run ./offline/cd.sh +2025-11-24T08:55:35.3982197Z ./offline/cd.sh +2025-11-24T08:55:35.4058093Z shell: /usr/bin/bash -e {0} +2025-11-24T08:55:35.4058550Z env: +2025-11-24T08:55:35.4058955Z TMPDIR: /home/runner/work/_temp +2025-11-24T08:55:35.4059822Z CACHIX_SIGNING_KEY: *** +2025-11-24T08:55:35.4060600Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf +2025-11-24T08:55:35.4061467Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ +2025-11-24T08:55:35.4062384Z HCLOUD_TOKEN: *** +2025-11-24T08:55:35.4062945Z ##[endgroup] +2025-11-24T08:55:35.4391122Z Wire Offline Deployment with Retry Logic +2025-11-24T08:55:35.4392041Z ======================================== +2025-11-24T08:55:35.4638056Z Initializing the backend... +2025-11-24T08:55:35.4646555Z Initializing provider plugins... +2025-11-24T08:55:35.4647528Z - Finding latest version of hashicorp/null... +2025-11-24T08:55:35.5233966Z - Finding latest version of hashicorp/tls... +2025-11-24T08:55:35.5369205Z - Finding latest version of hetznercloud/hcloud... +2025-11-24T08:55:35.5471718Z - Finding latest version of hashicorp/random... +2025-11-24T08:55:35.6161225Z - Installing hashicorp/null v3.2.4... +2025-11-24T08:55:35.8362582Z - Installed hashicorp/null v3.2.4 (signed by HashiCorp) +2025-11-24T08:55:35.9068938Z - Installing hashicorp/tls v4.1.0... +2025-11-24T08:55:36.1334394Z - Installed hashicorp/tls v4.1.0 (signed by HashiCorp) +2025-11-24T08:55:36.3570149Z - Installing hetznercloud/hcloud v1.56.0... +2025-11-24T08:55:36.7126035Z - Installed hetznercloud/hcloud v1.56.0 (signed by a HashiCorp partner, key ID 5219EACB3A77198B) +2025-11-24T08:55:36.8095079Z - Installing hashicorp/random v3.7.2... +2025-11-24T08:55:36.9924680Z - Installed hashicorp/random v3.7.2 (signed by HashiCorp) +2025-11-24T08:55:36.9925747Z Partner and community providers are signed by their developers. +2025-11-24T08:55:36.9926645Z If you'd like to know more about provider signing, you can read about it here: +2025-11-24T08:55:36.9928026Z https://developer.hashicorp.com/terraform/cli/plugins/signing +2025-11-24T08:55:36.9929593Z Terraform has created a lock file .terraform.lock.hcl to record the provider +2025-11-24T08:55:36.9930503Z selections it made above. Include this file in your version control repository +2025-11-24T08:55:36.9931457Z so that Terraform can guarantee to make the same selections by default when +2025-11-24T08:55:36.9932150Z you run "terraform init" in the future. +2025-11-24T08:55:36.9932483Z +2025-11-24T08:55:36.9933248Z Terraform has been successfully initialized! +2025-11-24T08:55:36.9933873Z  +2025-11-24T08:55:36.9934424Z You may now begin working with Terraform. Try running "terraform plan" to see +2025-11-24T08:55:36.9935168Z any changes that are required for your infrastructure. All Terraform commands +2025-11-24T08:55:36.9935771Z should now work. +2025-11-24T08:55:36.9936009Z +2025-11-24T08:55:36.9936317Z If you ever set or change modules or backend configuration for Terraform, +2025-11-24T08:55:36.9937053Z rerun this command to reinitialize your working directory. If you forget, other +2025-11-24T08:55:36.9937835Z commands will detect it and remind you to do so if necessary. +2025-11-24T08:55:36.9964690Z Starting deployment with automatic retry on resource unavailability... +2025-11-24T08:55:36.9984573Z +2025-11-24T08:55:36.9985165Z Deployment attempt 1 of 3 +2025-11-24T08:55:36.9999855Z Mon Nov 24 08:55:36 UTC 2025 +2025-11-24T08:55:37.5981715Z data.hcloud_server_types.available: Reading... +2025-11-24T08:55:37.5985123Z data.hcloud_datacenters.available: Reading... +2025-11-24T08:55:38.1080038Z data.hcloud_datacenters.available: Read complete after 0s [id=5dd4ebdac62609c834f7768f02286b798bd82a38] +2025-11-24T08:55:38.2213897Z data.hcloud_server_types.available: Read complete after 0s [id=166277662d9b7990b1711b6545d691c4fc52eb3f] +2025-11-24T08:55:38.2931477Z +2025-11-24T08:55:38.2932567Z Terraform used the selected providers to generate the following execution +2025-11-24T08:55:38.2935453Z plan. Resource actions are indicated with the following symbols: +2025-11-24T08:55:38.2936607Z + create +2025-11-24T08:55:38.2936866Z +2025-11-24T08:55:38.2937118Z Terraform will perform the following actions: +2025-11-24T08:55:38.2937535Z +2025-11-24T08:55:38.2937809Z  # hcloud_network.main will be created +2025-11-24T08:55:38.2938406Z  + resource "hcloud_network" "main" { +2025-11-24T08:55:38.2939751Z + delete_protection = false +2025-11-24T08:55:38.2940356Z + expose_routes_to_vswitch = false +2025-11-24T08:55:38.2941380Z + id = (known after apply) +2025-11-24T08:55:38.2942271Z + ip_range = "10.1.0.0/16" +2025-11-24T08:55:38.2943153Z + name = (known after apply) +2025-11-24T08:55:38.2943660Z } +2025-11-24T08:55:38.2943958Z +2025-11-24T08:55:38.2944327Z  # hcloud_network_subnet.main will be created +2025-11-24T08:55:38.2944943Z  + resource "hcloud_network_subnet" "main" { +2025-11-24T08:55:38.2945566Z + gateway = (known after apply) +2025-11-24T08:55:38.2946286Z + id = (known after apply) +2025-11-24T08:55:38.2946831Z + ip_range = "10.1.1.0/24" +2025-11-24T08:55:38.2947465Z + network_id = (known after apply) +2025-11-24T08:55:38.2948086Z + network_zone = "eu-central" +2025-11-24T08:55:38.2948608Z + type = "cloud" +2025-11-24T08:55:38.2949153Z } +2025-11-24T08:55:38.2949422Z +2025-11-24T08:55:38.2949692Z  # hcloud_server.adminhost will be created +2025-11-24T08:55:38.2950269Z  + resource "hcloud_server" "adminhost" { +2025-11-24T08:55:38.2950967Z + allow_deprecated_images = false +2025-11-24T08:55:38.2951654Z + backup_window = (known after apply) +2025-11-24T08:55:38.2952253Z + backups = false +2025-11-24T08:55:38.2953187Z + datacenter = (known after apply) +2025-11-24T08:55:38.2954006Z + delete_protection = false +2025-11-24T08:55:38.2954933Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.2955584Z + id = (known after apply) +2025-11-24T08:55:38.2956154Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.2956924Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.2957543Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.2958318Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.2959266Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.2960178Z + keep_disk = false +2025-11-24T08:55:38.2961053Z + location = "fsn1" +2025-11-24T08:55:38.2962000Z + name = (known after apply) +2025-11-24T08:55:38.2963068Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.2963870Z + rebuild_protection = false +2025-11-24T08:55:38.2964631Z + server_type = "cx33" +2025-11-24T08:55:38.2965220Z + shutdown_before_deletion = false +2025-11-24T08:55:38.2965821Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.2966448Z + status = (known after apply) +2025-11-24T08:55:38.2966779Z +2025-11-24T08:55:38.2967002Z + network { +2025-11-24T08:55:38.2967724Z + alias_ips = (known after apply) +2025-11-24T08:55:38.2968317Z + ip = (known after apply) +2025-11-24T08:55:38.2968880Z + mac_address = (known after apply) +2025-11-24T08:55:38.2969459Z + network_id = (known after apply) +2025-11-24T08:55:38.2969946Z } +2025-11-24T08:55:38.2970315Z } +2025-11-24T08:55:38.2970512Z +2025-11-24T08:55:38.2970774Z  # hcloud_server.assethost will be created +2025-11-24T08:55:38.2971354Z  + resource "hcloud_server" "assethost" { +2025-11-24T08:55:38.2972069Z + allow_deprecated_images = false +2025-11-24T08:55:38.2972860Z + backup_window = (known after apply) +2025-11-24T08:55:38.2973472Z + backups = false +2025-11-24T08:55:38.2974067Z + datacenter = (known after apply) +2025-11-24T08:55:38.2974643Z + delete_protection = false +2025-11-24T08:55:38.2975232Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.2975837Z + id = (known after apply) +2025-11-24T08:55:38.2976398Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.2976978Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.2977589Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.2978198Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.2978814Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.2979383Z + keep_disk = false +2025-11-24T08:55:38.2979921Z + location = "fsn1" +2025-11-24T08:55:38.2980513Z + name = (known after apply) +2025-11-24T08:55:38.2981130Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.2981715Z + rebuild_protection = false +2025-11-24T08:55:38.2982257Z + server_type = "cx33" +2025-11-24T08:55:38.2983010Z + shutdown_before_deletion = false +2025-11-24T08:55:38.2983624Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.2984341Z + status = (known after apply) +2025-11-24T08:55:38.2984675Z +2025-11-24T08:55:38.2984894Z + network { +2025-11-24T08:55:38.2985402Z + alias_ips = (known after apply) +2025-11-24T08:55:38.2985970Z + ip = (known after apply) +2025-11-24T08:55:38.2986526Z + mac_address = (known after apply) +2025-11-24T08:55:38.2987087Z + network_id = (known after apply) +2025-11-24T08:55:38.2987565Z } +2025-11-24T08:55:38.2987914Z +2025-11-24T08:55:38.2988274Z + public_net { +2025-11-24T08:55:38.2988821Z + ipv4 = (known after apply) +2025-11-24T08:55:38.2989370Z + ipv4_enabled = false +2025-11-24T08:55:38.2989911Z + ipv6 = (known after apply) +2025-11-24T08:55:38.2990453Z + ipv6_enabled = false +2025-11-24T08:55:38.2990907Z } +2025-11-24T08:55:38.2991273Z } +2025-11-24T08:55:38.2991468Z +2025-11-24T08:55:38.2991746Z  # hcloud_server.cassandra[0] will be created +2025-11-24T08:55:38.2992350Z  + resource "hcloud_server" "cassandra" { +2025-11-24T08:55:38.2993071Z + allow_deprecated_images = false +2025-11-24T08:55:38.2993686Z + backup_window = (known after apply) +2025-11-24T08:55:38.2994271Z + backups = false +2025-11-24T08:55:38.2994867Z + datacenter = (known after apply) +2025-11-24T08:55:38.2995648Z + delete_protection = false +2025-11-24T08:55:38.2996270Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.2996892Z + id = (known after apply) +2025-11-24T08:55:38.2997474Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.2998061Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.2998681Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.2999390Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3000002Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3000562Z + keep_disk = false +2025-11-24T08:55:38.3001112Z + location = "fsn1" +2025-11-24T08:55:38.3001701Z + name = (known after apply) +2025-11-24T08:55:38.3002318Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3003003Z + rebuild_protection = false +2025-11-24T08:55:38.3003556Z + server_type = "cx23" +2025-11-24T08:55:38.3004109Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3004699Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3005308Z + status = (known after apply) +2025-11-24T08:55:38.3005662Z +2025-11-24T08:55:38.3005878Z + network { +2025-11-24T08:55:38.3006389Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3006957Z + ip = (known after apply) +2025-11-24T08:55:38.3007525Z + mac_address = (known after apply) +2025-11-24T08:55:38.3008080Z + network_id = (known after apply) +2025-11-24T08:55:38.3008561Z } +2025-11-24T08:55:38.3008767Z +2025-11-24T08:55:38.3008984Z + public_net { +2025-11-24T08:55:38.3009497Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3010033Z + ipv4_enabled = false +2025-11-24T08:55:38.3010567Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3011206Z + ipv6_enabled = false +2025-11-24T08:55:38.3011656Z } +2025-11-24T08:55:38.3012019Z } +2025-11-24T08:55:38.3012214Z +2025-11-24T08:55:38.3012486Z  # hcloud_server.cassandra[1] will be created +2025-11-24T08:55:38.3013281Z  + resource "hcloud_server" "cassandra" { +2025-11-24T08:55:38.3013853Z + allow_deprecated_images = false +2025-11-24T08:55:38.3014460Z + backup_window = (known after apply) +2025-11-24T08:55:38.3015050Z + backups = false +2025-11-24T08:55:38.3015650Z + datacenter = (known after apply) +2025-11-24T08:55:38.3016225Z + delete_protection = false +2025-11-24T08:55:38.3016814Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3017421Z + id = (known after apply) +2025-11-24T08:55:38.3017989Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3018563Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3019173Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3019793Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3020398Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3020961Z + keep_disk = false +2025-11-24T08:55:38.3021502Z + location = "fsn1" +2025-11-24T08:55:38.3022219Z + name = (known after apply) +2025-11-24T08:55:38.3022952Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3023538Z + rebuild_protection = false +2025-11-24T08:55:38.3024088Z + server_type = "cx23" +2025-11-24T08:55:38.3024653Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3025246Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3025853Z + status = (known after apply) +2025-11-24T08:55:38.3026265Z +2025-11-24T08:55:38.3026484Z + network { +2025-11-24T08:55:38.3026994Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3027574Z + ip = (known after apply) +2025-11-24T08:55:38.3028127Z + mac_address = (known after apply) +2025-11-24T08:55:38.3028694Z + network_id = (known after apply) +2025-11-24T08:55:38.3029172Z } +2025-11-24T08:55:38.3029370Z +2025-11-24T08:55:38.3029587Z + public_net { +2025-11-24T08:55:38.3030095Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3030632Z + ipv4_enabled = false +2025-11-24T08:55:38.3031171Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3031710Z + ipv6_enabled = false +2025-11-24T08:55:38.3032162Z } +2025-11-24T08:55:38.3032530Z } +2025-11-24T08:55:38.3032853Z +2025-11-24T08:55:38.3033131Z  # hcloud_server.cassandra[2] will be created +2025-11-24T08:55:38.3033727Z  + resource "hcloud_server" "cassandra" { +2025-11-24T08:55:38.3034295Z + allow_deprecated_images = false +2025-11-24T08:55:38.3034903Z + backup_window = (known after apply) +2025-11-24T08:55:38.3035494Z + backups = false +2025-11-24T08:55:38.3036108Z + datacenter = (known after apply) +2025-11-24T08:55:38.3036693Z + delete_protection = false +2025-11-24T08:55:38.3037295Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3037906Z + id = (known after apply) +2025-11-24T08:55:38.3038556Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3039134Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3039750Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3040366Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3040976Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3041544Z + keep_disk = false +2025-11-24T08:55:38.3042089Z + location = "fsn1" +2025-11-24T08:55:38.3042810Z + name = (known after apply) +2025-11-24T08:55:38.3043429Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3044010Z + rebuild_protection = false +2025-11-24T08:55:38.3044561Z + server_type = "cx23" +2025-11-24T08:55:38.3056472Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3057659Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3058701Z + status = (known after apply) +2025-11-24T08:55:38.3059254Z +2025-11-24T08:55:38.3059594Z + network { +2025-11-24T08:55:38.3060401Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3061360Z + ip = (known after apply) +2025-11-24T08:55:38.3062292Z + mac_address = (known after apply) +2025-11-24T08:55:38.3063650Z + network_id = (known after apply) +2025-11-24T08:55:38.3064474Z } +2025-11-24T08:55:38.3064804Z +2025-11-24T08:55:38.3065162Z + public_net { +2025-11-24T08:55:38.3065985Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3066854Z + ipv4_enabled = false +2025-11-24T08:55:38.3067724Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3068592Z + ipv6_enabled = false +2025-11-24T08:55:38.3069440Z } +2025-11-24T08:55:38.3070021Z } +2025-11-24T08:55:38.3070324Z +2025-11-24T08:55:38.3070789Z  # hcloud_server.elasticsearch[0] will be created +2025-11-24T08:55:38.3071835Z  + resource "hcloud_server" "elasticsearch" { +2025-11-24T08:55:38.3072981Z + allow_deprecated_images = false +2025-11-24T08:55:38.3073998Z + backup_window = (known after apply) +2025-11-24T08:55:38.3074974Z + backups = false +2025-11-24T08:55:38.3075948Z + datacenter = (known after apply) +2025-11-24T08:55:38.3076938Z + delete_protection = false +2025-11-24T08:55:38.3077957Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3078977Z + id = (known after apply) +2025-11-24T08:55:38.3079692Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3080412Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3081051Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3081888Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3082528Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3083767Z + keep_disk = false +2025-11-24T08:55:38.3084777Z + location = "fsn1" +2025-11-24T08:55:38.3085830Z + name = (known after apply) +2025-11-24T08:55:38.3086950Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3088011Z + rebuild_protection = false +2025-11-24T08:55:38.3089110Z + server_type = "cx23" +2025-11-24T08:55:38.3090025Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3090970Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3091831Z + status = (known after apply) +2025-11-24T08:55:38.3092185Z +2025-11-24T08:55:38.3092406Z + network { +2025-11-24T08:55:38.3093073Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3093650Z + ip = (known after apply) +2025-11-24T08:55:38.3094225Z + mac_address = (known after apply) +2025-11-24T08:55:38.3094790Z + network_id = (known after apply) +2025-11-24T08:55:38.3095275Z } +2025-11-24T08:55:38.3095479Z +2025-11-24T08:55:38.3095697Z + public_net { +2025-11-24T08:55:38.3096216Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3096773Z + ipv4_enabled = false +2025-11-24T08:55:38.3097317Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3097853Z + ipv6_enabled = false +2025-11-24T08:55:38.3098311Z } +2025-11-24T08:55:38.3098679Z } +2025-11-24T08:55:38.3098877Z +2025-11-24T08:55:38.3099163Z  # hcloud_server.elasticsearch[1] will be created +2025-11-24T08:55:38.3099775Z  + resource "hcloud_server" "elasticsearch" { +2025-11-24T08:55:38.3100366Z + allow_deprecated_images = false +2025-11-24T08:55:38.3101131Z + backup_window = (known after apply) +2025-11-24T08:55:38.3101728Z + backups = false +2025-11-24T08:55:38.3102326Z + datacenter = (known after apply) +2025-11-24T08:55:38.3103055Z + delete_protection = false +2025-11-24T08:55:38.3103651Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3104261Z + id = (known after apply) +2025-11-24T08:55:38.3104821Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3105499Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3106130Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3106766Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3107396Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3107996Z + keep_disk = false +2025-11-24T08:55:38.3108574Z + location = "fsn1" +2025-11-24T08:55:38.3109186Z + name = (known after apply) +2025-11-24T08:55:38.3109807Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3110389Z + rebuild_protection = false +2025-11-24T08:55:38.3110949Z + server_type = "cx23" +2025-11-24T08:55:38.3111506Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3112102Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3112931Z + status = (known after apply) +2025-11-24T08:55:38.3113305Z +2025-11-24T08:55:38.3113534Z + network { +2025-11-24T08:55:38.3114043Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3114618Z + ip = (known after apply) +2025-11-24T08:55:38.3115176Z + mac_address = (known after apply) +2025-11-24T08:55:38.3115739Z + network_id = (known after apply) +2025-11-24T08:55:38.3116221Z } +2025-11-24T08:55:38.3116424Z +2025-11-24T08:55:38.3116645Z + public_net { +2025-11-24T08:55:38.3117261Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3117815Z + ipv4_enabled = false +2025-11-24T08:55:38.3118359Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3118896Z + ipv6_enabled = false +2025-11-24T08:55:38.3119342Z } +2025-11-24T08:55:38.3119709Z } +2025-11-24T08:55:38.3119909Z +2025-11-24T08:55:38.3120180Z  # hcloud_server.kubenode[0] will be created +2025-11-24T08:55:38.3120765Z  + resource "hcloud_server" "kubenode" { +2025-11-24T08:55:38.3121337Z + allow_deprecated_images = false +2025-11-24T08:55:38.3121960Z + backup_window = (known after apply) +2025-11-24T08:55:38.3122554Z + backups = false +2025-11-24T08:55:38.3123280Z + datacenter = (known after apply) +2025-11-24T08:55:38.3123864Z + delete_protection = false +2025-11-24T08:55:38.3124462Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3125068Z + id = (known after apply) +2025-11-24T08:55:38.3125636Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3126216Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3126836Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3127455Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3128189Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3128763Z + keep_disk = false +2025-11-24T08:55:38.3129311Z + location = "fsn1" +2025-11-24T08:55:38.3130007Z + name = (known after apply) +2025-11-24T08:55:38.3131098Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3132175Z + rebuild_protection = false +2025-11-24T08:55:38.3133140Z + server_type = "cx33" +2025-11-24T08:55:38.3133869Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3134481Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3135109Z + status = (known after apply) +2025-11-24T08:55:38.3135443Z +2025-11-24T08:55:38.3135665Z + network { +2025-11-24T08:55:38.3136171Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3136764Z + ip = (known after apply) +2025-11-24T08:55:38.3137328Z + mac_address = (known after apply) +2025-11-24T08:55:38.3137887Z + network_id = (known after apply) +2025-11-24T08:55:38.3138366Z } +2025-11-24T08:55:38.3138568Z +2025-11-24T08:55:38.3138790Z + public_net { +2025-11-24T08:55:38.3139305Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3139852Z + ipv4_enabled = false +2025-11-24T08:55:38.3140392Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3140939Z + ipv6_enabled = false +2025-11-24T08:55:38.3141394Z } +2025-11-24T08:55:38.3141766Z } +2025-11-24T08:55:38.3141966Z +2025-11-24T08:55:38.3142242Z  # hcloud_server.kubenode[1] will be created +2025-11-24T08:55:38.3143097Z  + resource "hcloud_server" "kubenode" { +2025-11-24T08:55:38.3143990Z + allow_deprecated_images = false +2025-11-24T08:55:38.3144714Z + backup_window = (known after apply) +2025-11-24T08:55:38.3145320Z + backups = false +2025-11-24T08:55:38.3146088Z + datacenter = (known after apply) +2025-11-24T08:55:38.3146973Z + delete_protection = false +2025-11-24T08:55:38.3147787Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3148521Z + id = (known after apply) +2025-11-24T08:55:38.3149217Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3149942Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3150651Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3151298Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3152045Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3152930Z + keep_disk = false +2025-11-24T08:55:38.3153549Z + location = "fsn1" +2025-11-24T08:55:38.3154290Z + name = (known after apply) +2025-11-24T08:55:38.3155047Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3155757Z + rebuild_protection = false +2025-11-24T08:55:38.3156416Z + server_type = "cx33" +2025-11-24T08:55:38.3156991Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3157693Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3158419Z + status = (known after apply) +2025-11-24T08:55:38.3158788Z +2025-11-24T08:55:38.3159089Z + network { +2025-11-24T08:55:38.3159852Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3160558Z + ip = (known after apply) +2025-11-24T08:55:38.3161185Z + mac_address = (known after apply) +2025-11-24T08:55:38.3161876Z + network_id = (known after apply) +2025-11-24T08:55:38.3162463Z } +2025-11-24T08:55:38.3162925Z +2025-11-24T08:55:38.3163276Z + public_net { +2025-11-24T08:55:38.3163858Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3164596Z + ipv4_enabled = false +2025-11-24T08:55:38.3165283Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3165959Z + ipv6_enabled = false +2025-11-24T08:55:38.3166486Z } +2025-11-24T08:55:38.3166902Z } +2025-11-24T08:55:38.3167104Z +2025-11-24T08:55:38.3167494Z  # hcloud_server.kubenode[2] will be created +2025-11-24T08:55:38.3168165Z  + resource "hcloud_server" "kubenode" { +2025-11-24T08:55:38.3168813Z + allow_deprecated_images = false +2025-11-24T08:55:38.3169553Z + backup_window = (known after apply) +2025-11-24T08:55:38.3170261Z + backups = false +2025-11-24T08:55:38.3170975Z + datacenter = (known after apply) +2025-11-24T08:55:38.3171698Z + delete_protection = false +2025-11-24T08:55:38.3172390Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3173298Z + id = (known after apply) +2025-11-24T08:55:38.3173911Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3174648Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3175405Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3176156Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3176882Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3177567Z + keep_disk = false +2025-11-24T08:55:38.3178135Z + location = "fsn1" +2025-11-24T08:55:38.3178850Z + name = (known after apply) +2025-11-24T08:55:38.3179706Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3180410Z + rebuild_protection = false +2025-11-24T08:55:38.3181091Z + server_type = "cx33" +2025-11-24T08:55:38.3181763Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3182368Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3183209Z + status = (known after apply) +2025-11-24T08:55:38.3183667Z +2025-11-24T08:55:38.3183899Z + network { +2025-11-24T08:55:38.3184509Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3185244Z + ip = (known after apply) +2025-11-24T08:55:38.3185859Z + mac_address = (known after apply) +2025-11-24T08:55:38.3186640Z + network_id = (known after apply) +2025-11-24T08:55:38.3187255Z } +2025-11-24T08:55:38.3187462Z +2025-11-24T08:55:38.3187782Z + public_net { +2025-11-24T08:55:38.3188312Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3188975Z + ipv4_enabled = false +2025-11-24T08:55:38.3189628Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3190260Z + ipv6_enabled = false +2025-11-24T08:55:38.3190726Z } +2025-11-24T08:55:38.3191225Z } +2025-11-24T08:55:38.3191491Z +2025-11-24T08:55:38.3191844Z  # hcloud_server.minio[0] will be created +2025-11-24T08:55:38.3192811Z  + resource "hcloud_server" "minio" { +2025-11-24T08:55:38.3193629Z + allow_deprecated_images = false +2025-11-24T08:55:38.3194370Z + backup_window = (known after apply) +2025-11-24T08:55:38.3194981Z + backups = false +2025-11-24T08:55:38.3195703Z + datacenter = (known after apply) +2025-11-24T08:55:38.3196316Z + delete_protection = false +2025-11-24T08:55:38.3197056Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3197782Z + id = (known after apply) +2025-11-24T08:55:38.3198346Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3198964Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3199673Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3200305Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3200918Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3201657Z + keep_disk = false +2025-11-24T08:55:38.3202313Z + location = "fsn1" +2025-11-24T08:55:38.3203250Z + name = (known after apply) +2025-11-24T08:55:38.3203884Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3204476Z + rebuild_protection = false +2025-11-24T08:55:38.3205029Z + server_type = "cx23" +2025-11-24T08:55:38.3205586Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3206172Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3206780Z + status = (known after apply) +2025-11-24T08:55:38.3207106Z +2025-11-24T08:55:38.3207330Z + network { +2025-11-24T08:55:38.3207835Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3208402Z + ip = (known after apply) +2025-11-24T08:55:38.3208962Z + mac_address = (known after apply) +2025-11-24T08:55:38.3209522Z + network_id = (known after apply) +2025-11-24T08:55:38.3210228Z } +2025-11-24T08:55:38.3210452Z +2025-11-24T08:55:38.3210681Z + public_net { +2025-11-24T08:55:38.3211214Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3211767Z + ipv4_enabled = false +2025-11-24T08:55:38.3212311Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3213066Z + ipv6_enabled = false +2025-11-24T08:55:38.3213534Z } +2025-11-24T08:55:38.3213914Z } +2025-11-24T08:55:38.3214113Z +2025-11-24T08:55:38.3214382Z  # hcloud_server.minio[1] will be created +2025-11-24T08:55:38.3214946Z  + resource "hcloud_server" "minio" { +2025-11-24T08:55:38.3215524Z + allow_deprecated_images = false +2025-11-24T08:55:38.3216138Z + backup_window = (known after apply) +2025-11-24T08:55:38.3216728Z + backups = false +2025-11-24T08:55:38.3217320Z + datacenter = (known after apply) +2025-11-24T08:55:38.3217905Z + delete_protection = false +2025-11-24T08:55:38.3218506Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3219112Z + id = (known after apply) +2025-11-24T08:55:38.3219676Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3220259Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3221009Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3221637Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3222247Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3223027Z + keep_disk = false +2025-11-24T08:55:38.3223923Z + location = "fsn1" +2025-11-24T08:55:38.3224967Z + name = (known after apply) +2025-11-24T08:55:38.3226803Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3228014Z + rebuild_protection = false +2025-11-24T08:55:38.3228917Z + server_type = "cx23" +2025-11-24T08:55:38.3229881Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3230902Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3232011Z + status = (known after apply) +2025-11-24T08:55:38.3232606Z +2025-11-24T08:55:38.3233158Z + network { +2025-11-24T08:55:38.3234023Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3234977Z + ip = (known after apply) +2025-11-24T08:55:38.3235930Z + mac_address = (known after apply) +2025-11-24T08:55:38.3236882Z + network_id = (known after apply) +2025-11-24T08:55:38.3237687Z } +2025-11-24T08:55:38.3238009Z +2025-11-24T08:55:38.3238381Z + public_net { +2025-11-24T08:55:38.3239239Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3240161Z + ipv4_enabled = false +2025-11-24T08:55:38.3248740Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3249765Z + ipv6_enabled = false +2025-11-24T08:55:38.3250543Z } +2025-11-24T08:55:38.3251150Z } +2025-11-24T08:55:38.3251579Z +2025-11-24T08:55:38.3252053Z  # hcloud_server.postgresql[0] will be created +2025-11-24T08:55:38.3253281Z  + resource "hcloud_server" "postgresql" { +2025-11-24T08:55:38.3254282Z + allow_deprecated_images = false +2025-11-24T08:55:38.3255315Z + backup_window = (known after apply) +2025-11-24T08:55:38.3256449Z + backups = false +2025-11-24T08:55:38.3257450Z + datacenter = (known after apply) +2025-11-24T08:55:38.3258449Z + delete_protection = false +2025-11-24T08:55:38.3259460Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3260499Z + id = (known after apply) +2025-11-24T08:55:38.3261472Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3262459Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3263660Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3264707Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3265751Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3266716Z + keep_disk = false +2025-11-24T08:55:38.3267642Z + location = "fsn1" +2025-11-24T08:55:38.3268627Z + name = (known after apply) +2025-11-24T08:55:38.3269674Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3270660Z + rebuild_protection = false +2025-11-24T08:55:38.3271585Z + server_type = "cx23" +2025-11-24T08:55:38.3272517Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3273668Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3274901Z + status = (known after apply) +2025-11-24T08:55:38.3275473Z +2025-11-24T08:55:38.3275833Z + network { +2025-11-24T08:55:38.3276661Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3277629Z + ip = (known after apply) +2025-11-24T08:55:38.3278569Z + mac_address = (known after apply) +2025-11-24T08:55:38.3279519Z + network_id = (known after apply) +2025-11-24T08:55:38.3280316Z } +2025-11-24T08:55:38.3280743Z +2025-11-24T08:55:38.3281110Z + public_net { +2025-11-24T08:55:38.3281964Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3283022Z + ipv4_enabled = false +2025-11-24T08:55:38.3283929Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3284839Z + ipv6_enabled = false +2025-11-24T08:55:38.3285588Z } +2025-11-24T08:55:38.3286191Z } +2025-11-24T08:55:38.3286508Z +2025-11-24T08:55:38.3286964Z  # hcloud_server.postgresql[1] will be created +2025-11-24T08:55:38.3287959Z  + resource "hcloud_server" "postgresql" { +2025-11-24T08:55:38.3288935Z + allow_deprecated_images = false +2025-11-24T08:55:38.3289944Z + backup_window = (known after apply) +2025-11-24T08:55:38.3290919Z + backups = false +2025-11-24T08:55:38.3291902Z + datacenter = (known after apply) +2025-11-24T08:55:38.3293017Z + delete_protection = false +2025-11-24T08:55:38.3294025Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3295047Z + id = (known after apply) +2025-11-24T08:55:38.3296003Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3296978Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3298005Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3299036Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3300071Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3301134Z + keep_disk = false +2025-11-24T08:55:38.3302045Z + location = "fsn1" +2025-11-24T08:55:38.3303170Z + name = (known after apply) +2025-11-24T08:55:38.3304218Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3305198Z + rebuild_protection = false +2025-11-24T08:55:38.3306113Z + server_type = "cx23" +2025-11-24T08:55:38.3307038Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3308030Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3309063Z + status = (known after apply) +2025-11-24T08:55:38.3309620Z +2025-11-24T08:55:38.3309973Z + network { +2025-11-24T08:55:38.3310788Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3311741Z + ip = (known after apply) +2025-11-24T08:55:38.3312873Z + mac_address = (known after apply) +2025-11-24T08:55:38.3313829Z + network_id = (known after apply) +2025-11-24T08:55:38.3314631Z } +2025-11-24T08:55:38.3315005Z +2025-11-24T08:55:38.3315373Z + public_net { +2025-11-24T08:55:38.3316226Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3317129Z + ipv4_enabled = false +2025-11-24T08:55:38.3318024Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3319084Z + ipv6_enabled = false +2025-11-24T08:55:38.3319835Z } +2025-11-24T08:55:38.3320430Z } +2025-11-24T08:55:38.3320748Z +2025-11-24T08:55:38.3321199Z  # hcloud_server.postgresql[2] will be created +2025-11-24T08:55:38.3322187Z  + resource "hcloud_server" "postgresql" { +2025-11-24T08:55:38.3323334Z + allow_deprecated_images = false +2025-11-24T08:55:38.3324345Z + backup_window = (known after apply) +2025-11-24T08:55:38.3325310Z + backups = false +2025-11-24T08:55:38.3326475Z + datacenter = (known after apply) +2025-11-24T08:55:38.3327455Z + delete_protection = false +2025-11-24T08:55:38.3328440Z + firewall_ids = (known after apply) +2025-11-24T08:55:38.3329456Z + id = (known after apply) +2025-11-24T08:55:38.3330408Z + ignore_remote_firewall_ids = false +2025-11-24T08:55:38.3331380Z + image = "ubuntu-22.04" +2025-11-24T08:55:38.3332402Z + ipv4_address = (known after apply) +2025-11-24T08:55:38.3333623Z + ipv6_address = (known after apply) +2025-11-24T08:55:38.3334656Z + ipv6_network = (known after apply) +2025-11-24T08:55:38.3335613Z + keep_disk = false +2025-11-24T08:55:38.3336521Z + location = "fsn1" +2025-11-24T08:55:38.3337506Z + name = (known after apply) +2025-11-24T08:55:38.3338532Z + primary_disk_size = (known after apply) +2025-11-24T08:55:38.3339515Z + rebuild_protection = false +2025-11-24T08:55:38.3340428Z + server_type = "cx23" +2025-11-24T08:55:38.3341349Z + shutdown_before_deletion = false +2025-11-24T08:55:38.3342367Z + ssh_keys = (known after apply) +2025-11-24T08:55:38.3343577Z + status = (known after apply) +2025-11-24T08:55:38.3344137Z +2025-11-24T08:55:38.3344495Z + network { +2025-11-24T08:55:38.3345329Z + alias_ips = (known after apply) +2025-11-24T08:55:38.3346427Z + ip = (known after apply) +2025-11-24T08:55:38.3347387Z + mac_address = (known after apply) +2025-11-24T08:55:38.3348336Z + network_id = (known after apply) +2025-11-24T08:55:38.3349187Z } +2025-11-24T08:55:38.3349510Z +2025-11-24T08:55:38.3349875Z + public_net { +2025-11-24T08:55:38.3350731Z + ipv4 = (known after apply) +2025-11-24T08:55:38.3351642Z + ipv4_enabled = false +2025-11-24T08:55:38.3352534Z + ipv6 = (known after apply) +2025-11-24T08:55:38.3353643Z + ipv6_enabled = false +2025-11-24T08:55:38.3354400Z } +2025-11-24T08:55:38.3354989Z } +2025-11-24T08:55:38.3355314Z +2025-11-24T08:55:38.3355748Z  # hcloud_ssh_key.adminhost will be created +2025-11-24T08:55:38.3356728Z  + resource "hcloud_ssh_key" "adminhost" { +2025-11-24T08:55:38.3357717Z + fingerprint = (known after apply) +2025-11-24T08:55:38.3358643Z + id = (known after apply) +2025-11-24T08:55:38.3359501Z + labels = {} +2025-11-24T08:55:38.3360373Z + name = (known after apply) +2025-11-24T08:55:38.3361294Z + public_key = (known after apply) +2025-11-24T08:55:38.3362076Z } +2025-11-24T08:55:38.3362393Z +2025-11-24T08:55:38.3363302Z  # null_resource.deployment_info will be created +2025-11-24T08:55:38.3364147Z  + resource "null_resource" "deployment_info" { +2025-11-24T08:55:38.3364967Z + id = (known after apply) +2025-11-24T08:55:38.3365471Z } +2025-11-24T08:55:38.3365677Z +2025-11-24T08:55:38.3365947Z  # random_pet.adminhost will be created +2025-11-24T08:55:38.3366569Z  + resource "random_pet" "adminhost" { +2025-11-24T08:55:38.3367169Z + id = (known after apply) +2025-11-24T08:55:38.3367713Z + length = 2 +2025-11-24T08:55:38.3368206Z + separator = "-" +2025-11-24T08:55:38.3368662Z } +2025-11-24T08:55:38.3368966Z +2025-11-24T08:55:38.3369227Z  # random_pet.assethost will be created +2025-11-24T08:55:38.3369808Z  + resource "random_pet" "assethost" { +2025-11-24T08:55:38.3370383Z + id = (known after apply) +2025-11-24T08:55:38.3370910Z + length = 2 +2025-11-24T08:55:38.3371401Z + separator = "-" +2025-11-24T08:55:38.3371851Z } +2025-11-24T08:55:38.3372045Z +2025-11-24T08:55:38.3372305Z  # random_pet.cassandra[0] will be created +2025-11-24T08:55:38.3373190Z  + resource "random_pet" "cassandra" { +2025-11-24T08:55:38.3373781Z + id = (known after apply) +2025-11-24T08:55:38.3374309Z + length = 2 +2025-11-24T08:55:38.3374805Z + separator = "-" +2025-11-24T08:55:38.3375272Z } +2025-11-24T08:55:38.3375470Z +2025-11-24T08:55:38.3375728Z  # random_pet.cassandra[1] will be created +2025-11-24T08:55:38.3376303Z  + resource "random_pet" "cassandra" { +2025-11-24T08:55:38.3376883Z + id = (known after apply) +2025-11-24T08:55:38.3377408Z + length = 2 +2025-11-24T08:55:38.3377893Z + separator = "-" +2025-11-24T08:55:38.3378338Z } +2025-11-24T08:55:38.3378534Z +2025-11-24T08:55:38.3378784Z  # random_pet.cassandra[2] will be created +2025-11-24T08:55:38.3379349Z  + resource "random_pet" "cassandra" { +2025-11-24T08:55:38.3379916Z + id = (known after apply) +2025-11-24T08:55:38.3380428Z + length = 2 +2025-11-24T08:55:38.3380910Z + separator = "-" +2025-11-24T08:55:38.3381353Z } +2025-11-24T08:55:38.3381548Z +2025-11-24T08:55:38.3381820Z  # random_pet.elasticsearch[0] will be created +2025-11-24T08:55:38.3382521Z  + resource "random_pet" "elasticsearch" { +2025-11-24T08:55:38.3383220Z + id = (known after apply) +2025-11-24T08:55:38.3383741Z + length = 2 +2025-11-24T08:55:38.3384224Z + separator = "-" +2025-11-24T08:55:38.3384657Z } +2025-11-24T08:55:38.3384849Z +2025-11-24T08:55:38.3385116Z  # random_pet.elasticsearch[1] will be created +2025-11-24T08:55:38.3385713Z  + resource "random_pet" "elasticsearch" { +2025-11-24T08:55:38.3386280Z + id = (known after apply) +2025-11-24T08:55:38.3386791Z + length = 2 +2025-11-24T08:55:38.3387267Z + separator = "-" +2025-11-24T08:55:38.3387706Z } +2025-11-24T08:55:38.3387900Z +2025-11-24T08:55:38.3388153Z  # random_pet.kubenode[0] will be created +2025-11-24T08:55:38.3388715Z  + resource "random_pet" "kubenode" { +2025-11-24T08:55:38.3389270Z + id = (known after apply) +2025-11-24T08:55:38.3389786Z + length = 2 +2025-11-24T08:55:38.3390263Z + separator = "-" +2025-11-24T08:55:38.3390707Z } +2025-11-24T08:55:38.3390902Z +2025-11-24T08:55:38.3391153Z  # random_pet.kubenode[1] will be created +2025-11-24T08:55:38.3391742Z  + resource "random_pet" "kubenode" { +2025-11-24T08:55:38.3392285Z + id = (known after apply) +2025-11-24T08:55:38.3392902Z + length = 2 +2025-11-24T08:55:38.3393387Z + separator = "-" +2025-11-24T08:55:38.3393827Z } +2025-11-24T08:55:38.3394158Z +2025-11-24T08:55:38.3394566Z  # random_pet.kubenode[2] will be created +2025-11-24T08:55:38.3395344Z  + resource "random_pet" "kubenode" { +2025-11-24T08:55:38.3396167Z + id = (known after apply) +2025-11-24T08:55:38.3397070Z + length = 2 +2025-11-24T08:55:38.3397920Z + separator = "-" +2025-11-24T08:55:38.3398507Z } +2025-11-24T08:55:38.3398713Z +2025-11-24T08:55:38.3398975Z  # random_pet.main will be created +2025-11-24T08:55:38.3399828Z  + resource "random_pet" "main" { +2025-11-24T08:55:38.3400480Z + id = (known after apply) +2025-11-24T08:55:38.3401228Z + length = 2 +2025-11-24T08:55:38.3401789Z + separator = "-" +2025-11-24T08:55:38.3402498Z } +2025-11-24T08:55:38.3402997Z +2025-11-24T08:55:38.3403280Z  # random_pet.minio[0] will be created +2025-11-24T08:55:38.3404029Z  + resource "random_pet" "minio" { +2025-11-24T08:55:38.3404687Z + id = (known after apply) +2025-11-24T08:55:38.3405288Z + length = 2 +2025-11-24T08:55:38.3405785Z + separator = "-" +2025-11-24T08:55:38.3406320Z } +2025-11-24T08:55:38.3406525Z +2025-11-24T08:55:38.3406833Z  # random_pet.minio[1] will be created +2025-11-24T08:55:38.3407441Z  + resource "random_pet" "minio" { +2025-11-24T08:55:38.3408087Z + id = (known after apply) +2025-11-24T08:55:38.3408700Z + length = 2 +2025-11-24T08:55:38.3409213Z + separator = "-" +2025-11-24T08:55:38.3409722Z } +2025-11-24T08:55:38.3409919Z +2025-11-24T08:55:38.3410271Z  # random_pet.postgresql[0] will be created +2025-11-24T08:55:38.3410925Z  + resource "random_pet" "postgresql" { +2025-11-24T08:55:38.3411549Z + id = (known after apply) +2025-11-24T08:55:38.3412156Z + length = 2 +2025-11-24T08:55:38.3412933Z + separator = "-" +2025-11-24T08:55:38.3413491Z } +2025-11-24T08:55:38.3413697Z +2025-11-24T08:55:38.3413976Z  # random_pet.postgresql[1] will be created +2025-11-24T08:55:38.3414646Z  + resource "random_pet" "postgresql" { +2025-11-24T08:55:38.3415560Z + id = (known after apply) +2025-11-24T08:55:38.3416207Z + length = 2 +2025-11-24T08:55:38.3416701Z + separator = "-" +2025-11-24T08:55:38.3417153Z } +2025-11-24T08:55:38.3417353Z +2025-11-24T08:55:38.3417667Z  # random_pet.postgresql[2] will be created +2025-11-24T08:55:38.3418289Z  + resource "random_pet" "postgresql" { +2025-11-24T08:55:38.3418952Z + id = (known after apply) +2025-11-24T08:55:38.3419567Z + length = 2 +2025-11-24T08:55:38.3420121Z + separator = "-" +2025-11-24T08:55:38.3420593Z } +2025-11-24T08:55:38.3420802Z +2025-11-24T08:55:38.3421144Z  # tls_private_key.admin will be created +2025-11-24T08:55:38.3421795Z  + resource "tls_private_key" "admin" { +2025-11-24T08:55:38.3422396Z + algorithm = "ECDSA" +2025-11-24T08:55:38.3423225Z + ecdsa_curve = "P256" +2025-11-24T08:55:38.3423937Z + id = (known after apply) +2025-11-24T08:55:38.3424677Z + private_key_openssh = (sensitive value) +2025-11-24T08:55:38.3425418Z + private_key_pem = (sensitive value) +2025-11-24T08:55:38.3426143Z + private_key_pem_pkcs8 = (sensitive value) +2025-11-24T08:55:38.3426898Z + public_key_fingerprint_md5 = (known after apply) +2025-11-24T08:55:38.3427652Z + public_key_fingerprint_sha256 = (known after apply) +2025-11-24T08:55:38.3428550Z + public_key_openssh = (known after apply) +2025-11-24T08:55:38.3429339Z + public_key_pem = (known after apply) +2025-11-24T08:55:38.3430028Z + rsa_bits = 2048 +2025-11-24T08:55:38.3430523Z } +2025-11-24T08:55:38.3430805Z +2025-11-24T08:55:38.3431089Z Plan: 36 to add, 0 to change, 0 to destroy. +2025-11-24T08:55:38.3431460Z +2025-11-24T08:55:38.3431688Z Changes to Outputs: +2025-11-24T08:55:38.3432204Z + adminhost = (sensitive value) +2025-11-24T08:55:38.3433111Z + resource_fallback_info = { +2025-11-24T08:55:38.3433736Z + available_locations = [ +2025-11-24T08:55:38.3434256Z + "nbg1", +2025-11-24T08:55:38.3434819Z + "hel1", +2025-11-24T08:55:38.3435373Z + "fsn1", +2025-11-24T08:55:38.3435848Z + "ash", +2025-11-24T08:55:38.3436393Z + "hil", +2025-11-24T08:55:38.3436929Z + "sin", +2025-11-24T08:55:38.3437355Z ] +2025-11-24T08:55:38.3437898Z + available_medium_types = [ +2025-11-24T08:55:38.3438462Z + "cx33", +2025-11-24T08:55:38.3438976Z + "cx43", +2025-11-24T08:55:38.3439532Z + "cpx32", +2025-11-24T08:55:38.3439969Z ] +2025-11-24T08:55:38.3440495Z + available_small_types = [ +2025-11-24T08:55:38.3441082Z + "cx23", +2025-11-24T08:55:38.3441552Z + "cx33", +2025-11-24T08:55:38.3442109Z + "cpx22", +2025-11-24T08:55:38.3442590Z ] +2025-11-24T08:55:38.3443231Z + requested_locations = [ +2025-11-24T08:55:38.3443851Z + "fsn1", +2025-11-24T08:55:38.3444415Z + "hel1", +2025-11-24T08:55:38.3444877Z + "nbg1", +2025-11-24T08:55:38.3445397Z ] +2025-11-24T08:55:38.3445894Z + requested_medium_types = [ +2025-11-24T08:55:38.3446472Z + "cx33", +2025-11-24T08:55:38.3452981Z + "cx43", +2025-11-24T08:55:38.3453567Z + "cpx32", +2025-11-24T08:55:38.3454082Z ] +2025-11-24T08:55:38.3454642Z + requested_small_types = [ +2025-11-24T08:55:38.3455532Z + "cx23", +2025-11-24T08:55:38.3456044Z + "cx33", +2025-11-24T08:55:38.3456655Z + "cpx22", +2025-11-24T08:55:38.3457211Z ] +2025-11-24T08:55:38.3457692Z + selected_location = "fsn1" +2025-11-24T08:55:38.3458395Z + selected_medium_type = "cx33" +2025-11-24T08:55:38.3459064Z + selected_small_type = "cx23" +2025-11-24T08:55:38.3459656Z } +2025-11-24T08:55:38.3460129Z + selected_location = "fsn1" +2025-11-24T08:55:38.3460803Z + selected_server_types = { +2025-11-24T08:55:38.3461458Z + medium_server_type = "cx33" +2025-11-24T08:55:38.3462066Z + small_server_type = "cx23" +2025-11-24T08:55:38.3462589Z } +2025-11-24T08:55:38.3463345Z + ssh_private_key = (sensitive value) +2025-11-24T08:55:38.3464065Z + static-inventory = (sensitive value) +2025-11-24T08:55:38.4565486Z null_resource.deployment_info: Creating... +2025-11-24T08:55:38.4578257Z null_resource.deployment_info: Provisioning with 'local-exec'... +2025-11-24T08:55:38.4583277Z null_resource.deployment_info (local-exec): Executing: ["/bin/sh" "-c" "echo \"VALIDATION PASSED: Deploying Wire offline infrastructure\"\necho \"Location: fsn1\"\necho \"Database server type: cx23\"\necho \"Kubernetes server type: cx33\"\necho \"Total instances: 15\"\n"] +2025-11-24T08:55:38.4610977Z null_resource.deployment_info (local-exec): VALIDATION PASSED: Deploying Wire offline infrastructure +2025-11-24T08:55:38.4613292Z null_resource.deployment_info (local-exec): Location: fsn1 +2025-11-24T08:55:38.4615172Z null_resource.deployment_info (local-exec): Database server type: cx23 +2025-11-24T08:55:38.4620908Z random_pet.adminhost: Creating... +2025-11-24T08:55:38.4627340Z null_resource.deployment_info (local-exec): Kubernetes server type: cx33 +2025-11-24T08:55:38.4629325Z null_resource.deployment_info (local-exec): Total instances: 15 +2025-11-24T08:55:38.4630926Z null_resource.deployment_info: Creation complete after 0s [id=6097919591817865521] +2025-11-24T08:55:38.4633981Z random_pet.assethost: Creating... +2025-11-24T08:55:38.4636504Z tls_private_key.admin: Creating... +2025-11-24T08:55:38.4683142Z random_pet.elasticsearch[0]: Creating... +2025-11-24T08:55:38.4700956Z tls_private_key.admin: Creation complete after 0s [id=9a5802b646d18231eda9b090be5144478e6bd632] +2025-11-24T08:55:38.4707746Z random_pet.postgresql[0]: Creating... +2025-11-24T08:55:38.4740009Z random_pet.kubenode[2]: Creating... +2025-11-24T08:55:38.4771964Z random_pet.cassandra[0]: Creating... +2025-11-24T08:55:38.4773286Z random_pet.minio[1]: Creating... +2025-11-24T08:55:38.4776562Z random_pet.postgresql[2]: Creating... +2025-11-24T08:55:38.4778966Z random_pet.postgresql[0]: Creation complete after 0s [id=glorious-calf] +2025-11-24T08:55:38.4785398Z random_pet.postgresql[1]: Creating... +2025-11-24T08:55:38.4816888Z random_pet.minio[1]: Creation complete after 0s [id=striking-malamute] +2025-11-24T08:55:38.4824755Z random_pet.elasticsearch[0]: Creation complete after 0s [id=amusing-pup] +2025-11-24T08:55:38.4826525Z random_pet.assethost: Creation complete after 0s [id=settling-barnacle] +2025-11-24T08:55:38.4828328Z random_pet.kubenode[2]: Creation complete after 0s [id=renewed-asp] +2025-11-24T08:55:38.4829758Z random_pet.adminhost: Creation complete after 0s [id=relative-moray] +2025-11-24T08:55:38.4831115Z random_pet.postgresql[2]: Creation complete after 0s [id=sound-marten] +2025-11-24T08:55:38.4849007Z random_pet.minio[0]: Creating... +2025-11-24T08:55:38.4867136Z random_pet.postgresql[1]: Creation complete after 0s [id=hardy-glider] +2025-11-24T08:55:38.4874355Z random_pet.cassandra[2]: Creating... +2025-11-24T08:55:38.4901002Z random_pet.elasticsearch[1]: Creating... +2025-11-24T08:55:38.4989315Z random_pet.cassandra[1]: Creating... +2025-11-24T08:55:38.5023812Z random_pet.kubenode[0]: Creating... +2025-11-24T08:55:38.5094587Z random_pet.kubenode[1]: Creating... +2025-11-24T08:55:38.5107360Z random_pet.cassandra[0]: Creation complete after 1s [id=tops-fowl] +2025-11-24T08:55:38.5138137Z random_pet.cassandra[1]: Creation complete after 1s [id=noted-manatee] +2025-11-24T08:55:38.5181029Z random_pet.main: Creating... +2025-11-24T08:55:38.5195293Z random_pet.main: Creation complete after 0s [id=guided-octopus] +2025-11-24T08:55:38.5197424Z random_pet.cassandra[2]: Creation complete after 1s [id=improved-teal] +2025-11-24T08:55:38.5199615Z random_pet.kubenode[0]: Creation complete after 0s [id=super-marlin] +2025-11-24T08:55:38.5200672Z random_pet.minio[0]: Creation complete after 1s [id=aware-zebra] +2025-11-24T08:55:38.5201692Z random_pet.elasticsearch[1]: Creation complete after 1s [id=renewing-bear] +2025-11-24T08:55:38.5247098Z hcloud_ssh_key.adminhost: Creating... +2025-11-24T08:55:38.5345582Z random_pet.kubenode[1]: Creation complete after 0s [id=teaching-gobbler] +2025-11-24T08:55:38.5403942Z hcloud_network.main: Creating... +2025-11-24T08:55:39.1594953Z hcloud_network.main: Creation complete after 0s [id=11673781] +2025-11-24T08:55:39.1640219Z hcloud_network_subnet.main: Creating... +2025-11-24T08:55:39.3428497Z hcloud_ssh_key.adminhost: Creation complete after 0s [id=104061702] +2025-11-24T08:55:39.4239781Z hcloud_network_subnet.main: Creation complete after 0s [id=11673781-10.1.1.0/24] +2025-11-24T08:55:39.4396681Z hcloud_server.postgresql[0]: Creating... +2025-11-24T08:55:39.4409700Z hcloud_server.elasticsearch[0]: Creating... +2025-11-24T08:55:39.4411273Z hcloud_server.minio[0]: Creating... +2025-11-24T08:55:39.4483241Z hcloud_server.cassandra[0]: Creating... +2025-11-24T08:55:39.4485192Z hcloud_server.assethost: Creating... +2025-11-24T08:55:39.4513293Z hcloud_server.kubenode[1]: Creating... +2025-11-24T08:55:39.4524993Z hcloud_server.kubenode[2]: Creating... +2025-11-24T08:55:39.4527836Z hcloud_server.adminhost: Creating... +2025-11-24T08:55:39.4530710Z hcloud_server.minio[1]: Creating... +2025-11-24T08:55:39.4531768Z hcloud_server.kubenode[0]: Creating... +2025-11-24T08:55:49.4396611Z hcloud_server.postgresql[0]: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4406040Z hcloud_server.elasticsearch[0]: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4416808Z hcloud_server.minio[0]: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4488668Z hcloud_server.cassandra[0]: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4530510Z hcloud_server.assethost: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4531411Z hcloud_server.kubenode[2]: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4532209Z hcloud_server.adminhost: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4533296Z hcloud_server.minio[1]: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4534129Z hcloud_server.kubenode[1]: Still creating... [00m10s elapsed] +2025-11-24T08:55:49.4541410Z hcloud_server.kubenode[0]: Still creating... [00m10s elapsed] +2025-11-24T08:55:59.4402930Z hcloud_server.postgresql[0]: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4412998Z hcloud_server.elasticsearch[0]: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4423533Z hcloud_server.minio[0]: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4496103Z hcloud_server.assethost: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4497356Z hcloud_server.cassandra[0]: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4537414Z hcloud_server.minio[1]: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4538293Z hcloud_server.kubenode[2]: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4539139Z hcloud_server.adminhost: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4539949Z hcloud_server.kubenode[1]: Still creating... [00m20s elapsed] +2025-11-24T08:55:59.4548467Z hcloud_server.kubenode[0]: Still creating... [00m20s elapsed] +2025-11-24T08:56:09.4407155Z hcloud_server.postgresql[0]: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4421729Z hcloud_server.elasticsearch[0]: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4433707Z hcloud_server.minio[0]: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4508428Z hcloud_server.cassandra[0]: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4509733Z hcloud_server.assethost: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4540300Z hcloud_server.kubenode[1]: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4543486Z hcloud_server.kubenode[2]: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4546640Z hcloud_server.minio[1]: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4549445Z hcloud_server.adminhost: Still creating... [00m30s elapsed] +2025-11-24T08:56:09.4552271Z hcloud_server.kubenode[0]: Still creating... [00m30s elapsed] +2025-11-24T08:56:19.4412599Z hcloud_server.postgresql[0]: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4422863Z hcloud_server.elasticsearch[0]: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4433348Z hcloud_server.minio[0]: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4515746Z hcloud_server.assethost: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4547293Z hcloud_server.cassandra[0]: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4548212Z hcloud_server.kubenode[2]: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4549072Z hcloud_server.minio[1]: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4549915Z hcloud_server.kubenode[1]: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4550745Z hcloud_server.adminhost: Still creating... [00m40s elapsed] +2025-11-24T08:56:19.4557783Z hcloud_server.kubenode[0]: Still creating... [00m40s elapsed] +2025-11-24T08:56:20.8677216Z hcloud_server.assethost: Creation complete after 42s [id=113859098] +2025-11-24T08:56:20.8773686Z hcloud_server.postgresql[1]: Creating... +2025-11-24T08:56:29.4413568Z hcloud_server.postgresql[0]: Still creating... [00m50s elapsed] +2025-11-24T08:56:29.4423503Z hcloud_server.elasticsearch[0]: Still creating... [00m50s elapsed] +2025-11-24T08:56:29.4434146Z hcloud_server.minio[0]: Still creating... [00m50s elapsed] +2025-11-24T08:56:29.4526292Z hcloud_server.cassandra[0]: Still creating... [00m50s elapsed] +2025-11-24T08:56:29.4557692Z hcloud_server.adminhost: Still creating... [00m50s elapsed] +2025-11-24T08:56:29.4558532Z hcloud_server.kubenode[1]: Still creating... [00m50s elapsed] +2025-11-24T08:56:29.4568723Z hcloud_server.minio[1]: Still creating... [00m50s elapsed] +2025-11-24T08:56:29.4569565Z hcloud_server.kubenode[2]: Still creating... [00m50s elapsed] +2025-11-24T08:56:29.4570728Z hcloud_server.kubenode[0]: Still creating... [00m50s elapsed] +2025-11-24T08:56:30.7563823Z hcloud_server.adminhost: Creation complete after 52s [id=113859097] +2025-11-24T08:56:30.7653409Z hcloud_server.cassandra[2]: Creating... +2025-11-24T08:56:30.8781033Z hcloud_server.postgresql[1]: Still creating... [00m10s elapsed] +2025-11-24T08:56:39.4419400Z hcloud_server.postgresql[0]: Still creating... [01m00s elapsed] +2025-11-24T08:56:39.4430687Z hcloud_server.elasticsearch[0]: Still creating... [01m00s elapsed] +2025-11-24T08:56:39.4440057Z hcloud_server.minio[0]: Still creating... [01m00s elapsed] +2025-11-24T08:56:39.4531796Z hcloud_server.cassandra[0]: Still creating... [01m00s elapsed] +2025-11-24T08:56:39.4563787Z hcloud_server.minio[1]: Still creating... [01m00s elapsed] +2025-11-24T08:56:39.4564588Z hcloud_server.kubenode[1]: Still creating... [01m00s elapsed] +2025-11-24T08:56:39.4565357Z hcloud_server.kubenode[2]: Still creating... [01m00s elapsed] +2025-11-24T08:56:39.4574852Z hcloud_server.kubenode[0]: Still creating... [01m00s elapsed] +2025-11-24T08:56:40.7661211Z hcloud_server.cassandra[2]: Still creating... [00m10s elapsed] +2025-11-24T08:56:40.8785206Z hcloud_server.postgresql[1]: Still creating... [00m20s elapsed] +2025-11-24T08:56:45.1630938Z hcloud_server.postgresql[0]: Creation complete after 1m6s [id=113859092] +2025-11-24T08:56:45.1708436Z hcloud_server.elasticsearch[1]: Creating... +2025-11-24T08:56:45.1981084Z hcloud_server.elasticsearch[0]: Creation complete after 1m6s [id=113859093] +2025-11-24T08:56:45.2070911Z hcloud_server.cassandra[1]: Creating... +2025-11-24T08:56:45.2413487Z hcloud_server.cassandra[0]: Creation complete after 1m6s [id=113859095] +2025-11-24T08:56:45.2445263Z hcloud_server.kubenode[2]: Creation complete after 1m6s [id=113859096] +2025-11-24T08:56:45.2529107Z hcloud_server.postgresql[2]: Creating... +2025-11-24T08:56:45.2632431Z hcloud_server.minio[1]: Creation complete after 1m6s [id=113859099] +2025-11-24T08:56:45.2714938Z hcloud_server.kubenode[0]: Creation complete after 1m6s [id=113859101] +2025-11-24T08:56:45.2914270Z hcloud_server.kubenode[1]: Creation complete after 1m6s [id=113859100] +2025-11-24T08:56:49.4442363Z hcloud_server.minio[0]: Still creating... [01m10s elapsed] +2025-11-24T08:56:50.7663128Z hcloud_server.cassandra[2]: Still creating... [00m20s elapsed] +2025-11-24T08:56:50.8795935Z hcloud_server.postgresql[1]: Still creating... [00m30s elapsed] +2025-11-24T08:56:55.1719848Z hcloud_server.elasticsearch[1]: Still creating... [00m10s elapsed] +2025-11-24T08:56:55.2081538Z hcloud_server.cassandra[1]: Still creating... [00m10s elapsed] +2025-11-24T08:56:55.2533369Z hcloud_server.postgresql[2]: Still creating... [00m10s elapsed] +2025-11-24T08:56:59.4443967Z hcloud_server.minio[0]: Still creating... [01m20s elapsed] +2025-11-24T08:57:00.7669857Z hcloud_server.cassandra[2]: Still creating... [00m30s elapsed] +2025-11-24T08:57:00.8802239Z hcloud_server.postgresql[1]: Still creating... [00m40s elapsed] +2025-11-24T08:57:01.3618252Z hcloud_server.minio[0]: Creation complete after 1m22s [id=113859094] +2025-11-24T08:57:05.1732544Z hcloud_server.elasticsearch[1]: Still creating... [00m20s elapsed] +2025-11-24T08:57:05.2084556Z hcloud_server.cassandra[1]: Still creating... [00m20s elapsed] +2025-11-24T08:57:05.2536431Z hcloud_server.postgresql[2]: Still creating... [00m20s elapsed] +2025-11-24T08:57:10.4220636Z hcloud_server.postgresql[1]: Creation complete after 49s [id=113859131] +2025-11-24T08:57:10.7680687Z hcloud_server.cassandra[2]: Still creating... [00m40s elapsed] +2025-11-24T08:57:15.1746828Z hcloud_server.elasticsearch[1]: Still creating... [00m30s elapsed] +2025-11-24T08:57:15.2088341Z hcloud_server.cassandra[1]: Still creating... [00m30s elapsed] +2025-11-24T08:57:15.2540642Z hcloud_server.postgresql[2]: Still creating... [00m30s elapsed] +2025-11-24T08:57:20.7690333Z hcloud_server.cassandra[2]: Still creating... [00m50s elapsed] +2025-11-24T08:57:25.1756226Z hcloud_server.elasticsearch[1]: Still creating... [00m40s elapsed] +2025-11-24T08:57:25.2097925Z hcloud_server.cassandra[1]: Still creating... [00m40s elapsed] +2025-11-24T08:57:25.2550421Z hcloud_server.postgresql[2]: Still creating... [00m40s elapsed] +2025-11-24T08:57:30.7691525Z hcloud_server.cassandra[2]: Still creating... [01m00s elapsed] +2025-11-24T08:57:34.7132569Z hcloud_server.elasticsearch[1]: Creation complete after 50s [id=113859143] +2025-11-24T08:57:35.2105054Z hcloud_server.cassandra[1]: Still creating... [00m50s elapsed] +2025-11-24T08:57:35.2557676Z hcloud_server.postgresql[2]: Still creating... [00m50s elapsed] +2025-11-24T08:57:36.4472986Z hcloud_server.cassandra[2]: Creation complete after 1m5s [id=113859135] +2025-11-24T08:57:45.2113046Z hcloud_server.cassandra[1]: Still creating... [01m00s elapsed] +2025-11-24T08:57:45.2564942Z hcloud_server.postgresql[2]: Still creating... [01m00s elapsed] +2025-11-24T08:57:50.8862150Z hcloud_server.cassandra[1]: Creation complete after 1m6s [id=113859144] +2025-11-24T08:57:50.9119498Z hcloud_server.postgresql[2]: Creation complete after 1m6s [id=113859145] +2025-11-24T08:57:50.9246219Z  +2025-11-24T08:57:50.9247860Z Apply complete! Resources: 36 added, 0 changed, 0 destroyed. +2025-11-24T08:57:50.9248723Z  +2025-11-24T08:57:50.9249415Z Outputs: +2025-11-24T08:57:50.9249756Z +2025-11-24T08:57:50.9250142Z adminhost = +2025-11-24T08:57:50.9250865Z resource_fallback_info = { +2025-11-24T08:57:50.9251562Z "available_locations" = [ +2025-11-24T08:57:50.9252367Z "nbg1", +2025-11-24T08:57:50.9252951Z "hel1", +2025-11-24T08:57:50.9253317Z "fsn1", +2025-11-24T08:57:50.9253676Z "ash", +2025-11-24T08:57:50.9254039Z "hil", +2025-11-24T08:57:50.9254397Z "sin", +2025-11-24T08:57:50.9254748Z ] +2025-11-24T08:57:50.9255126Z "available_medium_types" = [ +2025-11-24T08:57:50.9255542Z "cx33", +2025-11-24T08:57:50.9255896Z "cx43", +2025-11-24T08:57:50.9256272Z "cpx32", +2025-11-24T08:57:50.9256637Z ] +2025-11-24T08:57:50.9257006Z "available_small_types" = [ +2025-11-24T08:57:50.9267519Z "cx23", +2025-11-24T08:57:50.9267934Z "cx33", +2025-11-24T08:57:50.9268516Z "cpx22", +2025-11-24T08:57:50.9269036Z ] +2025-11-24T08:57:50.9269648Z "requested_locations" = [ +2025-11-24T08:57:50.9270291Z "fsn1", +2025-11-24T08:57:50.9270906Z "hel1", +2025-11-24T08:57:50.9271470Z "nbg1", +2025-11-24T08:57:50.9272032Z ] +2025-11-24T08:57:50.9272812Z "requested_medium_types" = [ +2025-11-24T08:57:50.9273544Z "cx33", +2025-11-24T08:57:50.9274175Z "cx43", +2025-11-24T08:57:50.9274811Z "cpx32", +2025-11-24T08:57:50.9275441Z ] +2025-11-24T08:57:50.9276088Z "requested_small_types" = [ +2025-11-24T08:57:50.9276811Z "cx23", +2025-11-24T08:57:50.9277455Z "cx33", +2025-11-24T08:57:50.9278131Z "cpx22", +2025-11-24T08:57:50.9278830Z ] +2025-11-24T08:57:50.9279491Z "selected_location" = "fsn1" +2025-11-24T08:57:50.9280272Z "selected_medium_type" = "cx33" +2025-11-24T08:57:50.9281100Z "selected_small_type" = "cx23" +2025-11-24T08:57:50.9281863Z } +2025-11-24T08:57:50.9282583Z selected_location = "fsn1" +2025-11-24T08:57:50.9283829Z selected_server_types = { +2025-11-24T08:57:50.9284598Z "medium_server_type" = "cx33" +2025-11-24T08:57:50.9285228Z "small_server_type" = "cx23" +2025-11-24T08:57:50.9285878Z } +2025-11-24T08:57:50.9286280Z ssh_private_key = +2025-11-24T08:57:50.9286753Z static-inventory = +2025-11-24T08:57:50.9287275Z Infrastructure deployment successful on attempt 1! +2025-11-24T08:57:50.9287618Z +2025-11-24T08:57:50.9287904Z Infrastructure ready! Proceeding with application deployment... +2025-11-24T08:57:51.1487007Z Agent pid 34539 +2025-11-24T08:57:51.1757630Z Identity added: (stdin) ((stdin)) +2025-11-24T08:57:51.8618762Z Warning: Permanently added '23.88.33.8' (ED25519) to the list of known hosts. +2025-11-24T08:57:54.0901477Z debs-jammy.tar +2025-11-24T08:58:22.2525260Z binaries.tar +2025-11-24T08:58:45.5295652Z containers-adminhost/ +2025-11-24T08:58:45.5298287Z containers-adminhost/container-wire-server-deploy.tgz +2025-11-24T09:00:13.4915710Z containers-adminhost/quay.io_wire_zauth_5.23.0.tar +2025-11-24T09:00:18.6550107Z containers-adminhost/index.txt +2025-11-24T09:00:18.6550671Z containers-helm.tar +2025-11-24T09:07:17.9925364Z containers-system.tar +2025-11-24T09:08:04.4514215Z charts/ +2025-11-24T09:08:04.4515016Z charts/fake-aws-sqs/ +2025-11-24T09:08:04.4515712Z charts/fake-aws-sqs/Chart.yaml +2025-11-24T09:08:04.4516309Z charts/fake-aws-sqs/values.yaml +2025-11-24T09:08:04.4516800Z charts/fake-aws-sqs/templates/ +2025-11-24T09:08:04.4517455Z charts/fake-aws-sqs/templates/deployment.yaml +2025-11-24T09:08:04.4518405Z charts/fake-aws-sqs/templates/configmap.yaml +2025-11-24T09:08:04.4519214Z charts/fake-aws-sqs/templates/service.yaml +2025-11-24T09:08:04.4519821Z charts/fake-aws-sqs/templates/_helpers.tpl +2025-11-24T09:08:04.4520317Z charts/fluent-bit/ +2025-11-24T09:08:04.4520740Z charts/fluent-bit/Chart.yaml +2025-11-24T09:08:04.4521628Z charts/fluent-bit/requirements.lock +2025-11-24T09:08:04.4522118Z charts/fluent-bit/requirements.yaml +2025-11-24T09:08:04.4522577Z charts/fluent-bit/values.yaml +2025-11-24T09:08:04.4529867Z charts/fluent-bit/charts/ +2025-11-24T09:08:04.4530365Z charts/fluent-bit/charts/fluent-bit/ +2025-11-24T09:08:04.4530892Z charts/fluent-bit/charts/fluent-bit/Chart.yaml +2025-11-24T09:08:04.4531436Z charts/fluent-bit/charts/fluent-bit/.helmignore +2025-11-24T09:08:04.4532366Z charts/fluent-bit/charts/fluent-bit/dashboards/ +2025-11-24T09:08:04.4533260Z charts/fluent-bit/charts/fluent-bit/dashboards/fluent-bit.json +2025-11-24T09:08:04.4534539Z charts/fluent-bit/charts/fluent-bit/README.md +2025-11-24T09:08:04.4535293Z charts/fluent-bit/charts/fluent-bit/values.yaml +2025-11-24T09:08:04.4535802Z charts/fluent-bit/charts/fluent-bit/ci/ +2025-11-24T09:08:04.4536411Z charts/fluent-bit/charts/fluent-bit/ci/ci-values.yaml +2025-11-24T09:08:04.4537265Z charts/fluent-bit/charts/fluent-bit/templates/ +2025-11-24T09:08:04.4538117Z charts/fluent-bit/charts/fluent-bit/templates/servicemonitor.yaml +2025-11-24T09:08:04.4538963Z charts/fluent-bit/charts/fluent-bit/templates/pdb.yaml +2025-11-24T09:08:04.4539924Z charts/fluent-bit/charts/fluent-bit/templates/deployment.yaml +2025-11-24T09:08:04.4540790Z charts/fluent-bit/charts/fluent-bit/templates/configmap-luascripts.yaml +2025-11-24T09:08:04.4541659Z charts/fluent-bit/charts/fluent-bit/templates/psp.yaml +2025-11-24T09:08:04.4542544Z charts/fluent-bit/charts/fluent-bit/templates/configmap.yaml +2025-11-24T09:08:04.4543651Z charts/fluent-bit/charts/fluent-bit/templates/NOTES.txt +2025-11-24T09:08:04.4544579Z charts/fluent-bit/charts/fluent-bit/templates/serviceaccount.yaml +2025-11-24T09:08:04.4545652Z charts/fluent-bit/charts/fluent-bit/templates/daemonset.yaml +2025-11-24T09:08:04.4546287Z charts/fluent-bit/charts/fluent-bit/templates/scc.yaml +2025-11-24T09:08:04.4546925Z charts/fluent-bit/charts/fluent-bit/templates/clusterrole.yaml +2025-11-24T09:08:04.4547550Z charts/fluent-bit/charts/fluent-bit/templates/service.yaml +2025-11-24T09:08:04.4548140Z charts/fluent-bit/charts/fluent-bit/templates/hpa.yaml +2025-11-24T09:08:04.4548711Z charts/fluent-bit/charts/fluent-bit/templates/_pod.tpl +2025-11-24T09:08:04.4549272Z charts/fluent-bit/charts/fluent-bit/templates/tests/ +2025-11-24T09:08:04.4549923Z charts/fluent-bit/charts/fluent-bit/templates/tests/test-connection.yaml +2025-11-24T09:08:04.4551124Z charts/fluent-bit/charts/fluent-bit/templates/networkpolicy.yaml +2025-11-24T09:08:04.4551758Z charts/fluent-bit/charts/fluent-bit/templates/vpa.yaml +2025-11-24T09:08:04.4552435Z charts/fluent-bit/charts/fluent-bit/templates/configmap-dashboards.yaml +2025-11-24T09:08:04.4553301Z charts/fluent-bit/charts/fluent-bit/templates/_helpers.tpl +2025-11-24T09:08:04.4553898Z charts/fluent-bit/charts/fluent-bit/templates/ingress.yaml +2025-11-24T09:08:04.4554541Z charts/fluent-bit/charts/fluent-bit/templates/prometheusrule.yaml +2025-11-24T09:08:04.4555253Z charts/fluent-bit/charts/fluent-bit/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.4555835Z charts/rabbitmq/ +2025-11-24T09:08:04.4556231Z charts/rabbitmq/Chart.yaml +2025-11-24T09:08:04.4556874Z charts/rabbitmq/requirements.lock +2025-11-24T09:08:04.4557841Z charts/rabbitmq/requirements.yaml +2025-11-24T09:08:04.4558325Z charts/rabbitmq/values.yaml +2025-11-24T09:08:04.4558964Z charts/rabbitmq/charts/ +2025-11-24T09:08:04.4559664Z charts/rabbitmq/charts/rabbitmq/ +2025-11-24T09:08:04.4560139Z charts/rabbitmq/charts/rabbitmq/Chart.lock +2025-11-24T09:08:04.4560674Z charts/rabbitmq/charts/rabbitmq/Chart.yaml +2025-11-24T09:08:04.4561513Z charts/rabbitmq/charts/rabbitmq/.helmignore +2025-11-24T09:08:04.4562113Z charts/rabbitmq/charts/rabbitmq/README.md +2025-11-24T09:08:04.4563097Z charts/rabbitmq/charts/rabbitmq/values.yaml +2025-11-24T09:08:04.4563622Z charts/rabbitmq/charts/rabbitmq/charts/ +2025-11-24T09:08:04.4564125Z charts/rabbitmq/charts/rabbitmq/charts/common/ +2025-11-24T09:08:04.4564884Z charts/rabbitmq/charts/rabbitmq/charts/common/Chart.yaml +2025-11-24T09:08:04.4565888Z charts/rabbitmq/charts/rabbitmq/charts/common/.helmignore +2025-11-24T09:08:04.4566770Z charts/rabbitmq/charts/rabbitmq/charts/common/README.md +2025-11-24T09:08:04.4567622Z charts/rabbitmq/charts/rabbitmq/charts/common/values.yaml +2025-11-24T09:08:04.4568219Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/ +2025-11-24T09:08:04.4568880Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.4569601Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_resources.tpl +2025-11-24T09:08:04.4570296Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.4571090Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_names.tpl +2025-11-24T09:08:04.4571808Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.4572522Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.4573537Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_compatibility.tpl +2025-11-24T09:08:04.4574282Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/ +2025-11-24T09:08:04.4581669Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_mongodb.tpl +2025-11-24T09:08:04.4582892Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_mysql.tpl +2025-11-24T09:08:04.4698105Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.4699052Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.4699870Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.4700666Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.4701469Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.4702232Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_images.tpl +2025-11-24T09:08:04.4703181Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.4703893Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_ingress.tpl +2025-11-24T09:08:04.4704603Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.4705313Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.4706034Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.4707012Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.4726981Z charts/rabbitmq/charts/rabbitmq/templates/ +2025-11-24T09:08:04.4727759Z charts/rabbitmq/charts/rabbitmq/templates/servicemonitor.yaml +2025-11-24T09:08:04.4728397Z charts/rabbitmq/charts/rabbitmq/templates/pdb.yaml +2025-11-24T09:08:04.4729009Z charts/rabbitmq/charts/rabbitmq/templates/svc-headless.yaml +2025-11-24T09:08:04.4729639Z charts/rabbitmq/charts/rabbitmq/templates/validation.yaml +2025-11-24T09:08:04.4730289Z charts/rabbitmq/charts/rabbitmq/templates/secrets.yaml +2025-11-24T09:08:04.4730880Z charts/rabbitmq/charts/rabbitmq/templates/NOTES.txt +2025-11-24T09:08:04.4731473Z charts/rabbitmq/charts/rabbitmq/templates/serviceaccount.yaml +2025-11-24T09:08:04.4732095Z charts/rabbitmq/charts/rabbitmq/templates/rolebinding.yaml +2025-11-24T09:08:04.4732981Z charts/rabbitmq/charts/rabbitmq/templates/role.yaml +2025-11-24T09:08:04.4733604Z charts/rabbitmq/charts/rabbitmq/templates/init-configmap.yaml +2025-11-24T09:08:04.4734232Z charts/rabbitmq/charts/rabbitmq/templates/extra-list.yaml +2025-11-24T09:08:04.4734840Z charts/rabbitmq/charts/rabbitmq/templates/tls-secrets.yaml +2025-11-24T09:08:04.4735464Z charts/rabbitmq/charts/rabbitmq/templates/networkpolicy.yaml +2025-11-24T09:08:04.4736092Z charts/rabbitmq/charts/rabbitmq/templates/config-secret.yaml +2025-11-24T09:08:04.4736700Z charts/rabbitmq/charts/rabbitmq/templates/_helpers.tpl +2025-11-24T09:08:04.4737272Z charts/rabbitmq/charts/rabbitmq/templates/ingress.yaml +2025-11-24T09:08:04.4738127Z charts/rabbitmq/charts/rabbitmq/templates/prometheusrule.yaml +2025-11-24T09:08:04.4738738Z charts/rabbitmq/charts/rabbitmq/templates/svc.yaml +2025-11-24T09:08:04.4739349Z charts/rabbitmq/charts/rabbitmq/templates/ingress-tls-secrets.yaml +2025-11-24T09:08:04.4739996Z charts/rabbitmq/charts/rabbitmq/templates/statefulset.yaml +2025-11-24T09:08:04.4740612Z charts/rabbitmq/charts/rabbitmq/values.schema.json +2025-11-24T09:08:04.4741112Z charts/aws-ingress/ +2025-11-24T09:08:04.4741511Z charts/aws-ingress/Chart.yaml +2025-11-24T09:08:04.4741961Z charts/aws-ingress/.helmignore +2025-11-24T09:08:04.4742484Z charts/aws-ingress/values.yaml +2025-11-24T09:08:04.4743106Z charts/aws-ingress/templates/ +2025-11-24T09:08:04.4743598Z charts/aws-ingress/templates/ELB_account_pages_https.yaml +2025-11-24T09:08:04.4744184Z charts/aws-ingress/templates/ELB_team_settings_https.yaml +2025-11-24T09:08:04.4744746Z charts/aws-ingress/templates/ELB_webapp_https.yaml +2025-11-24T09:08:04.4745275Z charts/aws-ingress/templates/ELB_s3minio_https.yaml +2025-11-24T09:08:04.4745807Z charts/aws-ingress/templates/ELB_nginz_wss.yaml +2025-11-24T09:08:04.4746316Z charts/aws-ingress/templates/_helpers.tpl +2025-11-24T09:08:04.4857332Z charts/aws-ingress/templates/ELB_nginz_https.yaml +2025-11-24T09:08:04.4857899Z charts/minio-external/ +2025-11-24T09:08:04.4858323Z charts/minio-external/Chart.yaml +2025-11-24T09:08:04.4858777Z charts/minio-external/values.yaml +2025-11-24T09:08:04.4859357Z charts/minio-external/templates/ +2025-11-24T09:08:04.4860181Z charts/minio-external/templates/helpers.tpl +2025-11-24T09:08:04.4861083Z charts/minio-external/templates/endpoint.yaml +2025-11-24T09:08:04.4862031Z charts/webapp/ +2025-11-24T09:08:04.4862943Z charts/webapp/Chart.yaml +2025-11-24T09:08:04.4863667Z charts/webapp/.helmignore +2025-11-24T09:08:04.4864476Z charts/webapp/values.yaml +2025-11-24T09:08:04.4865265Z charts/webapp/templates/ +2025-11-24T09:08:04.4865969Z charts/webapp/templates/deployment.yaml +2025-11-24T09:08:04.4866924Z charts/webapp/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.4867893Z charts/webapp/templates/_helpers.tpl +2025-11-24T09:08:04.4868749Z charts/k8ssandra-operator/ +2025-11-24T09:08:04.4869748Z charts/k8ssandra-operator/Chart.yaml +2025-11-24T09:08:04.4870630Z charts/k8ssandra-operator/requirements.lock +2025-11-24T09:08:04.4871601Z charts/k8ssandra-operator/requirements.yaml +2025-11-24T09:08:04.4872130Z charts/k8ssandra-operator/values.yaml +2025-11-24T09:08:04.4873284Z charts/k8ssandra-operator/charts/ +2025-11-24T09:08:04.4873800Z charts/k8ssandra-operator/charts/k8ssandra-operator/ +2025-11-24T09:08:04.4874505Z charts/k8ssandra-operator/charts/k8ssandra-operator/Chart.lock +2025-11-24T09:08:04.4875151Z charts/k8ssandra-operator/charts/k8ssandra-operator/Chart.yaml +2025-11-24T09:08:04.4875788Z charts/k8ssandra-operator/charts/k8ssandra-operator/.helmignore +2025-11-24T09:08:04.4876404Z charts/k8ssandra-operator/charts/k8ssandra-operator/crds/ +2025-11-24T09:08:04.4877121Z charts/k8ssandra-operator/charts/k8ssandra-operator/crds/k8ssandra-operator-crds.yaml +2025-11-24T09:08:04.4877845Z charts/k8ssandra-operator/charts/k8ssandra-operator/README.md +2025-11-24T09:08:04.4889044Z charts/k8ssandra-operator/charts/k8ssandra-operator/values.yaml +2025-11-24T09:08:04.4889699Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/ +2025-11-24T09:08:04.4890391Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/ +2025-11-24T09:08:04.4891189Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/Chart.lock +2025-11-24T09:08:04.4891999Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/Chart.yaml +2025-11-24T09:08:04.4893032Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/.helmignore +2025-11-24T09:08:04.4893859Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/README.md +2025-11-24T09:08:04.4894662Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/values.yaml +2025-11-24T09:08:04.4895670Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/ +2025-11-24T09:08:04.4896514Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/ +2025-11-24T09:08:04.4897394Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/Chart.yaml +2025-11-24T09:08:04.5023772Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/.helmignore +2025-11-24T09:08:04.5024873Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/README.md +2025-11-24T09:08:04.5025845Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/values.yaml +2025-11-24T09:08:04.5027054Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/ +2025-11-24T09:08:04.5028043Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.5029068Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.5030064Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_names.tpl +2025-11-24T09:08:04.5031078Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.5032110Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.5033347Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/ +2025-11-24T09:08:04.5257807Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_mongodb.tpl +2025-11-24T09:08:04.5259201Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_mysql.tpl +2025-11-24T09:08:04.5260509Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.5261816Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.5263349Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.5264939Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.5266261Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.5267504Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_images.tpl +2025-11-24T09:08:04.5268666Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.5277803Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_ingress.tpl +2025-11-24T09:08:04.5278910Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.5279938Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.5280955Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.5281967Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.5283116Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/templates/ +2025-11-24T09:08:04.5284017Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/templates/_helpers.tpl +2025-11-24T09:08:04.5284845Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/ +2025-11-24T09:08:04.5285820Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/Chart.lock +2025-11-24T09:08:04.5286629Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/Chart.yaml +2025-11-24T09:08:04.5287462Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/.helmignore +2025-11-24T09:08:04.5390102Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/crds/ +2025-11-24T09:08:04.5392535Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/crds/cassandradatacenters.yaml +2025-11-24T09:08:04.5395270Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/crds/cassandratasks.yaml +2025-11-24T09:08:04.5397160Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/README.md +2025-11-24T09:08:04.5398910Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/values.yaml +2025-11-24T09:08:04.5400073Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/ +2025-11-24T09:08:04.5408573Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/ +2025-11-24T09:08:04.5409577Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/Chart.lock +2025-11-24T09:08:04.5410559Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/Chart.yaml +2025-11-24T09:08:04.5411549Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/.helmignore +2025-11-24T09:08:04.5412521Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/README.md +2025-11-24T09:08:04.5413718Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/values.yaml +2025-11-24T09:08:04.5414684Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/ +2025-11-24T09:08:04.5415678Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/ +2025-11-24T09:08:04.5416716Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/Chart.yaml +2025-11-24T09:08:04.5417806Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/.helmignore +2025-11-24T09:08:04.5469239Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/README.md +2025-11-24T09:08:04.5470509Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/values.yaml +2025-11-24T09:08:04.5471681Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/ +2025-11-24T09:08:04.5473079Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.5474293Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.5475459Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_names.tpl +2025-11-24T09:08:04.5476628Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.5477816Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.5495223Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/ +2025-11-24T09:08:04.5496502Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_mongodb.tpl +2025-11-24T09:08:04.5498899Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_mysql.tpl +2025-11-24T09:08:04.5500228Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.5501529Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.5503093Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.5504488Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.5505769Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.5507020Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_images.tpl +2025-11-24T09:08:04.5508172Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.5509326Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_ingress.tpl +2025-11-24T09:08:04.5510488Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.5511665Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.5512956Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.5514266Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.5515552Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/templates/ +2025-11-24T09:08:04.5516571Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/templates/_helpers.tpl +2025-11-24T09:08:04.5517622Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/UPGRADE.md +2025-11-24T09:08:04.5518412Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/ +2025-11-24T09:08:04.5519261Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/deployment.yaml +2025-11-24T09:08:04.5520167Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/configmap.yaml +2025-11-24T09:08:04.5521137Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/leader_election_role_binding.yaml +2025-11-24T09:08:04.5522139Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/serviceaccount.yaml +2025-11-24T09:08:04.5523230Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/rolebinding.yaml +2025-11-24T09:08:04.5524141Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/clusterrole.yaml +2025-11-24T09:08:04.5525039Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/role.yaml +2025-11-24T09:08:04.5525943Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/webhook-service.yaml +2025-11-24T09:08:04.5526963Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/validatingwebhookconfiguration.yaml +2025-11-24T09:08:04.5527991Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/leader_election_role.yaml +2025-11-24T09:08:04.5528934Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/_helpers.tpl +2025-11-24T09:08:04.5530018Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.5530821Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/ +2025-11-24T09:08:04.5531609Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/admissionwebhookconfiguration.yaml +2025-11-24T09:08:04.5532402Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/ +2025-11-24T09:08:04.5533290Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/cluster_role_binding.yaml +2025-11-24T09:08:04.5534211Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/cluster_role.yaml +2025-11-24T09:08:04.5534985Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/batch_job.yaml +2025-11-24T09:08:04.5535774Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/service_account.yaml +2025-11-24T09:08:04.5536599Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/serviceaccount-token.yaml +2025-11-24T09:08:04.5537393Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/deployment.yaml +2025-11-24T09:08:04.5538172Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/leader-rolebinding.yaml +2025-11-24T09:08:04.5538945Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/configmap.yaml +2025-11-24T09:08:04.5539695Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/serviceaccount.yaml +2025-11-24T09:08:04.5540460Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/rolebinding.yaml +2025-11-24T09:08:04.5541254Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/webhook-serving-cert.yaml +2025-11-24T09:08:04.5542027Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/clusterrole.yaml +2025-11-24T09:08:04.5542850Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/role.yaml +2025-11-24T09:08:04.5543596Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/webhook-service.yaml +2025-11-24T09:08:04.5544458Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/validatingwebhookconfiguration.yaml +2025-11-24T09:08:04.5545289Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/leader-role.yaml +2025-11-24T09:08:04.5546051Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/_helpers.tpl +2025-11-24T09:08:04.5546771Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/issuer.yaml +2025-11-24T09:08:04.5547622Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.5548251Z charts/backoffice/ +2025-11-24T09:08:04.5548672Z charts/backoffice/Chart.yaml +2025-11-24T09:08:04.5549101Z charts/backoffice/README.md +2025-11-24T09:08:04.5549525Z charts/backoffice/values.yaml +2025-11-24T09:08:04.5549954Z charts/backoffice/templates/ +2025-11-24T09:08:04.5550395Z charts/backoffice/templates/deployment.yaml +2025-11-24T09:08:04.5550897Z charts/backoffice/templates/configmap.yaml +2025-11-24T09:08:04.5551385Z charts/backoffice/templates/NOTES.txt +2025-11-24T09:08:04.5551875Z charts/backoffice/templates/service.yaml +2025-11-24T09:08:04.5552406Z charts/backoffice/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.5553048Z charts/backoffice/templates/helpers.tpl +2025-11-24T09:08:04.5553557Z charts/backoffice/templates/tests/ +2025-11-24T09:08:04.5554035Z charts/backoffice/templates/tests/secret.yaml +2025-11-24T09:08:04.5554585Z charts/backoffice/templates/tests/stern-integration.yaml +2025-11-24T09:08:04.5555150Z charts/backoffice/templates/tests/configmap.yaml +2025-11-24T09:08:04.5586510Z charts/backoffice/templates/_helpers.tpl +2025-11-24T09:08:04.5587267Z charts/databases-ephemeral/ +2025-11-24T09:08:04.5587742Z charts/databases-ephemeral/Chart.yaml +2025-11-24T09:08:04.5588247Z charts/databases-ephemeral/.helmignore +2025-11-24T09:08:04.5588752Z charts/databases-ephemeral/requirements.lock +2025-11-24T09:08:04.5589282Z charts/databases-ephemeral/requirements.yaml +2025-11-24T09:08:04.5589781Z charts/databases-ephemeral/values.yaml +2025-11-24T09:08:04.5590483Z charts/databases-ephemeral/charts/ +2025-11-24T09:08:04.5591000Z charts/databases-ephemeral/charts/redis-ephemeral/ +2025-11-24T09:08:04.5591587Z charts/databases-ephemeral/charts/redis-ephemeral/Chart.yaml +2025-11-24T09:08:04.5592248Z charts/databases-ephemeral/charts/redis-ephemeral/requirements.lock +2025-11-24T09:08:04.5593174Z charts/databases-ephemeral/charts/redis-ephemeral/requirements.yaml +2025-11-24T09:08:04.5594145Z charts/databases-ephemeral/charts/redis-ephemeral/values.yaml +2025-11-24T09:08:04.5594768Z charts/databases-ephemeral/charts/redis-ephemeral/charts/ +2025-11-24T09:08:04.5595527Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/ +2025-11-24T09:08:04.5596676Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/Chart.lock +2025-11-24T09:08:04.5597880Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/Chart.yaml +2025-11-24T09:08:04.5598613Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/.helmignore +2025-11-24T09:08:04.5599336Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/README.md +2025-11-24T09:08:04.5600043Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/values.yaml +2025-11-24T09:08:04.5600748Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/ +2025-11-24T09:08:04.5601456Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/ +2025-11-24T09:08:04.5602250Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/Chart.yaml +2025-11-24T09:08:04.5603214Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/.helmignore +2025-11-24T09:08:04.5604072Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/README.md +2025-11-24T09:08:04.5604905Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/values.yaml +2025-11-24T09:08:04.5605713Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/ +2025-11-24T09:08:04.5606586Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.5607560Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_resources.tpl +2025-11-24T09:08:04.5608496Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.5609392Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_names.tpl +2025-11-24T09:08:04.5610487Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.5611419Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.5612344Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_compatibility.tpl +2025-11-24T09:08:04.5613409Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/ +2025-11-24T09:08:04.5614391Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mongodb.tpl +2025-11-24T09:08:04.5615391Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mysql.tpl +2025-11-24T09:08:04.5616382Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.5617425Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.5618447Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.5619454Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.5620489Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.5621596Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_images.tpl +2025-11-24T09:08:04.5622516Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.5623528Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_ingress.tpl +2025-11-24T09:08:04.5624458Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.5625387Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.5626384Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.5643953Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.5645095Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/ +2025-11-24T09:08:04.5646630Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/tls-secret.yaml +2025-11-24T09:08:04.5656080Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/servicemonitor.yaml +2025-11-24T09:08:04.5657046Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/secret.yaml +2025-11-24T09:08:04.5657982Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/metrics-svc.yaml +2025-11-24T09:08:04.5658984Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/configmap.yaml +2025-11-24T09:08:04.5660481Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/ +2025-11-24T09:08:04.5662004Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/pdb.yaml +2025-11-24T09:08:04.5663722Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/pvc.yaml +2025-11-24T09:08:04.5665257Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/psp.yaml +2025-11-24T09:08:04.5666804Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/serviceaccount.yaml +2025-11-24T09:08:04.5668745Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/service.yaml +2025-11-24T09:08:04.5670438Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/application.yaml +2025-11-24T09:08:04.5672122Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/NOTES.txt +2025-11-24T09:08:04.5673550Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/serviceaccount.yaml +2025-11-24T09:08:04.5674581Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/health-configmap.yaml +2025-11-24T09:08:04.5675487Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/rolebinding.yaml +2025-11-24T09:08:04.5676291Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/role.yaml +2025-11-24T09:08:04.5677151Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/scripts-configmap.yaml +2025-11-24T09:08:04.5678382Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/ +2025-11-24T09:08:04.5679250Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/pdb.yaml +2025-11-24T09:08:04.5680169Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/serviceaccount.yaml +2025-11-24T09:08:04.5681108Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/service.yaml +2025-11-24T09:08:04.5682003Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/hpa.yaml +2025-11-24T09:08:04.5683022Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/application.yaml +2025-11-24T09:08:04.5683897Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/ +2025-11-24T09:08:04.5684786Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/pdb.yaml +2025-11-24T09:08:04.5685883Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/node-services.yaml +2025-11-24T09:08:04.5686857Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/ports-configmap.yaml +2025-11-24T09:08:04.5687782Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/service.yaml +2025-11-24T09:08:04.5688644Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/hpa.yaml +2025-11-24T09:08:04.5689527Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/statefulset.yaml +2025-11-24T09:08:04.5690501Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/extra-list.yaml +2025-11-24T09:08:04.5691350Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/secret-svcbind.yaml +2025-11-24T09:08:04.5692202Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/headless-svc.yaml +2025-11-24T09:08:04.5693315Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/podmonitor.yaml +2025-11-24T09:08:04.5694580Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/networkpolicy.yaml +2025-11-24T09:08:04.5695560Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/_helpers.tpl +2025-11-24T09:08:04.5696418Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/prometheusrule.yaml +2025-11-24T09:08:04.5697249Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/values.schema.json +2025-11-24T09:08:04.5697958Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/ +2025-11-24T09:08:04.5698636Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/Chart.yaml +2025-11-24T09:08:04.5699345Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/values.yaml +2025-11-24T09:08:04.5700044Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/ +2025-11-24T09:08:04.5700769Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/es.yaml +2025-11-24T09:08:04.5701539Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/cert.yaml +2025-11-24T09:08:04.5702318Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/es-svc.yaml +2025-11-24T09:08:04.5703273Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/_helpers.tpl +2025-11-24T09:08:04.5704002Z charts/databases-ephemeral/charts/cassandra-ephemeral/ +2025-11-24T09:08:04.5704859Z charts/databases-ephemeral/charts/cassandra-ephemeral/Chart.yaml +2025-11-24T09:08:04.5705563Z charts/databases-ephemeral/charts/cassandra-ephemeral/requirements.lock +2025-11-24T09:08:04.5706279Z charts/databases-ephemeral/charts/cassandra-ephemeral/requirements.yaml +2025-11-24T09:08:04.5706962Z charts/databases-ephemeral/charts/cassandra-ephemeral/values.yaml +2025-11-24T09:08:04.5707615Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/ +2025-11-24T09:08:04.5708298Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/ +2025-11-24T09:08:04.5709039Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/Chart.yaml +2025-11-24T09:08:04.5709829Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/.helmignore +2025-11-24T09:08:04.5710607Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/README.md +2025-11-24T09:08:04.5711380Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/values.yaml +2025-11-24T09:08:04.5712149Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/sample/ +2025-11-24T09:08:04.5713117Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/sample/create-storage-gce.yaml +2025-11-24T09:08:04.5713988Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/ +2025-11-24T09:08:04.5714857Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/servicemonitor.yaml +2025-11-24T09:08:04.5715761Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/pdb.yaml +2025-11-24T09:08:04.5716769Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/configmap.yaml +2025-11-24T09:08:04.5717663Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/NOTES.txt +2025-11-24T09:08:04.5718516Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/backup/ +2025-11-24T09:08:04.5719411Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/backup/cronjob.yaml +2025-11-24T09:08:04.5720336Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/backup/rbac.yaml +2025-11-24T09:08:04.5721311Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/service.yaml +2025-11-24T09:08:04.5722189Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/_helpers.tpl +2025-11-24T09:08:04.5723179Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/statefulset.yaml +2025-11-24T09:08:04.5723963Z charts/databases-ephemeral/charts/cassandra-ephemeral/templates/ +2025-11-24T09:08:04.5724671Z charts/databases-ephemeral/charts/cassandra-ephemeral/templates/helpers.tpl +2025-11-24T09:08:04.5725288Z charts/databases-ephemeral/templates/ +2025-11-24T09:08:04.5725795Z charts/databases-ephemeral/templates/NOTES.txt +2025-11-24T09:08:04.5726298Z charts/k8ssandra-test-cluster/ +2025-11-24T09:08:04.5726754Z charts/k8ssandra-test-cluster/Chart.yaml +2025-11-24T09:08:04.5727257Z charts/k8ssandra-test-cluster/.helmignore +2025-11-24T09:08:04.5727755Z charts/k8ssandra-test-cluster/README.md +2025-11-24T09:08:04.5728242Z charts/k8ssandra-test-cluster/values.yaml +2025-11-24T09:08:04.5728738Z charts/k8ssandra-test-cluster/templates/ +2025-11-24T09:08:04.5729299Z charts/k8ssandra-test-cluster/templates/jks-store-pass.yaml +2025-11-24T09:08:04.5729943Z charts/k8ssandra-test-cluster/templates/check-cluster-job.yaml +2025-11-24T09:08:04.5730579Z charts/k8ssandra-test-cluster/templates/k8ssandra-cluster.yaml +2025-11-24T09:08:04.5731243Z charts/k8ssandra-test-cluster/templates/tls-certificate-bundle.yaml +2025-11-24T09:08:04.5731883Z charts/k8ssandra-test-cluster/templates/tls-issuer.yaml +2025-11-24T09:08:04.5732490Z charts/k8ssandra-test-cluster/templates/tls-certificate.yaml +2025-11-24T09:08:04.5733204Z charts/smtp/ +2025-11-24T09:08:04.5733595Z charts/smtp/Chart.yaml +2025-11-24T09:08:04.5734020Z charts/smtp/requirements.lock +2025-11-24T09:08:04.5734545Z charts/smtp/requirements.yaml +2025-11-24T09:08:04.5734973Z charts/smtp/values.yaml +2025-11-24T09:08:04.5735381Z charts/smtp/charts/ +2025-11-24T09:08:04.5735789Z charts/smtp/charts/smtp/ +2025-11-24T09:08:04.5736224Z charts/smtp/charts/smtp/Chart.yaml +2025-11-24T09:08:04.5736686Z charts/smtp/charts/smtp/.helmignore +2025-11-24T09:08:04.5737152Z charts/smtp/charts/smtp/README.md +2025-11-24T09:08:04.5737611Z charts/smtp/charts/smtp/values.yaml +2025-11-24T09:08:04.5738073Z charts/smtp/charts/smtp/templates/ +2025-11-24T09:08:04.5738563Z charts/smtp/charts/smtp/templates/deployment.yaml +2025-11-24T09:08:04.5739092Z charts/smtp/charts/smtp/templates/NOTES.txt +2025-11-24T09:08:04.5739635Z charts/smtp/charts/smtp/templates/serviceaccount.yaml +2025-11-24T09:08:04.5740193Z charts/smtp/charts/smtp/templates/service.yaml +2025-11-24T09:08:04.5740697Z charts/smtp/charts/smtp/templates/tests/ +2025-11-24T09:08:04.5741260Z charts/smtp/charts/smtp/templates/tests/test-connection.yaml +2025-11-24T09:08:04.5741846Z charts/smtp/charts/smtp/templates/_helpers.tpl +2025-11-24T09:08:04.5742368Z charts/smtp/charts/smtp/templates/config.yaml +2025-11-24T09:08:04.5742995Z charts/coturn/ +2025-11-24T09:08:04.5743392Z charts/coturn/Chart.yaml +2025-11-24T09:08:04.5743814Z charts/coturn/README.md +2025-11-24T09:08:04.5744229Z charts/coturn/values.yaml +2025-11-24T09:08:04.5744654Z charts/coturn/templates/ +2025-11-24T09:08:04.5745094Z charts/coturn/templates/servicemonitor.yaml +2025-11-24T09:08:04.5745587Z charts/coturn/templates/secret.yaml +2025-11-24T09:08:04.5746082Z charts/coturn/templates/secret-or-certificate.yaml +2025-11-24T09:08:04.5746628Z charts/coturn/templates/configmap-allowlist.yaml +2025-11-24T09:08:04.5747269Z charts/coturn/templates/service.yaml +2025-11-24T09:08:04.5747771Z charts/coturn/templates/service-account.yaml +2025-11-24T09:08:04.5748330Z charts/coturn/templates/configmap-coturn-conf-template.yaml +2025-11-24T09:08:04.5748925Z charts/coturn/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.5749449Z charts/coturn/templates/_helpers.tpl +2025-11-24T09:08:04.5749935Z charts/coturn/templates/statefulset.yaml +2025-11-24T09:08:04.5750413Z charts/cert-manager/ +2025-11-24T09:08:04.5750836Z charts/cert-manager/Chart.yaml +2025-11-24T09:08:04.5751394Z charts/cert-manager/requirements.lock +2025-11-24T09:08:04.5751866Z charts/cert-manager/README.md +2025-11-24T09:08:04.5752310Z charts/cert-manager/requirements.yaml +2025-11-24T09:08:04.5752884Z charts/cert-manager/values.yaml +2025-11-24T09:08:04.5753335Z charts/cert-manager/charts/ +2025-11-24T09:08:04.5753775Z charts/cert-manager/charts/cert-manager/ +2025-11-24T09:08:04.5754295Z charts/cert-manager/charts/cert-manager/Chart.yaml +2025-11-24T09:08:04.5754849Z charts/cert-manager/charts/cert-manager/README.md +2025-11-24T09:08:04.5755395Z charts/cert-manager/charts/cert-manager/values.yaml +2025-11-24T09:08:04.5755940Z charts/cert-manager/charts/cert-manager/templates/ +2025-11-24T09:08:04.5756551Z charts/cert-manager/charts/cert-manager/templates/webhook-psp.yaml +2025-11-24T09:08:04.5757253Z charts/cert-manager/charts/cert-manager/templates/cainjector-config.yaml +2025-11-24T09:08:04.5757970Z charts/cert-manager/charts/cert-manager/templates/servicemonitor.yaml +2025-11-24T09:08:04.5758655Z charts/cert-manager/charts/cert-manager/templates/webhook-rbac.yaml +2025-11-24T09:08:04.5759385Z charts/cert-manager/charts/cert-manager/templates/webhook-validating-webhook.yaml +2025-11-24T09:08:04.5760108Z charts/cert-manager/charts/cert-manager/templates/deployment.yaml +2025-11-24T09:08:04.5760869Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-psp-clusterrole.yaml +2025-11-24T09:08:04.5761637Z charts/cert-manager/charts/cert-manager/templates/webhook-config.yaml +2025-11-24T09:08:04.5762347Z charts/cert-manager/charts/cert-manager/templates/webhook-deployment.yaml +2025-11-24T09:08:04.5763192Z charts/cert-manager/charts/cert-manager/templates/webhook-psp-clusterrole.yaml +2025-11-24T09:08:04.5763932Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-rbac.yaml +2025-11-24T09:08:04.5764752Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-job.yaml +2025-11-24T09:08:04.5765410Z charts/cert-manager/charts/cert-manager/templates/psp.yaml +2025-11-24T09:08:04.5766141Z charts/cert-manager/charts/cert-manager/templates/webhook-psp-clusterrolebinding.yaml +2025-11-24T09:08:04.5767013Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-psp-clusterrolebinding.yaml +2025-11-24T09:08:04.5767752Z charts/cert-manager/charts/cert-manager/templates/crds.yaml +2025-11-24T09:08:04.5768357Z charts/cert-manager/charts/cert-manager/templates/NOTES.txt +2025-11-24T09:08:04.5769025Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-psp.yaml +2025-11-24T09:08:04.5769742Z charts/cert-manager/charts/cert-manager/templates/serviceaccount.yaml +2025-11-24T09:08:04.5770449Z charts/cert-manager/charts/cert-manager/templates/psp-clusterrolebinding.yaml +2025-11-24T09:08:04.5771191Z charts/cert-manager/charts/cert-manager/templates/networkpolicy-webhooks.yaml +2025-11-24T09:08:04.5771918Z charts/cert-manager/charts/cert-manager/templates/webhook-service.yaml +2025-11-24T09:08:04.5772765Z charts/cert-manager/charts/cert-manager/templates/cainjector-service.yaml +2025-11-24T09:08:04.5773477Z charts/cert-manager/charts/cert-manager/templates/psp-clusterrole.yaml +2025-11-24T09:08:04.5774266Z charts/cert-manager/charts/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml +2025-11-24T09:08:04.5774994Z charts/cert-manager/charts/cert-manager/templates/service.yaml +2025-11-24T09:08:04.5775702Z charts/cert-manager/charts/cert-manager/templates/cainjector-psp-clusterrole.yaml +2025-11-24T09:08:04.5776639Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-serviceaccount.yaml +2025-11-24T09:08:04.5777432Z charts/cert-manager/charts/cert-manager/templates/cainjector-deployment.yaml +2025-11-24T09:08:04.5778165Z charts/cert-manager/charts/cert-manager/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.5778821Z charts/cert-manager/charts/cert-manager/templates/rbac.yaml +2025-11-24T09:08:04.5779504Z charts/cert-manager/charts/cert-manager/templates/networkpolicy-egress.yaml +2025-11-24T09:08:04.5780247Z charts/cert-manager/charts/cert-manager/templates/cainjector-serviceaccount.yaml +2025-11-24T09:08:04.5781035Z charts/cert-manager/charts/cert-manager/templates/podmonitor.yaml +2025-11-24T09:08:04.5781760Z charts/cert-manager/charts/cert-manager/templates/webhook-poddisruptionbudget.yaml +2025-11-24T09:08:04.5782510Z charts/cert-manager/charts/cert-manager/templates/controller-config.yaml +2025-11-24T09:08:04.5783270Z charts/cert-manager/charts/cert-manager/templates/_helpers.tpl +2025-11-24T09:08:04.5783943Z charts/cert-manager/charts/cert-manager/templates/cainjector-rbac.yaml +2025-11-24T09:08:04.5784661Z charts/cert-manager/charts/cert-manager/templates/webhook-serviceaccount.yaml +2025-11-24T09:08:04.5785379Z charts/cert-manager/charts/cert-manager/templates/extras-objects.yaml +2025-11-24T09:08:04.5786097Z charts/cert-manager/charts/cert-manager/templates/webhook-mutating-webhook.yaml +2025-11-24T09:08:04.5786900Z charts/cert-manager/charts/cert-manager/templates/cainjector-poddisruptionbudget.yaml +2025-11-24T09:08:04.5787658Z charts/cert-manager/charts/cert-manager/templates/cainjector-psp.yaml +2025-11-24T09:08:04.5788318Z charts/cert-manager/charts/cert-manager/values.schema.json +2025-11-24T09:08:04.5788856Z charts/demo-smtp/ +2025-11-24T09:08:04.5789269Z charts/demo-smtp/Chart.yaml +2025-11-24T09:08:04.5789704Z charts/demo-smtp/.helmignore +2025-11-24T09:08:04.5790137Z charts/demo-smtp/values.yaml +2025-11-24T09:08:04.5790565Z charts/demo-smtp/templates/ +2025-11-24T09:08:04.5791011Z charts/demo-smtp/templates/deployment.yaml +2025-11-24T09:08:04.5791513Z charts/demo-smtp/templates/service.yaml +2025-11-24T09:08:04.5791997Z charts/demo-smtp/templates/_helpers.tpl +2025-11-24T09:08:04.5792454Z charts/kibana/ +2025-11-24T09:08:04.5792951Z charts/kibana/Chart.yaml +2025-11-24T09:08:04.5793380Z charts/kibana/requirements.lock +2025-11-24T09:08:04.5793815Z charts/kibana/requirements.yaml +2025-11-24T09:08:04.5794397Z charts/kibana/values.yaml +2025-11-24T09:08:04.5794823Z charts/kibana/charts/ +2025-11-24T09:08:04.5795238Z charts/kibana/charts/kibana/ +2025-11-24T09:08:04.5795671Z charts/kibana/charts/kibana/Chart.yaml +2025-11-24T09:08:04.5796161Z charts/kibana/charts/kibana/examples/ +2025-11-24T09:08:04.5796658Z charts/kibana/charts/kibana/examples/default/ +2025-11-24T09:08:04.5797202Z charts/kibana/charts/kibana/examples/default/README.md +2025-11-24T09:08:04.5797768Z charts/kibana/charts/kibana/examples/default/test/ +2025-11-24T09:08:04.5798344Z charts/kibana/charts/kibana/examples/default/test/goss.yaml +2025-11-24T09:08:04.5798947Z charts/kibana/charts/kibana/examples/default/Makefile +2025-11-24T09:08:04.5799479Z charts/kibana/charts/kibana/examples/oss/ +2025-11-24T09:08:04.5799996Z charts/kibana/charts/kibana/examples/oss/README.md +2025-11-24T09:08:04.5800542Z charts/kibana/charts/kibana/examples/oss/values.yaml +2025-11-24T09:08:04.5801085Z charts/kibana/charts/kibana/examples/oss/test/ +2025-11-24T09:08:04.5801627Z charts/kibana/charts/kibana/examples/oss/test/goss.yaml +2025-11-24T09:08:04.5802187Z charts/kibana/charts/kibana/examples/oss/Makefile +2025-11-24T09:08:04.5802824Z charts/kibana/charts/kibana/examples/security/ +2025-11-24T09:08:04.5803371Z charts/kibana/charts/kibana/examples/security/README.md +2025-11-24T09:08:04.5803951Z charts/kibana/charts/kibana/examples/security/values.yaml +2025-11-24T09:08:04.5804533Z charts/kibana/charts/kibana/examples/security/test/ +2025-11-24T09:08:04.5805107Z charts/kibana/charts/kibana/examples/security/test/goss.yaml +2025-11-24T09:08:04.5805707Z charts/kibana/charts/kibana/examples/security/Makefile +2025-11-24T09:08:04.5806387Z charts/kibana/charts/kibana/examples/upgrade/ +2025-11-24T09:08:04.5806932Z charts/kibana/charts/kibana/examples/upgrade/README.md +2025-11-24T09:08:04.5807515Z charts/kibana/charts/kibana/examples/upgrade/values.yaml +2025-11-24T09:08:04.5808085Z charts/kibana/charts/kibana/examples/upgrade/test/ +2025-11-24T09:08:04.5808653Z charts/kibana/charts/kibana/examples/upgrade/test/goss.yaml +2025-11-24T09:08:04.5809251Z charts/kibana/charts/kibana/examples/upgrade/Makefile +2025-11-24T09:08:04.5809800Z charts/kibana/charts/kibana/examples/openshift/ +2025-11-24T09:08:04.5810429Z charts/kibana/charts/kibana/examples/openshift/values.yml +2025-11-24T09:08:04.5811017Z charts/kibana/charts/kibana/examples/openshift/README.md +2025-11-24T09:08:04.5811594Z charts/kibana/charts/kibana/examples/openshift/test/ +2025-11-24T09:08:04.5812192Z charts/kibana/charts/kibana/examples/openshift/test/goss.yaml +2025-11-24T09:08:04.5812956Z charts/kibana/charts/kibana/examples/openshift/Makefile +2025-11-24T09:08:04.5813497Z charts/kibana/charts/kibana/.helmignore +2025-11-24T09:08:04.5813982Z charts/kibana/charts/kibana/README.md +2025-11-24T09:08:04.5814462Z charts/kibana/charts/kibana/values.yaml +2025-11-24T09:08:04.5814942Z charts/kibana/charts/kibana/templates/ +2025-11-24T09:08:04.5815468Z charts/kibana/charts/kibana/templates/deployment.yaml +2025-11-24T09:08:04.5816040Z charts/kibana/charts/kibana/templates/configmap.yaml +2025-11-24T09:08:04.5816596Z charts/kibana/charts/kibana/templates/service.yaml +2025-11-24T09:08:04.5817126Z charts/kibana/charts/kibana/templates/_helpers.tpl +2025-11-24T09:08:04.5817675Z charts/kibana/charts/kibana/templates/ingress.yaml +2025-11-24T09:08:04.5818179Z charts/kibana/charts/kibana/Makefile +2025-11-24T09:08:04.5818651Z charts/kibana/templates/ +2025-11-24T09:08:04.5819102Z charts/kibana/templates/basic-auth-secret.yaml +2025-11-24T09:08:04.5819596Z charts/calling-test/ +2025-11-24T09:08:04.5820016Z charts/calling-test/Chart.yaml +2025-11-24T09:08:04.5820457Z charts/calling-test/.helmignore +2025-11-24T09:08:04.5820898Z charts/calling-test/values.yaml +2025-11-24T09:08:04.5821335Z charts/calling-test/templates/ +2025-11-24T09:08:04.5821802Z charts/calling-test/templates/deployment.yaml +2025-11-24T09:08:04.5822307Z charts/calling-test/templates/NOTES.txt +2025-11-24T09:08:04.5822961Z charts/calling-test/templates/service.yaml +2025-11-24T09:08:04.5823464Z charts/calling-test/templates/_helpers.tpl +2025-11-24T09:08:04.5824020Z charts/reaper/ +2025-11-24T09:08:04.5824502Z charts/reaper/Chart.yaml +2025-11-24T09:08:04.5825257Z charts/reaper/.helmignore +2025-11-24T09:08:04.5825740Z charts/reaper/scripts/ +2025-11-24T09:08:04.5826166Z charts/reaper/scripts/reaper.sh +2025-11-24T09:08:04.5826593Z charts/reaper/README.md +2025-11-24T09:08:04.5827007Z charts/reaper/values.yaml +2025-11-24T09:08:04.5827429Z charts/reaper/templates/ +2025-11-24T09:08:04.5827861Z charts/reaper/templates/deployment.yaml +2025-11-24T09:08:04.5828346Z charts/reaper/templates/configmap.yaml +2025-11-24T09:08:04.5828828Z charts/reaper/templates/rbac.yaml +2025-11-24T09:08:04.5829271Z charts/sftd/ +2025-11-24T09:08:04.5829656Z charts/sftd/Chart.yaml +2025-11-24T09:08:04.5830062Z charts/sftd/README.md +2025-11-24T09:08:04.5830469Z charts/sftd/values.yaml +2025-11-24T09:08:04.5830877Z charts/sftd/templates/ +2025-11-24T09:08:04.5831302Z charts/sftd/templates/servicemonitor.yaml +2025-11-24T09:08:04.5831797Z charts/sftd/templates/secret.yaml +2025-11-24T09:08:04.5838038Z charts/sftd/templates/deployment-join-call.yaml +2025-11-24T09:08:04.5838662Z charts/sftd/templates/service-join-call.yaml +2025-11-24T09:08:04.5839210Z charts/sftd/templates/secret-or-certificate.yaml +2025-11-24T09:08:04.5839764Z charts/sftd/templates/configmap-join-call.yaml +2025-11-24T09:08:04.5840280Z charts/sftd/templates/service.yaml +2025-11-24T09:08:04.5840763Z charts/sftd/templates/service-account.yaml +2025-11-24T09:08:04.5841297Z charts/sftd/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.5841804Z charts/sftd/templates/_helpers.tpl +2025-11-24T09:08:04.5842268Z charts/sftd/templates/ingress.yaml +2025-11-24T09:08:04.5843071Z charts/sftd/templates/statefulset.yaml +2025-11-24T09:08:04.5843579Z charts/fake-aws-s3/ +2025-11-24T09:08:04.5844005Z charts/fake-aws-s3/Chart.yaml +2025-11-24T09:08:04.5844453Z charts/fake-aws-s3/.helmignore +2025-11-24T09:08:04.5844910Z charts/fake-aws-s3/requirements.lock +2025-11-24T09:08:04.5845398Z charts/fake-aws-s3/requirements.yaml +2025-11-24T09:08:04.5845876Z charts/fake-aws-s3/values.yaml +2025-11-24T09:08:04.5846315Z charts/fake-aws-s3/charts/ +2025-11-24T09:08:04.5846758Z charts/fake-aws-s3/charts/minio/ +2025-11-24T09:08:04.5847318Z charts/fake-aws-s3/charts/minio/Chart.yaml +2025-11-24T09:08:04.5847828Z charts/fake-aws-s3/charts/minio/.helmignore +2025-11-24T09:08:04.5848326Z charts/fake-aws-s3/charts/minio/README.md +2025-11-24T09:08:04.5848833Z charts/fake-aws-s3/charts/minio/values.yaml +2025-11-24T09:08:04.5849335Z charts/fake-aws-s3/charts/minio/templates/ +2025-11-24T09:08:04.5849900Z charts/fake-aws-s3/charts/minio/templates/servicemonitor.yaml +2025-11-24T09:08:04.5850527Z charts/fake-aws-s3/charts/minio/templates/deployment.yaml +2025-11-24T09:08:04.5851149Z charts/fake-aws-s3/charts/minio/templates/console-ingress.yaml +2025-11-24T09:08:04.5851755Z charts/fake-aws-s3/charts/minio/templates/pvc.yaml +2025-11-24T09:08:04.5852363Z charts/fake-aws-s3/charts/minio/templates/_helper_create_bucket.txt +2025-11-24T09:08:04.5853186Z charts/fake-aws-s3/charts/minio/templates/secrets.yaml +2025-11-24T09:08:04.5854238Z charts/fake-aws-s3/charts/minio/templates/configmap.yaml +2025-11-24T09:08:04.5854841Z charts/fake-aws-s3/charts/minio/templates/NOTES.txt +2025-11-24T09:08:04.5855422Z charts/fake-aws-s3/charts/minio/templates/serviceaccount.yaml +2025-11-24T09:08:04.5856039Z charts/fake-aws-s3/charts/minio/templates/_helper_policy.tpl +2025-11-24T09:08:04.5856680Z charts/fake-aws-s3/charts/minio/templates/_helper_create_policy.txt +2025-11-24T09:08:04.5857319Z charts/fake-aws-s3/charts/minio/templates/console-service.yaml +2025-11-24T09:08:04.5857927Z charts/fake-aws-s3/charts/minio/templates/post-job.yaml +2025-11-24T09:08:04.5858501Z charts/fake-aws-s3/charts/minio/templates/service.yaml +2025-11-24T09:08:04.5859129Z charts/fake-aws-s3/charts/minio/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.5859804Z charts/fake-aws-s3/charts/minio/templates/_helper_custom_command.txt +2025-11-24T09:08:04.5860458Z charts/fake-aws-s3/charts/minio/templates/_helper_create_user.txt +2025-11-24T09:08:04.5861266Z charts/fake-aws-s3/charts/minio/templates/securitycontextconstraints.yaml +2025-11-24T09:08:04.5861938Z charts/fake-aws-s3/charts/minio/templates/networkpolicy.yaml +2025-11-24T09:08:04.5862533Z charts/fake-aws-s3/charts/minio/templates/_helpers.tpl +2025-11-24T09:08:04.5863212Z charts/fake-aws-s3/charts/minio/templates/ingress.yaml +2025-11-24T09:08:04.5863786Z charts/fake-aws-s3/charts/minio/templates/statefulset.yaml +2025-11-24T09:08:04.5864431Z charts/fake-aws-s3/charts/minio/templates/_helper_create_svcacct.txt +2025-11-24T09:08:04.5865002Z charts/fake-aws-s3/templates/ +2025-11-24T09:08:04.5865456Z charts/fake-aws-s3/templates/reaper.yaml +2025-11-24T09:08:04.5865955Z charts/fake-aws-s3/templates/_helpers.tpl +2025-11-24T09:08:04.5866429Z charts/keycloakx/ +2025-11-24T09:08:04.5866839Z charts/keycloakx/Chart.yaml +2025-11-24T09:08:04.5867273Z charts/keycloakx/requirements.lock +2025-11-24T09:08:04.5867745Z charts/keycloakx/requirements.yaml +2025-11-24T09:08:04.5868205Z charts/keycloakx/values.yaml +2025-11-24T09:08:04.5868634Z charts/keycloakx/charts/ +2025-11-24T09:08:04.5869063Z charts/keycloakx/charts/keycloakx/ +2025-11-24T09:08:04.5869540Z charts/keycloakx/charts/keycloakx/Chart.yaml +2025-11-24T09:08:04.5870069Z charts/keycloakx/charts/keycloakx/.bumpversion.cfg +2025-11-24T09:08:04.5870600Z charts/keycloakx/charts/keycloakx/.helmignore +2025-11-24T09:08:04.5871105Z charts/keycloakx/charts/keycloakx/README.md +2025-11-24T09:08:04.5871607Z charts/keycloakx/charts/keycloakx/values.yaml +2025-11-24T09:08:04.5872105Z charts/keycloakx/charts/keycloakx/OWNERS +2025-11-24T09:08:04.5872893Z charts/keycloakx/charts/keycloakx/templates/ +2025-11-24T09:08:04.5873482Z charts/keycloakx/charts/keycloakx/templates/service-http.yaml +2025-11-24T09:08:04.5874138Z charts/keycloakx/charts/keycloakx/templates/servicemonitor.yaml +2025-11-24T09:08:04.5874760Z charts/keycloakx/charts/keycloakx/templates/secrets.yaml +2025-11-24T09:08:04.5875359Z charts/keycloakx/charts/keycloakx/templates/NOTES.txt +2025-11-24T09:08:04.5875964Z charts/keycloakx/charts/keycloakx/templates/serviceaccount.yaml +2025-11-24T09:08:04.5876570Z charts/keycloakx/charts/keycloakx/templates/route.yaml +2025-11-24T09:08:04.5877270Z charts/keycloakx/charts/keycloakx/templates/database-secret.yaml +2025-11-24T09:08:04.5877882Z charts/keycloakx/charts/keycloakx/templates/hpa.yaml +2025-11-24T09:08:04.5878493Z charts/keycloakx/charts/keycloakx/templates/service-headless.yaml +2025-11-24T09:08:04.5879185Z charts/keycloakx/charts/keycloakx/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.5879823Z charts/keycloakx/charts/keycloakx/templates/rbac.yaml +2025-11-24T09:08:04.5880381Z charts/keycloakx/charts/keycloakx/templates/test/ +2025-11-24T09:08:04.5881047Z charts/keycloakx/charts/keycloakx/templates/test/configmap-test.yaml +2025-11-24T09:08:04.5881714Z charts/keycloakx/charts/keycloakx/templates/test/pod-test.yaml +2025-11-24T09:08:04.5882376Z charts/keycloakx/charts/keycloakx/templates/configmap-startup.yaml +2025-11-24T09:08:04.5883146Z charts/keycloakx/charts/keycloakx/templates/networkpolicy.yaml +2025-11-24T09:08:04.5883757Z charts/keycloakx/charts/keycloakx/templates/_helpers.tpl +2025-11-24T09:08:04.5884346Z charts/keycloakx/charts/keycloakx/templates/ingress.yaml +2025-11-24T09:08:04.5884977Z charts/keycloakx/charts/keycloakx/templates/prometheusrule.yaml +2025-11-24T09:08:04.5885618Z charts/keycloakx/charts/keycloakx/templates/statefulset.yaml +2025-11-24T09:08:04.5886213Z charts/keycloakx/charts/keycloakx/values.schema.json +2025-11-24T09:08:04.5886734Z charts/migrate-features/ +2025-11-24T09:08:04.5887166Z charts/migrate-features/Chart.yaml +2025-11-24T09:08:04.5887640Z charts/migrate-features/README.md +2025-11-24T09:08:04.5888110Z charts/migrate-features/values.yaml +2025-11-24T09:08:04.5888586Z charts/migrate-features/templates/ +2025-11-24T09:08:04.5889064Z charts/migrate-features/templates/NOTES.txt +2025-11-24T09:08:04.5889575Z charts/migrate-features/templates/job.yaml +2025-11-24T09:08:04.5890058Z charts/step-certificates/ +2025-11-24T09:08:04.5890575Z charts/step-certificates/Chart.yaml +2025-11-24T09:08:04.5891060Z charts/step-certificates/requirements.lock +2025-11-24T09:08:04.5891566Z charts/step-certificates/requirements.yaml +2025-11-24T09:08:04.5892056Z charts/step-certificates/values.yaml +2025-11-24T09:08:04.5892530Z charts/step-certificates/charts/ +2025-11-24T09:08:04.5893130Z charts/step-certificates/charts/step-certificates/ +2025-11-24T09:08:04.5893708Z charts/step-certificates/charts/step-certificates/Chart.yaml +2025-11-24T09:08:04.5894360Z charts/step-certificates/charts/step-certificates/examples/ +2025-11-24T09:08:04.5895149Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/ +2025-11-24T09:08:04.5896142Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.crt +2025-11-24T09:08:04.5897166Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/user-ssh.key +2025-11-24T09:08:04.5898199Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/user-ssh.password +2025-11-24T09:08:04.5899214Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.crt +2025-11-24T09:08:04.5900232Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/generate-values.sh +2025-11-24T09:08:04.5901235Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/values.yml +2025-11-24T09:08:04.5902404Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/host-ssh.key.pub +2025-11-24T09:08:04.5903503Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/ca.config +2025-11-24T09:08:04.5904479Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/values.yml.tpl +2025-11-24T09:08:04.5905516Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.key +2025-11-24T09:08:04.5906571Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.json +2025-11-24T09:08:04.5907653Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/host-ssh.key +2025-11-24T09:08:04.5908700Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.password +2025-11-24T09:08:04.5909790Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/jwk_provisioner.password +2025-11-24T09:08:04.5910863Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/jwk_provisioner.key +2025-11-24T09:08:04.5911943Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/jwk_provisioner.compact.key +2025-11-24T09:08:04.5913171Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/jwk_provisioner.pub +2025-11-24T09:08:04.5914220Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.password +2025-11-24T09:08:04.5915256Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/user-ssh.key.pub +2025-11-24T09:08:04.5916289Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.key +2025-11-24T09:08:04.5917282Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.json +2025-11-24T09:08:04.5918289Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.json.tpl +2025-11-24T09:08:04.5919315Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/host-ssh.password +2025-11-24T09:08:04.5920376Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.json.tpl +2025-11-24T09:08:04.5991897Z charts/step-certificates/charts/step-certificates/examples/registration_authority/ +2025-11-24T09:08:04.5992982Z charts/step-certificates/charts/step-certificates/examples/registration_authority/values.yml +2025-11-24T09:08:04.5993809Z charts/step-certificates/charts/step-certificates/examples/README.md +2025-11-24T09:08:04.5994534Z charts/step-certificates/charts/step-certificates/examples/existing_secrets/ +2025-11-24T09:08:04.5995330Z charts/step-certificates/charts/step-certificates/examples/existing_secrets/values.yaml +2025-11-24T09:08:04.5996060Z charts/step-certificates/charts/step-certificates/.helmignore +2025-11-24T09:08:04.5996718Z charts/step-certificates/charts/step-certificates/README.md +2025-11-24T09:08:04.5997345Z charts/step-certificates/charts/step-certificates/values.yaml +2025-11-24T09:08:04.5997958Z charts/step-certificates/charts/step-certificates/templates/ +2025-11-24T09:08:04.5998606Z charts/step-certificates/charts/step-certificates/templates/ca.yaml +2025-11-24T09:08:04.5999310Z charts/step-certificates/charts/step-certificates/templates/secrets.yaml +2025-11-24T09:08:04.6000040Z charts/step-certificates/charts/step-certificates/templates/configmaps.yaml +2025-11-24T09:08:04.6000759Z charts/step-certificates/charts/step-certificates/templates/NOTES.txt +2025-11-24T09:08:04.6001484Z charts/step-certificates/charts/step-certificates/templates/serviceaccount.yaml +2025-11-24T09:08:04.6002217Z charts/step-certificates/charts/step-certificates/templates/service.yaml +2025-11-24T09:08:04.6003387Z charts/step-certificates/charts/step-certificates/templates/bootstrap.yaml +2025-11-24T09:08:04.6004111Z charts/step-certificates/charts/step-certificates/templates/rbac.yaml +2025-11-24T09:08:04.6004790Z charts/step-certificates/charts/step-certificates/templates/tests/ +2025-11-24T09:08:04.6005483Z charts/step-certificates/charts/step-certificates/templates/_helpers.tpl +2025-11-24T09:08:04.6006180Z charts/step-certificates/charts/step-certificates/templates/ingress.yaml +2025-11-24T09:08:04.6152505Z charts/ldap-scim-bridge/ +2025-11-24T09:08:04.6153314Z charts/ldap-scim-bridge/Chart.yaml +2025-11-24T09:08:04.6154099Z charts/ldap-scim-bridge/.helmignore +2025-11-24T09:08:04.6154581Z charts/ldap-scim-bridge/README.md +2025-11-24T09:08:04.6155037Z charts/ldap-scim-bridge/values.yaml +2025-11-24T09:08:04.6155504Z charts/ldap-scim-bridge/templates/ +2025-11-24T09:08:04.6156010Z charts/ldap-scim-bridge/templates/secret.yaml +2025-11-24T09:08:04.6156535Z charts/ldap-scim-bridge/templates/cronjob.yaml +2025-11-24T09:08:04.6157055Z charts/ldap-scim-bridge/templates/_helpers.tpl +2025-11-24T09:08:04.6157560Z charts/account-pages/ +2025-11-24T09:08:04.6157982Z charts/account-pages/Chart.yaml +2025-11-24T09:08:04.6158431Z charts/account-pages/.helmignore +2025-11-24T09:08:04.6158886Z charts/account-pages/README.md +2025-11-24T09:08:04.6159322Z charts/account-pages/values.yaml +2025-11-24T09:08:04.6159765Z charts/account-pages/templates/ +2025-11-24T09:08:04.6160248Z charts/account-pages/templates/deployment.yaml +2025-11-24T09:08:04.6160812Z charts/account-pages/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6161370Z charts/account-pages/templates/_helpers.tpl +2025-11-24T09:08:04.6161858Z charts/redis-ephemeral/ +2025-11-24T09:08:04.6162285Z charts/redis-ephemeral/Chart.yaml +2025-11-24T09:08:04.6162956Z charts/redis-ephemeral/requirements.lock +2025-11-24T09:08:04.6163472Z charts/redis-ephemeral/requirements.yaml +2025-11-24T09:08:04.6163959Z charts/redis-ephemeral/values.yaml +2025-11-24T09:08:04.6164421Z charts/redis-ephemeral/charts/ +2025-11-24T09:08:04.6164870Z charts/redis-ephemeral/charts/redis/ +2025-11-24T09:08:04.6165359Z charts/redis-ephemeral/charts/redis/Chart.lock +2025-11-24T09:08:04.6165878Z charts/redis-ephemeral/charts/redis/Chart.yaml +2025-11-24T09:08:04.6166385Z charts/redis-ephemeral/charts/redis/.helmignore +2025-11-24T09:08:04.6166898Z charts/redis-ephemeral/charts/redis/README.md +2025-11-24T09:08:04.6167402Z charts/redis-ephemeral/charts/redis/values.yaml +2025-11-24T09:08:04.6168052Z charts/redis-ephemeral/charts/redis/charts/ +2025-11-24T09:08:04.6168566Z charts/redis-ephemeral/charts/redis/charts/common/ +2025-11-24T09:08:04.6169143Z charts/redis-ephemeral/charts/redis/charts/common/Chart.yaml +2025-11-24T09:08:04.6169760Z charts/redis-ephemeral/charts/redis/charts/common/.helmignore +2025-11-24T09:08:04.6170370Z charts/redis-ephemeral/charts/redis/charts/common/README.md +2025-11-24T09:08:04.6170974Z charts/redis-ephemeral/charts/redis/charts/common/values.yaml +2025-11-24T09:08:04.6171594Z charts/redis-ephemeral/charts/redis/charts/common/templates/ +2025-11-24T09:08:04.6407403Z charts/redis-ephemeral/charts/redis/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.6408289Z charts/redis-ephemeral/charts/redis/charts/common/templates/_resources.tpl +2025-11-24T09:08:04.6409122Z charts/redis-ephemeral/charts/redis/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.6409889Z charts/redis-ephemeral/charts/redis/charts/common/templates/_names.tpl +2025-11-24T09:08:04.6410675Z charts/redis-ephemeral/charts/redis/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.6411477Z charts/redis-ephemeral/charts/redis/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.6412264Z charts/redis-ephemeral/charts/redis/charts/common/templates/_compatibility.tpl +2025-11-24T09:08:04.6413207Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/ +2025-11-24T09:08:04.6414031Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mongodb.tpl +2025-11-24T09:08:04.6414892Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mysql.tpl +2025-11-24T09:08:04.6527836Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.6529368Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.6530327Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.6532208Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.6533420Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.6535039Z charts/redis-ephemeral/charts/redis/charts/common/templates/_images.tpl +2025-11-24T09:08:04.6535863Z charts/redis-ephemeral/charts/redis/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.6536675Z charts/redis-ephemeral/charts/redis/charts/common/templates/_ingress.tpl +2025-11-24T09:08:04.6537413Z charts/redis-ephemeral/charts/redis/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.6538175Z charts/redis-ephemeral/charts/redis/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.6538934Z charts/redis-ephemeral/charts/redis/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.6539696Z charts/redis-ephemeral/charts/redis/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.6540304Z charts/redis-ephemeral/charts/redis/templates/ +2025-11-24T09:08:04.6540886Z charts/redis-ephemeral/charts/redis/templates/tls-secret.yaml +2025-11-24T09:08:04.6541534Z charts/redis-ephemeral/charts/redis/templates/servicemonitor.yaml +2025-11-24T09:08:04.6542163Z charts/redis-ephemeral/charts/redis/templates/secret.yaml +2025-11-24T09:08:04.6542947Z charts/redis-ephemeral/charts/redis/templates/metrics-svc.yaml +2025-11-24T09:08:04.6543575Z charts/redis-ephemeral/charts/redis/templates/configmap.yaml +2025-11-24T09:08:04.6544171Z charts/redis-ephemeral/charts/redis/templates/master/ +2025-11-24T09:08:04.6544768Z charts/redis-ephemeral/charts/redis/templates/master/pdb.yaml +2025-11-24T09:08:04.6545388Z charts/redis-ephemeral/charts/redis/templates/master/pvc.yaml +2025-11-24T09:08:04.6545996Z charts/redis-ephemeral/charts/redis/templates/master/psp.yaml +2025-11-24T09:08:04.6599744Z charts/redis-ephemeral/charts/redis/templates/master/serviceaccount.yaml +2025-11-24T09:08:04.6600619Z charts/redis-ephemeral/charts/redis/templates/master/service.yaml +2025-11-24T09:08:04.6601740Z charts/redis-ephemeral/charts/redis/templates/master/application.yaml +2025-11-24T09:08:04.6602484Z charts/redis-ephemeral/charts/redis/templates/NOTES.txt +2025-11-24T09:08:04.6603416Z charts/redis-ephemeral/charts/redis/templates/serviceaccount.yaml +2025-11-24T09:08:04.6604199Z charts/redis-ephemeral/charts/redis/templates/health-configmap.yaml +2025-11-24T09:08:04.6604943Z charts/redis-ephemeral/charts/redis/templates/rolebinding.yaml +2025-11-24T09:08:04.6605637Z charts/redis-ephemeral/charts/redis/templates/role.yaml +2025-11-24T09:08:04.6606357Z charts/redis-ephemeral/charts/redis/templates/scripts-configmap.yaml +2025-11-24T09:08:04.6607086Z charts/redis-ephemeral/charts/redis/templates/replicas/ +2025-11-24T09:08:04.6607765Z charts/redis-ephemeral/charts/redis/templates/replicas/pdb.yaml +2025-11-24T09:08:04.6608553Z charts/redis-ephemeral/charts/redis/templates/replicas/serviceaccount.yaml +2025-11-24T09:08:04.6609359Z charts/redis-ephemeral/charts/redis/templates/replicas/service.yaml +2025-11-24T09:08:04.6610104Z charts/redis-ephemeral/charts/redis/templates/replicas/hpa.yaml +2025-11-24T09:08:04.6610867Z charts/redis-ephemeral/charts/redis/templates/replicas/application.yaml +2025-11-24T09:08:04.6611597Z charts/redis-ephemeral/charts/redis/templates/sentinel/ +2025-11-24T09:08:04.6612268Z charts/redis-ephemeral/charts/redis/templates/sentinel/pdb.yaml +2025-11-24T09:08:04.6613196Z charts/redis-ephemeral/charts/redis/templates/sentinel/node-services.yaml +2025-11-24T09:08:04.6614055Z charts/redis-ephemeral/charts/redis/templates/sentinel/ports-configmap.yaml +2025-11-24T09:08:04.6614862Z charts/redis-ephemeral/charts/redis/templates/sentinel/service.yaml +2025-11-24T09:08:04.6615780Z charts/redis-ephemeral/charts/redis/templates/sentinel/hpa.yaml +2025-11-24T09:08:04.6616561Z charts/redis-ephemeral/charts/redis/templates/sentinel/statefulset.yaml +2025-11-24T09:08:04.6617289Z charts/redis-ephemeral/charts/redis/templates/extra-list.yaml +2025-11-24T09:08:04.6617950Z charts/redis-ephemeral/charts/redis/templates/secret-svcbind.yaml +2025-11-24T09:08:04.6618597Z charts/redis-ephemeral/charts/redis/templates/headless-svc.yaml +2025-11-24T09:08:04.6619216Z charts/redis-ephemeral/charts/redis/templates/podmonitor.yaml +2025-11-24T09:08:04.6619967Z charts/redis-ephemeral/charts/redis/templates/networkpolicy.yaml +2025-11-24T09:08:04.6620587Z charts/redis-ephemeral/charts/redis/templates/_helpers.tpl +2025-11-24T09:08:04.6621231Z charts/redis-ephemeral/charts/redis/templates/prometheusrule.yaml +2025-11-24T09:08:04.6621849Z charts/redis-ephemeral/charts/redis/values.schema.json +2025-11-24T09:08:04.6622365Z charts/wire-server/ +2025-11-24T09:08:04.6622899Z charts/wire-server/Chart.yaml +2025-11-24T09:08:04.6623373Z charts/wire-server/.helmignore +2025-11-24T09:08:04.6623815Z charts/wire-server/requirements.lock +2025-11-24T09:08:04.6624285Z charts/wire-server/requirements.yaml +2025-11-24T09:08:04.6625602Z charts/wire-server/values.yaml +2025-11-24T09:08:04.6626447Z charts/wire-server/charts/ +2025-11-24T09:08:04.6626917Z charts/wire-server/charts/background-worker/ +2025-11-24T09:08:04.6627686Z charts/wire-server/charts/background-worker/Chart.yaml +2025-11-24T09:08:04.6628673Z charts/wire-server/charts/background-worker/README.md +2025-11-24T09:08:04.6629659Z charts/wire-server/charts/background-worker/values.yaml +2025-11-24T09:08:04.6630345Z charts/wire-server/charts/background-worker/templates/ +2025-11-24T09:08:04.6631019Z charts/wire-server/charts/background-worker/templates/servicemonitor.yaml +2025-11-24T09:08:04.6631718Z charts/wire-server/charts/background-worker/templates/secret.yaml +2025-11-24T09:08:04.6632402Z charts/wire-server/charts/background-worker/templates/deployment.yaml +2025-11-24T09:08:04.6633362Z charts/wire-server/charts/background-worker/templates/configmap.yaml +2025-11-24T09:08:04.6634042Z charts/wire-server/charts/background-worker/templates/service.yaml +2025-11-24T09:08:04.6634750Z charts/wire-server/charts/background-worker/templates/cassandra-secret.yaml +2025-11-24T09:08:04.6641868Z charts/wire-server/charts/background-worker/templates/_helpers.tpl +2025-11-24T09:08:04.6642858Z charts/wire-server/charts/integration/ +2025-11-24T09:08:04.6643709Z charts/wire-server/charts/integration/Chart.yaml +2025-11-24T09:08:04.6644458Z charts/wire-server/charts/integration/values.yaml +2025-11-24T09:08:04.6645081Z charts/wire-server/charts/integration/templates/ +2025-11-24T09:08:04.6645662Z charts/wire-server/charts/integration/templates/secret.yaml +2025-11-24T09:08:04.6646291Z charts/wire-server/charts/integration/templates/configmap.yaml +2025-11-24T09:08:04.6646927Z charts/wire-server/charts/integration/templates/service.yaml +2025-11-24T09:08:04.6647615Z charts/wire-server/charts/integration/templates/cassandra-secret.yaml +2025-11-24T09:08:04.6648278Z charts/wire-server/charts/integration/templates/_helpers.tpl +2025-11-24T09:08:04.6648889Z charts/wire-server/charts/integration/templates/ingress.yaml +2025-11-24T09:08:04.6649639Z charts/wire-server/charts/integration/templates/integration-integration.yaml +2025-11-24T09:08:04.6650255Z charts/wire-server/charts/gundeck/ +2025-11-24T09:08:04.6650749Z charts/wire-server/charts/gundeck/Chart.yaml +2025-11-24T09:08:04.6651255Z charts/wire-server/charts/gundeck/.helmignore +2025-11-24T09:08:04.6651770Z charts/wire-server/charts/gundeck/README.md +2025-11-24T09:08:04.6652270Z charts/wire-server/charts/gundeck/values.yaml +2025-11-24T09:08:04.6652916Z charts/wire-server/charts/gundeck/templates/ +2025-11-24T09:08:04.6653489Z charts/wire-server/charts/gundeck/templates/servicemonitor.yaml +2025-11-24T09:08:04.6654101Z charts/wire-server/charts/gundeck/templates/secret.yaml +2025-11-24T09:08:04.6654727Z charts/wire-server/charts/gundeck/templates/redis-ca-secret.yaml +2025-11-24T09:08:04.6655536Z charts/wire-server/charts/gundeck/templates/deployment.yaml +2025-11-24T09:08:04.6656166Z charts/wire-server/charts/gundeck/templates/configmap.yaml +2025-11-24T09:08:04.6656791Z charts/wire-server/charts/gundeck/templates/serviceaccount.yaml +2025-11-24T09:08:04.6657406Z charts/wire-server/charts/gundeck/templates/service.yaml +2025-11-24T09:08:04.6658072Z charts/wire-server/charts/gundeck/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6658710Z charts/wire-server/charts/gundeck/templates/tests/ +2025-11-24T09:08:04.6659371Z charts/wire-server/charts/gundeck/templates/tests/secret.yaml +2025-11-24T09:08:04.6660010Z charts/wire-server/charts/gundeck/templates/tests/configmap.yaml +2025-11-24T09:08:04.6660700Z charts/wire-server/charts/gundeck/templates/tests/gundeck-integration.yaml +2025-11-24T09:08:04.6661392Z charts/wire-server/charts/gundeck/templates/cassandra-secret.yaml +2025-11-24T09:08:04.6662007Z charts/wire-server/charts/gundeck/templates/_helpers.tpl +2025-11-24T09:08:04.6662554Z charts/wire-server/charts/backoffice/ +2025-11-24T09:08:04.6663178Z charts/wire-server/charts/backoffice/Chart.yaml +2025-11-24T09:08:04.6663697Z charts/wire-server/charts/backoffice/README.md +2025-11-24T09:08:04.6664205Z charts/wire-server/charts/backoffice/values.yaml +2025-11-24T09:08:04.6664729Z charts/wire-server/charts/backoffice/templates/ +2025-11-24T09:08:04.6665291Z charts/wire-server/charts/backoffice/templates/deployment.yaml +2025-11-24T09:08:04.6665915Z charts/wire-server/charts/backoffice/templates/configmap.yaml +2025-11-24T09:08:04.6666512Z charts/wire-server/charts/backoffice/templates/NOTES.txt +2025-11-24T09:08:04.6667100Z charts/wire-server/charts/backoffice/templates/service.yaml +2025-11-24T09:08:04.6667771Z charts/wire-server/charts/backoffice/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6668449Z charts/wire-server/charts/backoffice/templates/helpers.tpl +2025-11-24T09:08:04.6669036Z charts/wire-server/charts/backoffice/templates/tests/ +2025-11-24T09:08:04.6669651Z charts/wire-server/charts/backoffice/templates/tests/secret.yaml +2025-11-24T09:08:04.6670355Z charts/wire-server/charts/backoffice/templates/tests/stern-integration.yaml +2025-11-24T09:08:04.6671077Z charts/wire-server/charts/backoffice/templates/tests/configmap.yaml +2025-11-24T09:08:04.6671713Z charts/wire-server/charts/backoffice/templates/_helpers.tpl +2025-11-24T09:08:04.6672361Z charts/wire-server/charts/proxy/ +2025-11-24T09:08:04.6672970Z charts/wire-server/charts/proxy/Chart.yaml +2025-11-24T09:08:04.6673475Z charts/wire-server/charts/proxy/.helmignore +2025-11-24T09:08:04.6673972Z charts/wire-server/charts/proxy/values.yaml +2025-11-24T09:08:04.6674461Z charts/wire-server/charts/proxy/templates/ +2025-11-24T09:08:04.6675016Z charts/wire-server/charts/proxy/templates/servicemonitor.yaml +2025-11-24T09:08:04.6675609Z charts/wire-server/charts/proxy/templates/secret.yaml +2025-11-24T09:08:04.6676190Z charts/wire-server/charts/proxy/templates/deployment.yaml +2025-11-24T09:08:04.6676797Z charts/wire-server/charts/proxy/templates/configmap.yaml +2025-11-24T09:08:04.6677379Z charts/wire-server/charts/proxy/templates/service.yaml +2025-11-24T09:08:04.6678004Z charts/wire-server/charts/proxy/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6678628Z charts/wire-server/charts/proxy/templates/_helpers.tpl +2025-11-24T09:08:04.6679155Z charts/wire-server/charts/federator/ +2025-11-24T09:08:04.6679656Z charts/wire-server/charts/federator/Chart.yaml +2025-11-24T09:08:04.6680166Z charts/wire-server/charts/federator/.helmignore +2025-11-24T09:08:04.6680684Z charts/wire-server/charts/federator/values.yaml +2025-11-24T09:08:04.6681193Z charts/wire-server/charts/federator/templates/ +2025-11-24T09:08:04.6681777Z charts/wire-server/charts/federator/templates/servicemonitor.yaml +2025-11-24T09:08:04.6682413Z charts/wire-server/charts/federator/templates/secret.yaml +2025-11-24T09:08:04.6683123Z charts/wire-server/charts/federator/templates/deployment.yaml +2025-11-24T09:08:04.6683716Z charts/wire-server/charts/federator/templates/ca.yaml +2025-11-24T09:08:04.6684501Z charts/wire-server/charts/federator/templates/configmap.yaml +2025-11-24T09:08:04.6685118Z charts/wire-server/charts/federator/templates/service.yaml +2025-11-24T09:08:04.6685781Z charts/wire-server/charts/federator/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6686435Z charts/wire-server/charts/federator/templates/tests/ +2025-11-24T09:08:04.6687039Z charts/wire-server/charts/federator/templates/tests/secret.yaml +2025-11-24T09:08:04.6687743Z charts/wire-server/charts/federator/templates/tests/federator-integration.yaml +2025-11-24T09:08:04.6688560Z charts/wire-server/charts/federator/templates/tests/configmap.yaml +2025-11-24T09:08:04.6689190Z charts/wire-server/charts/federator/templates/_helpers.tpl +2025-11-24T09:08:04.6689727Z charts/wire-server/charts/brig/ +2025-11-24T09:08:04.6690170Z charts/wire-server/charts/brig/Chart.yaml +2025-11-24T09:08:04.6690654Z charts/wire-server/charts/brig/.helmignore +2025-11-24T09:08:04.6691142Z charts/wire-server/charts/brig/README.md +2025-11-24T09:08:04.6691629Z charts/wire-server/charts/brig/values.yaml +2025-11-24T09:08:04.6692111Z charts/wire-server/charts/brig/templates/ +2025-11-24T09:08:04.6692812Z charts/wire-server/charts/brig/templates/elasticsearch-ca-secret.yaml +2025-11-24T09:08:04.6693432Z charts/wire-server/charts/brig/templates/conf/ +2025-11-24T09:08:04.6694040Z charts/wire-server/charts/brig/templates/conf/_turn-servers-v2.txt.tpl +2025-11-24T09:08:04.6694730Z charts/wire-server/charts/brig/templates/conf/_turn-servers.txt.tpl +2025-11-24T09:08:04.6695362Z charts/wire-server/charts/brig/templates/servicemonitor.yaml +2025-11-24T09:08:04.6695951Z charts/wire-server/charts/brig/templates/secret.yaml +2025-11-24T09:08:04.6696518Z charts/wire-server/charts/brig/templates/deployment.yaml +2025-11-24T09:08:04.6697098Z charts/wire-server/charts/brig/templates/configmap.yaml +2025-11-24T09:08:04.6697677Z charts/wire-server/charts/brig/templates/serviceaccount.yaml +2025-11-24T09:08:04.6698257Z charts/wire-server/charts/brig/templates/service.yaml +2025-11-24T09:08:04.6698843Z charts/wire-server/charts/brig/templates/turnconfigmap.yaml +2025-11-24T09:08:04.6699479Z charts/wire-server/charts/brig/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6700069Z charts/wire-server/charts/brig/templates/tests/ +2025-11-24T09:08:04.6700614Z charts/wire-server/charts/brig/templates/tests/secret.yaml +2025-11-24T09:08:04.6701308Z charts/wire-server/charts/brig/templates/tests/configmap.yaml +2025-11-24T09:08:04.6701962Z charts/wire-server/charts/brig/templates/tests/brig-integration.yaml +2025-11-24T09:08:04.6702721Z charts/wire-server/charts/brig/templates/tests/nginz-service.yaml +2025-11-24T09:08:04.6703358Z charts/wire-server/charts/brig/templates/cassandra-secret.yaml +2025-11-24T09:08:04.6703953Z charts/wire-server/charts/brig/templates/_helpers.tpl +2025-11-24T09:08:04.6704480Z charts/wire-server/charts/legalhold/ +2025-11-24T09:08:04.6704965Z charts/wire-server/charts/legalhold/Chart.yaml +2025-11-24T09:08:04.6705493Z charts/wire-server/charts/legalhold/requirements.lock +2025-11-24T09:08:04.6706047Z charts/wire-server/charts/legalhold/requirements.yaml +2025-11-24T09:08:04.6706590Z charts/wire-server/charts/legalhold/values.yaml +2025-11-24T09:08:04.6707096Z charts/wire-server/charts/legalhold/charts/ +2025-11-24T09:08:04.6707629Z charts/wire-server/charts/legalhold/charts/postgresql/ +2025-11-24T09:08:04.6708239Z charts/wire-server/charts/legalhold/charts/postgresql/Chart.yaml +2025-11-24T09:08:04.6708882Z charts/wire-server/charts/legalhold/charts/postgresql/.helmignore +2025-11-24T09:08:04.6709566Z charts/wire-server/charts/legalhold/charts/postgresql/requirements.lock +2025-11-24T09:08:04.6710232Z charts/wire-server/charts/legalhold/charts/postgresql/README.md +2025-11-24T09:08:04.6710902Z charts/wire-server/charts/legalhold/charts/postgresql/requirements.yaml +2025-11-24T09:08:04.6711547Z charts/wire-server/charts/legalhold/charts/postgresql/files/ +2025-11-24T09:08:04.6712931Z charts/wire-server/charts/legalhold/charts/postgresql/files/README.md +2025-11-24T09:08:04.6714374Z charts/wire-server/charts/legalhold/charts/postgresql/files/docker-entrypoint-initdb.d/ +2025-11-24T09:08:04.6716202Z charts/wire-server/charts/legalhold/charts/postgresql/files/docker-entrypoint-initdb.d/README.md +2025-11-24T09:08:04.6717033Z charts/wire-server/charts/legalhold/charts/postgresql/files/conf.d/ +2025-11-24T09:08:04.6717748Z charts/wire-server/charts/legalhold/charts/postgresql/files/conf.d/README.md +2025-11-24T09:08:04.6718449Z charts/wire-server/charts/legalhold/charts/postgresql/values.yaml +2025-11-24T09:08:04.6719090Z charts/wire-server/charts/legalhold/charts/postgresql/charts/ +2025-11-24T09:08:04.6719904Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/ +2025-11-24T09:08:04.6720626Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/Chart.yaml +2025-11-24T09:08:04.6721393Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/.helmignore +2025-11-24T09:08:04.6722149Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/README.md +2025-11-24T09:08:04.6723851Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/values.yaml +2025-11-24T09:08:04.6725520Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/ +2025-11-24T09:08:04.6726462Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.6727353Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.6728214Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_names.tpl +2025-11-24T09:08:04.6729105Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.6730000Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.6730864Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/ +2025-11-24T09:08:04.6731778Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.6732907Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.6733884Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.6734841Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.6735938Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.6736871Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_images.tpl +2025-11-24T09:08:04.6737726Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.6738596Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.6739465Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.6740319Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.6741172Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.6741873Z charts/wire-server/charts/legalhold/charts/postgresql/ci/ +2025-11-24T09:08:04.6742613Z charts/wire-server/charts/legalhold/charts/postgresql/ci/shmvolume-disabled-values.yaml +2025-11-24T09:08:04.6743533Z charts/wire-server/charts/legalhold/charts/postgresql/ci/commonAnnotations.yaml +2025-11-24T09:08:04.6744297Z charts/wire-server/charts/legalhold/charts/postgresql/ci/default-values.yaml +2025-11-24T09:08:04.6745028Z charts/wire-server/charts/legalhold/charts/postgresql/values-production.yaml +2025-11-24T09:08:04.6745722Z charts/wire-server/charts/legalhold/charts/postgresql/templates/ +2025-11-24T09:08:04.6746451Z charts/wire-server/charts/legalhold/charts/postgresql/templates/servicemonitor.yaml +2025-11-24T09:08:04.6747377Z charts/wire-server/charts/legalhold/charts/postgresql/templates/metrics-svc.yaml +2025-11-24T09:08:04.6748154Z charts/wire-server/charts/legalhold/charts/postgresql/templates/svc-headless.yaml +2025-11-24T09:08:04.6748998Z charts/wire-server/charts/legalhold/charts/postgresql/templates/initialization-configmap.yaml +2025-11-24T09:08:04.6749808Z charts/wire-server/charts/legalhold/charts/postgresql/templates/secrets.yaml +2025-11-24T09:08:04.6750549Z charts/wire-server/charts/legalhold/charts/postgresql/templates/configmap.yaml +2025-11-24T09:08:04.6751354Z charts/wire-server/charts/legalhold/charts/postgresql/templates/NOTES.txt +2025-11-24T09:08:04.6752105Z charts/wire-server/charts/legalhold/charts/postgresql/templates/serviceaccount.yaml +2025-11-24T09:08:04.6752989Z charts/wire-server/charts/legalhold/charts/postgresql/templates/rolebinding.yaml +2025-11-24T09:08:04.6753733Z charts/wire-server/charts/legalhold/charts/postgresql/templates/role.yaml +2025-11-24T09:08:04.6754515Z charts/wire-server/charts/legalhold/charts/postgresql/templates/statefulset-slaves.yaml +2025-11-24T09:08:04.6755310Z charts/wire-server/charts/legalhold/charts/postgresql/templates/extra-list.yaml +2025-11-24T09:08:04.6756111Z charts/wire-server/charts/legalhold/charts/postgresql/templates/metrics-configmap.yaml +2025-11-24T09:08:04.6756980Z charts/wire-server/charts/legalhold/charts/postgresql/templates/extended-config-configmap.yaml +2025-11-24T09:08:04.6757823Z charts/wire-server/charts/legalhold/charts/postgresql/templates/networkpolicy.yaml +2025-11-24T09:08:04.6758588Z charts/wire-server/charts/legalhold/charts/postgresql/templates/_helpers.tpl +2025-11-24T09:08:04.6759353Z charts/wire-server/charts/legalhold/charts/postgresql/templates/prometheusrule.yaml +2025-11-24T09:08:04.6760112Z charts/wire-server/charts/legalhold/charts/postgresql/templates/svc.yaml +2025-11-24T09:08:04.6760836Z charts/wire-server/charts/legalhold/charts/postgresql/templates/svc-read.yaml +2025-11-24T09:08:04.6761585Z charts/wire-server/charts/legalhold/charts/postgresql/templates/statefulset.yaml +2025-11-24T09:08:04.6762388Z charts/wire-server/charts/legalhold/charts/postgresql/templates/podsecuritypolicy.yaml +2025-11-24T09:08:04.6763600Z charts/wire-server/charts/legalhold/charts/postgresql/values.schema.json +2025-11-24T09:08:04.6764664Z charts/wire-server/charts/legalhold/templates/ +2025-11-24T09:08:04.6765345Z charts/wire-server/charts/legalhold/templates/deployment.yaml +2025-11-24T09:08:04.6765977Z charts/wire-server/charts/legalhold/templates/secret-token.yaml +2025-11-24T09:08:04.6766599Z charts/wire-server/charts/legalhold/templates/service.yaml +2025-11-24T09:08:04.6767212Z charts/wire-server/charts/legalhold/templates/secret-tls.yaml +2025-11-24T09:08:04.6767816Z charts/wire-server/charts/legalhold/templates/_helpers.tpl +2025-11-24T09:08:04.6768408Z charts/wire-server/charts/legalhold/templates/ingress.yaml +2025-11-24T09:08:04.6768949Z charts/wire-server/charts/cannon/ +2025-11-24T09:08:04.6769415Z charts/wire-server/charts/cannon/conf/ +2025-11-24T09:08:04.6769911Z charts/wire-server/charts/cannon/conf/static/ +2025-11-24T09:08:04.6770446Z charts/wire-server/charts/cannon/conf/static/zauth.acl +2025-11-24T09:08:04.6770985Z charts/wire-server/charts/cannon/Chart.yaml +2025-11-24T09:08:04.6771484Z charts/wire-server/charts/cannon/.helmignore +2025-11-24T09:08:04.6771976Z charts/wire-server/charts/cannon/values.yaml +2025-11-24T09:08:04.6772476Z charts/wire-server/charts/cannon/templates/ +2025-11-24T09:08:04.6773117Z charts/wire-server/charts/cannon/templates/conf/ +2025-11-24T09:08:04.6773698Z charts/wire-server/charts/cannon/templates/conf/_nginx.conf.tpl +2025-11-24T09:08:04.6774333Z charts/wire-server/charts/cannon/templates/servicemonitor.yaml +2025-11-24T09:08:04.6774934Z charts/wire-server/charts/cannon/templates/secret.yaml +2025-11-24T09:08:04.6775514Z charts/wire-server/charts/cannon/templates/configmap.yaml +2025-11-24T09:08:04.6776136Z charts/wire-server/charts/cannon/templates/headless-service.yaml +2025-11-24T09:08:04.6776923Z charts/wire-server/charts/cannon/templates/nginz-configmap.yaml +2025-11-24T09:08:04.6779353Z charts/wire-server/charts/cannon/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6780530Z charts/wire-server/charts/cannon/templates/nginz-secret.yaml +2025-11-24T09:08:04.6781657Z charts/wire-server/charts/cannon/templates/cassandra-secret.yaml +2025-11-24T09:08:04.6782884Z charts/wire-server/charts/cannon/templates/_helpers.tpl +2025-11-24T09:08:04.6783936Z charts/wire-server/charts/cannon/templates/nginz-service.yaml +2025-11-24T09:08:04.6785030Z charts/wire-server/charts/cannon/templates/statefulset.yaml +2025-11-24T09:08:04.6786275Z charts/wire-server/charts/cannon/templates/nginz-certificate.yaml +2025-11-24T09:08:04.6787475Z charts/wire-server/charts/cannon/templates/nginz-certificate-secret.yaml +2025-11-24T09:08:04.6788884Z charts/wire-server/charts/spar/ +2025-11-24T09:08:04.6790444Z charts/wire-server/charts/spar/Chart.yaml +2025-11-24T09:08:04.6791287Z charts/wire-server/charts/spar/.helmignore +2025-11-24T09:08:04.6792854Z charts/wire-server/charts/spar/values.yaml +2025-11-24T09:08:04.6793883Z charts/wire-server/charts/spar/templates/ +2025-11-24T09:08:04.6794852Z charts/wire-server/charts/spar/templates/servicemonitor.yaml +2025-11-24T09:08:04.6796029Z charts/wire-server/charts/spar/templates/deployment.yaml +2025-11-24T09:08:04.6798057Z charts/wire-server/charts/spar/templates/configmap.yaml +2025-11-24T09:08:04.6799664Z charts/wire-server/charts/spar/templates/service.yaml +2025-11-24T09:08:04.6801030Z charts/wire-server/charts/spar/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6803204Z charts/wire-server/charts/spar/templates/tests/ +2025-11-24T09:08:04.6804190Z charts/wire-server/charts/spar/templates/tests/secret.yaml +2025-11-24T09:08:04.6805664Z charts/wire-server/charts/spar/templates/tests/spar-integration.yaml +2025-11-24T09:08:04.6806827Z charts/wire-server/charts/spar/templates/tests/configmap.yaml +2025-11-24T09:08:04.6807710Z charts/wire-server/charts/spar/templates/cassandra-secret.yaml +2025-11-24T09:08:04.6808332Z charts/wire-server/charts/spar/templates/_helpers.tpl +2025-11-24T09:08:04.6808869Z charts/wire-server/charts/nginz/ +2025-11-24T09:08:04.6809341Z charts/wire-server/charts/nginz/Chart.yaml +2025-11-24T09:08:04.6809857Z charts/wire-server/charts/nginz/.helmignore +2025-11-24T09:08:04.6810356Z charts/wire-server/charts/nginz/static/ +2025-11-24T09:08:04.6810847Z charts/wire-server/charts/nginz/static/conf/ +2025-11-24T09:08:04.6811508Z charts/wire-server/charts/nginz/static/conf/zauth.acl +2025-11-24T09:08:04.6812036Z charts/wire-server/charts/nginz/zauth.txt +2025-11-24T09:08:04.6812532Z charts/wire-server/charts/nginz/README.md +2025-11-24T09:08:04.6813190Z charts/wire-server/charts/nginz/values.yaml +2025-11-24T09:08:04.6813694Z charts/wire-server/charts/nginz/templates/ +2025-11-24T09:08:04.6814366Z charts/wire-server/charts/nginz/templates/conf/ +2025-11-24T09:08:04.6814938Z charts/wire-server/charts/nginz/templates/conf/_nginx.conf.tpl +2025-11-24T09:08:04.6815566Z charts/wire-server/charts/nginz/templates/servicemonitor.yaml +2025-11-24T09:08:04.6816167Z charts/wire-server/charts/nginz/templates/secret.yaml +2025-11-24T09:08:04.6816743Z charts/wire-server/charts/nginz/templates/deployment.yaml +2025-11-24T09:08:04.6817336Z charts/wire-server/charts/nginz/templates/configmap.yaml +2025-11-24T09:08:04.6817921Z charts/wire-server/charts/nginz/templates/service.yaml +2025-11-24T09:08:04.6818568Z charts/wire-server/charts/nginz/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6819194Z charts/wire-server/charts/nginz/templates/_helpers.tpl +2025-11-24T09:08:04.6819722Z charts/wire-server/charts/mlsstats/ +2025-11-24T09:08:04.6820214Z charts/wire-server/charts/mlsstats/Chart.yaml +2025-11-24T09:08:04.6820734Z charts/wire-server/charts/mlsstats/.helmignore +2025-11-24T09:08:04.6821694Z charts/wire-server/charts/mlsstats/README.md +2025-11-24T09:08:04.6822386Z charts/wire-server/charts/mlsstats/values.yaml +2025-11-24T09:08:04.6823017Z charts/wire-server/charts/mlsstats/templates/ +2025-11-24T09:08:04.6823840Z charts/wire-server/charts/mlsstats/templates/secret.yaml +2025-11-24T09:08:04.6824472Z charts/wire-server/charts/mlsstats/templates/cronjob.yaml +2025-11-24T09:08:04.6825064Z charts/wire-server/charts/mlsstats/templates/_helpers.tpl +2025-11-24T09:08:04.6825627Z charts/wire-server/charts/cassandra-migrations/ +2025-11-24T09:08:04.6826172Z charts/wire-server/charts/cassandra-migrations/Chart.yaml +2025-11-24T09:08:04.6826772Z charts/wire-server/charts/cassandra-migrations/.helmignore +2025-11-24T09:08:04.6827376Z charts/wire-server/charts/cassandra-migrations/values.yaml +2025-11-24T09:08:04.6828054Z charts/wire-server/charts/cassandra-migrations/templates/ +2025-11-24T09:08:04.6828760Z charts/wire-server/charts/cassandra-migrations/templates/gundeck-migrate-data.yaml +2025-11-24T09:08:04.6829539Z charts/wire-server/charts/cassandra-migrations/templates/migrate-schema.yaml +2025-11-24T09:08:04.6830279Z charts/wire-server/charts/cassandra-migrations/templates/cassandra-certs.yaml +2025-11-24T09:08:04.6830987Z charts/wire-server/charts/cassandra-migrations/templates/NOTES.txt +2025-11-24T09:08:04.6831704Z charts/wire-server/charts/cassandra-migrations/templates/spar-migrate-data.yaml +2025-11-24T09:08:04.6832470Z charts/wire-server/charts/cassandra-migrations/templates/galley-migrate-data.yaml +2025-11-24T09:08:04.6833334Z charts/wire-server/charts/cassandra-migrations/templates/_helpers.tpl +2025-11-24T09:08:04.6840708Z charts/wire-server/charts/galley/ +2025-11-24T09:08:04.6841261Z charts/wire-server/charts/galley/Chart.yaml +2025-11-24T09:08:04.6841802Z charts/wire-server/charts/galley/values.yaml +2025-11-24T09:08:04.6842326Z charts/wire-server/charts/galley/templates/ +2025-11-24T09:08:04.6843286Z charts/wire-server/charts/galley/templates/servicemonitor.yaml +2025-11-24T09:08:04.6843926Z charts/wire-server/charts/galley/templates/secret.yaml +2025-11-24T09:08:04.6844532Z charts/wire-server/charts/galley/templates/aws-secret.yaml +2025-11-24T09:08:04.6845141Z charts/wire-server/charts/galley/templates/deployment.yaml +2025-11-24T09:08:04.6845749Z charts/wire-server/charts/galley/templates/configmap.yaml +2025-11-24T09:08:04.6846363Z charts/wire-server/charts/galley/templates/serviceaccount.yaml +2025-11-24T09:08:04.6846975Z charts/wire-server/charts/galley/templates/service.yaml +2025-11-24T09:08:04.6847624Z charts/wire-server/charts/galley/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6848254Z charts/wire-server/charts/galley/templates/tests/ +2025-11-24T09:08:04.6849007Z charts/wire-server/charts/galley/templates/tests/secret.yaml +2025-11-24T09:08:04.6849695Z charts/wire-server/charts/galley/templates/tests/galley-integration.yaml +2025-11-24T09:08:04.6850384Z charts/wire-server/charts/galley/templates/tests/configmap.yaml +2025-11-24T09:08:04.6851041Z charts/wire-server/charts/galley/templates/cassandra-secret.yaml +2025-11-24T09:08:04.6851660Z charts/wire-server/charts/galley/templates/_helpers.tpl +2025-11-24T09:08:04.6852204Z charts/wire-server/charts/cargohold/ +2025-11-24T09:08:04.6852830Z charts/wire-server/charts/cargohold/Chart.yaml +2025-11-24T09:08:04.6853373Z charts/wire-server/charts/cargohold/.helmignore +2025-11-24T09:08:04.6853896Z charts/wire-server/charts/cargohold/values.yaml +2025-11-24T09:08:04.6854424Z charts/wire-server/charts/cargohold/templates/ +2025-11-24T09:08:04.6855019Z charts/wire-server/charts/cargohold/templates/servicemonitor.yaml +2025-11-24T09:08:04.6855649Z charts/wire-server/charts/cargohold/templates/secret.yaml +2025-11-24T09:08:04.6856260Z charts/wire-server/charts/cargohold/templates/deployment.yaml +2025-11-24T09:08:04.6856899Z charts/wire-server/charts/cargohold/templates/configmap.yaml +2025-11-24T09:08:04.6857541Z charts/wire-server/charts/cargohold/templates/serviceaccount.yaml +2025-11-24T09:08:04.6858161Z charts/wire-server/charts/cargohold/templates/service.yaml +2025-11-24T09:08:04.6858835Z charts/wire-server/charts/cargohold/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6859474Z charts/wire-server/charts/cargohold/templates/tests/ +2025-11-24T09:08:04.6860067Z charts/wire-server/charts/cargohold/templates/tests/secret.yaml +2025-11-24T09:08:04.6860919Z charts/wire-server/charts/cargohold/templates/tests/cargohold-integration.yaml +2025-11-24T09:08:04.6861657Z charts/wire-server/charts/cargohold/templates/tests/configmap.yaml +2025-11-24T09:08:04.6862284Z charts/wire-server/charts/cargohold/templates/_helpers.tpl +2025-11-24T09:08:04.6862973Z charts/wire-server/charts/elasticsearch-index/ +2025-11-24T09:08:04.6863522Z charts/wire-server/charts/elasticsearch-index/Chart.yaml +2025-11-24T09:08:04.6864113Z charts/wire-server/charts/elasticsearch-index/.helmignore +2025-11-24T09:08:04.6864789Z charts/wire-server/charts/elasticsearch-index/values.yaml +2025-11-24T09:08:04.6865386Z charts/wire-server/charts/elasticsearch-index/templates/ +2025-11-24T09:08:04.6866094Z charts/wire-server/charts/elasticsearch-index/templates/elasticsearch-ca-secret.yaml +2025-11-24T09:08:04.6866859Z charts/wire-server/charts/elasticsearch-index/templates/secret.yaml +2025-11-24T09:08:04.6867570Z charts/wire-server/charts/elasticsearch-index/templates/create-index.yaml +2025-11-24T09:08:04.6868299Z charts/wire-server/charts/elasticsearch-index/templates/migrate-data.yaml +2025-11-24T09:08:04.6868993Z charts/wire-server/charts/elasticsearch-index/templates/helpers.tpl +2025-11-24T09:08:04.6869707Z charts/wire-server/charts/elasticsearch-index/templates/cassandra-secret.yaml +2025-11-24T09:08:04.6870427Z charts/wire-server/charts/elasticsearch-index/templates/_helpers.tpl +2025-11-24T09:08:04.6871012Z charts/wire-server/templates/ +2025-11-24T09:08:04.6871454Z charts/wire-server/templates/NOTES.txt +2025-11-24T09:08:04.6871932Z charts/smallstep-accomp/ +2025-11-24T09:08:04.6872362Z charts/smallstep-accomp/Chart.yaml +2025-11-24T09:08:04.6872942Z charts/smallstep-accomp/requirements.lock +2025-11-24T09:08:04.6873428Z charts/smallstep-accomp/README.md +2025-11-24T09:08:04.6873895Z charts/smallstep-accomp/requirements.yaml +2025-11-24T09:08:04.6874376Z charts/smallstep-accomp/values.yaml +2025-11-24T09:08:04.6874846Z charts/smallstep-accomp/charts/ +2025-11-24T09:08:04.6875293Z charts/smallstep-accomp/charts/nginx/ +2025-11-24T09:08:04.6875794Z charts/smallstep-accomp/charts/nginx/Chart.lock +2025-11-24T09:08:04.6876319Z charts/smallstep-accomp/charts/nginx/Chart.yaml +2025-11-24T09:08:04.6876842Z charts/smallstep-accomp/charts/nginx/.helmignore +2025-11-24T09:08:04.6877353Z charts/smallstep-accomp/charts/nginx/README.md +2025-11-24T09:08:04.6877952Z charts/smallstep-accomp/charts/nginx/values.yaml +2025-11-24T09:08:04.6878462Z charts/smallstep-accomp/charts/nginx/charts/ +2025-11-24T09:08:04.6878974Z charts/smallstep-accomp/charts/nginx/charts/common/ +2025-11-24T09:08:04.6879555Z charts/smallstep-accomp/charts/nginx/charts/common/Chart.yaml +2025-11-24T09:08:04.6880180Z charts/smallstep-accomp/charts/nginx/charts/common/.helmignore +2025-11-24T09:08:04.6880798Z charts/smallstep-accomp/charts/nginx/charts/common/README.md +2025-11-24T09:08:04.6881413Z charts/smallstep-accomp/charts/nginx/charts/common/values.yaml +2025-11-24T09:08:04.6882023Z charts/smallstep-accomp/charts/nginx/charts/common/templates/ +2025-11-24T09:08:04.6882350Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.6882889Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_resources.tpl +2025-11-24T09:08:04.6883302Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.6883622Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_names.tpl +2025-11-24T09:08:04.6883962Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.6884272Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.6884604Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_compatibility.tpl +2025-11-24T09:08:04.6884914Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/ +2025-11-24T09:08:04.6885286Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_mongodb.tpl +2025-11-24T09:08:04.6885787Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_mysql.tpl +2025-11-24T09:08:04.6886166Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.6886567Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.6886913Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.6887291Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.6887679Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.6888056Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_images.tpl +2025-11-24T09:08:04.6888368Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.6888676Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_ingress.tpl +2025-11-24T09:08:04.6888999Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.6889307Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.6889626Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.6889929Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.6890149Z charts/smallstep-accomp/charts/nginx/templates/ +2025-11-24T09:08:04.6890412Z charts/smallstep-accomp/charts/nginx/templates/tls-secret.yaml +2025-11-24T09:08:04.6890704Z charts/smallstep-accomp/charts/nginx/templates/servicemonitor.yaml +2025-11-24T09:08:04.6891006Z charts/smallstep-accomp/charts/nginx/templates/prometheusrules.yaml +2025-11-24T09:08:04.6891261Z charts/smallstep-accomp/charts/nginx/templates/pdb.yaml +2025-11-24T09:08:04.6891531Z charts/smallstep-accomp/charts/nginx/templates/deployment.yaml +2025-11-24T09:08:04.6891819Z charts/smallstep-accomp/charts/nginx/templates/health-ingress.yaml +2025-11-24T09:08:04.6892065Z charts/smallstep-accomp/charts/nginx/templates/NOTES.txt +2025-11-24T09:08:04.6892350Z charts/smallstep-accomp/charts/nginx/templates/serviceaccount.yaml +2025-11-24T09:08:04.6892586Z charts/smallstep-accomp/charts/nginx/templates/hpa.yaml +2025-11-24T09:08:04.6892954Z charts/smallstep-accomp/charts/nginx/templates/extra-list.yaml +2025-11-24T09:08:04.6893268Z charts/smallstep-accomp/charts/nginx/templates/ingress-tls-secret.yaml +2025-11-24T09:08:04.6893630Z charts/smallstep-accomp/charts/nginx/templates/networkpolicy.yaml +2025-11-24T09:08:04.6893984Z charts/smallstep-accomp/charts/nginx/templates/stream-server-block-configmap.yaml +2025-11-24T09:08:04.6894244Z charts/smallstep-accomp/charts/nginx/templates/_helpers.tpl +2025-11-24T09:08:04.6894490Z charts/smallstep-accomp/charts/nginx/templates/ingress.yaml +2025-11-24T09:08:04.6894722Z charts/smallstep-accomp/charts/nginx/templates/svc.yaml +2025-11-24T09:08:04.6895044Z charts/smallstep-accomp/charts/nginx/templates/server-block-configmap.yaml +2025-11-24T09:08:04.6895290Z charts/smallstep-accomp/charts/nginx/values.schema.json +2025-11-24T09:08:04.6895490Z charts/smallstep-accomp/templates/ +2025-11-24T09:08:04.6895709Z charts/smallstep-accomp/templates/secrets.yaml +2025-11-24T09:08:04.6895917Z charts/smallstep-accomp/templates/certs.yaml +2025-11-24T09:08:04.6896144Z charts/smallstep-accomp/templates/step-config.yaml +2025-11-24T09:08:04.6896386Z charts/smallstep-accomp/templates/ca-password.yaml +2025-11-24T09:08:04.6896602Z charts/smallstep-accomp/templates/_helpers.tpl +2025-11-24T09:08:04.6896863Z charts/smallstep-accomp/templates/server-block-configmap.yaml +2025-11-24T09:08:04.6897042Z charts/restund/ +2025-11-24T09:08:04.6897224Z charts/restund/Chart.yaml +2025-11-24T09:08:04.6897408Z charts/restund/README.md +2025-11-24T09:08:04.6897593Z charts/restund/values.yaml +2025-11-24T09:08:04.6897774Z charts/restund/templates/ +2025-11-24T09:08:04.6897967Z charts/restund/templates/secret.yaml +2025-11-24T09:08:04.6898199Z charts/restund/templates/secret-or-certificate.yaml +2025-11-24T09:08:04.6898526Z charts/restund/templates/ca-configmap.yaml +2025-11-24T09:08:04.6898729Z charts/restund/templates/service.yaml +2025-11-24T09:08:04.6898942Z charts/restund/templates/service-account.yaml +2025-11-24T09:08:04.6899213Z charts/restund/templates/configmap-restund-conf-template.yaml +2025-11-24T09:08:04.6899406Z charts/restund/templates/_helpers.tpl +2025-11-24T09:08:04.6899605Z charts/restund/templates/statefulset.yaml +2025-11-24T09:08:04.6899797Z charts/cassandra-external/ +2025-11-24T09:08:04.6899993Z charts/cassandra-external/Chart.yaml +2025-11-24T09:08:04.6900184Z charts/cassandra-external/values.yaml +2025-11-24T09:08:04.6900437Z charts/cassandra-external/templates/ +2025-11-24T09:08:04.6900654Z charts/cassandra-external/templates/helpers.tpl +2025-11-24T09:08:04.6900873Z charts/cassandra-external/templates/endpoint.yaml +2025-11-24T09:08:04.6901064Z charts/elasticsearch-curator/ +2025-11-24T09:08:04.6901263Z charts/elasticsearch-curator/Chart.yaml +2025-11-24T09:08:04.6901478Z charts/elasticsearch-curator/requirements.lock +2025-11-24T09:08:04.6901690Z charts/elasticsearch-curator/requirements.yaml +2025-11-24T09:08:04.6901889Z charts/elasticsearch-curator/values.yaml +2025-11-24T09:08:04.6902075Z charts/elasticsearch-curator/charts/ +2025-11-24T09:08:04.6902334Z charts/elasticsearch-curator/charts/elasticsearch-curator/ +2025-11-24T09:08:04.6902736Z charts/elasticsearch-curator/charts/elasticsearch-curator/Chart.yaml +2025-11-24T09:08:04.6903047Z charts/elasticsearch-curator/charts/elasticsearch-curator/.helmignore +2025-11-24T09:08:04.6903341Z charts/elasticsearch-curator/charts/elasticsearch-curator/README.md +2025-11-24T09:08:04.6903646Z charts/elasticsearch-curator/charts/elasticsearch-curator/values.yaml +2025-11-24T09:08:04.6903907Z charts/elasticsearch-curator/charts/elasticsearch-curator/ci/ +2025-11-24T09:08:04.6904293Z charts/elasticsearch-curator/charts/elasticsearch-curator/ci/initcontainer-values.yaml +2025-11-24T09:08:04.6904572Z charts/elasticsearch-curator/charts/elasticsearch-curator/OWNERS +2025-11-24T09:08:04.6904873Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/ +2025-11-24T09:08:04.6905216Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/configmap.yaml +2025-11-24T09:08:04.6905548Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/NOTES.txt +2025-11-24T09:08:04.6905929Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/serviceaccount.yaml +2025-11-24T09:08:04.6906371Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/rolebinding.yaml +2025-11-24T09:08:04.6906702Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/role.yaml +2025-11-24T09:08:04.6907040Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/cronjob.yaml +2025-11-24T09:08:04.6907363Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/hooks/ +2025-11-24T09:08:04.6907760Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/hooks/job.install.yaml +2025-11-24T09:08:04.6908091Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/psp.yml +2025-11-24T09:08:04.6908428Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/_helpers.tpl +2025-11-24T09:08:04.6908607Z charts/wire-utility/ +2025-11-24T09:08:04.6908799Z charts/wire-utility/CHANGELOG.md +2025-11-24T09:08:04.6908987Z charts/wire-utility/Chart.yaml +2025-11-24T09:08:04.6909173Z charts/wire-utility/README.md +2025-11-24T09:08:04.6909361Z charts/wire-utility/values.yaml +2025-11-24T09:08:04.6909548Z charts/wire-utility/templates/ +2025-11-24T09:08:04.6909745Z charts/wire-utility/templates/NOTES.txt +2025-11-24T09:08:04.6909952Z charts/wire-utility/templates/_helpers.tpl +2025-11-24T09:08:04.6910165Z charts/wire-utility/templates/statefulset.yaml +2025-11-24T09:08:04.6910344Z charts/openebs/ +2025-11-24T09:08:04.6910527Z charts/openebs/Chart.yaml +2025-11-24T09:08:04.6910716Z charts/openebs/requirements.lock +2025-11-24T09:08:04.6910902Z charts/openebs/requirements.yaml +2025-11-24T09:08:04.6911088Z charts/openebs/values.yaml +2025-11-24T09:08:04.6911404Z charts/openebs/charts/ +2025-11-24T09:08:04.6911593Z charts/openebs/charts/openebs/ +2025-11-24T09:08:04.6911787Z charts/openebs/charts/openebs/Chart.lock +2025-11-24T09:08:04.6911986Z charts/openebs/charts/openebs/Chart.yaml +2025-11-24T09:08:04.6912178Z charts/openebs/charts/openebs/crds/ +2025-11-24T09:08:04.6912409Z charts/openebs/charts/openebs/crds/blockdevice.yaml +2025-11-24T09:08:04.6912856Z charts/openebs/charts/openebs/crds/blockdeviceclaim.yaml +2025-11-24T09:08:04.6913064Z charts/openebs/charts/openebs/README.md +2025-11-24T09:08:04.6913265Z charts/openebs/charts/openebs/values.yaml +2025-11-24T09:08:04.6913555Z charts/openebs/charts/openebs/charts/ +2025-11-24T09:08:04.6913794Z charts/openebs/charts/openebs/charts/cstor/ +2025-11-24T09:08:04.6914030Z charts/openebs/charts/openebs/charts/cstor/Chart.lock +2025-11-24T09:08:04.6914260Z charts/openebs/charts/openebs/charts/cstor/Chart.yaml +2025-11-24T09:08:04.6914496Z charts/openebs/charts/openebs/charts/cstor/.helmignore +2025-11-24T09:08:04.6914718Z charts/openebs/charts/openebs/charts/cstor/crds/ +2025-11-24T09:08:04.6914999Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolume.yaml +2025-11-24T09:08:04.6915315Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolumepolicy.yaml +2025-11-24T09:08:04.6915590Z charts/openebs/charts/openebs/charts/cstor/crds/cstorbackup.yaml +2025-11-24T09:08:04.6915896Z charts/openebs/charts/openebs/charts/cstor/crds/cstorpoolcluster.yaml +2025-11-24T09:08:04.6916210Z charts/openebs/charts/openebs/charts/cstor/crds/cstorpoolinstance.yaml +2025-11-24T09:08:04.6916478Z charts/openebs/charts/openebs/charts/cstor/crds/upgradetask.yaml +2025-11-24T09:08:04.6916794Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolumereplica.yaml +2025-11-24T09:08:04.6917099Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolumeconfig.yaml +2025-11-24T09:08:04.6917426Z charts/openebs/charts/openebs/charts/cstor/crds/cstorcompletedbackup.yaml +2025-11-24T09:08:04.6917720Z charts/openebs/charts/openebs/charts/cstor/crds/migrationtask.yaml +2025-11-24T09:08:04.6918003Z charts/openebs/charts/openebs/charts/cstor/crds/cstorrestore.yaml +2025-11-24T09:08:04.6918329Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolumeattachment.yaml +2025-11-24T09:08:04.6918559Z charts/openebs/charts/openebs/charts/cstor/README.md +2025-11-24T09:08:04.6918794Z charts/openebs/charts/openebs/charts/cstor/values.yaml +2025-11-24T09:08:04.6919088Z charts/openebs/charts/openebs/charts/cstor/charts/ +2025-11-24T09:08:04.6919349Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/ +2025-11-24T09:08:04.6919664Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/Chart.yaml +2025-11-24T09:08:04.6919964Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/crds/ +2025-11-24T09:08:04.6920319Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/crds/blockdevice.yaml +2025-11-24T09:08:04.6920711Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/crds/blockdeviceclaim.yaml +2025-11-24T09:08:04.6921024Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/README.md +2025-11-24T09:08:04.6921342Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/values.yaml +2025-11-24T09:08:04.6921651Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/ +2025-11-24T09:08:04.6922086Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/node-exporter-service.yaml +2025-11-24T09:08:04.6922469Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/deployment.yaml +2025-11-24T09:08:04.6923205Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/cluster-exporter-service.yaml +2025-11-24T09:08:04.6923604Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/configmap.yaml +2025-11-24T09:08:04.6923956Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/NOTES.txt +2025-11-24T09:08:04.6924329Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/daemonset.yaml +2025-11-24T09:08:04.6924863Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/node-exporter.yaml +2025-11-24T09:08:04.6925214Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/rbac.yaml +2025-11-24T09:08:04.6925626Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/cluster-exporter.yaml +2025-11-24T09:08:04.6925991Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/_helpers.tpl +2025-11-24T09:08:04.6926236Z charts/openebs/charts/openebs/charts/cstor/templates/ +2025-11-24T09:08:04.6926574Z charts/openebs/charts/openebs/charts/cstor/templates/csi-iscsiadm-config.yaml +2025-11-24T09:08:04.6926951Z charts/openebs/charts/openebs/charts/cstor/templates/csi-driver.yaml +2025-11-24T09:08:04.6927287Z charts/openebs/charts/openebs/charts/cstor/templates/cvc-operator-service.yaml +2025-11-24T09:08:04.6927556Z charts/openebs/charts/openebs/charts/cstor/templates/psp.yaml +2025-11-24T09:08:04.6927890Z charts/openebs/charts/openebs/charts/cstor/templates/volumesnapshotclass.yaml +2025-11-24T09:08:04.6928207Z charts/openebs/charts/openebs/charts/cstor/templates/csi-controller.yaml +2025-11-24T09:08:04.6928475Z charts/openebs/charts/openebs/charts/cstor/templates/NOTES.txt +2025-11-24T09:08:04.6928808Z charts/openebs/charts/openebs/charts/cstor/templates/csi-controller-rbac.yaml +2025-11-24T09:08:04.6929121Z charts/openebs/charts/openebs/charts/cstor/templates/cvc-operator.yaml +2025-11-24T09:08:04.6929434Z charts/openebs/charts/openebs/charts/cstor/templates/csi-node-rbac.yaml +2025-11-24T09:08:04.6929727Z charts/openebs/charts/openebs/charts/cstor/templates/csi-node.yaml +2025-11-24T09:08:04.6929987Z charts/openebs/charts/openebs/charts/cstor/templates/rbac.yaml +2025-11-24T09:08:04.6930300Z charts/openebs/charts/openebs/charts/cstor/templates/snapshot-class.yaml +2025-11-24T09:08:04.6930617Z charts/openebs/charts/openebs/charts/cstor/templates/volumesnapshot.yaml +2025-11-24T09:08:04.6930901Z charts/openebs/charts/openebs/charts/cstor/templates/_helpers.tpl +2025-11-24T09:08:04.6931251Z charts/openebs/charts/openebs/charts/cstor/templates/volumesnapshotcontent.yaml +2025-11-24T09:08:04.6931580Z charts/openebs/charts/openebs/charts/cstor/templates/cleanup-webhook.yaml +2025-11-24T09:08:04.6931892Z charts/openebs/charts/openebs/charts/cstor/templates/cspc-operator.yaml +2025-11-24T09:08:04.6932205Z charts/openebs/charts/openebs/charts/cstor/templates/priority-class.yaml +2025-11-24T09:08:04.6932614Z charts/openebs/charts/openebs/charts/cstor/templates/admission-server.yaml +2025-11-24T09:08:04.6933016Z charts/openebs/charts/openebs/charts/lvm-localpv/ +2025-11-24T09:08:04.6933277Z charts/openebs/charts/openebs/charts/lvm-localpv/Chart.yaml +2025-11-24T09:08:04.6933538Z charts/openebs/charts/openebs/charts/lvm-localpv/.helmignore +2025-11-24T09:08:04.6933775Z charts/openebs/charts/openebs/charts/lvm-localpv/crds/ +2025-11-24T09:08:04.6934085Z charts/openebs/charts/openebs/charts/lvm-localpv/crds/lvmsnapshot.yaml +2025-11-24T09:08:04.6934388Z charts/openebs/charts/openebs/charts/lvm-localpv/crds/lvmvolume.yaml +2025-11-24T09:08:04.6934679Z charts/openebs/charts/openebs/charts/lvm-localpv/crds/lvmnode.yaml +2025-11-24T09:08:04.6934932Z charts/openebs/charts/openebs/charts/lvm-localpv/README.md +2025-11-24T09:08:04.6935190Z charts/openebs/charts/openebs/charts/lvm-localpv/values.yaml +2025-11-24T09:08:04.6935439Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/ +2025-11-24T09:08:04.6935791Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/volumesnapshots-crd.yaml +2025-11-24T09:08:04.6936190Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/volumesnapshotclasses-crd.yaml +2025-11-24T09:08:04.6936494Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/psp.yaml +2025-11-24T09:08:04.6936804Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/lvm-node.yaml +2025-11-24T09:08:04.6937107Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/NOTES.txt +2025-11-24T09:08:04.6937441Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/lvm-controller.yaml +2025-11-24T09:08:04.6937857Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/rbac.yaml +2025-11-24T09:08:04.6938171Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/_helpers.tpl +2025-11-24T09:08:04.6938567Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/volumesnapshotcontents-crd.yaml +2025-11-24T09:08:04.6938899Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/priority-class.yaml +2025-11-24T09:08:04.6939233Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/lvm-node-service.yaml +2025-11-24T09:08:04.6939551Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/csidriver.yaml +2025-11-24T09:08:04.6939850Z charts/openebs/charts/openebs/charts/nfs-provisioner/ +2025-11-24T09:08:04.6940120Z charts/openebs/charts/openebs/charts/nfs-provisioner/Chart.yaml +2025-11-24T09:08:04.6940385Z charts/openebs/charts/openebs/charts/nfs-provisioner/README.md +2025-11-24T09:08:04.6940662Z charts/openebs/charts/openebs/charts/nfs-provisioner/values.yaml +2025-11-24T09:08:04.6940933Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/ +2025-11-24T09:08:04.6941264Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/deployment.yaml +2025-11-24T09:08:04.6941571Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/psp.yaml +2025-11-24T09:08:04.6941885Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/NOTES.txt +2025-11-24T09:08:04.6942233Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/serviceaccount.yaml +2025-11-24T09:08:04.6942571Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/clusterrole.yaml +2025-11-24T09:08:04.6943068Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/kernel-nfs-storageclass.yaml +2025-11-24T09:08:04.6943395Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/_helpers.tpl +2025-11-24T09:08:04.6943769Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.6943982Z charts/openebs/charts/openebs/charts/mayastor/ +2025-11-24T09:08:04.6944232Z charts/openebs/charts/openebs/charts/mayastor/Chart.lock +2025-11-24T09:08:04.6944470Z charts/openebs/charts/openebs/charts/mayastor/Chart.yaml +2025-11-24T09:08:04.6944715Z charts/openebs/charts/openebs/charts/mayastor/.helmignore +2025-11-24T09:08:04.6944938Z charts/openebs/charts/openebs/charts/mayastor/crds/ +2025-11-24T09:08:04.6945210Z charts/openebs/charts/openebs/charts/mayastor/crds/jaeger.yaml +2025-11-24T09:08:04.6945655Z charts/openebs/charts/openebs/charts/mayastor/crds/csi-volume-snapshot-content.yaml +2025-11-24T09:08:04.6946008Z charts/openebs/charts/openebs/charts/mayastor/crds/csi-volume-snapshot-class.yaml +2025-11-24T09:08:04.6946340Z charts/openebs/charts/openebs/charts/mayastor/crds/csi-volume-snapshot.yaml +2025-11-24T09:08:04.6946599Z charts/openebs/charts/openebs/charts/mayastor/README.md.tmpl +2025-11-24T09:08:04.6946835Z charts/openebs/charts/openebs/charts/mayastor/doc.yaml +2025-11-24T09:08:04.6947080Z charts/openebs/charts/openebs/charts/mayastor/values.yaml +2025-11-24T09:08:04.6947321Z charts/openebs/charts/openebs/charts/mayastor/charts/ +2025-11-24T09:08:04.6947605Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/ +2025-11-24T09:08:04.6947932Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/Chart.yaml +2025-11-24T09:08:04.6948253Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/.helmignore +2025-11-24T09:08:04.6948598Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/requirements.lock +2025-11-24T09:08:04.6948915Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/README.md +2025-11-24T09:08:04.6949258Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/requirements.yaml +2025-11-24T09:08:04.6949576Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/values.yaml +2025-11-24T09:08:04.6949885Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/ +2025-11-24T09:08:04.6950231Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/ +2025-11-24T09:08:04.6950756Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/Chart.yaml +2025-11-24T09:08:04.6951166Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/.helmignore +2025-11-24T09:08:04.6951556Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/README.md +2025-11-24T09:08:04.6951954Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/values.yaml +2025-11-24T09:08:04.6953422Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/ +2025-11-24T09:08:04.6954413Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/servicemonitor.yaml +2025-11-24T09:08:04.6954903Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/configmap.yaml +2025-11-24T09:08:04.6955511Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/NOTES.txt +2025-11-24T09:08:04.6956004Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/serviceaccount.yaml +2025-11-24T09:08:04.6956462Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/daemonset.yaml +2025-11-24T09:08:04.6956921Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/rolebinding.yaml +2025-11-24T09:08:04.6957376Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/clusterrole.yaml +2025-11-24T09:08:04.6957811Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/role.yaml +2025-11-24T09:08:04.6958297Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/service-headless.yaml +2025-11-24T09:08:04.6958734Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/_helpers.tpl +2025-11-24T09:08:04.6959235Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.6959728Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/podsecuritypolicy.yaml +2025-11-24T09:08:04.6960062Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/ +2025-11-24T09:08:04.6960441Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/Chart.yaml +2025-11-24T09:08:04.6960916Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/.helmignore +2025-11-24T09:08:04.6961286Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/README.md +2025-11-24T09:08:04.6961659Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/values.yaml +2025-11-24T09:08:04.6962029Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/ +2025-11-24T09:08:04.6962482Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/configmap-alert.yaml +2025-11-24T09:08:04.6963099Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/servicemonitor.yaml +2025-11-24T09:08:04.6963526Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/secret.yaml +2025-11-24T09:08:04.6963937Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/pdb.yaml +2025-11-24T09:08:04.6964350Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/NOTES.txt +2025-11-24T09:08:04.6964792Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/serviceaccount.yaml +2025-11-24T09:08:04.6965229Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/rolebinding.yaml +2025-11-24T09:08:04.6965627Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/role.yaml +2025-11-24T09:08:04.6966053Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/service.yaml +2025-11-24T09:08:04.6966677Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/service-headless.yaml +2025-11-24T09:08:04.6967127Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/networkpolicy.yaml +2025-11-24T09:08:04.6967549Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/_helpers.tpl +2025-11-24T09:08:04.6967969Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/ingress.yaml +2025-11-24T09:08:04.6968412Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/prometheusrule.yaml +2025-11-24T09:08:04.6968932Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/statefulset.yaml +2025-11-24T09:08:04.6969394Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/podsecuritypolicy.yaml +2025-11-24T09:08:04.6969736Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/ +2025-11-24T09:08:04.6970137Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/Chart.yaml +2025-11-24T09:08:04.6970531Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/ +2025-11-24T09:08:04.6970944Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/ +2025-11-24T09:08:04.6971393Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/README.md +2025-11-24T09:08:04.6971823Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/test/ +2025-11-24T09:08:04.6972294Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/test/goss.yaml +2025-11-24T09:08:04.6972836Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/Makefile +2025-11-24T09:08:04.6973242Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/ +2025-11-24T09:08:04.6973669Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/README.md +2025-11-24T09:08:04.6974109Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/values.yaml +2025-11-24T09:08:04.6974527Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/test/ +2025-11-24T09:08:04.6975049Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/test/goss.yaml +2025-11-24T09:08:04.6975479Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/Makefile +2025-11-24T09:08:04.6975897Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/ +2025-11-24T09:08:04.6976353Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/README.md +2025-11-24T09:08:04.6976810Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/values.yaml +2025-11-24T09:08:04.6977248Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/test/ +2025-11-24T09:08:04.6977718Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/test/goss.yaml +2025-11-24T09:08:04.6978159Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/Makefile +2025-11-24T09:08:04.6978593Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/ +2025-11-24T09:08:04.6979065Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/README.md +2025-11-24T09:08:04.6979550Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/values.yaml +2025-11-24T09:08:04.6980008Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/test/ +2025-11-24T09:08:04.6980627Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/test/goss.yaml +2025-11-24T09:08:04.6981461Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/Makefile +2025-11-24T09:08:04.6982237Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/ +2025-11-24T09:08:04.6982937Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/README.md +2025-11-24T09:08:04.6983832Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/values.yaml +2025-11-24T09:08:04.6984289Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/test/ +2025-11-24T09:08:04.6984764Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/test/goss.yaml +2025-11-24T09:08:04.6985218Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/Makefile +2025-11-24T09:08:04.6985614Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/.helmignore +2025-11-24T09:08:04.6986009Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/README.md +2025-11-24T09:08:04.6986398Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/values.yaml +2025-11-24T09:08:04.6986802Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/ +2025-11-24T09:08:04.6987244Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/secret.yaml +2025-11-24T09:08:04.6987720Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/configmap-config.yaml +2025-11-24T09:08:04.6988208Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/configmap-pattern.yaml +2025-11-24T09:08:04.6988643Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/NOTES.txt +2025-11-24T09:08:04.6989108Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/serviceaccount.yaml +2025-11-24T09:08:04.6989557Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/rolebinding.yaml +2025-11-24T09:08:04.6990126Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/configmap-pipeline.yaml +2025-11-24T09:08:04.6990551Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/role.yaml +2025-11-24T09:08:04.6990987Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/service.yaml +2025-11-24T09:08:04.6991459Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/service-headless.yaml +2025-11-24T09:08:04.6991954Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.6992389Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/_helpers.tpl +2025-11-24T09:08:04.6993059Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/ingress.yaml +2025-11-24T09:08:04.6993517Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/statefulset.yaml +2025-11-24T09:08:04.6994002Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/podsecuritypolicy.yaml +2025-11-24T09:08:04.6994397Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/Makefile +2025-11-24T09:08:04.6994742Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ +2025-11-24T09:08:04.6995162Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/README.md.gotmpl +2025-11-24T09:08:04.6995559Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/Chart.yaml +2025-11-24T09:08:04.6996079Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/.helmignore +2025-11-24T09:08:04.6996475Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/README.md +2025-11-24T09:08:04.6996866Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/values.yaml +2025-11-24T09:08:04.6997229Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ci/ +2025-11-24T09:08:04.6997667Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ci/service-values.yaml +2025-11-24T09:08:04.6998183Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ci/default-values.yaml +2025-11-24T09:08:04.6998615Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ci/netpol-values.yaml +2025-11-24T09:08:04.6999008Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/ +2025-11-24T09:08:04.6999485Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/extra-manifests.yaml +2025-11-24T09:08:04.6999951Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/servicemonitor.yaml +2025-11-24T09:08:04.7000407Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/service-extra.yaml +2025-11-24T09:08:04.7000835Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/secret.yaml +2025-11-24T09:08:04.7001301Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/service-metrics.yaml +2025-11-24T09:08:04.7001731Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/NOTES.txt +2025-11-24T09:08:04.7002193Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/serviceaccount.yaml +2025-11-24T09:08:04.7002749Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/daemonset.yaml +2025-11-24T09:08:04.7003206Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/rolebinding.yaml +2025-11-24T09:08:04.7003655Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/clusterrole.yaml +2025-11-24T09:08:04.7004082Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/role.yaml +2025-11-24T09:08:04.7004635Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/networkpolicy.yaml +2025-11-24T09:08:04.7005080Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/_helpers.tpl +2025-11-24T09:08:04.7005568Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.7006047Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/podsecuritypolicy.yaml +2025-11-24T09:08:04.7006387Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ +2025-11-24T09:08:04.7006779Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/Chart.yaml +2025-11-24T09:08:04.7007173Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/.helmignore +2025-11-24T09:08:04.7007565Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/dashboards/ +2025-11-24T09:08:04.7008048Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/dashboards/custom-dashboard.json +2025-11-24T09:08:04.7008433Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/README.md +2025-11-24T09:08:04.7008820Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/values.yaml +2025-11-24T09:08:04.7009175Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/ +2025-11-24T09:08:04.7009789Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/with-image-renderer-values.yaml +2025-11-24T09:08:04.7010258Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/with-dashboard-values.yaml +2025-11-24T09:08:04.7010743Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/with-dashboard-json-values.yaml +2025-11-24T09:08:04.7011177Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/default-values.yaml +2025-11-24T09:08:04.7011570Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/ +2025-11-24T09:08:04.7012120Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/extra-manifests.yaml +2025-11-24T09:08:04.7012576Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/servicemonitor.yaml +2025-11-24T09:08:04.7013110Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/secret.yaml +2025-11-24T09:08:04.7013564Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/deployment.yaml +2025-11-24T09:08:04.7014121Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/image-renderer-deployment.yaml +2025-11-24T09:08:04.7014635Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/dashboards-json-configmap.yaml +2025-11-24T09:08:04.7015067Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/pvc.yaml +2025-11-24T09:08:04.7015513Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/configmap.yaml +2025-11-24T09:08:04.7015938Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/NOTES.txt +2025-11-24T09:08:04.7016399Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/serviceaccount.yaml +2025-11-24T09:08:04.7016939Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/image-renderer-network-policy.yaml +2025-11-24T09:08:04.7017393Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/rolebinding.yaml +2025-11-24T09:08:04.7017838Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/clusterrole.yaml +2025-11-24T09:08:04.7018266Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/role.yaml +2025-11-24T09:08:04.7018814Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/headless-service.yaml +2025-11-24T09:08:04.7019253Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/service.yaml +2025-11-24T09:08:04.7019671Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/hpa.yaml +2025-11-24T09:08:04.7020085Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/_pod.tpl +2025-11-24T09:08:04.7020594Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/image-renderer-service.yaml +2025-11-24T09:08:04.7021088Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.7021500Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/ +2025-11-24T09:08:04.7021996Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-rolebinding.yaml +2025-11-24T09:08:04.7022485Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-configmap.yaml +2025-11-24T09:08:04.7023160Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-podsecuritypolicy.yaml +2025-11-24T09:08:04.7033035Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test.yaml +2025-11-24T09:08:04.7033894Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-serviceaccount.yaml +2025-11-24T09:08:04.7034404Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-role.yaml +2025-11-24T09:08:04.7034894Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/networkpolicy.yaml +2025-11-24T09:08:04.7035349Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/_helpers.tpl +2025-11-24T09:08:04.7035789Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/ingress.yaml +2025-11-24T09:08:04.7036326Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/secret-env.yaml +2025-11-24T09:08:04.7036868Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/configmap-dashboard-provider.yaml +2025-11-24T09:08:04.7037326Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/statefulset.yaml +2025-11-24T09:08:04.7037807Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.7038289Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/podsecuritypolicy.yaml +2025-11-24T09:08:04.7038658Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/ +2025-11-24T09:08:04.7039077Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/Chart.lock +2025-11-24T09:08:04.7039474Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/Chart.yaml +2025-11-24T09:08:04.7039872Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/.helmignore +2025-11-24T09:08:04.7040267Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/README.md +2025-11-24T09:08:04.7040670Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/values.yaml +2025-11-24T09:08:04.7041072Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/ +2025-11-24T09:08:04.7041537Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/ +2025-11-24T09:08:04.7042047Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/Chart.yaml +2025-11-24T09:08:04.7042777Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/.helmignore +2025-11-24T09:08:04.7043287Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/README.md +2025-11-24T09:08:04.7043794Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/values.yaml +2025-11-24T09:08:04.7044307Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/ +2025-11-24T09:08:04.7044893Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/servicemonitor.yaml +2025-11-24T09:08:04.7045435Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/pdb.yaml +2025-11-24T09:08:04.7046001Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/deployment.yaml +2025-11-24T09:08:04.7046538Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/NOTES.txt +2025-11-24T09:08:04.7047125Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/serviceaccount.yaml +2025-11-24T09:08:04.7047737Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/psp-clusterrolebinding.yaml +2025-11-24T09:08:04.7048426Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/rolebinding.yaml +2025-11-24T09:08:04.7049013Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/stsdiscovery-role.yaml +2025-11-24T09:08:04.7049636Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/stsdiscovery-rolebinding.yaml +2025-11-24T09:08:04.7050172Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/role.yaml +2025-11-24T09:08:04.7050810Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/psp-clusterrole.yaml +2025-11-24T09:08:04.7051364Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/service.yaml +2025-11-24T09:08:04.7051954Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/kubeconfig-secret.yaml +2025-11-24T09:08:04.7052502Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/_helpers.tpl +2025-11-24T09:08:04.7053201Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.7053789Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/podsecuritypolicy.yaml +2025-11-24T09:08:04.7054201Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/ +2025-11-24T09:08:04.7054655Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/ +2025-11-24T09:08:04.7055143Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/pdb.yaml +2025-11-24T09:08:04.7055622Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/pvc.yaml +2025-11-24T09:08:04.7056095Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/psp.yaml +2025-11-24T09:08:04.7056627Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/serviceaccount.yaml +2025-11-24T09:08:04.7057230Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/rolebinding.yaml +2025-11-24T09:08:04.7057693Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/cm.yaml +2025-11-24T09:08:04.7058203Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/clusterrole.yaml +2025-11-24T09:08:04.7058683Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/role.yaml +2025-11-24T09:08:04.7059183Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/deploy.yaml +2025-11-24T09:08:04.7059659Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/sts.yaml +2025-11-24T09:08:04.7060159Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/service.yaml +2025-11-24T09:08:04.7060683Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/headless-svc.yaml +2025-11-24T09:08:04.7061176Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/netpol.yaml +2025-11-24T09:08:04.7061672Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/ingress.yaml +2025-11-24T09:08:04.7062218Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/clusterrolebinding.yaml +2025-11-24T09:08:04.7062870Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/ +2025-11-24T09:08:04.7063339Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/pdb.yaml +2025-11-24T09:08:04.7063788Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/pvc.yaml +2025-11-24T09:08:04.7064232Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/psp.yaml +2025-11-24T09:08:04.7064739Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/serviceaccount.yaml +2025-11-24T09:08:04.7065338Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/rolebinding.yaml +2025-11-24T09:08:04.7065783Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/cm.yaml +2025-11-24T09:08:04.7066271Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/clusterrole.yaml +2025-11-24T09:08:04.7066733Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/deploy.yaml +2025-11-24T09:08:04.7067178Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/sts.yaml +2025-11-24T09:08:04.7067647Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/service.yaml +2025-11-24T09:08:04.7068143Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/headless-svc.yaml +2025-11-24T09:08:04.7068601Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/netpol.yaml +2025-11-24T09:08:04.7069044Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/vpa.yaml +2025-11-24T09:08:04.7069507Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/ingress.yaml +2025-11-24T09:08:04.7070022Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/clusterrolebinding.yaml +2025-11-24T09:08:04.7070471Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/ +2025-11-24T09:08:04.7070958Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/psp.yaml +2025-11-24T09:08:04.7071559Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/serviceaccount.yaml +2025-11-24T09:08:04.7072068Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/daemonset.yaml +2025-11-24T09:08:04.7072578Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/rolebinding.yaml +2025-11-24T09:08:04.7073380Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/role.yaml +2025-11-24T09:08:04.7073875Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/svc.yaml +2025-11-24T09:08:04.7074310Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/NOTES.txt +2025-11-24T09:08:04.7074753Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/_helpers.tpl +2025-11-24T09:08:04.7075195Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/ +2025-11-24T09:08:04.7075672Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/pdb.yaml +2025-11-24T09:08:04.7076134Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/pvc.yaml +2025-11-24T09:08:04.7076600Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/psp.yaml +2025-11-24T09:08:04.7077252Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/serviceaccount.yaml +2025-11-24T09:08:04.7077768Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/clusterrole.yaml +2025-11-24T09:08:04.7078255Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/deploy.yaml +2025-11-24T09:08:04.7078753Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/service.yaml +2025-11-24T09:08:04.7079297Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/netpol.yaml +2025-11-24T09:08:04.7079766Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/vpa.yaml +2025-11-24T09:08:04.7080256Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/ingress.yaml +2025-11-24T09:08:04.7080805Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/clusterrolebinding.yaml +2025-11-24T09:08:04.7081149Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/ +2025-11-24T09:08:04.7081548Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/Chart.yaml +2025-11-24T09:08:04.7081936Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/ +2025-11-24T09:08:04.7082358Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/ +2025-11-24T09:08:04.7082912Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/README.md +2025-11-24T09:08:04.7083351Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/test/ +2025-11-24T09:08:04.7083817Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/test/goss.yaml +2025-11-24T09:08:04.7084258Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/Makefile +2025-11-24T09:08:04.7084662Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/ +2025-11-24T09:08:04.7085090Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/README.md +2025-11-24T09:08:04.7085609Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/values.yaml +2025-11-24T09:08:04.7086029Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/test/ +2025-11-24T09:08:04.7086477Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/test/goss.yaml +2025-11-24T09:08:04.7086906Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/Makefile +2025-11-24T09:08:04.7087332Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/ +2025-11-24T09:08:04.7087797Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/README.md +2025-11-24T09:08:04.7088274Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/values.yaml +2025-11-24T09:08:04.7088716Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/test/ +2025-11-24T09:08:04.7089203Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/test/goss.yaml +2025-11-24T09:08:04.7089660Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/Makefile +2025-11-24T09:08:04.7090083Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/ +2025-11-24T09:08:04.7090531Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/README.md +2025-11-24T09:08:04.7091108Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/values.yaml +2025-11-24T09:08:04.7091551Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/test/ +2025-11-24T09:08:04.7092020Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/test/goss.yaml +2025-11-24T09:08:04.7092457Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/Makefile +2025-11-24T09:08:04.7092978Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/ +2025-11-24T09:08:04.7093494Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/README.md +2025-11-24T09:08:04.7093950Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/values.yaml +2025-11-24T09:08:04.7094384Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/test/ +2025-11-24T09:08:04.7094851Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/test/goss.yaml +2025-11-24T09:08:04.7095294Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/Makefile +2025-11-24T09:08:04.7095690Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/.helmignore +2025-11-24T09:08:04.7096081Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/README.md +2025-11-24T09:08:04.7096469Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/values.yaml +2025-11-24T09:08:04.7096867Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/ +2025-11-24T09:08:04.7097320Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/deployment.yaml +2025-11-24T09:08:04.7097751Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/configmap.yaml +2025-11-24T09:08:04.7098187Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/NOTES.txt +2025-11-24T09:08:04.7098647Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/serviceaccount.yaml +2025-11-24T09:08:04.7099080Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/daemonset.yaml +2025-11-24T09:08:04.7099602Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/rolebinding.yaml +2025-11-24T09:08:04.7100040Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/clusterrole.yaml +2025-11-24T09:08:04.7100461Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/role.yaml +2025-11-24T09:08:04.7100893Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/_helpers.tpl +2025-11-24T09:08:04.7101380Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.7101767Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/Makefile +2025-11-24T09:08:04.7102099Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/ +2025-11-24T09:08:04.7102489Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/datasources.yaml +2025-11-24T09:08:04.7102948Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/NOTES.txt +2025-11-24T09:08:04.7103289Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/tests/ +2025-11-24T09:08:04.7103733Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/tests/loki-test-configmap.yaml +2025-11-24T09:08:04.7104162Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/tests/loki-test-pod.yaml +2025-11-24T09:08:04.7104541Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/_helpers.tpl +2025-11-24T09:08:04.7104913Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/ +2025-11-24T09:08:04.7105226Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/Chart.yaml +2025-11-24T09:08:04.7105533Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/.helmignore +2025-11-24T09:08:04.7105832Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/README.md +2025-11-24T09:08:04.7106131Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/values.yaml +2025-11-24T09:08:04.7106433Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/ +2025-11-24T09:08:04.7106831Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/pdb.yaml +2025-11-24T09:08:04.7107178Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/nats-box.yaml +2025-11-24T09:08:04.7107530Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/configmap.yaml +2025-11-24T09:08:04.7107858Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/NOTES.txt +2025-11-24T09:08:04.7108199Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/service.yaml +2025-11-24T09:08:04.7108522Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/rbac.yaml +2025-11-24T09:08:04.7108904Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/serviceMonitor.yaml +2025-11-24T09:08:04.7109232Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/tests/ +2025-11-24T09:08:04.7109660Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/tests/test-request-reply.yaml +2025-11-24T09:08:04.7110037Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/networkpolicy.yaml +2025-11-24T09:08:04.7110380Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/_helpers.tpl +2025-11-24T09:08:04.7110751Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/statefulset.yaml +2025-11-24T09:08:04.7111004Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/ +2025-11-24T09:08:04.7111310Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/Chart.lock +2025-11-24T09:08:04.7111604Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/Chart.yaml +2025-11-24T09:08:04.7111904Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/.helmignore +2025-11-24T09:08:04.7112199Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/README.md +2025-11-24T09:08:04.7112501Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/values.yaml +2025-11-24T09:08:04.7113162Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/ +2025-11-24T09:08:04.7113496Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/ +2025-11-24T09:08:04.7113884Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/Chart.yaml +2025-11-24T09:08:04.7114239Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/.helmignore +2025-11-24T09:08:04.7114585Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/README.md +2025-11-24T09:08:04.7114935Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/values.yaml +2025-11-24T09:08:04.7115279Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/ +2025-11-24T09:08:04.7115697Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.7116103Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.7116506Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_names.tpl +2025-11-24T09:08:04.7116943Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.7117337Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.7117745Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/ +2025-11-24T09:08:04.7118801Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_mongodb.tpl +2025-11-24T09:08:04.7119650Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_mysql.tpl +2025-11-24T09:08:04.7120443Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.7121087Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.7121546Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.7122105Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.7122578Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.7123204Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_images.tpl +2025-11-24T09:08:04.7123619Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.7124016Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_ingress.tpl +2025-11-24T09:08:04.7124442Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.7124845Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.7125262Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.7125658Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.7125963Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/ +2025-11-24T09:08:04.7126344Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/token-secrets.yaml +2025-11-24T09:08:04.7126678Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/pdb.yaml +2025-11-24T09:08:04.7127055Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/svc-headless.yaml +2025-11-24T09:08:04.7127391Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/secrets.yaml +2025-11-24T09:08:04.7127745Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/configmap.yaml +2025-11-24T09:08:04.7128072Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/NOTES.txt +2025-11-24T09:08:04.7128536Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/serviceaccount.yaml +2025-11-24T09:08:04.7128873Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/cronjob.yaml +2025-11-24T09:08:04.7129232Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/extra-list.yaml +2025-11-24T09:08:04.7129585Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/podmonitor.yaml +2025-11-24T09:08:04.7129964Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/networkpolicy.yaml +2025-11-24T09:08:04.7130337Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/snapshot-pvc.yaml +2025-11-24T09:08:04.7130674Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/_helpers.tpl +2025-11-24T09:08:04.7131050Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/prometheusrule.yaml +2025-11-24T09:08:04.7131376Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/svc.yaml +2025-11-24T09:08:04.7131738Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/statefulset.yaml +2025-11-24T09:08:04.7132051Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/ +2025-11-24T09:08:04.7132393Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/Chart.yaml +2025-11-24T09:08:04.7132840Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/.helmignore +2025-11-24T09:08:04.7133175Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/crds/ +2025-11-24T09:08:04.7133720Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/crds/crd.yaml +2025-11-24T09:08:04.7134065Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/README.md +2025-11-24T09:08:04.7134411Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/values.yaml +2025-11-24T09:08:04.7134745Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/ +2025-11-24T09:08:04.7135149Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/jaeger.yaml +2025-11-24T09:08:04.7135553Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/deployment.yaml +2025-11-24T09:08:04.7135998Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/psp.yaml +2025-11-24T09:08:04.7136385Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/crds.yaml +2025-11-24T09:08:04.7136767Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/NOTES.txt +2025-11-24T09:08:04.7137145Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/role.yaml +2025-11-24T09:08:04.7137544Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/service.yaml +2025-11-24T09:08:04.7137979Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/service-account.yaml +2025-11-24T09:08:04.7138367Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/_helpers.tpl +2025-11-24T09:08:04.7138785Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/role-binding.yaml +2025-11-24T09:08:04.7139115Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/ +2025-11-24T09:08:04.7139477Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/Chart.lock +2025-11-24T09:08:04.7139825Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/Chart.yaml +2025-11-24T09:08:04.7140194Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/.helmignore +2025-11-24T09:08:04.7140547Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/README.md +2025-11-24T09:08:04.7140910Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/values.yaml +2025-11-24T09:08:04.7141250Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/ +2025-11-24T09:08:04.7141654Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/ +2025-11-24T09:08:04.7142175Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/Chart.yaml +2025-11-24T09:08:04.7142603Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/crds/ +2025-11-24T09:08:04.7143200Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdevice.yaml +2025-11-24T09:08:04.7143719Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdeviceclaim.yaml +2025-11-24T09:08:04.7144164Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/README.md +2025-11-24T09:08:04.7144601Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/values.yaml +2025-11-24T09:08:04.7145038Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/ +2025-11-24T09:08:04.7145594Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter-service.yaml +2025-11-24T09:08:04.7146101Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/deployment.yaml +2025-11-24T09:08:04.7146668Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter-service.yaml +2025-11-24T09:08:04.7147165Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/configmap.yaml +2025-11-24T09:08:04.7147762Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/NOTES.txt +2025-11-24T09:08:04.7148264Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/daemonset.yaml +2025-11-24T09:08:04.7148784Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter.yaml +2025-11-24T09:08:04.7149262Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/rbac.yaml +2025-11-24T09:08:04.7149787Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter.yaml +2025-11-24T09:08:04.7150349Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/_helpers.tpl +2025-11-24T09:08:04.7150701Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/ +2025-11-24T09:08:04.7151135Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/deployment.yaml +2025-11-24T09:08:04.7151545Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/psp.yaml +2025-11-24T09:08:04.7151944Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/NOTES.txt +2025-11-24T09:08:04.7152386Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/hostpath-class.yaml +2025-11-24T09:08:04.7152933Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/device-class.yaml +2025-11-24T09:08:04.7153328Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/rbac.yaml +2025-11-24T09:08:04.7153739Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/_helpers.tpl +2025-11-24T09:08:04.7154050Z charts/openebs/charts/openebs/charts/mayastor/product.yaml +2025-11-24T09:08:04.7154295Z charts/openebs/charts/openebs/charts/mayastor/templates/ +2025-11-24T09:08:04.7154600Z charts/openebs/charts/openebs/charts/mayastor/templates/loki-stack/ +2025-11-24T09:08:04.7154932Z charts/openebs/charts/openebs/charts/mayastor/templates/loki-stack/storage/ +2025-11-24T09:08:04.7155317Z charts/openebs/charts/openebs/charts/mayastor/templates/loki-stack/storage/localpv.yaml +2025-11-24T09:08:04.7155754Z charts/openebs/charts/openebs/charts/mayastor/templates/loki-stack/storage/localpv-storageclass.yaml +2025-11-24T09:08:04.7156155Z charts/openebs/charts/openebs/charts/mayastor/templates/storageclass.yaml +2025-11-24T09:08:04.7156442Z charts/openebs/charts/openebs/charts/mayastor/templates/NOTES.txt +2025-11-24T09:08:04.7156727Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/ +2025-11-24T09:08:04.7157055Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/operators/ +2025-11-24T09:08:04.7157536Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/operators/operator-diskpool-deployment.yaml +2025-11-24T09:08:04.7157856Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/metrics/ +2025-11-24T09:08:04.7158354Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/metrics/metrics-exporter-io-engine-service.yaml +2025-11-24T09:08:04.7158670Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/apis/ +2025-11-24T09:08:04.7159071Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/apis/api-rest-service.yaml +2025-11-24T09:08:04.7159491Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/apis/api-rest-deployment.yaml +2025-11-24T09:08:04.7159795Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/obs/ +2025-11-24T09:08:04.7160173Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/obs/stats-service.yaml +2025-11-24T09:08:04.7160599Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/obs/obs-callhome-deployment.yaml +2025-11-24T09:08:04.7160901Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/io/ +2025-11-24T09:08:04.7161305Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/io/io-engine-daemonset.yaml +2025-11-24T09:08:04.7161779Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/priority-class/ +2025-11-24T09:08:04.7162223Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/priority-class/priority-class.yaml +2025-11-24T09:08:04.7162540Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/ +2025-11-24T09:08:04.7162994Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/ha/ +2025-11-24T09:08:04.7163422Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/ha/ha-node-daemonset.yaml +2025-11-24T09:08:04.7163825Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/core/ +2025-11-24T09:08:04.7164275Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/core/agent-core-deployment.yaml +2025-11-24T09:08:04.7164710Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/core/agent-core-service.yaml +2025-11-24T09:08:04.7165022Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/csi/ +2025-11-24T09:08:04.7165420Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/csi/csi-node-daemonset.yaml +2025-11-24T09:08:04.7165854Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/csi/csi-controller-deployment.yaml +2025-11-24T09:08:04.7166165Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/rbac/ +2025-11-24T09:08:04.7166506Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/rbac/rbac.yaml +2025-11-24T09:08:04.7166776Z charts/openebs/charts/openebs/charts/mayastor/templates/etcd/ +2025-11-24T09:08:04.7167083Z charts/openebs/charts/openebs/charts/mayastor/templates/etcd/storage/ +2025-11-24T09:08:04.7167430Z charts/openebs/charts/openebs/charts/mayastor/templates/etcd/storage/localpv.yaml +2025-11-24T09:08:04.7167842Z charts/openebs/charts/openebs/charts/mayastor/templates/etcd/storage/localpv-storageclass.yaml +2025-11-24T09:08:04.7168162Z charts/openebs/charts/openebs/charts/mayastor/templates/jaeger-operator/ +2025-11-24T09:08:04.7168526Z charts/openebs/charts/openebs/charts/mayastor/templates/jaeger-operator/jaeger.yaml +2025-11-24T09:08:04.7168830Z charts/openebs/charts/openebs/charts/mayastor/templates/_helpers.tpl +2025-11-24T09:08:04.7169054Z charts/openebs/charts/openebs/charts/zfs-localpv/ +2025-11-24T09:08:04.7169312Z charts/openebs/charts/openebs/charts/zfs-localpv/Chart.yaml +2025-11-24T09:08:04.7169661Z charts/openebs/charts/openebs/charts/zfs-localpv/.helmignore +2025-11-24T09:08:04.7169900Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/ +2025-11-24T09:08:04.7170203Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfsvolume.yaml +2025-11-24T09:08:04.7170497Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfsbackup.yaml +2025-11-24T09:08:04.7170783Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfsnode.yaml +2025-11-24T09:08:04.7171083Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfsrestore.yaml +2025-11-24T09:08:04.7171396Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfssnapshot.yaml +2025-11-24T09:08:04.7171647Z charts/openebs/charts/openebs/charts/zfs-localpv/README.md +2025-11-24T09:08:04.7171903Z charts/openebs/charts/openebs/charts/zfs-localpv/values.yaml +2025-11-24T09:08:04.7172154Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/ +2025-11-24T09:08:04.7172455Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/psp.yaml +2025-11-24T09:08:04.7172896Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/configmap.yaml +2025-11-24T09:08:04.7173194Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/NOTES.txt +2025-11-24T09:08:04.7173519Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/zfs-contoller.yaml +2025-11-24T09:08:04.7173854Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/volumesnapshots.yaml +2025-11-24T09:08:04.7174166Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/zfs-node.yaml +2025-11-24T09:08:04.7174458Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/rbac.yaml +2025-11-24T09:08:04.7175035Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/volumesnapshotcontents.yaml +2025-11-24T09:08:04.7175420Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/volumesnapshotclasses.yaml +2025-11-24T09:08:04.7175732Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/_helpers.tpl +2025-11-24T09:08:04.7176069Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/priority-class.yaml +2025-11-24T09:08:04.7176396Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/csidriver.yaml +2025-11-24T09:08:04.7176602Z charts/openebs/charts/openebs/charts/jiva/ +2025-11-24T09:08:04.7176896Z charts/openebs/charts/openebs/charts/jiva/Chart.lock +2025-11-24T09:08:04.7177126Z charts/openebs/charts/openebs/charts/jiva/Chart.yaml +2025-11-24T09:08:04.7177360Z charts/openebs/charts/openebs/charts/jiva/.helmignore +2025-11-24T09:08:04.7177578Z charts/openebs/charts/openebs/charts/jiva/crds/ +2025-11-24T09:08:04.7177856Z charts/openebs/charts/openebs/charts/jiva/crds/jivavolumes.yaml +2025-11-24T09:08:04.7178158Z charts/openebs/charts/openebs/charts/jiva/crds/jivavolumepolicy.yaml +2025-11-24T09:08:04.7178430Z charts/openebs/charts/openebs/charts/jiva/crds/upgradetask.yaml +2025-11-24T09:08:04.7178658Z charts/openebs/charts/openebs/charts/jiva/README.md +2025-11-24T09:08:04.7178888Z charts/openebs/charts/openebs/charts/jiva/values.yaml +2025-11-24T09:08:04.7179103Z charts/openebs/charts/openebs/charts/jiva/charts/ +2025-11-24T09:08:04.7179417Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/ +2025-11-24T09:08:04.7179763Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/Chart.lock +2025-11-24T09:08:04.7180112Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/Chart.yaml +2025-11-24T09:08:04.7180454Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/.helmignore +2025-11-24T09:08:04.7180790Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/README.md +2025-11-24T09:08:04.7181129Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/values.yaml +2025-11-24T09:08:04.7181459Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/ +2025-11-24T09:08:04.7181855Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/ +2025-11-24T09:08:04.7182285Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/Chart.yaml +2025-11-24T09:08:04.7182879Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/crds/ +2025-11-24T09:08:04.7183351Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdevice.yaml +2025-11-24T09:08:04.7183845Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdeviceclaim.yaml +2025-11-24T09:08:04.7184264Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/README.md +2025-11-24T09:08:04.7184699Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/values.yaml +2025-11-24T09:08:04.7282264Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/ +2025-11-24T09:08:04.7283107Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter-service.yaml +2025-11-24T09:08:04.7283631Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/deployment.yaml +2025-11-24T09:08:04.7284215Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter-service.yaml +2025-11-24T09:08:04.7284723Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/configmap.yaml +2025-11-24T09:08:04.7285192Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/NOTES.txt +2025-11-24T09:08:04.7285670Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/daemonset.yaml +2025-11-24T09:08:04.7286537Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter.yaml +2025-11-24T09:08:04.7287006Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/rbac.yaml +2025-11-24T09:08:04.7287514Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter.yaml +2025-11-24T09:08:04.7287996Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/_helpers.tpl +2025-11-24T09:08:04.7288439Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/ +2025-11-24T09:08:04.7288859Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/deployment.yaml +2025-11-24T09:08:04.7289245Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/psp.yaml +2025-11-24T09:08:04.7289646Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/NOTES.txt +2025-11-24T09:08:04.7290079Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/hostpath-class.yaml +2025-11-24T09:08:04.7290506Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/device-class.yaml +2025-11-24T09:08:04.7290895Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/rbac.yaml +2025-11-24T09:08:04.7291294Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/_helpers.tpl +2025-11-24T09:08:04.7291531Z charts/openebs/charts/openebs/charts/jiva/templates/ +2025-11-24T09:08:04.7537490Z charts/openebs/charts/openebs/charts/jiva/templates/csi-iscsiadm-config.yaml +2025-11-24T09:08:04.7538190Z charts/openebs/charts/openebs/charts/jiva/templates/csi-driver.yaml +2025-11-24T09:08:04.7538601Z charts/openebs/charts/openebs/charts/jiva/templates/default-storageclass.yaml +2025-11-24T09:08:04.7539220Z charts/openebs/charts/openebs/charts/jiva/templates/jiva-operator.yaml +2025-11-24T09:08:04.7539845Z charts/openebs/charts/openebs/charts/jiva/templates/psp.yaml +2025-11-24T09:08:04.7540210Z charts/openebs/charts/openebs/charts/jiva/templates/csi-controller.yaml +2025-11-24T09:08:04.7540509Z charts/openebs/charts/openebs/charts/jiva/templates/NOTES.txt +2025-11-24T09:08:04.7541038Z charts/openebs/charts/openebs/charts/jiva/templates/csi-controller-rbac.yaml +2025-11-24T09:08:04.7542026Z charts/openebs/charts/openebs/charts/jiva/templates/jiva-operator-rbac.yaml +2025-11-24T09:08:04.7542526Z charts/openebs/charts/openebs/charts/jiva/templates/csi-node-rbac.yaml +2025-11-24T09:08:04.7543108Z charts/openebs/charts/openebs/charts/jiva/templates/csi-node.yaml +2025-11-24T09:08:04.7543544Z charts/openebs/charts/openebs/charts/jiva/templates/_helpers.tpl +2025-11-24T09:08:04.7543910Z charts/openebs/charts/openebs/charts/jiva/templates/default-policy.yaml +2025-11-24T09:08:04.7544263Z charts/openebs/charts/openebs/charts/jiva/templates/priority-class.yaml +2025-11-24T09:08:04.7544541Z charts/openebs/charts/openebs/charts/openebs-ndm/ +2025-11-24T09:08:04.7544837Z charts/openebs/charts/openebs/charts/openebs-ndm/Chart.yaml +2025-11-24T09:08:04.7545146Z charts/openebs/charts/openebs/charts/openebs-ndm/crds/ +2025-11-24T09:08:04.7545507Z charts/openebs/charts/openebs/charts/openebs-ndm/crds/blockdevice.yaml +2025-11-24T09:08:04.7545891Z charts/openebs/charts/openebs/charts/openebs-ndm/crds/blockdeviceclaim.yaml +2025-11-24T09:08:04.7546183Z charts/openebs/charts/openebs/charts/openebs-ndm/README.md +2025-11-24T09:08:04.7546473Z charts/openebs/charts/openebs/charts/openebs-ndm/values.yaml +2025-11-24T09:08:04.7546770Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/ +2025-11-24T09:08:04.7547204Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/node-exporter-service.yaml +2025-11-24T09:08:04.7547572Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/deployment.yaml +2025-11-24T09:08:04.7548019Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/cluster-exporter-service.yaml +2025-11-24T09:08:04.7548573Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/configmap.yaml +2025-11-24T09:08:04.7548886Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/NOTES.txt +2025-11-24T09:08:04.7549202Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/daemonset.yaml +2025-11-24T09:08:04.7555529Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/node-exporter.yaml +2025-11-24T09:08:04.7556069Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/rbac.yaml +2025-11-24T09:08:04.7556446Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/cluster-exporter.yaml +2025-11-24T09:08:04.7556914Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/_helpers.tpl +2025-11-24T09:08:04.7557179Z charts/openebs/charts/openebs/charts/localpv-provisioner/ +2025-11-24T09:08:04.7557493Z charts/openebs/charts/openebs/charts/localpv-provisioner/Chart.lock +2025-11-24T09:08:04.7557801Z charts/openebs/charts/openebs/charts/localpv-provisioner/Chart.yaml +2025-11-24T09:08:04.7558121Z charts/openebs/charts/openebs/charts/localpv-provisioner/.helmignore +2025-11-24T09:08:04.7558424Z charts/openebs/charts/openebs/charts/localpv-provisioner/README.md +2025-11-24T09:08:04.7558730Z charts/openebs/charts/openebs/charts/localpv-provisioner/values.yaml +2025-11-24T09:08:04.7559024Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/ +2025-11-24T09:08:04.7559511Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/ +2025-11-24T09:08:04.7560180Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/Chart.yaml +2025-11-24T09:08:04.7560679Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/crds/ +2025-11-24T09:08:04.7652289Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdevice.yaml +2025-11-24T09:08:04.7653449Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdeviceclaim.yaml +2025-11-24T09:08:04.7654273Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/README.md +2025-11-24T09:08:04.7655088Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/values.yaml +2025-11-24T09:08:04.7655725Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/ +2025-11-24T09:08:04.7656356Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter-service.yaml +2025-11-24T09:08:04.7657231Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/deployment.yaml +2025-11-24T09:08:04.7657919Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter-service.yaml +2025-11-24T09:08:04.7658543Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/configmap.yaml +2025-11-24T09:08:04.7659091Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/NOTES.txt +2025-11-24T09:08:04.7659679Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/daemonset.yaml +2025-11-24T09:08:04.7660293Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter.yaml +2025-11-24T09:08:04.7660813Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/rbac.yaml +2025-11-24T09:08:04.7661451Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter.yaml +2025-11-24T09:08:04.7661980Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/_helpers.tpl +2025-11-24T09:08:04.7662503Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/ +2025-11-24T09:08:04.7663333Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/deployment.yaml +2025-11-24T09:08:04.7663875Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/psp.yaml +2025-11-24T09:08:04.7664313Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/NOTES.txt +2025-11-24T09:08:04.7665094Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/hostpath-class.yaml +2025-11-24T09:08:04.7665589Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/device-class.yaml +2025-11-24T09:08:04.7666105Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/rbac.yaml +2025-11-24T09:08:04.7729040Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/_helpers.tpl +2025-11-24T09:08:04.7729470Z charts/openebs/charts/openebs/OWNERS +2025-11-24T09:08:04.7729879Z charts/openebs/charts/openebs/templates/ +2025-11-24T09:08:04.7730419Z charts/openebs/charts/openebs/templates/kyverno/ +2025-11-24T09:08:04.7730921Z charts/openebs/charts/openebs/templates/kyverno/allow-proc-mount.yaml +2025-11-24T09:08:04.7731416Z charts/openebs/charts/openebs/templates/kyverno/allow-host-ports.yaml +2025-11-24T09:08:04.7731995Z charts/openebs/charts/openebs/templates/kyverno/require-user-groups.yaml +2025-11-24T09:08:04.7732511Z charts/openebs/charts/openebs/templates/kyverno/allow-privilege-escalation.yaml +2025-11-24T09:08:04.7733184Z charts/openebs/charts/openebs/templates/kyverno/allow-host-namespaces.yaml +2025-11-24T09:08:04.7733660Z charts/openebs/charts/openebs/templates/kyverno/allow-selinux.yaml +2025-11-24T09:08:04.7734135Z charts/openebs/charts/openebs/templates/kyverno/allow-capabilities.yaml +2025-11-24T09:08:04.7734623Z charts/openebs/charts/openebs/templates/kyverno/allow-privileged-containers.yaml +2025-11-24T09:08:04.7735008Z charts/openebs/charts/openebs/templates/psp.yaml +2025-11-24T09:08:04.7735387Z charts/openebs/charts/openebs/templates/legacy/ +2025-11-24T09:08:04.7735899Z charts/openebs/charts/openebs/templates/legacy/deployment-maya-apiserver.yaml +2025-11-24T09:08:04.7736378Z charts/openebs/charts/openebs/templates/legacy/deployment-admission-server.yaml +2025-11-24T09:08:04.7736784Z charts/openebs/charts/openebs/templates/legacy/deployment-maya-provisioner.yaml +2025-11-24T09:08:04.7737331Z charts/openebs/charts/openebs/templates/legacy/service-maya-apiserver.yaml +2025-11-24T09:08:04.7737828Z charts/openebs/charts/openebs/templates/legacy/deployment-maya-snapshot-operator.yaml +2025-11-24T09:08:04.7738317Z charts/openebs/charts/openebs/templates/legacy/cleanup-webhook.yaml +2025-11-24T09:08:04.7738651Z charts/openebs/charts/openebs/templates/NOTES.txt +2025-11-24T09:08:04.7739126Z charts/openebs/charts/openebs/templates/serviceaccount.yaml +2025-11-24T09:08:04.7739661Z charts/openebs/charts/openebs/templates/psp-clusterrolebinding.yaml +2025-11-24T09:08:04.7740090Z charts/openebs/charts/openebs/templates/clusterrole.yaml +2025-11-24T09:08:04.7740490Z charts/openebs/charts/openebs/templates/psp-clusterrole.yaml +2025-11-24T09:08:04.7740920Z charts/openebs/charts/openebs/templates/localprovisioner/ +2025-11-24T09:08:04.7741367Z charts/openebs/charts/openebs/templates/localprovisioner/hostpath-class.yaml +2025-11-24T09:08:04.7741832Z charts/openebs/charts/openebs/templates/localprovisioner/device-class.yaml +2025-11-24T09:08:04.7742417Z charts/openebs/charts/openebs/templates/localprovisioner/deployment-local-provisioner.yaml +2025-11-24T09:08:04.7743108Z charts/openebs/charts/openebs/templates/ndm/ +2025-11-24T09:08:04.7743588Z charts/openebs/charts/openebs/templates/ndm/node-exporter-service.yaml +2025-11-24T09:08:04.7744123Z charts/openebs/charts/openebs/templates/ndm/cluster-exporter-service.yaml +2025-11-24T09:08:04.7744608Z charts/openebs/charts/openebs/templates/ndm/deployment-ndm-operator.yaml +2025-11-24T09:08:04.7745105Z charts/openebs/charts/openebs/templates/ndm/cm-node-disk-manager.yaml +2025-11-24T09:08:04.7745500Z charts/openebs/charts/openebs/templates/ndm/node-exporter.yaml +2025-11-24T09:08:04.7745948Z charts/openebs/charts/openebs/templates/ndm/daemonset-ndm.yaml +2025-11-24T09:08:04.7746383Z charts/openebs/charts/openebs/templates/ndm/cluster-exporter.yaml +2025-11-24T09:08:04.7746782Z charts/openebs/charts/openebs/templates/_helpers.tpl +2025-11-24T09:08:04.7747326Z charts/openebs/charts/openebs/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.7747697Z charts/elasticsearch-ephemeral/ +2025-11-24T09:08:04.7748232Z charts/elasticsearch-ephemeral/Chart.yaml +2025-11-24T09:08:04.7748632Z charts/elasticsearch-ephemeral/values.yaml +2025-11-24T09:08:04.7748959Z charts/elasticsearch-ephemeral/templates/ +2025-11-24T09:08:04.7749348Z charts/elasticsearch-ephemeral/templates/es.yaml +2025-11-24T09:08:04.7749729Z charts/elasticsearch-ephemeral/templates/cert.yaml +2025-11-24T09:08:04.7750138Z charts/elasticsearch-ephemeral/templates/es-svc.yaml +2025-11-24T09:08:04.7750501Z charts/elasticsearch-ephemeral/templates/_helpers.tpl +2025-11-24T09:08:04.7750861Z charts/ingress-nginx-controller/ +2025-11-24T09:08:04.7751264Z charts/ingress-nginx-controller/Chart.lock +2025-11-24T09:08:04.7751616Z charts/ingress-nginx-controller/Chart.yaml +2025-11-24T09:08:04.7751959Z charts/ingress-nginx-controller/values.yaml +2025-11-24T09:08:04.7752303Z charts/ingress-nginx-controller/charts/ +2025-11-24T09:08:04.7753531Z charts/ingress-nginx-controller/charts/ingress-nginx/ +2025-11-24T09:08:04.7754750Z charts/ingress-nginx-controller/charts/ingress-nginx/README.md.gotmpl +2025-11-24T09:08:04.7755793Z charts/ingress-nginx-controller/charts/ingress-nginx/Chart.yaml +2025-11-24T09:08:04.7756742Z charts/ingress-nginx-controller/charts/ingress-nginx/.helmignore +2025-11-24T09:08:04.7757344Z charts/ingress-nginx-controller/charts/ingress-nginx/README.md +2025-11-24T09:08:04.7757750Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/ +2025-11-24T09:08:04.7758295Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.15.0.md +2025-11-24T09:08:04.7758732Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.9.md +2025-11-24T09:08:04.7759287Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.7.2.md +2025-11-24T09:08:04.7759766Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.11.3.md +2025-11-24T09:08:04.7760356Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.7.0.md +2025-11-24T09:08:04.7760817Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.0.md +2025-11-24T09:08:04.7761354Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.11.0.md +2025-11-24T09:08:04.7761806Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.2.md +2025-11-24T09:08:04.7762273Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.12.0.md +2025-11-24T09:08:04.7762993Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.5.1.md +2025-11-24T09:08:04.7763549Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.12.md +2025-11-24T09:08:04.7764013Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.0.md +2025-11-24T09:08:04.7764516Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.18.0.md +2025-11-24T09:08:04.7764971Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.15.1.md +2025-11-24T09:08:04.7765501Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.7.md +2025-11-24T09:08:04.7765952Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.9.0.md +2025-11-24T09:08:04.7766450Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.10.2.md +2025-11-24T09:08:04.7767083Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.7.0.md +2025-11-24T09:08:04.7767902Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.15.0.md +2025-11-24T09:08:04.7768531Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.18.md +2025-11-24T09:08:04.7775505Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.1.2.md +2025-11-24T09:08:04.7776044Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.6.1.md +2025-11-24T09:08:04.7776432Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.3.md +2025-11-24T09:08:04.7777000Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.10.0.md +2025-11-24T09:08:04.7777365Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.12.0.md +2025-11-24T09:08:04.7777712Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.5.md +2025-11-24T09:08:04.7778055Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.2.md +2025-11-24T09:08:04.7778415Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.26.0.md +2025-11-24T09:08:04.7778764Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.2.0.md +2025-11-24T09:08:04.7779192Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.22.0.md +2025-11-24T09:08:04.7779534Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.14.0.md +2025-11-24T09:08:04.7779882Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.2.1.md +2025-11-24T09:08:04.7780237Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.16.1.md +2025-11-24T09:08:04.7780579Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.7.1.md +2025-11-24T09:08:04.7780916Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.3.0.md +2025-11-24T09:08:04.7781257Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.9.1.md +2025-11-24T09:08:04.7781591Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.5.md +2025-11-24T09:08:04.7781927Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.0.0.md +2025-11-24T09:08:04.7782265Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.6.md +2025-11-24T09:08:04.7782610Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.1.md +2025-11-24T09:08:04.7783232Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.9.1.md +2025-11-24T09:08:04.7783580Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.29.0.md +2025-11-24T09:08:04.7783930Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.11.0.md +2025-11-24T09:08:04.7784273Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart.md.gotmpl +2025-11-24T09:08:04.7784612Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.10.0.md +2025-11-24T09:08:04.7785060Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.31.0.md +2025-11-24T09:08:04.7785394Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.34.0.md +2025-11-24T09:08:04.7785733Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.9.0.md +2025-11-24T09:08:04.7786082Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.25.0.md +2025-11-24T09:08:04.7786428Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.21.0.md +2025-11-24T09:08:04.7786771Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.4.0.md +2025-11-24T09:08:04.7787116Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.13.md +2025-11-24T09:08:04.7787454Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.1.0.md +2025-11-24T09:08:04.7787788Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.3.1.md +2025-11-24T09:08:04.7788129Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.4.md +2025-11-24T09:08:04.7788473Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.33.0.md +2025-11-24T09:08:04.7788822Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.27.0.md +2025-11-24T09:08:04.7789150Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.6.0.md +2025-11-24T09:08:04.7789488Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.11.1.md +2025-11-24T09:08:04.7789827Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.15.md +2025-11-24T09:08:04.7790293Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.19.0.md +2025-11-24T09:08:04.7790634Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.3.0.md +2025-11-24T09:08:04.7790971Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.5.0.md +2025-11-24T09:08:04.7791312Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.17.0.md +2025-11-24T09:08:04.7791653Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.23.0.md +2025-11-24T09:08:04.7792063Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.10.1.md +2025-11-24T09:08:04.7792400Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.10.1.md +2025-11-24T09:08:04.7792914Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.28.0.md +2025-11-24T09:08:04.7793257Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.7.1.md +2025-11-24T09:08:04.7793663Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.0-beta.0.md +2025-11-24T09:08:04.7794009Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.9.0.md +2025-11-24T09:08:04.7794346Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.8.0.md +2025-11-24T09:08:04.7794691Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.10.0.md +2025-11-24T09:08:04.7795038Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.20.1.md +2025-11-24T09:08:04.7795379Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.4.0.md +2025-11-24T09:08:04.7795712Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.3.md +2025-11-24T09:08:04.7796051Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.14.md +2025-11-24T09:08:04.7796381Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.5.2.md +2025-11-24T09:08:04.7796724Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.11.2.md +2025-11-24T09:08:04.7797061Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.10.md +2025-11-24T09:08:04.7797397Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.13.0.md +2025-11-24T09:08:04.7797735Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.11.md +2025-11-24T09:08:04.7798150Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.14.0.md +2025-11-24T09:08:04.7798501Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.11.1.md +2025-11-24T09:08:04.7798836Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.2.md +2025-11-24T09:08:04.7799173Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.3.md +2025-11-24T09:08:04.7799511Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.16.0.md +2025-11-24T09:08:04.7799851Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.1.md +2025-11-24T09:08:04.7800183Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.24.0.md +2025-11-24T09:08:04.7800523Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.20.0.md +2025-11-24T09:08:04.7800858Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.12.1.md +2025-11-24T09:08:04.7801197Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.16.0.md +2025-11-24T09:08:04.7801532Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.32.0.md +2025-11-24T09:08:04.7801872Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.30.0.md +2025-11-24T09:08:04.7802206Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.6.0.md +2025-11-24T09:08:04.7802542Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.13.0.md +2025-11-24T09:08:04.7803122Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.1.md +2025-11-24T09:08:04.7803413Z charts/ingress-nginx-controller/charts/ingress-nginx/values.yaml +2025-11-24T09:08:04.7803664Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/ +2025-11-24T09:08:04.7804069Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-configmap-values.yaml +2025-11-24T09:08:04.7804528Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-extra-modules-values.yaml +2025-11-24T09:08:04.7804931Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-values.yaml +2025-11-24T09:08:04.7805474Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-podannotations-values.yaml +2025-11-24T09:08:04.7805946Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-podannotations-values.yaml +2025-11-24T09:08:04.7806333Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-service-values.yaml +2025-11-24T09:08:04.7806735Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-values.yaml +2025-11-24T09:08:04.7807170Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-configmap-addheaders-values.yaml +2025-11-24T09:08:04.7807523Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-hpa-values.yaml +2025-11-24T09:08:04.7807942Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-service-internal-values.yaml +2025-11-24T09:08:04.7808388Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-opentelemetry-values.yaml +2025-11-24T09:08:04.7808843Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-opentelemetry-values.yaml +2025-11-24T09:08:04.7809194Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/deployment-psp-values.yaml +2025-11-24T09:08:04.7809605Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/deployment-webhook-and-psp-values.yaml +2025-11-24T09:08:04.7810040Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/admission-webhooks-cert-manager-values.yaml +2025-11-24T09:08:04.7810466Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-metrics-values.yaml +2025-11-24T09:08:04.7810908Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-extra-modules-values.yaml +2025-11-24T09:08:04.7811327Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-metrics-values.yaml +2025-11-24T09:08:04.7811824Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/deamonset-webhook-and-psp-values.yaml +2025-11-24T09:08:04.7812272Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-configmap-proxyheaders-values.yaml +2025-11-24T09:08:04.7812729Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/deamonset-psp-values.yaml +2025-11-24T09:08:04.7813128Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-ingressclass-values.yaml +2025-11-24T09:08:04.7813396Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/ +2025-11-24T09:08:04.7813808Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-prometheusrule_test.yaml +2025-11-24T09:08:04.7814210Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-service-metrics_test.yaml +2025-11-24T09:08:04.7814599Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-configmap_test.yaml +2025-11-24T09:08:04.7815051Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-poddisruptionbudget_test.yaml +2025-11-24T09:08:04.7815420Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-keda_test.yaml +2025-11-24T09:08:04.7815829Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-service-internal_test.yaml +2025-11-24T09:08:04.7816235Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-serviceaccount_test.yaml +2025-11-24T09:08:04.7816610Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-service_test.yaml +2025-11-24T09:08:04.7817217Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-extra-configmaps_test.yaml +2025-11-24T09:08:04.7817612Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-service_test.yaml +2025-11-24T09:08:04.7818041Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-serviceaccount_test.yaml +2025-11-24T09:08:04.7818450Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-servicemonitor_test.yaml +2025-11-24T09:08:04.7818785Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/ +2025-11-24T09:08:04.7819244Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/ +2025-11-24T09:08:04.7819743Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/clusterrolebinding_test.yaml +2025-11-24T09:08:04.7820210Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/serviceaccount_test.yaml +2025-11-24T09:08:04.7820671Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/clusterrole_test.yaml +2025-11-24T09:08:04.7821119Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/rolebinding_test.yaml +2025-11-24T09:08:04.7821547Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/role_test.yaml +2025-11-24T09:08:04.7821990Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/validating-webhook_test.yaml +2025-11-24T09:08:04.7822379Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-daemonset_test.yaml +2025-11-24T09:08:04.7822990Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-hpa_test.yaml +2025-11-24T09:08:04.7823457Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-service-webhook_test.yaml +2025-11-24T09:08:04.7823892Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-configmap-proxyheaders_test.yaml +2025-11-24T09:08:04.7824320Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-ingressclass-aliases_test.yaml +2025-11-24T09:08:04.7824741Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-poddisruptionbudget_test.yaml +2025-11-24T09:08:04.7825152Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-networkpolicy_test.yaml +2025-11-24T09:08:04.7825680Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-configmap-addheaders_test.yaml +2025-11-24T09:08:04.7826086Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-deployment_test.yaml +2025-11-24T09:08:04.7826497Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-deployment_test.yaml +2025-11-24T09:08:04.7826889Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-ingressclass_test.yaml +2025-11-24T09:08:04.7827157Z charts/ingress-nginx-controller/charts/ingress-nginx/OWNERS +2025-11-24T09:08:04.7827437Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/ +2025-11-24T09:08:04.7827848Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-deployment.yaml +2025-11-24T09:08:04.7828230Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-psp.yaml +2025-11-24T09:08:04.7828605Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-secret.yaml +2025-11-24T09:08:04.7828984Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-service.yaml +2025-11-24T09:08:04.7829381Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-deployment.yaml +2025-11-24T09:08:04.7829779Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-rolebinding.yaml +2025-11-24T09:08:04.7830174Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap-udp.yaml +2025-11-24T09:08:04.7830524Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-role.yaml +2025-11-24T09:08:04.7831040Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-daemonset.yaml +2025-11-24T09:08:04.7831441Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-ingressclass.yaml +2025-11-24T09:08:04.7831819Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-role.yaml +2025-11-24T09:08:04.7832167Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-hpa.yaml +2025-11-24T09:08:04.7832592Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-ingressclass-aliases.yaml +2025-11-24T09:08:04.7833077Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-hpa.yaml +2025-11-24T09:08:04.7833536Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap.yaml +2025-11-24T09:08:04.7833930Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-service.yaml +2025-11-24T09:08:04.7834253Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/NOTES.txt +2025-11-24T09:08:04.7834662Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-servicemonitor.yaml +2025-11-24T09:08:04.7835061Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-rolebinding.yaml +2025-11-24T09:08:04.7835470Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-networkpolicy.yaml +2025-11-24T09:08:04.7835916Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-prometheusrule.yaml +2025-11-24T09:08:04.7836257Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/clusterrole.yaml +2025-11-24T09:08:04.7836691Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-poddisruptionbudget.yaml +2025-11-24T09:08:04.7837134Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-poddisruptionbudget.yaml +2025-11-24T09:08:04.7837556Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-serviceaccount.yaml +2025-11-24T09:08:04.7837912Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/ +2025-11-24T09:08:04.7838309Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/ +2025-11-24T09:08:04.7838735Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/psp.yaml +2025-11-24T09:08:04.7839218Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml +2025-11-24T09:08:04.7839760Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/serviceaccount.yaml +2025-11-24T09:08:04.7840210Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/rolebinding.yaml +2025-11-24T09:08:04.7841491Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/clusterrole.yaml +2025-11-24T09:08:04.7842516Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/role.yaml +2025-11-24T09:08:04.7843549Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml +2025-11-24T09:08:04.7844378Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/networkpolicy.yaml +2025-11-24T09:08:04.7845232Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/clusterrolebinding.yaml +2025-11-24T09:08:04.7845978Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/cert-manager.yaml +2025-11-24T09:08:04.7846748Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/validating-webhook.yaml +2025-11-24T09:08:04.7847354Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-keda.yaml +2025-11-24T09:08:04.7848052Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-service-internal.yaml +2025-11-24T09:08:04.7848640Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap-addheaders.yaml +2025-11-24T09:08:04.7849277Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-extra-configmaps.yaml +2025-11-24T09:08:04.7849702Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap-tcp.yaml +2025-11-24T09:08:04.7850407Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-networkpolicy.yaml +2025-11-24T09:08:04.7850926Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-service-webhook.yaml +2025-11-24T09:08:04.7851646Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap-proxyheaders.yaml +2025-11-24T09:08:04.7852330Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/_params.tpl +2025-11-24T09:08:04.7853627Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-service-metrics.yaml +2025-11-24T09:08:04.7854202Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/_helpers.tpl +2025-11-24T09:08:04.7854928Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-serviceaccount.yaml +2025-11-24T09:08:04.7855622Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-psp.yaml +2025-11-24T09:08:04.7856271Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.7856470Z charts/redis-cluster/ +2025-11-24T09:08:04.7856675Z charts/redis-cluster/Chart.yaml +2025-11-24T09:08:04.7856892Z charts/redis-cluster/requirements.lock +2025-11-24T09:08:04.7857230Z charts/redis-cluster/requirements.yaml +2025-11-24T09:08:04.7857572Z charts/redis-cluster/values.yaml +2025-11-24T09:08:04.7857891Z charts/redis-cluster/charts/ +2025-11-24T09:08:04.7858235Z charts/redis-cluster/charts/redis-cluster/ +2025-11-24T09:08:04.7858640Z charts/redis-cluster/charts/redis-cluster/Chart.lock +2025-11-24T09:08:04.7859019Z charts/redis-cluster/charts/redis-cluster/Chart.yaml +2025-11-24T09:08:04.7859423Z charts/redis-cluster/charts/redis-cluster/.helmignore +2025-11-24T09:08:04.7859786Z charts/redis-cluster/charts/redis-cluster/img/ +2025-11-24T09:08:04.7860253Z charts/redis-cluster/charts/redis-cluster/img/redis-topology.png +2025-11-24T09:08:04.7860788Z charts/redis-cluster/charts/redis-cluster/img/redis-cluster-topology.png +2025-11-24T09:08:04.7861185Z charts/redis-cluster/charts/redis-cluster/README.md +2025-11-24T09:08:04.7861775Z charts/redis-cluster/charts/redis-cluster/values.yaml +2025-11-24T09:08:04.7862287Z charts/redis-cluster/charts/redis-cluster/charts/ +2025-11-24T09:08:04.7862893Z charts/redis-cluster/charts/redis-cluster/charts/common/ +2025-11-24T09:08:04.7863392Z charts/redis-cluster/charts/redis-cluster/charts/common/Chart.yaml +2025-11-24T09:08:04.7863899Z charts/redis-cluster/charts/redis-cluster/charts/common/.helmignore +2025-11-24T09:08:04.7864375Z charts/redis-cluster/charts/redis-cluster/charts/common/README.md +2025-11-24T09:08:04.7864863Z charts/redis-cluster/charts/redis-cluster/charts/common/values.yaml +2025-11-24T09:08:04.7865339Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/ +2025-11-24T09:08:04.7865912Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_warnings.tpl +2025-11-24T09:08:04.7866474Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_labels.tpl +2025-11-24T09:08:04.7867017Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_names.tpl +2025-11-24T09:08:04.7867616Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_capabilities.tpl +2025-11-24T09:08:04.7868169Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_errors.tpl +2025-11-24T09:08:04.7868733Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/ +2025-11-24T09:08:04.7869417Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_mongodb.tpl +2025-11-24T09:08:04.7870072Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_mysql.tpl +2025-11-24T09:08:04.7870730Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_mariadb.tpl +2025-11-24T09:08:04.7871612Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_validations.tpl +2025-11-24T09:08:04.7872264Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_redis.tpl +2025-11-24T09:08:04.7873198Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_cassandra.tpl +2025-11-24T09:08:04.7873696Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_postgresql.tpl +2025-11-24T09:08:04.7874031Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_images.tpl +2025-11-24T09:08:04.7874466Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_secrets.tpl +2025-11-24T09:08:04.7874792Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_ingress.tpl +2025-11-24T09:08:04.7875138Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_affinities.tpl +2025-11-24T09:08:04.7875465Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_storage.tpl +2025-11-24T09:08:04.7875804Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_tplvalues.tpl +2025-11-24T09:08:04.7876120Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_utils.tpl +2025-11-24T09:08:04.7876364Z charts/redis-cluster/charts/redis-cluster/templates/ +2025-11-24T09:08:04.7876666Z charts/redis-cluster/charts/redis-cluster/templates/tls-secret.yaml +2025-11-24T09:08:04.7876936Z charts/redis-cluster/charts/redis-cluster/templates/secret.yaml +2025-11-24T09:08:04.7877243Z charts/redis-cluster/charts/redis-cluster/templates/metrics-svc.yaml +2025-11-24T09:08:04.7877586Z charts/redis-cluster/charts/redis-cluster/templates/metrics-prometheus.yaml +2025-11-24T09:08:04.7877881Z charts/redis-cluster/charts/redis-cluster/templates/redis-svc.yaml +2025-11-24T09:08:04.7878205Z charts/redis-cluster/charts/redis-cluster/templates/redis-serviceaccount.yaml +2025-11-24T09:08:04.7878463Z charts/redis-cluster/charts/redis-cluster/templates/psp.yaml +2025-11-24T09:08:04.7878751Z charts/redis-cluster/charts/redis-cluster/templates/configmap.yaml +2025-11-24T09:08:04.7879005Z charts/redis-cluster/charts/redis-cluster/templates/NOTES.txt +2025-11-24T09:08:04.7879329Z charts/redis-cluster/charts/redis-cluster/templates/scripts-configmap.yaml +2025-11-24T09:08:04.7879643Z charts/redis-cluster/charts/redis-cluster/templates/update-cluster.yaml +2025-11-24T09:08:04.7880018Z charts/redis-cluster/charts/redis-cluster/templates/redis-role.yaml +2025-11-24T09:08:04.7880306Z charts/redis-cluster/charts/redis-cluster/templates/extra-list.yaml +2025-11-24T09:08:04.7880637Z charts/redis-cluster/charts/redis-cluster/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.7880944Z charts/redis-cluster/charts/redis-cluster/templates/headless-svc.yaml +2025-11-24T09:08:04.7881265Z charts/redis-cluster/charts/redis-cluster/templates/redis-rolebinding.yaml +2025-11-24T09:08:04.7881585Z charts/redis-cluster/charts/redis-cluster/templates/networkpolicy.yaml +2025-11-24T09:08:04.7881866Z charts/redis-cluster/charts/redis-cluster/templates/_helpers.tpl +2025-11-24T09:08:04.7882180Z charts/redis-cluster/charts/redis-cluster/templates/prometheusrule.yaml +2025-11-24T09:08:04.7882552Z charts/redis-cluster/charts/redis-cluster/templates/svc-cluster-external-access.yaml +2025-11-24T09:08:04.7883062Z charts/redis-cluster/charts/redis-cluster/templates/redis-statefulset.yaml +2025-11-24T09:08:04.7883260Z charts/team-settings/ +2025-11-24T09:08:04.7883460Z charts/team-settings/Chart.yaml +2025-11-24T09:08:04.7883659Z charts/team-settings/.helmignore +2025-11-24T09:08:04.7883855Z charts/team-settings/README.md +2025-11-24T09:08:04.7884052Z charts/team-settings/values.yaml +2025-11-24T09:08:04.7884243Z charts/team-settings/templates/ +2025-11-24T09:08:04.7884457Z charts/team-settings/templates/secret.yaml +2025-11-24T09:08:04.7884688Z charts/team-settings/templates/deployment.yaml +2025-11-24T09:08:04.7884898Z charts/team-settings/templates/_helpers.tpl +2025-11-24T09:08:04.7885095Z charts/kube-prometheus-stack/ +2025-11-24T09:08:04.7885425Z charts/kube-prometheus-stack/Chart.yaml +2025-11-24T09:08:04.7885649Z charts/kube-prometheus-stack/requirements.lock +2025-11-24T09:08:04.7885851Z charts/kube-prometheus-stack/README.md +2025-11-24T09:08:04.7886066Z charts/kube-prometheus-stack/requirements.yaml +2025-11-24T09:08:04.7886265Z charts/kube-prometheus-stack/values.yaml +2025-11-24T09:08:04.7886463Z charts/kube-prometheus-stack/charts/ +2025-11-24T09:08:04.7886730Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/ +2025-11-24T09:08:04.7887037Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/Chart.lock +2025-11-24T09:08:04.7887400Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/Chart.yaml +2025-11-24T09:08:04.7887707Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/.helmignore +2025-11-24T09:08:04.7887998Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/README.md +2025-11-24T09:08:04.7888298Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/values.yaml +2025-11-24T09:08:04.7888589Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/ +2025-11-24T09:08:04.7888890Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/ +2025-11-24T09:08:04.7889230Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/Chart.yaml +2025-11-24T09:08:04.7889555Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/ +2025-11-24T09:08:04.7889966Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-thanosrulers.yaml +2025-11-24T09:08:04.7890385Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusrules.yaml +2025-11-24T09:08:04.7890802Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-scrapeconfigs.yaml +2025-11-24T09:08:04.7891200Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-podmonitors.yaml +2025-11-24T09:08:04.7891592Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-probes.yaml +2025-11-24T09:08:04.7892022Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusagents.yaml +2025-11-24T09:08:04.7892435Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-servicemonitors.yaml +2025-11-24T09:08:04.7893071Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagers.yaml +2025-11-24T09:08:04.7893466Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheuses.yaml +2025-11-24T09:08:04.7893980Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagerconfigs.yaml +2025-11-24T09:08:04.7894322Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/README.md +2025-11-24T09:08:04.7894694Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/files/ +2025-11-24T09:08:04.7895058Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/files/crds.bz2 +2025-11-24T09:08:04.7895403Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/values.yaml +2025-11-24T09:08:04.7895745Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/ +2025-11-24T09:08:04.7896130Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/ +2025-11-24T09:08:04.7896542Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/crds.yaml +2025-11-24T09:08:04.7897009Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/serviceaccount.yaml +2025-11-24T09:08:04.7897443Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/clusterrole.yaml +2025-11-24T09:08:04.7897919Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/clusterrolebinding.yaml +2025-11-24T09:08:04.7898328Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/job.yaml +2025-11-24T09:08:04.7898725Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/_helpers.tpl +2025-11-24T09:08:04.7899223Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/ +2025-11-24T09:08:04.7899633Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml +2025-11-24T09:08:04.7900033Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/.helmignore +2025-11-24T09:08:04.7900431Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/README.md +2025-11-24T09:08:04.7900822Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/values.yaml +2025-11-24T09:08:04.7901284Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/ +2025-11-24T09:08:04.7901763Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/extra-manifests.yaml +2025-11-24T09:08:04.7902226Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/servicemonitor.yaml +2025-11-24T09:08:04.7902766Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/pdb.yaml +2025-11-24T09:08:04.7903222Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/deployment.yaml +2025-11-24T09:08:04.7903726Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/verticalpodautoscaler.yaml +2025-11-24T09:08:04.7904212Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/ciliumnetworkpolicy.yaml +2025-11-24T09:08:04.7904642Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/NOTES.txt +2025-11-24T09:08:04.7905104Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/serviceaccount.yaml +2025-11-24T09:08:04.7905553Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/rolebinding.yaml +2025-11-24T09:08:04.7906039Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/stsdiscovery-role.yaml +2025-11-24T09:08:04.7906547Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/stsdiscovery-rolebinding.yaml +2025-11-24T09:08:04.7906972Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/role.yaml +2025-11-24T09:08:04.7907504Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/crs-configmap.yaml +2025-11-24T09:08:04.7907943Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/service.yaml +2025-11-24T09:08:04.7908395Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/scrapeconfig.yaml +2025-11-24T09:08:04.7908852Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/rbac-configmap.yaml +2025-11-24T09:08:04.7909330Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/kubeconfig-secret.yaml +2025-11-24T09:08:04.7909786Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/networkpolicy.yaml +2025-11-24T09:08:04.7910214Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/_helpers.tpl +2025-11-24T09:08:04.7910698Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.7911098Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/ +2025-11-24T09:08:04.7911527Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/Chart.yaml +2025-11-24T09:08:04.7911953Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/.helmignore +2025-11-24T09:08:04.7912370Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/README.md +2025-11-24T09:08:04.7913007Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/values.yaml +2025-11-24T09:08:04.7913430Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/ +2025-11-24T09:08:04.7913932Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/extra-manifests.yaml +2025-11-24T09:08:04.7914427Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/servicemonitor.yaml +2025-11-24T09:08:04.7915015Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/verticalpodautoscaler.yaml +2025-11-24T09:08:04.7915462Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/NOTES.txt +2025-11-24T09:08:04.7915955Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/serviceaccount.yaml +2025-11-24T09:08:04.7916435Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/daemonset.yaml +2025-11-24T09:08:04.7916917Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/clusterrole.yaml +2025-11-24T09:08:04.7917386Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/service.yaml +2025-11-24T09:08:04.7917862Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/endpoints.yaml +2025-11-24T09:08:04.7918348Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/podmonitor.yaml +2025-11-24T09:08:04.7918844Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/rbac-configmap.yaml +2025-11-24T09:08:04.7919336Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/networkpolicy.yaml +2025-11-24T09:08:04.7919805Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/_helpers.tpl +2025-11-24T09:08:04.7920318Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.7920640Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ +2025-11-24T09:08:04.7921087Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/Chart.yaml +2025-11-24T09:08:04.7921448Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/.helmignore +2025-11-24T09:08:04.7921803Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/dashboards/ +2025-11-24T09:08:04.7922247Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/dashboards/custom-dashboard.json +2025-11-24T09:08:04.7922593Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/README.md +2025-11-24T09:08:04.7923070Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/values.yaml +2025-11-24T09:08:04.7923403Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/ +2025-11-24T09:08:04.7923885Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-sidecars-envvaluefrom-values.yaml +2025-11-24T09:08:04.7924331Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-image-renderer-values.yaml +2025-11-24T09:08:04.7924749Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml +2025-11-24T09:08:04.7925180Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-values.yaml +2025-11-24T09:08:04.7925616Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-json-values.yaml +2025-11-24T09:08:04.7926089Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-extraconfigmapmounts-values.yaml +2025-11-24T09:08:04.7984347Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-affinity-values.yaml +2025-11-24T09:08:04.7986036Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-nondefault-values.yaml +2025-11-24T09:08:04.7987383Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/default-values.yaml +2025-11-24T09:08:04.7988257Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/ +2025-11-24T09:08:04.7989770Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/extra-manifests.yaml +2025-11-24T09:08:04.7991406Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/servicemonitor.yaml +2025-11-24T09:08:04.7992935Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/secret.yaml +2025-11-24T09:08:04.7994932Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/deployment.yaml +2025-11-24T09:08:04.7995830Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-deployment.yaml +2025-11-24T09:08:04.7997055Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/dashboards-json-configmap.yaml +2025-11-24T09:08:04.7997975Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-hpa.yaml +2025-11-24T09:08:04.7998659Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/pvc.yaml +2025-11-24T09:08:04.8000240Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/_config.tpl +2025-11-24T09:08:04.8001470Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/configmap.yaml +2025-11-24T09:08:04.8002188Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/NOTES.txt +2025-11-24T09:08:04.8002971Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/serviceaccount.yaml +2025-11-24T09:08:04.8003503Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-network-policy.yaml +2025-11-24T09:08:04.8004972Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/rolebinding.yaml +2025-11-24T09:08:04.8006305Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/route.yaml +2025-11-24T09:08:04.8007313Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/clusterrole.yaml +2025-11-24T09:08:04.8008025Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/role.yaml +2025-11-24T09:08:04.8008768Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/configSecret.yaml +2025-11-24T09:08:04.8009538Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/headless-service.yaml +2025-11-24T09:08:04.8010230Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/service.yaml +2025-11-24T09:08:04.8010947Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/hpa.yaml +2025-11-24T09:08:04.8011362Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/_pod.tpl +2025-11-24T09:08:04.8011835Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-service.yaml +2025-11-24T09:08:04.8012307Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.8012954Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-servicemonitor.yaml +2025-11-24T09:08:04.8013365Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/ +2025-11-24T09:08:04.8013824Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-rolebinding.yaml +2025-11-24T09:08:04.8014269Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-configmap.yaml +2025-11-24T09:08:04.8015182Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-podsecuritypolicy.yaml +2025-11-24T09:08:04.8015757Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test.yaml +2025-11-24T09:08:04.8016252Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-serviceaccount.yaml +2025-11-24T09:08:04.8016683Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-role.yaml +2025-11-24T09:08:04.8017208Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/networkpolicy.yaml +2025-11-24T09:08:04.8017611Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/_helpers.tpl +2025-11-24T09:08:04.8018003Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/ingress.yaml +2025-11-24T09:08:04.8018419Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/secret-env.yaml +2025-11-24T09:08:04.8018933Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/configmap-dashboard-provider.yaml +2025-11-24T09:08:04.8019358Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/statefulset.yaml +2025-11-24T09:08:04.8019808Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.8020252Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/podsecuritypolicy.yaml +2025-11-24T09:08:04.8020661Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/ +2025-11-24T09:08:04.8021098Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/Chart.yaml +2025-11-24T09:08:04.8021528Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/.helmignore +2025-11-24T09:08:04.8021955Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/README.md +2025-11-24T09:08:04.8022386Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/values.yaml +2025-11-24T09:08:04.8022952Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/ +2025-11-24T09:08:04.8023560Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/servicemonitor.yaml +2025-11-24T09:08:04.8024070Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/serviceaccount.yaml +2025-11-24T09:08:04.8024570Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/daemonset.yaml +2025-11-24T09:08:04.8025057Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/service.yaml +2025-11-24T09:08:04.8025559Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/podmonitor.yaml +2025-11-24T09:08:04.8026042Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/_helpers.tpl +2025-11-24T09:08:04.8026519Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/config.yaml +2025-11-24T09:08:04.8026830Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/ +2025-11-24T09:08:04.8027173Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/ +2025-11-24T09:08:04.8027600Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/servicemonitor.yaml +2025-11-24T09:08:04.8027995Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/secret.yaml +2025-11-24T09:08:04.8028428Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/serviceperreplica.yaml +2025-11-24T09:08:04.8028975Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/extrasecret.yaml +2025-11-24T09:08:04.8029394Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/serviceaccount.yaml +2025-11-24T09:08:04.8029785Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/route.yaml +2025-11-24T09:08:04.8030196Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/alertmanager.yaml +2025-11-24T09:08:04.8030590Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/service.yaml +2025-11-24T09:08:04.8031100Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/podDisruptionBudget.yaml +2025-11-24T09:08:04.8031532Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/ingressperreplica.yaml +2025-11-24T09:08:04.8031952Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/networkpolicy.yaml +2025-11-24T09:08:04.8032337Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/ingress.yaml +2025-11-24T09:08:04.8032822Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/extra-objects.yaml +2025-11-24T09:08:04.8033155Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/NOTES.txt +2025-11-24T09:08:04.8033499Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/ +2025-11-24T09:08:04.8033920Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/servicemonitor.yaml +2025-11-24T09:08:04.8034313Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/secret.yaml +2025-11-24T09:08:04.8034697Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/ruler.yaml +2025-11-24T09:08:04.8035101Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/extrasecret.yaml +2025-11-24T09:08:04.8035512Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/serviceaccount.yaml +2025-11-24T09:08:04.8035898Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/route.yaml +2025-11-24T09:08:04.8036283Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/service.yaml +2025-11-24T09:08:04.8036723Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/podDisruptionBudget.yaml +2025-11-24T09:08:04.8037190Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/ingress.yaml +2025-11-24T09:08:04.8037581Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/ +2025-11-24T09:08:04.8038026Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/servicemonitor.yaml +2025-11-24T09:08:04.8038457Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/certmanager.yaml +2025-11-24T09:08:04.8038856Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/pdb.yaml +2025-11-24T09:08:04.8039287Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/deployment.yaml +2025-11-24T09:08:04.8039767Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/verticalpodautoscaler.yaml +2025-11-24T09:08:04.8040231Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/ciliumnetworkpolicy.yaml +2025-11-24T09:08:04.8040691Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/_prometheus-operator.tpl +2025-11-24T09:08:04.8041135Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/serviceaccount.yaml +2025-11-24T09:08:04.8041611Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/aggregate-clusterroles.yaml +2025-11-24T09:08:04.8042042Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/clusterrole.yaml +2025-11-24T09:08:04.8042591Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/service.yaml +2025-11-24T09:08:04.8043138Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/ +2025-11-24T09:08:04.8043632Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ +2025-11-24T09:08:04.8044275Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ciliumnetworkpolicy-createSecret.yaml +2025-11-24T09:08:04.8044963Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/networkpolicy-patchWebhook.yaml +2025-11-24T09:08:04.8045528Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/job-patchWebhook.yaml +2025-11-24T09:08:04.8046094Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/serviceaccount.yaml +2025-11-24T09:08:04.8046640Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/rolebinding.yaml +2025-11-24T09:08:04.8047180Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/clusterrole.yaml +2025-11-24T09:08:04.8047699Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/role.yaml +2025-11-24T09:08:04.8048258Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/job-createSecret.yaml +2025-11-24T09:08:04.8048862Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/networkpolicy-createSecret.yaml +2025-11-24T09:08:04.8049498Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ciliumnetworkpolicy-patchWebhook.yaml +2025-11-24T09:08:04.8050070Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/clusterrolebinding.yaml +2025-11-24T09:08:04.8050655Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/validatingWebhookConfiguration.yaml +2025-11-24T09:08:04.8051322Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/_prometheus-operator-webhook.tpl +2025-11-24T09:08:04.8051815Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/ +2025-11-24T09:08:04.8052334Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/pdb.yaml +2025-11-24T09:08:04.8052977Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/deployment.yaml +2025-11-24T09:08:04.8053540Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/serviceaccount.yaml +2025-11-24T09:08:04.8054074Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/service.yaml +2025-11-24T09:08:04.8054650Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/mutatingWebhookConfiguration.yaml +2025-11-24T09:08:04.8055094Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/networkpolicy.yaml +2025-11-24T09:08:04.8055559Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/clusterrolebinding.yaml +2025-11-24T09:08:04.8055894Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/_helpers.tpl +2025-11-24T09:08:04.8056217Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/ +2025-11-24T09:08:04.8056733Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/ +2025-11-24T09:08:04.8057244Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-windows-node-rsrc-use.yaml +2025-11-24T09:08:04.8057733Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/alertmanager-overview.yaml +2025-11-24T09:08:04.8058231Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/prometheus-remote-write.yaml +2025-11-24T09:08:04.8058723Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-namespace.yaml +2025-11-24T09:08:04.8059236Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/prometheus.yaml +2025-11-24T09:08:04.8059686Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/cluster-total.yaml +2025-11-24T09:08:04.8060125Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/pod-total.yaml +2025-11-24T09:08:04.8060663Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-namespace.yaml +2025-11-24T09:08:04.8061132Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/grafana-overview.yaml +2025-11-24T09:08:04.8061654Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-cluster.yaml +2025-11-24T09:08:04.8062112Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-pod.yaml +2025-11-24T09:08:04.8062539Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes.yaml +2025-11-24T09:08:04.8063067Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/apiserver.yaml +2025-11-24T09:08:04.8063543Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-pod.yaml +2025-11-24T09:08:04.8064030Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-cluster-rsrc-use.yaml +2025-11-24T09:08:04.8064504Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/controller-manager.yaml +2025-11-24T09:08:04.8064922Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/etcd.yaml +2025-11-24T09:08:04.8065448Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-rsrc-use.yaml +2025-11-24T09:08:04.8065873Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/kubelet.yaml +2025-11-24T09:08:04.8066380Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-multicluster.yaml +2025-11-24T09:08:04.8066885Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-pod.yaml +2025-11-24T09:08:04.8067336Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes-darwin.yaml +2025-11-24T09:08:04.8067766Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-coredns.yaml +2025-11-24T09:08:04.8068243Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-node.yaml +2025-11-24T09:08:04.8068676Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/scheduler.yaml +2025-11-24T09:08:04.8069098Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/proxy.yaml +2025-11-24T09:08:04.8069523Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes-aix.yaml +2025-11-24T09:08:04.8070006Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-workload.yaml +2025-11-24T09:08:04.8070666Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workloads-namespace.yaml +2025-11-24T09:08:04.8071166Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/persistentvolumesusage.yaml +2025-11-24T09:08:04.8071618Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/workload-total.yaml +2025-11-24T09:08:04.8072102Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workload.yaml +2025-11-24T09:08:04.8072737Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-cluster.yaml +2025-11-24T09:08:04.8073539Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-windows-cluster-rsrc-use.yaml +2025-11-24T09:08:04.8079723Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/configmaps-datasources.yaml +2025-11-24T09:08:04.8080755Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ +2025-11-24T09:08:04.8081616Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/servicemonitor.yaml +2025-11-24T09:08:04.8082046Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/secret.yaml +2025-11-24T09:08:04.8082480Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/csi-secret.yaml +2025-11-24T09:08:04.8083300Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/additionalAlertmanagerConfigs.yaml +2025-11-24T09:08:04.8083765Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/serviceperreplica.yaml +2025-11-24T09:08:04.8084181Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/ +2025-11-24T09:08:04.8084725Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_swap.yaml +2025-11-24T09:08:04.8085213Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/windows.node.rules.yaml +2025-11-24T09:08:04.8085754Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_requests.yaml +2025-11-24T09:08:04.8086203Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/general.rules.yaml +2025-11-24T09:08:04.8086946Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-burnrate.rules.yaml +2025-11-24T09:08:04.8087382Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/prometheus.yaml +2025-11-24T09:08:04.8087848Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system.yaml +2025-11-24T09:08:04.8088327Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-slos.yaml +2025-11-24T09:08:04.8088791Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/config-reloaders.yaml +2025-11-24T09:08:04.8089245Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-apps.yaml +2025-11-24T09:08:04.8089744Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-kubelet.yaml +2025-11-24T09:08:04.8090228Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-resources.yaml +2025-11-24T09:08:04.8090744Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_rss.yaml +2025-11-24T09:08:04.8091298Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-controller-manager.yaml +2025-11-24T09:08:04.8091827Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-prometheus-general.rules.yaml +2025-11-24T09:08:04.8092405Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-network.yaml +2025-11-24T09:08:04.8093100Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_cache.yaml +2025-11-24T09:08:04.8093579Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/windows.pod.rules.yaml +2025-11-24T09:08:04.8094110Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_limits.yaml +2025-11-24T09:08:04.8094754Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_cpu_usage_seconds_total.yaml +2025-11-24T09:08:04.8095209Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubelet.rules.yaml +2025-11-24T09:08:04.8095655Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-exporter.yaml +2025-11-24T09:08:04.8096199Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-availability.rules.yaml +2025-11-24T09:08:04.8096752Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-prometheus-node-recording.rules.yaml +2025-11-24T09:08:04.8097662Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_working_set_bytes.yaml +2025-11-24T09:08:04.8098183Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.pod_owner.yaml +2025-11-24T09:08:04.8098667Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/prometheus-operator.yaml +2025-11-24T09:08:04.8099092Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/etcd.yaml +2025-11-24T09:08:04.8099568Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-exporter.rules.yaml +2025-11-24T09:08:04.8100010Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node.rules.yaml +2025-11-24T09:08:04.8100538Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-histogram.rules.yaml +2025-11-24T09:08:04.8101042Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-apiserver.yaml +2025-11-24T09:08:04.8101641Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_resource.yaml +2025-11-24T09:08:04.8102128Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/alertmanager.rules.yaml +2025-11-24T09:08:04.8102768Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-scheduler.yaml +2025-11-24T09:08:04.8103243Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-storage.yaml +2025-11-24T09:08:04.8103769Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_cpu_requests.yaml +2025-11-24T09:08:04.8104248Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-scheduler.rules.yaml +2025-11-24T09:08:04.8104762Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-kube-proxy.yaml +2025-11-24T09:08:04.8105270Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_cpu_limits.yaml +2025-11-24T09:08:04.8105739Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-state-metrics.yaml +2025-11-24T09:08:04.8106149Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/prometheus.yaml +2025-11-24T09:08:04.8106749Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/servicemonitorThanosSidecar.yaml +2025-11-24T09:08:04.8107264Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/serviceThanosSidecarExternal.yaml +2025-11-24T09:08:04.8107705Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ciliumnetworkpolicy.yaml +2025-11-24T09:08:04.8108108Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/extrasecret.yaml +2025-11-24T09:08:04.8108586Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/additionalAlertRelabelConfigs.yaml +2025-11-24T09:08:04.8109823Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/additionalScrapeConfigs.yaml +2025-11-24T09:08:04.8110290Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/serviceaccount.yaml +2025-11-24T09:08:04.8110691Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/route.yaml +2025-11-24T09:08:04.8111104Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/clusterrole.yaml +2025-11-24T09:08:04.8111551Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/serviceThanosSidecar.yaml +2025-11-24T09:08:04.8112007Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/additionalPrometheusRules.yaml +2025-11-24T09:08:04.8112410Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/podmonitors.yaml +2025-11-24T09:08:04.8112927Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/service.yaml +2025-11-24T09:08:04.8113371Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/podDisruptionBudget.yaml +2025-11-24T09:08:04.8113803Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ingressperreplica.yaml +2025-11-24T09:08:04.8114195Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/_rules.tpl +2025-11-24T09:08:04.8114642Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ingressThanosSidecar.yaml +2025-11-24T09:08:04.8115061Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/servicemonitors.yaml +2025-11-24T09:08:04.8115483Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/networkpolicy.yaml +2025-11-24T09:08:04.8115994Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ingress.yaml +2025-11-24T09:08:04.8116420Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/clusterrolebinding.yaml +2025-11-24T09:08:04.8116762Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/ +2025-11-24T09:08:04.8117153Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-proxy/ +2025-11-24T09:08:04.8117597Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-proxy/servicemonitor.yaml +2025-11-24T09:08:04.8118017Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-proxy/service.yaml +2025-11-24T09:08:04.8118444Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-proxy/endpoints.yaml +2025-11-24T09:08:04.8118830Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-etcd/ +2025-11-24T09:08:04.8119284Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-etcd/servicemonitor.yaml +2025-11-24T09:08:04.8119702Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-etcd/service.yaml +2025-11-24T09:08:04.8120121Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-etcd/endpoints.yaml +2025-11-24T09:08:04.8120519Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/ +2025-11-24T09:08:04.8120983Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/servicemonitor.yaml +2025-11-24T09:08:04.8121534Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/service.yaml +2025-11-24T09:08:04.8121982Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/endpoints.yaml +2025-11-24T09:08:04.8122357Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-dns/ +2025-11-24T09:08:04.8123056Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-dns/servicemonitor.yaml +2025-11-24T09:08:04.8123491Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-dns/service.yaml +2025-11-24T09:08:04.8123988Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-api-server/ +2025-11-24T09:08:04.8124464Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-api-server/servicemonitor.yaml +2025-11-24T09:08:04.8124832Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/core-dns/ +2025-11-24T09:08:04.8125275Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/core-dns/servicemonitor.yaml +2025-11-24T09:08:04.8125687Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/core-dns/service.yaml +2025-11-24T09:08:04.8126110Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/ +2025-11-24T09:08:04.8126621Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/servicemonitor.yaml +2025-11-24T09:08:04.8127100Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/service.yaml +2025-11-24T09:08:04.8127595Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/endpoints.yaml +2025-11-24T09:08:04.8127968Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kubelet/ +2025-11-24T09:08:04.8128406Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kubelet/servicemonitor.yaml +2025-11-24T09:08:04.8128615Z charts/kube-prometheus-stack/templates/ +2025-11-24T09:08:04.8128851Z charts/kube-prometheus-stack/templates/secrets.yaml +2025-11-24T09:08:04.8129110Z charts/kube-prometheus-stack/templates/storageclass.yaml +2025-11-24T09:08:04.8129334Z charts/kube-prometheus-stack/templates/NOTES.txt +2025-11-24T09:08:04.8129673Z charts/kube-prometheus-stack/templates/persistentvolume.yaml +2025-11-24T09:08:04.8129872Z charts/postgresql-external/ +2025-11-24T09:08:04.8130075Z charts/postgresql-external/Chart.yaml +2025-11-24T09:08:04.8130278Z charts/postgresql-external/README.md +2025-11-24T09:08:04.8130474Z charts/postgresql-external/values.yaml +2025-11-24T09:08:04.8130677Z charts/postgresql-external/templates/ +2025-11-24T09:08:04.8130990Z charts/postgresql-external/templates/pg-endpoint-manager-cron.yaml +2025-11-24T09:08:04.8131225Z charts/postgresql-external/templates/_helpers.tpl +2025-11-24T09:08:04.8131482Z charts/postgresql-external/templates/service_account.yaml +2025-11-24T09:08:04.8131715Z charts/postgresql-external/templates/endpoint.yaml +2025-11-24T09:08:04.8131914Z charts/nginx-ingress-services/ +2025-11-24T09:08:04.8132119Z charts/nginx-ingress-services/Chart.yaml +2025-11-24T09:08:04.8132319Z charts/nginx-ingress-services/.helmignore +2025-11-24T09:08:04.8132521Z charts/nginx-ingress-services/README.md +2025-11-24T09:08:04.8132836Z charts/nginx-ingress-services/values.yaml +2025-11-24T09:08:04.8133046Z charts/nginx-ingress-services/templates/ +2025-11-24T09:08:04.8133279Z charts/nginx-ingress-services/templates/secret.yaml +2025-11-24T09:08:04.8133546Z charts/nginx-ingress-services/templates/secret_federator.yaml +2025-11-24T09:08:04.8133797Z charts/nginx-ingress-services/templates/ca_federator.yaml +2025-11-24T09:08:04.8134032Z charts/nginx-ingress-services/templates/service.yaml +2025-11-24T09:08:04.8134340Z charts/nginx-ingress-services/templates/federation-test-helper.yaml +2025-11-24T09:08:04.8134599Z charts/nginx-ingress-services/templates/ingress_federator.yaml +2025-11-24T09:08:04.8134964Z charts/nginx-ingress-services/templates/certificate.yaml +2025-11-24T09:08:04.8135261Z charts/nginx-ingress-services/templates/certificate_federator.yaml +2025-11-24T09:08:04.8135509Z charts/nginx-ingress-services/templates/_helpers.tpl +2025-11-24T09:08:04.8135738Z charts/nginx-ingress-services/templates/ingress.yaml +2025-11-24T09:08:04.8136018Z charts/nginx-ingress-services/templates/custom_solvers_secret.yaml +2025-11-24T09:08:04.8136271Z charts/nginx-ingress-services/templates/ingress_minio.yaml +2025-11-24T09:08:04.8136500Z charts/nginx-ingress-services/templates/issuer.yaml +2025-11-24T09:08:04.8136749Z charts/fake-aws/ +2025-11-24T09:08:04.8136937Z charts/fake-aws/Chart.yaml +2025-11-24T09:08:04.8137125Z charts/fake-aws/.helmignore +2025-11-24T09:08:04.8137320Z charts/fake-aws/requirements.lock +2025-11-24T09:08:04.8137510Z charts/fake-aws/requirements.yaml +2025-11-24T09:08:04.8137691Z charts/fake-aws/values.yaml +2025-11-24T09:08:04.8137877Z charts/fake-aws/charts/ +2025-11-24T09:08:04.8138082Z charts/fake-aws/charts/fake-aws-sqs/ +2025-11-24T09:08:04.8138300Z charts/fake-aws/charts/fake-aws-sqs/Chart.yaml +2025-11-24T09:08:04.8138516Z charts/fake-aws/charts/fake-aws-sqs/values.yaml +2025-11-24T09:08:04.8138732Z charts/fake-aws/charts/fake-aws-sqs/templates/ +2025-11-24T09:08:04.8138993Z charts/fake-aws/charts/fake-aws-sqs/templates/deployment.yaml +2025-11-24T09:08:04.8139257Z charts/fake-aws/charts/fake-aws-sqs/templates/configmap.yaml +2025-11-24T09:08:04.8139506Z charts/fake-aws/charts/fake-aws-sqs/templates/service.yaml +2025-11-24T09:08:04.8139749Z charts/fake-aws/charts/fake-aws-sqs/templates/_helpers.tpl +2025-11-24T09:08:04.8139947Z charts/fake-aws/charts/fake-aws-s3/ +2025-11-24T09:08:04.8140161Z charts/fake-aws/charts/fake-aws-s3/Chart.yaml +2025-11-24T09:08:04.8140371Z charts/fake-aws/charts/fake-aws-s3/.helmignore +2025-11-24T09:08:04.8140601Z charts/fake-aws/charts/fake-aws-s3/requirements.lock +2025-11-24T09:08:04.8140830Z charts/fake-aws/charts/fake-aws-s3/requirements.yaml +2025-11-24T09:08:04.8141043Z charts/fake-aws/charts/fake-aws-s3/values.yaml +2025-11-24T09:08:04.8141247Z charts/fake-aws/charts/fake-aws-s3/charts/ +2025-11-24T09:08:04.8141466Z charts/fake-aws/charts/fake-aws-s3/charts/minio/ +2025-11-24T09:08:04.8141703Z charts/fake-aws/charts/fake-aws-s3/charts/minio/Chart.yaml +2025-11-24T09:08:04.8141954Z charts/fake-aws/charts/fake-aws-s3/charts/minio/.helmignore +2025-11-24T09:08:04.8142264Z charts/fake-aws/charts/fake-aws-s3/charts/minio/README.md +2025-11-24T09:08:04.8142510Z charts/fake-aws/charts/fake-aws-s3/charts/minio/values.yaml +2025-11-24T09:08:04.8142851Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/ +2025-11-24T09:08:04.8143182Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/servicemonitor.yaml +2025-11-24T09:08:04.8143497Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/deployment.yaml +2025-11-24T09:08:04.8143818Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/console-ingress.yaml +2025-11-24T09:08:04.8144105Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/pvc.yaml +2025-11-24T09:08:04.8144440Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_create_bucket.txt +2025-11-24T09:08:04.8144747Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/secrets.yaml +2025-11-24T09:08:04.8145054Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/configmap.yaml +2025-11-24T09:08:04.8145344Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/NOTES.txt +2025-11-24T09:08:04.8145658Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/serviceaccount.yaml +2025-11-24T09:08:04.8145970Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_policy.tpl +2025-11-24T09:08:04.8146304Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_create_policy.txt +2025-11-24T09:08:04.8146619Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/console-service.yaml +2025-11-24T09:08:04.8146926Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/post-job.yaml +2025-11-24T09:08:04.8147371Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/service.yaml +2025-11-24T09:08:04.8147710Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/poddisruptionbudget.yaml +2025-11-24T09:08:04.8148068Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_custom_command.txt +2025-11-24T09:08:04.8148393Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_create_user.txt +2025-11-24T09:08:04.8148789Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/securitycontextconstraints.yaml +2025-11-24T09:08:04.8149103Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/networkpolicy.yaml +2025-11-24T09:08:04.8149472Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helpers.tpl +2025-11-24T09:08:04.8149766Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/ingress.yaml +2025-11-24T09:08:04.8150079Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/statefulset.yaml +2025-11-24T09:08:04.8150436Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_create_svcacct.txt +2025-11-24T09:08:04.8150654Z charts/fake-aws/charts/fake-aws-s3/templates/ +2025-11-24T09:08:04.8150894Z charts/fake-aws/charts/fake-aws-s3/templates/reaper.yaml +2025-11-24T09:08:04.8151137Z charts/fake-aws/charts/fake-aws-s3/templates/_helpers.tpl +2025-11-24T09:08:04.8151336Z charts/fake-aws/charts/fake-aws-sns/ +2025-11-24T09:08:04.8151551Z charts/fake-aws/charts/fake-aws-sns/Chart.yaml +2025-11-24T09:08:04.8151771Z charts/fake-aws/charts/fake-aws-sns/values.yaml +2025-11-24T09:08:04.8151983Z charts/fake-aws/charts/fake-aws-sns/templates/ +2025-11-24T09:08:04.8152247Z charts/fake-aws/charts/fake-aws-sns/templates/deployment.yaml +2025-11-24T09:08:04.8152502Z charts/fake-aws/charts/fake-aws-sns/templates/service.yaml +2025-11-24T09:08:04.8152843Z charts/fake-aws/charts/fake-aws-sns/templates/_helpers.tpl +2025-11-24T09:08:04.8153037Z charts/fake-aws/charts/fake-aws-ses/ +2025-11-24T09:08:04.8153246Z charts/fake-aws/charts/fake-aws-ses/Chart.yaml +2025-11-24T09:08:04.8153464Z charts/fake-aws/charts/fake-aws-ses/values.yaml +2025-11-24T09:08:04.8153674Z charts/fake-aws/charts/fake-aws-ses/templates/ +2025-11-24T09:08:04.8153933Z charts/fake-aws/charts/fake-aws-ses/templates/deployment.yaml +2025-11-24T09:08:04.8154177Z charts/fake-aws/charts/fake-aws-ses/templates/service.yaml +2025-11-24T09:08:04.8154422Z charts/fake-aws/charts/fake-aws-ses/templates/_helpers.tpl +2025-11-24T09:08:04.8154682Z charts/fake-aws/templates/ +2025-11-24T09:08:04.8154881Z charts/fake-aws/templates/NOTES.txt +2025-11-24T09:08:04.8155076Z charts/elasticsearch-external/ +2025-11-24T09:08:04.8155287Z charts/elasticsearch-external/Chart.yaml +2025-11-24T09:08:04.8155492Z charts/elasticsearch-external/values.yaml +2025-11-24T09:08:04.8155695Z charts/elasticsearch-external/templates/ +2025-11-24T09:08:04.8155927Z charts/elasticsearch-external/templates/helpers.tpl +2025-11-24T09:08:04.8156168Z charts/elasticsearch-external/templates/endpoint.yaml +2025-11-24T09:08:04.8156358Z charts/rabbitmq-external/ +2025-11-24T09:08:04.8156557Z charts/rabbitmq-external/Chart.yaml +2025-11-24T09:08:04.8156748Z charts/rabbitmq-external/values.yaml +2025-11-24T09:08:04.8156943Z charts/rabbitmq-external/templates/ +2025-11-24T09:08:04.8157157Z charts/rabbitmq-external/templates/helpers.tpl +2025-11-24T09:08:04.8157380Z charts/rabbitmq-external/templates/endpoint.yaml +2025-11-24T09:08:04.8157580Z charts/nginx-ingress-controller/ +2025-11-24T09:08:04.8157791Z charts/nginx-ingress-controller/Chart.yaml +2025-11-24T09:08:04.8158004Z charts/nginx-ingress-controller/.helmignore +2025-11-24T09:08:04.8158228Z charts/nginx-ingress-controller/requirements.lock +2025-11-24T09:08:04.8158442Z charts/nginx-ingress-controller/README.md +2025-11-24T09:08:04.8158661Z charts/nginx-ingress-controller/requirements.yaml +2025-11-24T09:08:04.8158869Z charts/nginx-ingress-controller/values.yaml +2025-11-24T09:08:04.8159071Z charts/nginx-ingress-controller/charts/ +2025-11-24T09:08:04.8159311Z charts/nginx-ingress-controller/charts/nginx-ingress/ +2025-11-24T09:08:04.8159702Z charts/nginx-ingress-controller/charts/nginx-ingress/Chart.yaml +2025-11-24T09:08:04.8159985Z charts/nginx-ingress-controller/charts/nginx-ingress/.helmignore +2025-11-24T09:08:04.8160250Z charts/nginx-ingress-controller/charts/nginx-ingress/README.md +2025-11-24T09:08:04.8160521Z charts/nginx-ingress-controller/charts/nginx-ingress/values.yaml +2025-11-24T09:08:04.8160767Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/ +2025-11-24T09:08:04.8161117Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-tcp-values.yaml +2025-11-24T09:08:04.8161579Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-tcp-udp-configMapNamespace-values.yaml +2025-11-24T09:08:04.8162026Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-webhook-values.yaml +2025-11-24T09:08:04.8162409Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-nodeport-values.yaml +2025-11-24T09:08:04.8163159Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-tcp-udp-configMapNamespace-values.yaml +2025-11-24T09:08:04.8163555Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-webhook-values.yaml +2025-11-24T09:08:04.8163960Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-autoscaling-values.yaml +2025-11-24T09:08:04.8164328Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-metrics-values.yaml +2025-11-24T09:08:04.8164694Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-nodeport-values.yaml +2025-11-24T09:08:04.8165062Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-headers-values.yaml +2025-11-24T09:08:04.8165463Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-customconfig-values.yaml +2025-11-24T09:08:04.8165826Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-default-values.yaml +2025-11-24T09:08:04.8166188Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-tcp-udp-values.yaml +2025-11-24T09:08:04.8166557Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-default-values.yaml +2025-11-24T09:08:04.8166907Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-psp-values.yaml +2025-11-24T09:08:04.8167315Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-customnodeport-values.yaml +2025-11-24T09:08:04.8167710Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-customconfig-values.yaml +2025-11-24T09:08:04.8168206Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-webhook-and-psp-values.yaml +2025-11-24T09:08:04.8168569Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-headers-values.yaml +2025-11-24T09:08:04.8168975Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-customnodeport-values.yaml +2025-11-24T09:08:04.8169334Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-tcp-udp-values.yaml +2025-11-24T09:08:04.8169730Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-webhook-and-psp-values.yaml +2025-11-24T09:08:04.8170101Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-metrics-values.yaml +2025-11-24T09:08:04.8170447Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-tcp-values.yaml +2025-11-24T09:08:04.8170789Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-psp-values.yaml +2025-11-24T09:08:04.8171048Z charts/nginx-ingress-controller/charts/nginx-ingress/OWNERS +2025-11-24T09:08:04.8171318Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/ +2025-11-24T09:08:04.8171722Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-webhook-service.yaml +2025-11-24T09:08:04.8172120Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-deployment.yaml +2025-11-24T09:08:04.8172495Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-psp.yaml +2025-11-24T09:08:04.8173044Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-service.yaml +2025-11-24T09:08:04.8173565Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-deployment.yaml +2025-11-24T09:08:04.8173958Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-rolebinding.yaml +2025-11-24T09:08:04.8174321Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-role.yaml +2025-11-24T09:08:04.8174709Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-daemonset.yaml +2025-11-24T09:08:04.8175091Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-role.yaml +2025-11-24T09:08:04.8175438Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-hpa.yaml +2025-11-24T09:08:04.8175880Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-configmap.yaml +2025-11-24T09:08:04.8176272Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-service.yaml +2025-11-24T09:08:04.8176673Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-metrics-service.yaml +2025-11-24T09:08:04.8176994Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/NOTES.txt +2025-11-24T09:08:04.8177371Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/addheaders-configmap.yaml +2025-11-24T09:08:04.8177770Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-servicemonitor.yaml +2025-11-24T09:08:04.8178174Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-rolebinding.yaml +2025-11-24T09:08:04.8178519Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/tcp-configmap.yaml +2025-11-24T09:08:04.8178858Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/clusterrole.yaml +2025-11-24T09:08:04.8179196Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/udp-configmap.yaml +2025-11-24T09:08:04.8179629Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-poddisruptionbudget.yaml +2025-11-24T09:08:04.8180078Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-poddisruptionbudget.yaml +2025-11-24T09:08:04.8180501Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-serviceaccount.yaml +2025-11-24T09:08:04.8180851Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/ +2025-11-24T09:08:04.8181250Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/ +2025-11-24T09:08:04.8181745Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/psp.yaml +2025-11-24T09:08:04.8182219Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/job-patchWebhook.yaml +2025-11-24T09:08:04.8182775Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/serviceaccount.yaml +2025-11-24T09:08:04.8183229Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/rolebinding.yaml +2025-11-24T09:08:04.8183677Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/clusterrole.yaml +2025-11-24T09:08:04.8184103Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/role.yaml +2025-11-24T09:08:04.8184572Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/job-createSecret.yaml +2025-11-24T09:08:04.8185061Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/clusterrolebinding.yaml +2025-11-24T09:08:04.8185506Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/validating-webhook.yaml +2025-11-24T09:08:04.8185918Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-prometheusrules.yaml +2025-11-24T09:08:04.8186248Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/_helpers.tpl +2025-11-24T09:08:04.8186647Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-serviceaccount.yaml +2025-11-24T09:08:04.8187171Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-psp.yaml +2025-11-24T09:08:04.8187573Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/proxyheaders-configmap.yaml +2025-11-24T09:08:04.8187949Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/clusterrolebinding.yaml +2025-11-24T09:08:04.8188163Z charts/nginx-ingress-controller/templates/ +2025-11-24T09:08:04.8188409Z charts/nginx-ingress-controller/templates/_helpers.tpl +2025-11-24T09:08:04.8188590Z values/ +2025-11-24T09:08:04.8188773Z values/fluent-bit/ +2025-11-24T09:08:04.8188984Z values/fluent-bit/prod-values.example.yaml +2025-11-24T09:08:04.8189229Z values/rabbitmq/ +2025-11-24T09:08:04.8189433Z values/rabbitmq/prod-secrets.example.yaml +2025-11-24T09:08:04.8189635Z values/rabbitmq/prod-values.example.yaml +2025-11-24T09:08:04.8189817Z values/aws-ingress/ +2025-11-24T09:08:04.8190003Z values/minio-external/ +2025-11-24T09:08:04.8190223Z values/minio-external/prod-values.example.yaml +2025-11-24T09:08:04.8190400Z values/webapp/ +2025-11-24T09:08:04.8190609Z values/webapp/prod-values.example.yaml +2025-11-24T09:08:04.8190801Z values/k8ssandra-operator/ +2025-11-24T09:08:04.8191034Z values/k8ssandra-operator/prod-values.example.yaml +2025-11-24T09:08:04.8191222Z values/databases-ephemeral/ +2025-11-24T09:08:04.8191458Z values/databases-ephemeral/prod-values.example.yaml +2025-11-24T09:08:04.8191654Z values/k8ssandra-test-cluster/ +2025-11-24T09:08:04.8191903Z values/k8ssandra-test-cluster/prod-values.example.yaml +2025-11-24T09:08:04.8192082Z values/smtp/ +2025-11-24T09:08:04.8192283Z values/smtp/prod-values.example.yaml +2025-11-24T09:08:04.8192462Z values/coturn/ +2025-11-24T09:08:04.8192770Z values/coturn/prod-secrets.example.yaml +2025-11-24T09:08:04.8192970Z values/coturn/prod-values.example.yaml +2025-11-24T09:08:04.8193153Z values/cert-manager/ +2025-11-24T09:08:04.8193368Z values/cert-manager/prod-values.example.yaml +2025-11-24T09:08:04.8193545Z values/reaper/ +2025-11-24T09:08:04.8193748Z values/reaper/prod-values.example.yaml +2025-11-24T09:08:04.8193923Z values/sftd/ +2025-11-24T09:08:04.8194125Z values/sftd/prod-values.example.yaml +2025-11-24T09:08:04.8194305Z values/keycloakx/ +2025-11-24T09:08:04.8194505Z values/keycloakx/prod-values.example.yaml +2025-11-24T09:08:04.8194697Z values/step-certificates/ +2025-11-24T09:08:04.8194924Z values/step-certificates/prod-values.example.yaml +2025-11-24T09:08:04.8195112Z values/ldap-scim-bridge/ +2025-11-24T09:08:04.8195375Z values/account-pages/ +2025-11-24T09:08:04.8195596Z values/account-pages/prod-values.example.yaml +2025-11-24T09:08:04.8195782Z values/redis-ephemeral/ +2025-11-24T09:08:04.8196009Z values/redis-ephemeral/prod-values.example.yaml +2025-11-24T09:08:04.8196183Z values/wire-server/ +2025-11-24T09:08:04.8196400Z values/wire-server/prod-secrets.example.yaml +2025-11-24T09:08:04.8196611Z values/wire-server/prod-values.example.yaml +2025-11-24T09:08:04.8196797Z values/smallstep-accomp/ +2025-11-24T09:08:04.8197020Z values/smallstep-accomp/prod-values.example.yaml +2025-11-24T09:08:04.8197198Z values/restund/ +2025-11-24T09:08:04.8197403Z values/restund/prod-values.example.yaml +2025-11-24T09:08:04.8197593Z values/cassandra-external/ +2025-11-24T09:08:04.8197819Z values/cassandra-external/prod-values.example.yaml +2025-11-24T09:08:04.8197997Z values/wire-utility/ +2025-11-24T09:08:04.8198207Z values/wire-utility/prod-values.example.yaml +2025-11-24T09:08:04.8198408Z values/ingress-nginx-controller/ +2025-11-24T09:08:04.8198669Z values/ingress-nginx-controller/prod-values.example.yaml +2025-11-24T09:08:04.8198851Z values/team-settings/ +2025-11-24T09:08:04.8199074Z values/team-settings/prod-secrets.example.yaml +2025-11-24T09:08:04.8199294Z values/team-settings/prod-values.example.yaml +2025-11-24T09:08:04.8199490Z values/kube-prometheus-stack/ +2025-11-24T09:08:04.8199735Z values/kube-prometheus-stack/prod-secrets.example.yaml +2025-11-24T09:08:04.8199926Z values/postgresql-external/ +2025-11-24T09:08:04.8200161Z values/postgresql-external/prod-values.example.yaml +2025-11-24T09:08:04.8200357Z values/nginx-ingress-services/ +2025-11-24T09:08:04.8200754Z values/nginx-ingress-services/prod-secrets.example.yaml +2025-11-24T09:08:04.8201001Z values/nginx-ingress-services/prod-values.example.yaml +2025-11-24T09:08:04.8201180Z values/fake-aws/ +2025-11-24T09:08:04.8201384Z values/fake-aws/prod-values.example.yaml +2025-11-24T09:08:04.8201577Z values/elasticsearch-external/ +2025-11-24T09:08:04.8201817Z values/elasticsearch-external/prod-values.example.yaml +2025-11-24T09:08:04.8202008Z values/rabbitmq-external/ +2025-11-24T09:08:04.8202232Z values/rabbitmq-external/prod-values.example.yaml +2025-11-24T09:08:04.8202409Z ansible/ +2025-11-24T09:08:04.8202768Z ansible/kube-minio-static-files.yml +2025-11-24T09:08:04.8202953Z ansible/admin_users.yml +2025-11-24T09:08:04.8203131Z ansible/tinc.yml +2025-11-24T09:08:04.8203314Z ansible/helm_external.yml +2025-11-24T09:08:04.8203501Z ansible/postgresql-deploy.yml +2025-11-24T09:08:04.8203683Z ansible/kubernetes.yml +2025-11-24T09:08:04.8203870Z ansible/backup_rabbitmq.yml +2025-11-24T09:08:04.8204049Z ansible/ntp.yml +2025-11-24T09:08:04.8204226Z ansible/roles/ +2025-11-24T09:08:04.8204423Z ansible/roles/rabbitmq-cluster/ +2025-11-24T09:08:04.8204629Z ansible/roles/rabbitmq-cluster/defaults/ +2025-11-24T09:08:04.8204849Z ansible/roles/rabbitmq-cluster/defaults/main.yml +2025-11-24T09:08:04.8205045Z ansible/roles/rabbitmq-cluster/tasks/ +2025-11-24T09:08:04.8205297Z ansible/roles/rabbitmq-cluster/tasks/enable_ha_queues.yml +2025-11-24T09:08:04.8205518Z ansible/roles/rabbitmq-cluster/tasks/install.yml +2025-11-24T09:08:04.8205732Z ansible/roles/rabbitmq-cluster/tasks/hosts.yml +2025-11-24T09:08:04.8205949Z ansible/roles/rabbitmq-cluster/tasks/config.yml +2025-11-24T09:08:04.8206189Z ansible/roles/rabbitmq-cluster/tasks/erlang_cookie.yml +2025-11-24T09:08:04.8206421Z ansible/roles/rabbitmq-cluster/tasks/configure_dns.yml +2025-11-24T09:08:04.8206657Z ansible/roles/rabbitmq-cluster/tasks/join_cluster.yml +2025-11-24T09:08:04.8206910Z ansible/roles/rabbitmq-cluster/tasks/service.yaml +2025-11-24T09:08:04.8207124Z ansible/roles/rabbitmq-cluster/tasks/cluster.yml +2025-11-24T09:08:04.8207337Z ansible/roles/rabbitmq-cluster/tasks/tls.yml +2025-11-24T09:08:04.8207570Z ansible/roles/rabbitmq-cluster/tasks/create_users.yml +2025-11-24T09:08:04.8207779Z ansible/roles/rabbitmq-cluster/tasks/main.yml +2025-11-24T09:08:04.8207982Z ansible/roles/rabbitmq-cluster/handlers/ +2025-11-24T09:08:04.8208207Z ansible/roles/rabbitmq-cluster/handlers/main.yml +2025-11-24T09:08:04.8208500Z ansible/roles/rabbitmq-cluster/templates/ +2025-11-24T09:08:04.8208759Z ansible/roles/rabbitmq-cluster/templates/erlang.cookie.j2 +2025-11-24T09:08:04.8208979Z ansible/roles/rabbitmq-cluster/templates/etc/ +2025-11-24T09:08:04.8209214Z ansible/roles/rabbitmq-cluster/templates/etc/default/ +2025-11-24T09:08:04.8209542Z ansible/roles/rabbitmq-cluster/templates/etc/default/rabbitmq-server.j2 +2025-11-24T09:08:04.8209785Z ansible/roles/rabbitmq-cluster/templates/etc/rabbitmq/ +2025-11-24T09:08:04.8210110Z ansible/roles/rabbitmq-cluster/templates/etc/rabbitmq/rabbitmq.config.j2 +2025-11-24T09:08:04.8210304Z ansible/roles/systemd-coredump/ +2025-11-24T09:08:04.8210514Z ansible/roles/systemd-coredump/defaults/ +2025-11-24T09:08:04.8210737Z ansible/roles/systemd-coredump/defaults/main.yml +2025-11-24T09:08:04.8210940Z ansible/roles/systemd-coredump/tasks/ +2025-11-24T09:08:04.8211147Z ansible/roles/systemd-coredump/tasks/main.yml +2025-11-24T09:08:04.8211339Z ansible/roles/etcd-helpers/ +2025-11-24T09:08:04.8211541Z ansible/roles/etcd-helpers/defaults/ +2025-11-24T09:08:04.8211755Z ansible/roles/etcd-helpers/defaults/main.yml +2025-11-24T09:08:04.8211950Z ansible/roles/etcd-helpers/tasks/ +2025-11-24T09:08:04.8212158Z ansible/roles/etcd-helpers/tasks/main.yml +2025-11-24T09:08:04.8212358Z ansible/roles/etcd-helpers/templates/ +2025-11-24T09:08:04.8212604Z ansible/roles/etcd-helpers/templates/etcd-health.sh.j2 +2025-11-24T09:08:04.8212935Z ansible/roles/etcd-helpers/templates/etcdctl3.sh.j2 +2025-11-24T09:08:04.8213134Z ansible/roles/minio-static-files/ +2025-11-24T09:08:04.8213342Z ansible/roles/minio-static-files/defaults/ +2025-11-24T09:08:04.8213695Z ansible/roles/minio-static-files/defaults/main.yml +2025-11-24T09:08:04.8213906Z ansible/roles/minio-static-files/tasks/ +2025-11-24T09:08:04.8214128Z ansible/roles/minio-static-files/tasks/main.yml +2025-11-24T09:08:04.8214328Z ansible/roles/minio-static-files/files/ +2025-11-24T09:08:04.8214543Z ansible/roles/minio-static-files/files/ios.json +2025-11-24T09:08:04.8214771Z ansible/roles/minio-static-files/files/android.json +2025-11-24T09:08:04.8214982Z ansible/roles/minio-static-files/templates/ +2025-11-24T09:08:04.8215239Z ansible/roles/minio-static-files/templates/deeplink.json.j2 +2025-11-24T09:08:04.8215560Z ansible/roles/minio-static-files/templates/deeplink.html.j2 +2025-11-24T09:08:04.8215743Z ansible/rabbitmq.yml +2025-11-24T09:08:04.8215933Z ansible/provision-sft.yml +2025-11-24T09:08:04.8216122Z ansible/roles-external/ +2025-11-24T09:08:04.8216322Z ansible/roles-external/kubespray/ +2025-11-24T09:08:04.8216535Z ansible/roles-external/kubespray/Dockerfile +2025-11-24T09:08:04.8216757Z ansible/roles-external/kubespray/Vagrantfile +2025-11-24T09:08:04.8216968Z ansible/roles-external/kubespray/CHANGELOG.md +2025-11-24T09:08:04.8217180Z ansible/roles-external/kubespray/setup.cfg +2025-11-24T09:08:04.8217385Z ansible/roles-external/kubespray/run.rc +2025-11-24T09:08:04.8217592Z ansible/roles-external/kubespray/contrib/ +2025-11-24T09:08:04.8217847Z ansible/roles-external/kubespray/contrib/inventory_builder/ +2025-11-24T09:08:04.8218154Z ansible/roles-external/kubespray/contrib/inventory_builder/setup.cfg +2025-11-24T09:08:04.8218481Z ansible/roles-external/kubespray/contrib/inventory_builder/requirements.txt +2025-11-24T09:08:04.8218782Z ansible/roles-external/kubespray/contrib/inventory_builder/setup.py +2025-11-24T09:08:04.8219122Z ansible/roles-external/kubespray/contrib/inventory_builder/test-requirements.txt +2025-11-24T09:08:04.8219430Z ansible/roles-external/kubespray/contrib/inventory_builder/inventory.py +2025-11-24T09:08:04.8219721Z ansible/roles-external/kubespray/contrib/inventory_builder/tox.ini +2025-11-24T09:08:04.8220009Z ansible/roles-external/kubespray/contrib/inventory_builder/tests/ +2025-11-24T09:08:04.8220360Z ansible/roles-external/kubespray/contrib/inventory_builder/tests/test_inventory.py +2025-11-24T09:08:04.8220587Z ansible/roles-external/kubespray/contrib/offline/ +2025-11-24T09:08:04.8220887Z ansible/roles-external/kubespray/contrib/offline/docker-daemon.json +2025-11-24T09:08:04.8221253Z ansible/roles-external/kubespray/contrib/offline/generate_list.yml +2025-11-24T09:08:04.8221506Z ansible/roles-external/kubespray/contrib/offline/nginx.conf +2025-11-24T09:08:04.8221760Z ansible/roles-external/kubespray/contrib/offline/README.md +2025-11-24T09:08:04.8222083Z ansible/roles-external/kubespray/contrib/offline/manage-offline-files.sh +2025-11-24T09:08:04.8222355Z ansible/roles-external/kubespray/contrib/offline/registries.conf +2025-11-24T09:08:04.8222735Z ansible/roles-external/kubespray/contrib/offline/generate_list.sh +2025-11-24T09:08:04.8223104Z ansible/roles-external/kubespray/contrib/offline/manage-offline-container-images.sh +2025-11-24T09:08:04.8223336Z ansible/roles-external/kubespray/contrib/kvm-setup/ +2025-11-24T09:08:04.8223648Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/ +2025-11-24T09:08:04.8223941Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/ +2025-11-24T09:08:04.8224261Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/tasks/ +2025-11-24T09:08:04.8224603Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/tasks/user.yml +2025-11-24T09:08:04.8224948Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/tasks/sysctl.yml +2025-11-24T09:08:04.8225289Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/tasks/main.yml +2025-11-24T09:08:04.8225551Z ansible/roles-external/kubespray/contrib/kvm-setup/README.md +2025-11-24T09:08:04.8225821Z ansible/roles-external/kubespray/contrib/kvm-setup/group_vars/ +2025-11-24T09:08:04.8226097Z ansible/roles-external/kubespray/contrib/kvm-setup/group_vars/all +2025-11-24T09:08:04.8226499Z ansible/roles-external/kubespray/contrib/kvm-setup/kvm-setup.yml +2025-11-24T09:08:04.8226738Z ansible/roles-external/kubespray/contrib/packaging/ +2025-11-24T09:08:04.8226986Z ansible/roles-external/kubespray/contrib/packaging/rpm/ +2025-11-24T09:08:04.8227305Z ansible/roles-external/kubespray/contrib/packaging/rpm/kubespray.spec +2025-11-24T09:08:04.8227521Z ansible/roles-external/kubespray/contrib/dind/ +2025-11-24T09:08:04.8227790Z ansible/roles-external/kubespray/contrib/dind/requirements.txt +2025-11-24T09:08:04.8228026Z ansible/roles-external/kubespray/contrib/dind/roles/ +2025-11-24T09:08:04.8228368Z ansible/roles-external/kubespray/contrib/dind/roles/dind-cluster/ +2025-11-24T09:08:04.8228686Z ansible/roles-external/kubespray/contrib/dind/roles/dind-cluster/tasks/ +2025-11-24T09:08:04.8229017Z ansible/roles-external/kubespray/contrib/dind/roles/dind-cluster/tasks/main.yaml +2025-11-24T09:08:04.8229278Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/ +2025-11-24T09:08:04.8229587Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/tasks/ +2025-11-24T09:08:04.8229919Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/tasks/main.yaml +2025-11-24T09:08:04.8230237Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/templates/ +2025-11-24T09:08:04.8230648Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/templates/inventory_builder.sh.j2 +2025-11-24T09:08:04.8230986Z ansible/roles-external/kubespray/contrib/dind/test-some_distros-most_CNIs.env +2025-11-24T09:08:04.8231363Z ansible/roles-external/kubespray/contrib/dind/test-some_distros-kube_router_combo.env +2025-11-24T09:08:04.8231612Z ansible/roles-external/kubespray/contrib/dind/README.md +2025-11-24T09:08:04.8231895Z ansible/roles-external/kubespray/contrib/dind/kubespray-dind.yaml +2025-11-24T09:08:04.8232138Z ansible/roles-external/kubespray/contrib/dind/group_vars/ +2025-11-24T09:08:04.8232405Z ansible/roles-external/kubespray/contrib/dind/group_vars/all/ +2025-11-24T09:08:04.8232825Z ansible/roles-external/kubespray/contrib/dind/group_vars/all/all.yaml +2025-11-24T09:08:04.8233147Z ansible/roles-external/kubespray/contrib/dind/group_vars/all/distro.yaml +2025-11-24T09:08:04.8233472Z ansible/roles-external/kubespray/contrib/dind/test-most_distros-some_CNIs.env +2025-11-24T09:08:04.8233741Z ansible/roles-external/kubespray/contrib/dind/dind-cluster.yaml +2025-11-24T09:08:04.8234089Z ansible/roles-external/kubespray/contrib/dind/run-test-distros.sh +2025-11-24T09:08:04.8234321Z ansible/roles-external/kubespray/contrib/dind/hosts +2025-11-24T09:08:04.8234540Z ansible/roles-external/kubespray/contrib/misc/ +2025-11-24T09:08:04.8234843Z ansible/roles-external/kubespray/contrib/misc/clusteradmin-rbac.yml +2025-11-24T09:08:04.8235085Z ansible/roles-external/kubespray/contrib/aws_inventory/ +2025-11-24T09:08:04.8235392Z ansible/roles-external/kubespray/contrib/aws_inventory/requirements.txt +2025-11-24T09:08:04.8235742Z ansible/roles-external/kubespray/contrib/aws_inventory/kubespray-aws-inventory.py +2025-11-24T09:08:04.8235973Z ansible/roles-external/kubespray/contrib/terraform/ +2025-11-24T09:08:04.8236230Z ansible/roles-external/kubespray/contrib/terraform/hetzner/ +2025-11-24T09:08:04.8236567Z ansible/roles-external/kubespray/contrib/terraform/hetzner/sample-inventory/ +2025-11-24T09:08:04.8236978Z ansible/roles-external/kubespray/contrib/terraform/hetzner/sample-inventory/cluster.tfvars +2025-11-24T09:08:04.8237358Z ansible/roles-external/kubespray/contrib/terraform/hetzner/sample-inventory/group_vars +2025-11-24T09:08:04.8237682Z ansible/roles-external/kubespray/contrib/terraform/hetzner/default.tfvars +2025-11-24T09:08:04.8237968Z ansible/roles-external/kubespray/contrib/terraform/hetzner/main.tf +2025-11-24T09:08:04.8238278Z ansible/roles-external/kubespray/contrib/terraform/hetzner/variables.tf +2025-11-24T09:08:04.8238579Z ansible/roles-external/kubespray/contrib/terraform/hetzner/output.tf +2025-11-24T09:08:04.8238872Z ansible/roles-external/kubespray/contrib/terraform/hetzner/README.md +2025-11-24T09:08:04.8239317Z ansible/roles-external/kubespray/contrib/terraform/hetzner/versions.tf +2025-11-24T09:08:04.8239625Z ansible/roles-external/kubespray/contrib/terraform/hetzner/templates/ +2025-11-24T09:08:04.8239979Z ansible/roles-external/kubespray/contrib/terraform/hetzner/templates/inventory.tpl +2025-11-24T09:08:04.8240275Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/ +2025-11-24T09:08:04.8240698Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/ +2025-11-24T09:08:04.8241143Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/main.tf +2025-11-24T09:08:04.8241655Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/variables.tf +2025-11-24T09:08:04.8242101Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/versions.tf +2025-11-24T09:08:04.8242543Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/outputs.tf +2025-11-24T09:08:04.8243090Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/templates/ +2025-11-24T09:08:04.8243616Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/templates/machine.yaml.tmpl +2025-11-24T09:08:04.8243994Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/ +2025-11-24T09:08:04.8244404Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/main.tf +2025-11-24T09:08:04.8244830Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/variables.tf +2025-11-24T09:08:04.8245251Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/output.tf +2025-11-24T09:08:04.8245670Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/versions.tf +2025-11-24T09:08:04.8246085Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/templates/ +2025-11-24T09:08:04.8246568Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/templates/cloud-init.tmpl +2025-11-24T09:08:04.8246818Z ansible/roles-external/kubespray/contrib/terraform/aws/ +2025-11-24T09:08:04.8247148Z ansible/roles-external/kubespray/contrib/terraform/aws/sample-inventory/ +2025-11-24T09:08:04.8247688Z ansible/roles-external/kubespray/contrib/terraform/aws/sample-inventory/cluster.tfvars +2025-11-24T09:08:04.8248493Z ansible/roles-external/kubespray/contrib/terraform/aws/sample-inventory/group_vars +2025-11-24T09:08:04.8248933Z ansible/roles-external/kubespray/contrib/terraform/aws/create-infrastructure.tf +2025-11-24T09:08:04.8253928Z ansible/roles-external/kubespray/contrib/terraform/aws/variables.tf +2025-11-24T09:08:04.8254233Z ansible/roles-external/kubespray/contrib/terraform/aws/output.tf +2025-11-24T09:08:04.8254517Z ansible/roles-external/kubespray/contrib/terraform/aws/.gitignore +2025-11-24T09:08:04.8254796Z ansible/roles-external/kubespray/contrib/terraform/aws/README.md +2025-11-24T09:08:04.8255147Z ansible/roles-external/kubespray/contrib/terraform/aws/credentials.tfvars.example +2025-11-24T09:08:04.8255407Z ansible/roles-external/kubespray/contrib/terraform/aws/docs/ +2025-11-24T09:08:04.8255745Z ansible/roles-external/kubespray/contrib/terraform/aws/docs/aws_kubespray.png +2025-11-24T09:08:04.8256091Z ansible/roles-external/kubespray/contrib/terraform/aws/terraform.tfvars.example +2025-11-24T09:08:04.8256374Z ansible/roles-external/kubespray/contrib/terraform/aws/templates/ +2025-11-24T09:08:04.8256705Z ansible/roles-external/kubespray/contrib/terraform/aws/templates/inventory.tpl +2025-11-24T09:08:04.8257020Z ansible/roles-external/kubespray/contrib/terraform/aws/terraform.tfvars +2025-11-24T09:08:04.8257285Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/ +2025-11-24T09:08:04.8257581Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/vpc/ +2025-11-24T09:08:04.8257903Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/vpc/main.tf +2025-11-24T09:08:04.8258411Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/vpc/variables.tf +2025-11-24T09:08:04.8258747Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/vpc/outputs.tf +2025-11-24T09:08:04.8259038Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/nlb/ +2025-11-24T09:08:04.8259349Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/nlb/main.tf +2025-11-24T09:08:04.8259679Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/nlb/variables.tf +2025-11-24T09:08:04.8260068Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/nlb/outputs.tf +2025-11-24T09:08:04.8260361Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/iam/ +2025-11-24T09:08:04.8260680Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/iam/main.tf +2025-11-24T09:08:04.8261014Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/iam/variables.tf +2025-11-24T09:08:04.8261345Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/iam/outputs.tf +2025-11-24T09:08:04.8261601Z ansible/roles-external/kubespray/contrib/terraform/equinix/ +2025-11-24T09:08:04.8261928Z ansible/roles-external/kubespray/contrib/terraform/equinix/sample-inventory/ +2025-11-24T09:08:04.8262332Z ansible/roles-external/kubespray/contrib/terraform/equinix/sample-inventory/cluster.tfvars +2025-11-24T09:08:04.8262851Z ansible/roles-external/kubespray/contrib/terraform/equinix/sample-inventory/group_vars +2025-11-24T09:08:04.8263174Z ansible/roles-external/kubespray/contrib/terraform/equinix/kubespray.tf +2025-11-24T09:08:04.8263473Z ansible/roles-external/kubespray/contrib/terraform/equinix/variables.tf +2025-11-24T09:08:04.8263779Z ansible/roles-external/kubespray/contrib/terraform/equinix/output.tf +2025-11-24T09:08:04.8264082Z ansible/roles-external/kubespray/contrib/terraform/equinix/README.md +2025-11-24T09:08:04.8264401Z ansible/roles-external/kubespray/contrib/terraform/equinix/provider.tf +2025-11-24T09:08:04.8264683Z ansible/roles-external/kubespray/contrib/terraform/equinix/hosts +2025-11-24T09:08:04.8264943Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/ +2025-11-24T09:08:04.8265277Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/sample-inventory/ +2025-11-24T09:08:04.8265675Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/sample-inventory/cluster.tfvars +2025-11-24T09:08:04.8266137Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/sample-inventory/group_vars +2025-11-24T09:08:04.8266435Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/main.tf +2025-11-24T09:08:04.8266749Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/variables.tf +2025-11-24T09:08:04.8267051Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/output.tf +2025-11-24T09:08:04.8267357Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/.gitignore +2025-11-24T09:08:04.8267656Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/README.md +2025-11-24T09:08:04.8267969Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/terraform.tf +2025-11-24T09:08:04.8268317Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/generate-inventory.sh +2025-11-24T09:08:04.8268615Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/ +2025-11-24T09:08:04.8268989Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/ +2025-11-24T09:08:04.8269400Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/main.tf +2025-11-24T09:08:04.8411476Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/variables.tf +2025-11-24T09:08:04.8412131Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/terraform.tf +2025-11-24T09:08:04.8412889Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/outputs.tf +2025-11-24T09:08:04.8413440Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/templates/ +2025-11-24T09:08:04.8414456Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/templates/userdata.tftpl +2025-11-24T09:08:04.8414815Z ansible/roles-external/kubespray/contrib/terraform/terraform.py +2025-11-24T09:08:04.8415124Z ansible/roles-external/kubespray/contrib/terraform/gcp/ +2025-11-24T09:08:04.8415459Z ansible/roles-external/kubespray/contrib/terraform/gcp/main.tf +2025-11-24T09:08:04.8416164Z ansible/roles-external/kubespray/contrib/terraform/gcp/tfvars.json +2025-11-24T09:08:04.8416764Z ansible/roles-external/kubespray/contrib/terraform/gcp/variables.tf +2025-11-24T09:08:04.8417280Z ansible/roles-external/kubespray/contrib/terraform/gcp/output.tf +2025-11-24T09:08:04.8417620Z ansible/roles-external/kubespray/contrib/terraform/gcp/README.md +2025-11-24T09:08:04.8418040Z ansible/roles-external/kubespray/contrib/terraform/gcp/generate-inventory.sh +2025-11-24T09:08:04.8418372Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/ +2025-11-24T09:08:04.8418819Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/kubernetes-cluster/ +2025-11-24T09:08:04.8419313Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/kubernetes-cluster/main.tf +2025-11-24T09:08:04.8419803Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/kubernetes-cluster/variables.tf +2025-11-24T09:08:04.8420192Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/kubernetes-cluster/output.tf +2025-11-24T09:08:04.8420459Z ansible/roles-external/kubespray/contrib/terraform/exoscale/ +2025-11-24T09:08:04.8420792Z ansible/roles-external/kubespray/contrib/terraform/exoscale/sample-inventory/ +2025-11-24T09:08:04.8421186Z ansible/roles-external/kubespray/contrib/terraform/exoscale/sample-inventory/cluster.tfvars +2025-11-24T09:08:04.8421580Z ansible/roles-external/kubespray/contrib/terraform/exoscale/sample-inventory/group_vars +2025-11-24T09:08:04.8421916Z ansible/roles-external/kubespray/contrib/terraform/exoscale/default.tfvars +2025-11-24T09:08:04.8422220Z ansible/roles-external/kubespray/contrib/terraform/exoscale/main.tf +2025-11-24T09:08:04.8422540Z ansible/roles-external/kubespray/contrib/terraform/exoscale/variables.tf +2025-11-24T09:08:04.8666515Z ansible/roles-external/kubespray/contrib/terraform/exoscale/output.tf +2025-11-24T09:08:04.8667061Z ansible/roles-external/kubespray/contrib/terraform/exoscale/README.md +2025-11-24T09:08:04.8667774Z ansible/roles-external/kubespray/contrib/terraform/exoscale/versions.tf +2025-11-24T09:08:04.8668103Z ansible/roles-external/kubespray/contrib/terraform/exoscale/templates/ +2025-11-24T09:08:04.8668478Z ansible/roles-external/kubespray/contrib/terraform/exoscale/templates/inventory.tpl +2025-11-24T09:08:04.8668798Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/ +2025-11-24T09:08:04.8669202Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/ +2025-11-24T09:08:04.8669627Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/main.tf +2025-11-24T09:08:04.8670075Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/variables.tf +2025-11-24T09:08:04.8670483Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/output.tf +2025-11-24T09:08:04.8670909Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/versions.tf +2025-11-24T09:08:04.8671328Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/templates/ +2025-11-24T09:08:04.8671808Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/templates/cloud-init.tmpl +2025-11-24T09:08:04.8672079Z ansible/roles-external/kubespray/contrib/terraform/group_vars +2025-11-24T09:08:04.8672332Z ansible/roles-external/kubespray/contrib/terraform/vsphere/ +2025-11-24T09:08:04.8672903Z ansible/roles-external/kubespray/contrib/terraform/vsphere/sample-inventory/ +2025-11-24T09:08:04.8673463Z ansible/roles-external/kubespray/contrib/terraform/vsphere/sample-inventory/cluster.tfvars +2025-11-24T09:08:04.8674059Z ansible/roles-external/kubespray/contrib/terraform/vsphere/sample-inventory/group_vars +2025-11-24T09:08:04.8674391Z ansible/roles-external/kubespray/contrib/terraform/vsphere/default.tfvars +2025-11-24T09:08:04.8674688Z ansible/roles-external/kubespray/contrib/terraform/vsphere/main.tf +2025-11-24T09:08:04.8674998Z ansible/roles-external/kubespray/contrib/terraform/vsphere/variables.tf +2025-11-24T09:08:04.8675306Z ansible/roles-external/kubespray/contrib/terraform/vsphere/output.tf +2025-11-24T09:08:04.8675601Z ansible/roles-external/kubespray/contrib/terraform/vsphere/README.md +2025-11-24T09:08:04.8676015Z ansible/roles-external/kubespray/contrib/terraform/vsphere/versions.tf +2025-11-24T09:08:04.8676322Z ansible/roles-external/kubespray/contrib/terraform/vsphere/templates/ +2025-11-24T09:08:04.8676672Z ansible/roles-external/kubespray/contrib/terraform/vsphere/templates/inventory.tpl +2025-11-24T09:08:04.8780669Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/ +2025-11-24T09:08:04.8781265Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/ +2025-11-24T09:08:04.8781765Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/main.tf +2025-11-24T09:08:04.8782284Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/variables.tf +2025-11-24T09:08:04.8782979Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/output.tf +2025-11-24T09:08:04.8783479Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/versions.tf +2025-11-24T09:08:04.8783967Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/templates/ +2025-11-24T09:08:04.8784605Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/templates/vapp-cloud-init.tpl +2025-11-24T09:08:04.8785138Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/templates/metadata.tpl +2025-11-24T09:08:04.8785679Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/templates/cloud-init.tpl +2025-11-24T09:08:04.8785982Z ansible/roles-external/kubespray/contrib/terraform/openstack/ +2025-11-24T09:08:04.8786365Z ansible/roles-external/kubespray/contrib/terraform/openstack/sample-inventory/ +2025-11-24T09:08:04.8787104Z ansible/roles-external/kubespray/contrib/terraform/openstack/sample-inventory/cluster.tfvars +2025-11-24T09:08:04.8787550Z ansible/roles-external/kubespray/contrib/terraform/openstack/sample-inventory/group_vars +2025-11-24T09:08:04.8787921Z ansible/roles-external/kubespray/contrib/terraform/openstack/kubespray.tf +2025-11-24T09:08:04.8788276Z ansible/roles-external/kubespray/contrib/terraform/openstack/variables.tf +2025-11-24T09:08:04.8788631Z ansible/roles-external/kubespray/contrib/terraform/openstack/.gitignore +2025-11-24T09:08:04.8788972Z ansible/roles-external/kubespray/contrib/terraform/openstack/README.md +2025-11-24T09:08:04.8789335Z ansible/roles-external/kubespray/contrib/terraform/openstack/versions.tf +2025-11-24T09:08:04.8789662Z ansible/roles-external/kubespray/contrib/terraform/openstack/hosts +2025-11-24T09:08:04.8790003Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ +2025-11-24T09:08:04.8790384Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/ +2025-11-24T09:08:04.8790804Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/main.tf +2025-11-24T09:08:04.8791209Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/variables.tf +2025-11-24T09:08:04.8791596Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/versions.tf +2025-11-24T09:08:04.8791973Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/outputs.tf +2025-11-24T09:08:04.8792290Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/ +2025-11-24T09:08:04.8792921Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/main.tf +2025-11-24T09:08:04.8793311Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/variables.tf +2025-11-24T09:08:04.8793702Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/versions.tf +2025-11-24T09:08:04.8794062Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/outputs.tf +2025-11-24T09:08:04.8794437Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/loadbalancer/ +2025-11-24T09:08:04.8794845Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/loadbalancer/main.tf +2025-11-24T09:08:04.8795353Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/loadbalancer/variables.tf +2025-11-24T09:08:04.8795761Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/loadbalancer/versions.tf +2025-11-24T09:08:04.8796100Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/ +2025-11-24T09:08:04.8796556Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/ansible_bastion_template.txt +2025-11-24T09:08:04.8796928Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/main.tf +2025-11-24T09:08:04.8797319Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/variables.tf +2025-11-24T09:08:04.8797706Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/versions.tf +2025-11-24T09:08:04.8798087Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/outputs.tf +2025-11-24T09:08:04.8798457Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/templates/ +2025-11-24T09:08:04.8798921Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/templates/cloudinit.yaml.tmpl +2025-11-24T09:08:04.8799174Z ansible/roles-external/kubespray/contrib/terraform/OWNERS +2025-11-24T09:08:04.8799433Z ansible/roles-external/kubespray/contrib/terraform/upcloud/ +2025-11-24T09:08:04.8799775Z ansible/roles-external/kubespray/contrib/terraform/upcloud/sample-inventory/ +2025-11-24T09:08:04.8800171Z ansible/roles-external/kubespray/contrib/terraform/upcloud/sample-inventory/cluster.tfvars +2025-11-24T09:08:04.8800558Z ansible/roles-external/kubespray/contrib/terraform/upcloud/sample-inventory/group_vars +2025-11-24T09:08:04.8800856Z ansible/roles-external/kubespray/contrib/terraform/upcloud/main.tf +2025-11-24T09:08:04.8857298Z ansible/roles-external/kubespray/contrib/terraform/upcloud/variables.tf +2025-11-24T09:08:04.8857875Z ansible/roles-external/kubespray/contrib/terraform/upcloud/output.tf +2025-11-24T09:08:04.8858242Z ansible/roles-external/kubespray/contrib/terraform/upcloud/README.md +2025-11-24T09:08:04.8858623Z ansible/roles-external/kubespray/contrib/terraform/upcloud/versions.tf +2025-11-24T09:08:04.8859015Z ansible/roles-external/kubespray/contrib/terraform/upcloud/cluster-settings.tfvars +2025-11-24T09:08:04.8859358Z ansible/roles-external/kubespray/contrib/terraform/upcloud/templates/ +2025-11-24T09:08:04.8859746Z ansible/roles-external/kubespray/contrib/terraform/upcloud/templates/inventory.tpl +2025-11-24T09:08:04.8860057Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/ +2025-11-24T09:08:04.8860491Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/ +2025-11-24T09:08:04.8860975Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/main.tf +2025-11-24T09:08:04.8861480Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/variables.tf +2025-11-24T09:08:04.8861957Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/output.tf +2025-11-24T09:08:04.8862454Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/versions.tf +2025-11-24T09:08:04.8862887Z ansible/roles-external/kubespray/contrib/mitogen/ +2025-11-24T09:08:04.8863190Z ansible/roles-external/kubespray/contrib/mitogen/mitogen.yml +2025-11-24T09:08:04.8863441Z ansible/roles-external/kubespray/contrib/azurerm/ +2025-11-24T09:08:04.8863985Z ansible/roles-external/kubespray/contrib/azurerm/roles/ +2025-11-24T09:08:04.8864389Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/ +2025-11-24T09:08:04.8864840Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/tasks/ +2025-11-24T09:08:04.8865298Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/tasks/main.yml +2025-11-24T09:08:04.8865737Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/templates/ +2025-11-24T09:08:04.8866351Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/templates/loadbalancer_vars.j2 +2025-11-24T09:08:04.8866837Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/templates/inventory.j2 +2025-11-24T09:08:04.8867209Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/ +2025-11-24T09:08:04.8867611Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/defaults/ +2025-11-24T09:08:04.8868070Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/defaults/main.yml +2025-11-24T09:08:04.8868462Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/tasks/ +2025-11-24T09:08:04.8868905Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/tasks/main.yml +2025-11-24T09:08:04.8869322Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/ +2025-11-24T09:08:04.8869798Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/network.json +2025-11-24T09:08:04.8870264Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/bastion.json +2025-11-24T09:08:04.8870749Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/clear-rg.json +2025-11-24T09:08:04.8871270Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/availability-sets.json +2025-11-24T09:08:04.8871722Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/storage.json +2025-11-24T09:08:04.8872133Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/minions.json +2025-11-24T09:08:04.8872538Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/masters.json +2025-11-24T09:08:04.8873074Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/ +2025-11-24T09:08:04.8873417Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/tasks/ +2025-11-24T09:08:04.8873807Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/tasks/main.yml +2025-11-24T09:08:04.8874172Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/templates/ +2025-11-24T09:08:04.8874573Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/templates/inventory.j2 +2025-11-24T09:08:04.8874886Z ansible/roles-external/kubespray/contrib/azurerm/generate-inventory.yml +2025-11-24T09:08:04.8875152Z ansible/roles-external/kubespray/contrib/azurerm/apply-rg.sh +2025-11-24T09:08:04.8875459Z ansible/roles-external/kubespray/contrib/azurerm/generate-templates.yml +2025-11-24T09:08:04.8875714Z ansible/roles-external/kubespray/contrib/azurerm/.gitignore +2025-11-24T09:08:04.8875966Z ansible/roles-external/kubespray/contrib/azurerm/README.md +2025-11-24T09:08:04.8876226Z ansible/roles-external/kubespray/contrib/azurerm/group_vars/ +2025-11-24T09:08:04.8876490Z ansible/roles-external/kubespray/contrib/azurerm/group_vars/all +2025-11-24T09:08:04.8876814Z ansible/roles-external/kubespray/contrib/azurerm/generate-inventory_2.yml +2025-11-24T09:08:04.8877132Z ansible/roles-external/kubespray/contrib/azurerm/generate-inventory.sh +2025-11-24T09:08:04.8877378Z ansible/roles-external/kubespray/contrib/azurerm/clear-rg.sh +2025-11-24T09:08:04.8877603Z ansible/roles-external/kubespray/contrib/aws_iam/ +2025-11-24T09:08:04.8877935Z ansible/roles-external/kubespray/contrib/aws_iam/kubernetes-minion-role.json +2025-11-24T09:08:04.8878487Z ansible/roles-external/kubespray/contrib/aws_iam/kubernetes-minion-policy.json +2025-11-24T09:08:04.8884876Z ansible/roles-external/kubespray/contrib/aws_iam/kubernetes-master-policy.json +2025-11-24T09:08:04.8886032Z ansible/roles-external/kubespray/contrib/aws_iam/kubernetes-master-role.json +2025-11-24T09:08:04.8886445Z ansible/roles-external/kubespray/contrib/os-services/ +2025-11-24T09:08:04.8886880Z ansible/roles-external/kubespray/contrib/os-services/roles/ +2025-11-24T09:08:04.8887375Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/ +2025-11-24T09:08:04.8888074Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/defaults/ +2025-11-24T09:08:04.8888691Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/defaults/main.yml +2025-11-24T09:08:04.8889222Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/tasks/ +2025-11-24T09:08:04.8889793Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/tasks/main.yml +2025-11-24T09:08:04.8890163Z ansible/roles-external/kubespray/contrib/os-services/os-services.yml +2025-11-24T09:08:04.8890429Z ansible/roles-external/kubespray/contrib/network-storage/ +2025-11-24T09:08:04.8890724Z ansible/roles-external/kubespray/contrib/network-storage/heketi/ +2025-11-24T09:08:04.8891070Z ansible/roles-external/kubespray/contrib/network-storage/heketi/requirements.txt +2025-11-24T09:08:04.8891398Z ansible/roles-external/kubespray/contrib/network-storage/heketi/heketi.yml +2025-11-24T09:08:04.8891714Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/ +2025-11-24T09:08:04.8892059Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down/ +2025-11-24T09:08:04.8892436Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down/tasks/ +2025-11-24T09:08:04.8893029Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down/tasks/main.yml +2025-11-24T09:08:04.8893379Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/ +2025-11-24T09:08:04.8893772Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/defaults/ +2025-11-24T09:08:04.8894187Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/defaults/main.yml +2025-11-24T09:08:04.8894557Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/ +2025-11-24T09:08:04.8895069Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/heketi.yml +2025-11-24T09:08:04.8895470Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/ +2025-11-24T09:08:04.8895917Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/deploy.yml +2025-11-24T09:08:04.8896367Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/storage.yml +2025-11-24T09:08:04.8896825Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/tear-down.yml +2025-11-24T09:08:04.8897270Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/volumes.yml +2025-11-24T09:08:04.8897713Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/topology.yml +2025-11-24T09:08:04.8898138Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/storageclass.yml +2025-11-24T09:08:04.8898562Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/storage.yml +2025-11-24T09:08:04.8898969Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/cleanup.yml +2025-11-24T09:08:04.8899703Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/glusterfs.yml +2025-11-24T09:08:04.8900123Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap.yml +2025-11-24T09:08:04.8900754Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/topology.yml +2025-11-24T09:08:04.8901494Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/main.yml +2025-11-24T09:08:04.8902168Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/secret.yml +2025-11-24T09:08:04.8902578Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/glusterfs/ +2025-11-24T09:08:04.8903165Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/glusterfs/label.yml +2025-11-24T09:08:04.8903665Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/handlers/ +2025-11-24T09:08:04.8904072Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/handlers/main.yml +2025-11-24T09:08:04.8904472Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/ +2025-11-24T09:08:04.8904915Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi.json.j2 +2025-11-24T09:08:04.8905409Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi-bootstrap.json.j2 +2025-11-24T09:08:04.8905852Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/topology.json.j2 +2025-11-24T09:08:04.8906358Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/glusterfs-daemonset.json.j2 +2025-11-24T09:08:04.8906848Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi-deployment.json.j2 +2025-11-24T09:08:04.8907802Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi-storage.json.j2 +2025-11-24T09:08:04.8908484Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/storageclass.yml.j2 +2025-11-24T09:08:04.8909363Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi-service-account.json.j2 +2025-11-24T09:08:04.8909715Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/prepare/ +2025-11-24T09:08:04.8910176Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/prepare/tasks/ +2025-11-24T09:08:04.8910577Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/prepare/tasks/main.yml +2025-11-24T09:08:04.8911067Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/ +2025-11-24T09:08:04.8911491Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/defaults/ +2025-11-24T09:08:04.8911929Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/defaults/main.yml +2025-11-24T09:08:04.8912318Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/tasks/ +2025-11-24T09:08:04.8912854Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/tasks/main.yml +2025-11-24T09:08:04.8913222Z ansible/roles-external/kubespray/contrib/network-storage/heketi/inventory.yml.sample +2025-11-24T09:08:04.8913582Z ansible/roles-external/kubespray/contrib/network-storage/heketi/heketi-tear-down.yml +2025-11-24T09:08:04.8913899Z ansible/roles-external/kubespray/contrib/network-storage/heketi/README.md +2025-11-24T09:08:04.8914200Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/ +2025-11-24T09:08:04.8914515Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/ +2025-11-24T09:08:04.8914879Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/bootstrap-os +2025-11-24T09:08:04.8915256Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ +2025-11-24T09:08:04.8915642Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/meta/ +2025-11-24T09:08:04.8916067Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/meta/main.yaml +2025-11-24T09:08:04.8916601Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/ +2025-11-24T09:08:04.8917029Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/tasks/ +2025-11-24T09:08:04.8917481Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/tasks/main.yaml +2025-11-24T09:08:04.8917921Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/templates/ +2025-11-24T09:08:04.8918571Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/templates/glusterfs-kubernetes-endpoint-svc.json.j2 +2025-11-24T09:08:04.8919217Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/templates/glusterfs-kubernetes-pv.yml.j2 +2025-11-24T09:08:04.8919804Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/templates/glusterfs-kubernetes-endpoint.json.j2 +2025-11-24T09:08:04.8920161Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/ +2025-11-24T09:08:04.8920556Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/ +2025-11-24T09:08:04.8920975Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/defaults/ +2025-11-24T09:08:04.8921417Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/defaults/main.yml +2025-11-24T09:08:04.8921812Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/meta/ +2025-11-24T09:08:04.8922251Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/meta/main.yml +2025-11-24T09:08:04.8922795Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/ +2025-11-24T09:08:04.8923265Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/setup-Debian.yml +2025-11-24T09:08:04.8923735Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/setup-RedHat.yml +2025-11-24T09:08:04.8924165Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/main.yml +2025-11-24T09:08:04.8924557Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/vars/ +2025-11-24T09:08:04.8925070Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/vars/RedHat.yml +2025-11-24T09:08:04.8925499Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/vars/Debian.yml +2025-11-24T09:08:04.8925920Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/templates/ +2025-11-24T09:08:04.8926391Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/templates/test-file.txt +2025-11-24T09:08:04.8926779Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/ +2025-11-24T09:08:04.8927196Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/defaults/ +2025-11-24T09:08:04.8927640Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/defaults/main.yml +2025-11-24T09:08:04.8928027Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/meta/ +2025-11-24T09:08:04.8928453Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/meta/main.yml +2025-11-24T09:08:04.8928851Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/tasks/ +2025-11-24T09:08:04.8929312Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/tasks/setup-Debian.yml +2025-11-24T09:08:04.8929767Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/tasks/setup-RedHat.yml +2025-11-24T09:08:04.8930313Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/tasks/main.yml +2025-11-24T09:08:04.8930703Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/README.md +2025-11-24T09:08:04.8931030Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/README.md +2025-11-24T09:08:04.8931355Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/group_vars +2025-11-24T09:08:04.8931691Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/glusterfs.yml +2025-11-24T09:08:04.8932056Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/inventory.example +2025-11-24T09:08:04.8932326Z ansible/roles-external/kubespray/LICENSE +2025-11-24T09:08:04.8932553Z ansible/roles-external/kubespray/requirements.txt +2025-11-24T09:08:04.8932857Z ansible/roles-external/kubespray/setup.py +2025-11-24T09:08:04.8933064Z ansible/roles-external/kubespray/.nojekyll +2025-11-24T09:08:04.8933262Z ansible/roles-external/kubespray/.git +2025-11-24T09:08:04.8933466Z ansible/roles-external/kubespray/.yamllint +2025-11-24T09:08:04.8933723Z ansible/roles-external/kubespray/recover-control-plane.yml +2025-11-24T09:08:04.8933943Z ansible/roles-external/kubespray/CONTRIBUTING.md +2025-11-24T09:08:04.8934140Z ansible/roles-external/kubespray/roles/ +2025-11-24T09:08:04.8934354Z ansible/roles-external/kubespray/roles/win_nodes/ +2025-11-24T09:08:04.8934648Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/ +2025-11-24T09:08:04.8934976Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/defaults/ +2025-11-24T09:08:04.8935320Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/defaults/main.yml +2025-11-24T09:08:04.8935673Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/tasks/ +2025-11-24T09:08:04.8935999Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/tasks/main.yml +2025-11-24T09:08:04.8936260Z ansible/roles-external/kubespray/roles/recover_control_plane/ +2025-11-24T09:08:04.8936588Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/ +2025-11-24T09:08:04.8936949Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/defaults/ +2025-11-24T09:08:04.8937337Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/defaults/main.yml +2025-11-24T09:08:04.8937674Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/tasks/ +2025-11-24T09:08:04.8938144Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/tasks/main.yml +2025-11-24T09:08:04.8938466Z ansible/roles-external/kubespray/roles/recover_control_plane/post-recover/ +2025-11-24T09:08:04.8938798Z ansible/roles-external/kubespray/roles/recover_control_plane/post-recover/tasks/ +2025-11-24T09:08:04.8939177Z ansible/roles-external/kubespray/roles/recover_control_plane/post-recover/tasks/main.yml +2025-11-24T09:08:04.8939464Z ansible/roles-external/kubespray/roles/recover_control_plane/etcd/ +2025-11-24T09:08:04.8939772Z ansible/roles-external/kubespray/roles/recover_control_plane/etcd/tasks/ +2025-11-24T09:08:04.8940169Z ansible/roles-external/kubespray/roles/recover_control_plane/etcd/tasks/recover_lost_quorum.yml +2025-11-24T09:08:04.8940496Z ansible/roles-external/kubespray/roles/recover_control_plane/etcd/tasks/main.yml +2025-11-24T09:08:04.8940796Z ansible/roles-external/kubespray/roles/recover_control_plane/OWNERS +2025-11-24T09:08:04.8941012Z ansible/roles-external/kubespray/roles/adduser/ +2025-11-24T09:08:04.8941257Z ansible/roles-external/kubespray/roles/adduser/defaults/ +2025-11-24T09:08:04.8941531Z ansible/roles-external/kubespray/roles/adduser/defaults/main.yml +2025-11-24T09:08:04.8941767Z ansible/roles-external/kubespray/roles/adduser/tasks/ +2025-11-24T09:08:04.8942028Z ansible/roles-external/kubespray/roles/adduser/tasks/main.yml +2025-11-24T09:08:04.8942260Z ansible/roles-external/kubespray/roles/adduser/vars/ +2025-11-24T09:08:04.8942525Z ansible/roles-external/kubespray/roles/adduser/vars/debian.yml +2025-11-24T09:08:04.8942884Z ansible/roles-external/kubespray/roles/adduser/vars/redhat.yml +2025-11-24T09:08:04.8943265Z ansible/roles-external/kubespray/roles/adduser/vars/coreos.yml +2025-11-24T09:08:04.8943508Z ansible/roles-external/kubespray/roles/adduser/molecule/ +2025-11-24T09:08:04.8943776Z ansible/roles-external/kubespray/roles/adduser/molecule/default/ +2025-11-24T09:08:04.8944106Z ansible/roles-external/kubespray/roles/adduser/molecule/default/converge.yml +2025-11-24T09:08:04.8944431Z ansible/roles-external/kubespray/roles/adduser/molecule/default/molecule.yml +2025-11-24T09:08:04.8944655Z ansible/roles-external/kubespray/roles/kubernetes/ +2025-11-24T09:08:04.8944987Z ansible/roles-external/kubespray/roles/kubernetes/node-label/ +2025-11-24T09:08:04.8945280Z ansible/roles-external/kubespray/roles/kubernetes/node-label/tasks/ +2025-11-24T09:08:04.8945603Z ansible/roles-external/kubespray/roles/kubernetes/node-label/tasks/main.yml +2025-11-24T09:08:04.8945851Z ansible/roles-external/kubespray/roles/kubernetes/tokens/ +2025-11-24T09:08:04.8946110Z ansible/roles-external/kubespray/roles/kubernetes/tokens/tasks/ +2025-11-24T09:08:04.8946434Z ansible/roles-external/kubespray/roles/kubernetes/tokens/tasks/gen_tokens.yml +2025-11-24T09:08:04.8946774Z ansible/roles-external/kubespray/roles/kubernetes/tokens/tasks/check-tokens.yml +2025-11-24T09:08:04.8947084Z ansible/roles-external/kubespray/roles/kubernetes/tokens/tasks/main.yml +2025-11-24T09:08:04.8947354Z ansible/roles-external/kubespray/roles/kubernetes/tokens/files/ +2025-11-24T09:08:04.8947688Z ansible/roles-external/kubespray/roles/kubernetes/tokens/files/kube-gen-token.sh +2025-11-24T09:08:04.8947932Z ansible/roles-external/kubespray/roles/kubernetes/client/ +2025-11-24T09:08:04.8948223Z ansible/roles-external/kubespray/roles/kubernetes/client/defaults/ +2025-11-24T09:08:04.8948542Z ansible/roles-external/kubespray/roles/kubernetes/client/defaults/main.yml +2025-11-24T09:08:04.8948803Z ansible/roles-external/kubespray/roles/kubernetes/client/tasks/ +2025-11-24T09:08:04.8949106Z ansible/roles-external/kubespray/roles/kubernetes/client/tasks/main.yml +2025-11-24T09:08:04.8949385Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/ +2025-11-24T09:08:04.8949703Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/ +2025-11-24T09:08:04.8950031Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/ +2025-11-24T09:08:04.8950442Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/kube-scheduler.yml +2025-11-24T09:08:04.8950933Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/kube-proxy.yml +2025-11-24T09:08:04.8951306Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/etcd.yml +2025-11-24T09:08:04.8951667Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/main.yml +2025-11-24T09:08:04.8951975Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/meta/ +2025-11-24T09:08:04.8952301Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/meta/main.yml +2025-11-24T09:08:04.8952614Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/ +2025-11-24T09:08:04.8953137Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/encrypt-at-rest.yml +2025-11-24T09:08:04.8953513Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/pre-upgrade.yml +2025-11-24T09:08:04.8953903Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-secondary.yml +2025-11-24T09:08:04.8954279Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-etcd.yml +2025-11-24T09:08:04.8954657Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-setup.yml +2025-11-24T09:08:04.8955091Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/define-first-kube-control.yml +2025-11-24T09:08:04.8955476Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-backup.yml +2025-11-24T09:08:04.8955883Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-fix-apiserver.yml +2025-11-24T09:08:04.8956395Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-upgrade.yml +2025-11-24T09:08:04.8956855Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubelet-fix-client-cert-rotation.yml +2025-11-24T09:08:04.8957184Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/main.yml +2025-11-24T09:08:04.8957507Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/handlers/ +2025-11-24T09:08:04.8957854Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/handlers/main.yml +2025-11-24T09:08:04.8958223Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/vars/ +2025-11-24T09:08:04.8958562Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/vars/main.yaml +2025-11-24T09:08:04.8958883Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/ +2025-11-24T09:08:04.8959311Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/k8s-certs-renew.service.j2 +2025-11-24T09:08:04.8959795Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/apiserver-audit-webhook-config.yaml.j2 +2025-11-24T09:08:04.8960212Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/podnodeselector.yaml.j2 +2025-11-24T09:08:04.8960626Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/k8s-certs-renew.timer.j2 +2025-11-24T09:08:04.8961050Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/admission-controls.yaml.j2 +2025-11-24T09:08:04.8961511Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/webhook-authorization-config.yaml.j2 +2025-11-24T09:08:04.8961927Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/secrets_encryption.yaml.j2 +2025-11-24T09:08:04.8962362Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/kubeadm-config.v1beta3.yaml.j2 +2025-11-24T09:08:04.8962900Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/apiserver-audit-policy.yaml.j2 +2025-11-24T09:08:04.8963332Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/kubescheduler-config.yaml.j2 +2025-11-24T09:08:04.8963755Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/apiserver-tracing.yaml.j2 +2025-11-24T09:08:04.8964202Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/webhook-token-auth-config.yaml.j2 +2025-11-24T09:08:04.8964722Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/eventratelimit.yaml.j2 +2025-11-24T09:08:04.8965127Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/podsecurity.yaml.j2 +2025-11-24T09:08:04.8965526Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/k8s-certs-renew.sh.j2 +2025-11-24T09:08:04.8965988Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/kubeadm-controlplane.v1beta3.yaml.j2 +2025-11-24T09:08:04.8966251Z ansible/roles-external/kubespray/roles/kubernetes/node-taint/ +2025-11-24T09:08:04.8966547Z ansible/roles-external/kubespray/roles/kubernetes/node-taint/tasks/ +2025-11-24T09:08:04.8966871Z ansible/roles-external/kubespray/roles/kubernetes/node-taint/tasks/main.yml +2025-11-24T09:08:04.8967121Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/ +2025-11-24T09:08:04.8967413Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/defaults/ +2025-11-24T09:08:04.8967734Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/defaults/main.yml +2025-11-24T09:08:04.8968012Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/tasks/ +2025-11-24T09:08:04.8968382Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/tasks/kubeadm_etcd_node.yml +2025-11-24T09:08:04.8968697Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/tasks/main.yml +2025-11-24T09:08:04.8968991Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/handlers/ +2025-11-24T09:08:04.8969797Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/handlers/main.yml +2025-11-24T09:08:04.8970238Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/templates/ +2025-11-24T09:08:04.8970675Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/templates/kubeadm-client.conf.v1beta3.j2 +2025-11-24T09:08:04.8971254Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/ +2025-11-24T09:08:04.8971786Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/defaults/ +2025-11-24T09:08:04.8972371Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/defaults/main.yml +2025-11-24T09:08:04.8972996Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/meta/ +2025-11-24T09:08:04.8973514Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/meta/main.yml +2025-11-24T09:08:04.8974019Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/ +2025-11-24T09:08:04.8974443Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0063-networkmanager-dns.yml +2025-11-24T09:08:04.8975030Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0110-dhclient-hooks-undo.yml +2025-11-24T09:08:04.8975547Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0060-resolvconf.yml +2025-11-24T09:08:04.8976059Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0081-ntp-configurations.yml +2025-11-24T09:08:04.8976497Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0061-systemd-resolved.yml +2025-11-24T09:08:04.8977052Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0070-system-packages.yml +2025-11-24T09:08:04.8977822Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0080-system-configurations.yml +2025-11-24T09:08:04.8978322Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0010-swapoff.yml +2025-11-24T09:08:04.8978767Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0120-growpart-azure-centos-7.yml +2025-11-24T09:08:04.8979144Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0020-set_facts.yml +2025-11-24T09:08:04.8979657Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0100-dhclient-hooks.yml +2025-11-24T09:08:04.8980904Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0062-networkmanager-unmanaged-devices.yml +2025-11-24T09:08:04.8981546Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0090-etchosts.yml +2025-11-24T09:08:04.8982495Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0040-verify-settings.yml +2025-11-24T09:08:04.8983833Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/main.yml +2025-11-24T09:08:04.8984396Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0050-create_directories.yml +2025-11-24T09:08:04.8984731Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/handlers/ +2025-11-24T09:08:04.8985065Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/handlers/main.yml +2025-11-24T09:08:04.8985363Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/files/ +2025-11-24T09:08:04.8985748Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/files/dhclient_nodnsupdate +2025-11-24T09:08:04.8986107Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/files/pkgs-schema.json +2025-11-24T09:08:04.8986399Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/vars/ +2025-11-24T09:08:04.8986724Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/vars/main.yml +2025-11-24T09:08:04.8987041Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/ +2025-11-24T09:08:04.8987417Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/chrony.conf.j2 +2025-11-24T09:08:04.8987761Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/ntp.conf.j2 +2025-11-24T09:08:04.8988187Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/dhclient_dnsupdate_rh.sh.j2 +2025-11-24T09:08:04.8988595Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/dhclient_dnsupdate.sh.j2 +2025-11-24T09:08:04.8989123Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/resolved.conf.j2 +2025-11-24T09:08:04.8989496Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/resolvconf.j2 +2025-11-24T09:08:04.8990059Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/ansible_git.j2 +2025-11-24T09:08:04.8990673Z ansible/roles-external/kubespray/roles/kubernetes/node/ +2025-11-24T09:08:04.8990963Z ansible/roles-external/kubespray/roles/kubernetes/node/defaults/ +2025-11-24T09:08:04.8991282Z ansible/roles-external/kubespray/roles/kubernetes/node/defaults/main.yml +2025-11-24T09:08:04.8991623Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/ +2025-11-24T09:08:04.8991926Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/install.yml +2025-11-24T09:08:04.8992268Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/cloud-credentials/ +2025-11-24T09:08:04.8993266Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/cloud-credentials/openstack-credential-check.yml +2025-11-24T09:08:04.8993733Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/cloud-credentials/vsphere-credential-check.yml +2025-11-24T09:08:04.8994181Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/cloud-credentials/azure-credential-check.yml +2025-11-24T09:08:04.8994493Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/facts.yml +2025-11-24T09:08:04.8994820Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/ +2025-11-24T09:08:04.8995218Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/nginx-proxy.yml +2025-11-24T09:08:04.8995598Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/kube-vip.yml +2025-11-24T09:08:04.8995965Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/haproxy.yml +2025-11-24T09:08:04.8996283Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/kubelet.yml +2025-11-24T09:08:04.8996911Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/pre_upgrade.yml +2025-11-24T09:08:04.8997315Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml +2025-11-24T09:08:04.8997595Z ansible/roles-external/kubespray/roles/kubernetes/node/handlers/ +2025-11-24T09:08:04.8998367Z ansible/roles-external/kubespray/roles/kubernetes/node/handlers/main.yml +2025-11-24T09:08:04.8998633Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ +2025-11-24T09:08:04.8999050Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-24.yml +2025-11-24T09:08:04.8999371Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-22.yml +2025-11-24T09:08:04.8999683Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-20.yml +2025-11-24T09:08:04.8999992Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/fedora.yml +2025-11-24T09:08:04.9000290Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-18.yml +2025-11-24T09:08:04.9000569Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/ +2025-11-24T09:08:04.9000962Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/node-kubeconfig.yaml.j2 +2025-11-24T09:08:04.9001659Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/kubelet-config.v1beta1.yaml.j2 +2025-11-24T09:08:04.9001998Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/loadbalancer/ +2025-11-24T09:08:04.9002402Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/loadbalancer/haproxy.cfg.j2 +2025-11-24T09:08:04.9003317Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/loadbalancer/nginx.conf.j2 +2025-11-24T09:08:04.9003802Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/ +2025-11-24T09:08:04.9004809Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/vsphere-cloud-config.j2 +2025-11-24T09:08:04.9005237Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/aws-cloud-config.j2 +2025-11-24T09:08:04.9005828Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/gce-cloud-config.j2 +2025-11-24T09:08:04.9006278Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/openstack-cloud-config.j2 +2025-11-24T09:08:04.9006701Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/azure-cloud-config.j2 +2025-11-24T09:08:04.9007079Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/kubelet.env.v1beta1.j2 +2025-11-24T09:08:04.9007437Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/http-proxy.conf.j2 +2025-11-24T09:08:04.9007846Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/kubelet.service.j2 +2025-11-24T09:08:04.9008170Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/ +2025-11-24T09:08:04.9008581Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/kube-vip.manifest.j2 +2025-11-24T09:08:04.9009000Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/nginx-proxy.manifest.j2 +2025-11-24T09:08:04.9009412Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/haproxy.manifest.j2 +2025-11-24T09:08:04.9009665Z ansible/roles-external/kubespray/roles/bastion-ssh-config/ +2025-11-24T09:08:04.9009963Z ansible/roles-external/kubespray/roles/bastion-ssh-config/defaults/ +2025-11-24T09:08:04.9010281Z ansible/roles-external/kubespray/roles/bastion-ssh-config/defaults/main.yml +2025-11-24T09:08:04.9010563Z ansible/roles-external/kubespray/roles/bastion-ssh-config/tasks/ +2025-11-24T09:08:04.9010886Z ansible/roles-external/kubespray/roles/bastion-ssh-config/tasks/main.yml +2025-11-24T09:08:04.9011179Z ansible/roles-external/kubespray/roles/bastion-ssh-config/molecule/ +2025-11-24T09:08:04.9011502Z ansible/roles-external/kubespray/roles/bastion-ssh-config/molecule/default/ +2025-11-24T09:08:04.9011879Z ansible/roles-external/kubespray/roles/bastion-ssh-config/molecule/default/converge.yml +2025-11-24T09:08:04.9012249Z ansible/roles-external/kubespray/roles/bastion-ssh-config/molecule/default/molecule.yml +2025-11-24T09:08:04.9012557Z ansible/roles-external/kubespray/roles/bastion-ssh-config/templates/ +2025-11-24T09:08:04.9013038Z ansible/roles-external/kubespray/roles/bastion-ssh-config/templates/ssh-bastion.conf.j2 +2025-11-24T09:08:04.9013280Z ansible/roles-external/kubespray/roles/bootstrap-os/ +2025-11-24T09:08:04.9013543Z ansible/roles-external/kubespray/roles/bootstrap-os/defaults/ +2025-11-24T09:08:04.9013929Z ansible/roles-external/kubespray/roles/bootstrap-os/defaults/main.yml +2025-11-24T09:08:04.9014183Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/ +2025-11-24T09:08:04.9014485Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/debian.yml +2025-11-24T09:08:04.9014804Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/openEuler.yml +2025-11-24T09:08:04.9020313Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/ubuntu.yml +2025-11-24T09:08:04.9020844Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/opensuse-tumbleweed.yml +2025-11-24T09:08:04.9021186Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/amzn.yml +2025-11-24T09:08:04.9021512Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/centos.yml +2025-11-24T09:08:04.9021843Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/opensuse.yml +2025-11-24T09:08:04.9022184Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/fedora-coreos.yml +2025-11-24T09:08:04.9022528Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/opensuse-leap.yml +2025-11-24T09:08:04.9022988Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/flatcar.yml +2025-11-24T09:08:04.9023295Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/rhel.yml +2025-11-24T09:08:04.9023600Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/fedora.yml +2025-11-24T09:08:04.9023891Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/main.yml +2025-11-24T09:08:04.9024226Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/clear-linux-os.yml +2025-11-24T09:08:04.9024691Z ansible/roles-external/kubespray/roles/bootstrap-os/handlers/ +2025-11-24T09:08:04.9025012Z ansible/roles-external/kubespray/roles/bootstrap-os/handlers/main.yml +2025-11-24T09:08:04.9025275Z ansible/roles-external/kubespray/roles/bootstrap-os/files/ +2025-11-24T09:08:04.9025632Z ansible/roles-external/kubespray/roles/bootstrap-os/files/bootstrap.sh +2025-11-24T09:08:04.9025890Z ansible/roles-external/kubespray/roles/bootstrap-os/vars/ +2025-11-24T09:08:04.9026216Z ansible/roles-external/kubespray/roles/bootstrap-os/vars/fedora-coreos.yml +2025-11-24T09:08:04.9026513Z ansible/roles-external/kubespray/roles/bootstrap-os/vars/flatcar.yml +2025-11-24T09:08:04.9026852Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/ +2025-11-24T09:08:04.9027159Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/ +2025-11-24T09:08:04.9027504Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/converge.yml +2025-11-24T09:08:04.9027845Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/molecule.yml +2025-11-24T09:08:04.9028171Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/tests/ +2025-11-24T09:08:04.9028584Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/tests/test_default.py +2025-11-24T09:08:04.9028840Z ansible/roles-external/kubespray/roles/container-engine/ +2025-11-24T09:08:04.9029109Z ansible/roles-external/kubespray/roles/container-engine/runc/ +2025-11-24T09:08:04.9029432Z ansible/roles-external/kubespray/roles/container-engine/runc/defaults/ +2025-11-24T09:08:04.9029758Z ansible/roles-external/kubespray/roles/container-engine/runc/defaults/main.yml +2025-11-24T09:08:04.9030065Z ansible/roles-external/kubespray/roles/container-engine/runc/tasks/ +2025-11-24T09:08:04.9030387Z ansible/roles-external/kubespray/roles/container-engine/runc/tasks/main.yml +2025-11-24T09:08:04.9030717Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/ +2025-11-24T09:08:04.9031070Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/defaults/ +2025-11-24T09:08:04.9031469Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/defaults/main.yml +2025-11-24T09:08:04.9031806Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/tasks/ +2025-11-24T09:08:04.9032188Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/tasks/main.yml +2025-11-24T09:08:04.9032756Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/ +2025-11-24T09:08:04.9033149Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/ +2025-11-24T09:08:04.9033589Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/converge.yml +2025-11-24T09:08:04.9034018Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/molecule.yml +2025-11-24T09:08:04.9034426Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/files/ +2025-11-24T09:08:04.9034880Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/files/sandbox.json +2025-11-24T09:08:04.9035327Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/files/10-mynet.conf +2025-11-24T09:08:04.9035816Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/files/container.json +2025-11-24T09:08:04.9036220Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/tests/ +2025-11-24T09:08:04.9036675Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/tests/test_default.py +2025-11-24T09:08:04.9037299Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/prepare.yml +2025-11-24T09:08:04.9037645Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/OWNERS +2025-11-24T09:08:04.9037999Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/templates/ +2025-11-24T09:08:04.9038869Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/templates/configuration-qemu.toml.j2 +2025-11-24T09:08:04.9039641Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/templates/containerd-shim-kata-v2.j2 +2025-11-24T09:08:04.9039926Z ansible/roles-external/kubespray/roles/container-engine/skopeo/ +2025-11-24T09:08:04.9040243Z ansible/roles-external/kubespray/roles/container-engine/skopeo/tasks/ +2025-11-24T09:08:04.9040581Z ansible/roles-external/kubespray/roles/container-engine/skopeo/tasks/main.yml +2025-11-24T09:08:04.9040929Z ansible/roles-external/kubespray/roles/container-engine/meta/ +2025-11-24T09:08:04.9041239Z ansible/roles-external/kubespray/roles/container-engine/meta/main.yml +2025-11-24T09:08:04.9041508Z ansible/roles-external/kubespray/roles/container-engine/docker/ +2025-11-24T09:08:04.9041826Z ansible/roles-external/kubespray/roles/container-engine/docker/defaults/ +2025-11-24T09:08:04.9042169Z ansible/roles-external/kubespray/roles/container-engine/docker/defaults/main.yml +2025-11-24T09:08:04.9042474Z ansible/roles-external/kubespray/roles/container-engine/docker/meta/ +2025-11-24T09:08:04.9042918Z ansible/roles-external/kubespray/roles/container-engine/docker/meta/main.yml +2025-11-24T09:08:04.9043222Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/ +2025-11-24T09:08:04.9043594Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/pre-upgrade.yml +2025-11-24T09:08:04.9043933Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/systemd.yml +2025-11-24T09:08:04.9044264Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/reset.yml +2025-11-24T09:08:04.9044637Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/set_facts_dns.yml +2025-11-24T09:08:04.9044963Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/main.yml +2025-11-24T09:08:04.9045327Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/docker_plugin.yml +2025-11-24T09:08:04.9045648Z ansible/roles-external/kubespray/roles/container-engine/docker/handlers/ +2025-11-24T09:08:04.9045977Z ansible/roles-external/kubespray/roles/container-engine/docker/handlers/main.yml +2025-11-24T09:08:04.9046277Z ansible/roles-external/kubespray/roles/container-engine/docker/files/ +2025-11-24T09:08:04.9046688Z ansible/roles-external/kubespray/roles/container-engine/docker/files/cleanup-docker-orphans.sh +2025-11-24T09:08:04.9047067Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/ +2025-11-24T09:08:04.9047399Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/debian.yml +2025-11-24T09:08:04.9047726Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/ubuntu.yml +2025-11-24T09:08:04.9048049Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/suse.yml +2025-11-24T09:08:04.9048390Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/uniontech.yml +2025-11-24T09:08:04.9048712Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/kylin.yml +2025-11-24T09:08:04.9049040Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/redhat.yml +2025-11-24T09:08:04.9049384Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/clearlinux.yml +2025-11-24T09:08:04.9049706Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/amazon.yml +2025-11-24T09:08:04.9050042Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/redhat-7.yml +2025-11-24T09:08:04.9050365Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/fedora.yml +2025-11-24T09:08:04.9050709Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/openeuler.yml +2025-11-24T09:08:04.9051029Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/ +2025-11-24T09:08:04.9051468Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/docker-orphan-cleanup.conf.j2 +2025-11-24T09:08:04.9051868Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/fedora_docker.repo.j2 +2025-11-24T09:08:04.9052378Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/docker.service.j2 +2025-11-24T09:08:04.9052875Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/docker-dns.conf.j2 +2025-11-24T09:08:04.9053266Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/http-proxy.conf.j2 +2025-11-24T09:08:04.9053655Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/rh_docker.repo.j2 +2025-11-24T09:08:04.9054060Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/docker-options.conf.j2 +2025-11-24T09:08:04.9054397Z ansible/roles-external/kubespray/roles/container-engine/crictl/ +2025-11-24T09:08:04.9054702Z ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/ +2025-11-24T09:08:04.9055029Z ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/main.yml +2025-11-24T09:08:04.9055359Z ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/crictl.yml +2025-11-24T09:08:04.9055677Z ansible/roles-external/kubespray/roles/container-engine/crictl/handlers/ +2025-11-24T09:08:04.9056011Z ansible/roles-external/kubespray/roles/container-engine/crictl/handlers/main.yml +2025-11-24T09:08:04.9056326Z ansible/roles-external/kubespray/roles/container-engine/crictl/templates/ +2025-11-24T09:08:04.9056703Z ansible/roles-external/kubespray/roles/container-engine/crictl/templates/crictl.yaml.j2 +2025-11-24T09:08:04.9057024Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/ +2025-11-24T09:08:04.9057374Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/defaults/ +2025-11-24T09:08:04.9057761Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/defaults/main.yml +2025-11-24T09:08:04.9058092Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/meta/ +2025-11-24T09:08:04.9058477Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/meta/main.yml +2025-11-24T09:08:04.9058814Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/tasks/ +2025-11-24T09:08:04.9059199Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/tasks/main.yml +2025-11-24T09:08:04.9059530Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/vars/ +2025-11-24T09:08:04.9059896Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/vars/suse.yml +2025-11-24T09:08:04.9060352Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/vars/amazon.yml +2025-11-24T09:08:04.9060664Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/ +2025-11-24T09:08:04.9060974Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/meta/ +2025-11-24T09:08:04.9061315Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/meta/main.yml +2025-11-24T09:08:04.9061634Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/tasks/ +2025-11-24T09:08:04.9061980Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/tasks/main.yml +2025-11-24T09:08:04.9062305Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/handlers/ +2025-11-24T09:08:04.9062774Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/handlers/main.yml +2025-11-24T09:08:04.9063101Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/ +2025-11-24T09:08:04.9120253Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/ +2025-11-24T09:08:04.9121767Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/converge.yml +2025-11-24T09:08:04.9124363Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/molecule.yml +2025-11-24T09:08:04.9125010Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/files/ +2025-11-24T09:08:04.9125754Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/files/sandbox.json +2025-11-24T09:08:04.9126922Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/files/10-mynet.conf +2025-11-24T09:08:04.9127397Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/files/container.json +2025-11-24T09:08:04.9128528Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/tests/ +2025-11-24T09:08:04.9129514Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/tests/test_default.py +2025-11-24T09:08:04.9130113Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/prepare.yml +2025-11-24T09:08:04.9130616Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/templates/ +2025-11-24T09:08:04.9131657Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/templates/cri-dockerd.socket.j2 +2025-11-24T09:08:04.9132507Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/templates/cri-dockerd.service.j2 +2025-11-24T09:08:04.9133198Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/ +2025-11-24T09:08:04.9133777Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/defaults/ +2025-11-24T09:08:04.9134367Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/defaults/main.yml +2025-11-24T09:08:04.9135013Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/tasks/ +2025-11-24T09:08:04.9135407Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/tasks/main.yml +2025-11-24T09:08:04.9135973Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/files/ +2025-11-24T09:08:04.9136706Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/files/install_container_storage_setup.sh +2025-11-24T09:08:04.9137227Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/templates/ +2025-11-24T09:08:04.9138545Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/templates/docker-storage-setup.j2 +2025-11-24T09:08:04.9139323Z ansible/roles-external/kubespray/roles/container-engine/containerd/ +2025-11-24T09:08:04.9139673Z ansible/roles-external/kubespray/roles/container-engine/containerd/defaults/ +2025-11-24T09:08:04.9141319Z ansible/roles-external/kubespray/roles/container-engine/containerd/defaults/main.yml +2025-11-24T09:08:04.9141864Z ansible/roles-external/kubespray/roles/container-engine/containerd/meta/ +2025-11-24T09:08:04.9142559Z ansible/roles-external/kubespray/roles/container-engine/containerd/meta/main.yml +2025-11-24T09:08:04.9143210Z ansible/roles-external/kubespray/roles/container-engine/containerd/tasks/ +2025-11-24T09:08:04.9143575Z ansible/roles-external/kubespray/roles/container-engine/containerd/tasks/reset.yml +2025-11-24T09:08:04.9143920Z ansible/roles-external/kubespray/roles/container-engine/containerd/tasks/main.yml +2025-11-24T09:08:04.9144251Z ansible/roles-external/kubespray/roles/container-engine/containerd/handlers/ +2025-11-24T09:08:04.9144628Z ansible/roles-external/kubespray/roles/container-engine/containerd/handlers/reset.yml +2025-11-24T09:08:04.9144990Z ansible/roles-external/kubespray/roles/container-engine/containerd/handlers/main.yml +2025-11-24T09:08:04.9145305Z ansible/roles-external/kubespray/roles/container-engine/containerd/vars/ +2025-11-24T09:08:04.9145656Z ansible/roles-external/kubespray/roles/container-engine/containerd/vars/debian.yml +2025-11-24T09:08:04.9146002Z ansible/roles-external/kubespray/roles/container-engine/containerd/vars/ubuntu.yml +2025-11-24T09:08:04.9146329Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/ +2025-11-24T09:08:04.9146693Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/ +2025-11-24T09:08:04.9147103Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/converge.yml +2025-11-24T09:08:04.9147502Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/molecule.yml +2025-11-24T09:08:04.9148033Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/tests/ +2025-11-24T09:08:04.9148500Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/tests/test_default.py +2025-11-24T09:08:04.9148921Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/prepare.yml +2025-11-24T09:08:04.9149257Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/ +2025-11-24T09:08:04.9149658Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/config.toml.j2 +2025-11-24T09:08:04.9150065Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/http-proxy.conf.j2 +2025-11-24T09:08:04.9150560Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/containerd.service.j2 +2025-11-24T09:08:04.9150949Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/hosts.toml.j2 +2025-11-24T09:08:04.9151232Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/ +2025-11-24T09:08:04.9151551Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/tasks/ +2025-11-24T09:08:04.9151880Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/tasks/main.yml +2025-11-24T09:08:04.9152207Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/handlers/ +2025-11-24T09:08:04.9152554Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/handlers/main.yml +2025-11-24T09:08:04.9153075Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/templates/ +2025-11-24T09:08:04.9153479Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/templates/nerdctl.toml.j2 +2025-11-24T09:08:04.9153755Z ansible/roles-external/kubespray/roles/container-engine/youki/ +2025-11-24T09:08:04.9154071Z ansible/roles-external/kubespray/roles/container-engine/youki/defaults/ +2025-11-24T09:08:04.9154400Z ansible/roles-external/kubespray/roles/container-engine/youki/defaults/main.yml +2025-11-24T09:08:04.9154703Z ansible/roles-external/kubespray/roles/container-engine/youki/tasks/ +2025-11-24T09:08:04.9155031Z ansible/roles-external/kubespray/roles/container-engine/youki/tasks/main.yml +2025-11-24T09:08:04.9155339Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/ +2025-11-24T09:08:04.9155670Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/ +2025-11-24T09:08:04.9156064Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/converge.yml +2025-11-24T09:08:04.9156528Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/molecule.yml +2025-11-24T09:08:04.9156902Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/files/ +2025-11-24T09:08:04.9157315Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/files/sandbox.json +2025-11-24T09:08:04.9157731Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/files/10-mynet.conf +2025-11-24T09:08:04.9158148Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/files/container.json +2025-11-24T09:08:04.9158511Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/tests/ +2025-11-24T09:08:04.9158934Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/tests/test_default.py +2025-11-24T09:08:04.9159333Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/prepare.yml +2025-11-24T09:08:04.9159609Z ansible/roles-external/kubespray/roles/container-engine/crun/ +2025-11-24T09:08:04.9159911Z ansible/roles-external/kubespray/roles/container-engine/crun/tasks/ +2025-11-24T09:08:04.9160243Z ansible/roles-external/kubespray/roles/container-engine/crun/tasks/main.yml +2025-11-24T09:08:04.9160596Z ansible/roles-external/kubespray/roles/container-engine/validate-container-engine/ +2025-11-24T09:08:04.9160995Z ansible/roles-external/kubespray/roles/container-engine/validate-container-engine/tasks/ +2025-11-24T09:08:04.9161586Z ansible/roles-external/kubespray/roles/container-engine/validate-container-engine/tasks/main.yml +2025-11-24T09:08:04.9161882Z ansible/roles-external/kubespray/roles/container-engine/cri-o/ +2025-11-24T09:08:04.9162198Z ansible/roles-external/kubespray/roles/container-engine/cri-o/defaults/ +2025-11-24T09:08:04.9162537Z ansible/roles-external/kubespray/roles/container-engine/cri-o/defaults/main.yml +2025-11-24T09:08:04.9162963Z ansible/roles-external/kubespray/roles/container-engine/cri-o/meta/ +2025-11-24T09:08:04.9163301Z ansible/roles-external/kubespray/roles/container-engine/cri-o/meta/main.yml +2025-11-24T09:08:04.9163602Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/ +2025-11-24T09:08:04.9164067Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/setup-amazon.yaml +2025-11-24T09:08:04.9164410Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/load_vars.yml +2025-11-24T09:08:04.9164737Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/main.yaml +2025-11-24T09:08:04.9165062Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/reset.yml +2025-11-24T09:08:04.9165372Z ansible/roles-external/kubespray/roles/container-engine/cri-o/handlers/ +2025-11-24T09:08:04.9165694Z ansible/roles-external/kubespray/roles/container-engine/cri-o/handlers/main.yml +2025-11-24T09:08:04.9165990Z ansible/roles-external/kubespray/roles/container-engine/cri-o/files/ +2025-11-24T09:08:04.9166321Z ansible/roles-external/kubespray/roles/container-engine/cri-o/files/mounts.conf +2025-11-24T09:08:04.9166618Z ansible/roles-external/kubespray/roles/container-engine/cri-o/vars/ +2025-11-24T09:08:04.9166955Z ansible/roles-external/kubespray/roles/container-engine/cri-o/vars/v1.28.yml +2025-11-24T09:08:04.9167280Z ansible/roles-external/kubespray/roles/container-engine/cri-o/vars/v1.29.yml +2025-11-24T09:08:04.9167588Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/ +2025-11-24T09:08:04.9167958Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/ +2025-11-24T09:08:04.9168358Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/converge.yml +2025-11-24T09:08:04.9168740Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/molecule.yml +2025-11-24T09:08:04.9169097Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/files/ +2025-11-24T09:08:04.9169513Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/files/sandbox.json +2025-11-24T09:08:04.9170001Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/files/10-mynet.conf +2025-11-24T09:08:04.9170428Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/files/container.json +2025-11-24T09:08:04.9170789Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/tests/ +2025-11-24T09:08:04.9171209Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/tests/test_default.py +2025-11-24T09:08:04.9171615Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/prepare.yml +2025-11-24T09:08:04.9171937Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/ +2025-11-24T09:08:04.9172300Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/crio.conf.j2 +2025-11-24T09:08:04.9172788Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/registry.conf.j2 +2025-11-24T09:08:04.9173159Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/config.json.j2 +2025-11-24T09:08:04.9173553Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/http-proxy.conf.j2 +2025-11-24T09:08:04.9173941Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/unqualified.conf.j2 +2025-11-24T09:08:04.9174211Z ansible/roles-external/kubespray/roles/container-engine/gvisor/ +2025-11-24T09:08:04.9174522Z ansible/roles-external/kubespray/roles/container-engine/gvisor/tasks/ +2025-11-24T09:08:04.9174853Z ansible/roles-external/kubespray/roles/container-engine/gvisor/tasks/main.yml +2025-11-24T09:08:04.9175291Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/ +2025-11-24T09:08:04.9175639Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/ +2025-11-24T09:08:04.9176036Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/converge.yml +2025-11-24T09:08:04.9176423Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/molecule.yml +2025-11-24T09:08:04.9176793Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/files/ +2025-11-24T09:08:04.9177281Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/files/sandbox.json +2025-11-24T09:08:04.9177694Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/files/10-mynet.conf +2025-11-24T09:08:04.9178115Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/files/container.json +2025-11-24T09:08:04.9178482Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/tests/ +2025-11-24T09:08:04.9178907Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/tests/test_default.py +2025-11-24T09:08:04.9179290Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/prepare.yml +2025-11-24T09:08:04.9179541Z ansible/roles-external/kubespray/roles/kubernetes-apps/ +2025-11-24T09:08:04.9179948Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/ +2025-11-24T09:08:04.9180319Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/defaults/ +2025-11-24T09:08:04.9180729Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/defaults/main.yml +2025-11-24T09:08:04.9181079Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/meta/ +2025-11-24T09:08:04.9181467Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/meta/main.yml +2025-11-24T09:08:04.9181793Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/ +2025-11-24T09:08:04.9182140Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/defaults/ +2025-11-24T09:08:04.9182530Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/defaults/main.yml +2025-11-24T09:08:04.9182973Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/tasks/ +2025-11-24T09:08:04.9183485Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/tasks/main.yml +2025-11-24T09:08:04.9183844Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/ +2025-11-24T09:08:04.9184427Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/topology.node.k8s.io_noderesourcetopologies.yaml.j2 +2025-11-24T09:08:04.9185014Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/networktopology.diktyo.x-k8s.io_networktopologies.yaml.j2 +2025-11-24T09:08:04.9185520Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/scheduling.x-k8s.io_podgroups.yaml.j2 +2025-11-24T09:08:04.9186030Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/scheduling.x-k8s.io_elasticquotas.yaml.j2 +2025-11-24T09:08:04.9186502Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/rbac-scheduler-plugins.yaml.j2 +2025-11-24T09:08:04.9186968Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/cm-scheduler-plugins.yaml.j2 +2025-11-24T09:08:04.9187425Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/sa-scheduler-plugins.yaml.j2 +2025-11-24T09:08:04.9187852Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/namespace.yaml.j2 +2025-11-24T09:08:04.9188370Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/appgroup.diktyo.x-k8s.io_appgroups.yaml.j2 +2025-11-24T09:08:04.9188980Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/deploy-scheduler-plugins.yaml.j2 +2025-11-24T09:08:04.9189315Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/ +2025-11-24T09:08:04.9189652Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/meta/ +2025-11-24T09:08:04.9190027Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/meta/main.yml +2025-11-24T09:08:04.9190369Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/ +2025-11-24T09:08:04.9190741Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/tasks/ +2025-11-24T09:08:04.9191204Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/tasks/main.yaml +2025-11-24T09:08:04.9191600Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/templates/ +2025-11-24T09:08:04.9192067Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/templates/runtimeclass-youki.yml +2025-11-24T09:08:04.9192401Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/ +2025-11-24T09:08:04.9192866Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/tasks/ +2025-11-24T09:08:04.9193274Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/tasks/main.yaml +2025-11-24T09:08:04.9193664Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/templates/ +2025-11-24T09:08:04.9194123Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/templates/runtimeclass-crun.yml +2025-11-24T09:08:04.9194513Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/ +2025-11-24T09:08:04.9194941Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/defaults/ +2025-11-24T09:08:04.9195384Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/defaults/main.yaml +2025-11-24T09:08:04.9195791Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/tasks/ +2025-11-24T09:08:04.9196227Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/tasks/main.yaml +2025-11-24T09:08:04.9196649Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/templates/ +2025-11-24T09:08:04.9197183Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/templates/runtimeclass-kata-qemu.yml.j2 +2025-11-24T09:08:04.9197664Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/ +2025-11-24T09:08:04.9198042Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/tasks/ +2025-11-24T09:08:04.9198443Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/tasks/main.yaml +2025-11-24T09:08:04.9198835Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/templates/ +2025-11-24T09:08:04.9199328Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/templates/runtimeclass-gvisor.yml.j2 +2025-11-24T09:08:04.9199594Z ansible/roles-external/kubespray/roles/kubernetes-apps/meta/ +2025-11-24T09:08:04.9199897Z ansible/roles-external/kubespray/roles/kubernetes-apps/meta/main.yml +2025-11-24T09:08:04.9200217Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ +2025-11-24T09:08:04.9200589Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/ +2025-11-24T09:08:04.9200988Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/defaults/ +2025-11-24T09:08:04.9201417Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/defaults/main.yml +2025-11-24T09:08:04.9201809Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/tasks/ +2025-11-24T09:08:04.9202229Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/tasks/main.yml +2025-11-24T09:08:04.9202850Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/templates/ +2025-11-24T09:08:04.9203355Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/templates/cert-manager.crds.yml.j2 +2025-11-24T09:08:04.9203839Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/templates/cert-manager.yml.j2 +2025-11-24T09:08:04.9204176Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/meta/ +2025-11-24T09:08:04.9204541Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/meta/main.yml +2025-11-24T09:08:04.9204985Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/ +2025-11-24T09:08:04.9205390Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/defaults/ +2025-11-24T09:08:04.9205826Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/defaults/main.yml +2025-11-24T09:08:04.9206229Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/tasks/ +2025-11-24T09:08:04.9206650Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/tasks/main.yml +2025-11-24T09:08:04.9207060Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/ +2025-11-24T09:08:04.9207612Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/ds-ingress-nginx-controller.yml.j2 +2025-11-24T09:08:04.9208112Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/sa-ingress-nginx.yml.j2 +2025-11-24T09:08:04.9208991Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/clusterrolebinding-ingress-nginx.yml.j2 +2025-11-24T09:08:04.9209502Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/role-ingress-nginx.yml.j2 +2025-11-24T09:08:04.9210008Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/cm-ingress-nginx.yml.j2 +2025-11-24T09:08:04.9210567Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/rolebinding-admission-webhook.yml.j2 +2025-11-24T09:08:04.9211070Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/ingressclass-nginx.yml.j2 +2025-11-24T09:08:04.9211735Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/clusterrolebinding-admission-webhook.yml.j2 +2025-11-24T09:08:04.9212254Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/admission-webhook-job.yml.j2 +2025-11-24T09:08:04.9212898Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/rolebinding-ingress-nginx.yml.j2 +2025-11-24T09:08:04.9213417Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/sa-admission-webhook.yml.j2 +2025-11-24T09:08:04.9213917Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/svc-ingress-nginx.yml.j2 +2025-11-24T09:08:04.9214407Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/cm-tcp-services.yml.j2 +2025-11-24T09:08:04.9214926Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/role-admission-webhook.yml.j2 +2025-11-24T09:08:04.9215415Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/00-namespace.yml.j2 +2025-11-24T09:08:04.9215966Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/clusterrole-admission-webhook.yml.j2 +2025-11-24T09:08:04.9216456Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/cm-udp-services.yml.j2 +2025-11-24T09:08:04.9217137Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/admission-webhook-configuration.yml.j2 +2025-11-24T09:08:04.9217677Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/clusterrole-ingress-nginx.yml.j2 +2025-11-24T09:08:04.9218270Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/svc-ingress-nginx-controller-admission.yml.j2 +2025-11-24T09:08:04.9218682Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/ +2025-11-24T09:08:04.9219180Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/defaults/ +2025-11-24T09:08:04.9219648Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/defaults/main.yml +2025-11-24T09:08:04.9220079Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/tasks/ +2025-11-24T09:08:04.9220532Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/tasks/main.yml +2025-11-24T09:08:04.9220954Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/OWNERS +2025-11-24T09:08:04.9221391Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/ +2025-11-24T09:08:04.9221924Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-sa.yml.j2 +2025-11-24T09:08:04.9222439Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-ns.yml.j2 +2025-11-24T09:08:04.9223080Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-deploy.yml.j2 +2025-11-24T09:08:04.9223643Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-clusterrole.yml.j2 +2025-11-24T09:08:04.9224223Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-clusterrolebinding.yml.j2 +2025-11-24T09:08:04.9224547Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/ +2025-11-24T09:08:04.9224870Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/ +2025-11-24T09:08:04.9225316Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/defaults/ +2025-11-24T09:08:04.9225714Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/defaults/main.yml +2025-11-24T09:08:04.9226063Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/tasks/ +2025-11-24T09:08:04.9226499Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/tasks/credentials-check.yml +2025-11-24T09:08:04.9226891Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/tasks/main.yml +2025-11-24T09:08:04.9227265Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/templates/ +2025-11-24T09:08:04.9227729Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/templates/oci-cloud-provider.yml.j2 +2025-11-24T09:08:04.9228227Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/templates/controller-manager-config.yml.j2 +2025-11-24T09:08:04.9228500Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/ +2025-11-24T09:08:04.9228821Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/defaults/ +2025-11-24T09:08:04.9229157Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/defaults/main.yml +2025-11-24T09:08:04.9229462Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/tasks/ +2025-11-24T09:08:04.9229792Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/tasks/main.yml +2025-11-24T09:08:04.9230109Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/templates/ +2025-11-24T09:08:04.9230651Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/templates/argocd-namespace.yml.j2 +2025-11-24T09:08:04.9230972Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/ +2025-11-24T09:08:04.9231303Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/defaults/ +2025-11-24T09:08:04.9231677Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/defaults/main.yml +2025-11-24T09:08:04.9232010Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/tasks/ +2025-11-24T09:08:04.9232374Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/tasks/main.yml +2025-11-24T09:08:04.9232869Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/ +2025-11-24T09:08:04.9233316Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/metrics-apiservice.yaml.j2 +2025-11-24T09:08:04.9233748Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/auth-delegator.yaml.j2 +2025-11-24T09:08:04.9234166Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/auth-reader.yaml.j2 +2025-11-24T09:08:04.9234682Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/resource-reader-clusterrolebinding.yaml.j2 +2025-11-24T09:08:04.9235161Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/metrics-server-deployment.yaml.j2 +2025-11-24T09:08:04.9235593Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/resource-reader.yaml.j2 +2025-11-24T09:08:04.9236031Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/metrics-server-sa.yaml.j2 +2025-11-24T09:08:04.9236487Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/metrics-server-service.yaml.j2 +2025-11-24T09:08:04.9236752Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/ +2025-11-24T09:08:04.9237065Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/defaults/ +2025-11-24T09:08:04.9237683Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/defaults/main.yml +2025-11-24T09:08:04.9238023Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/tasks/ +2025-11-24T09:08:04.9238356Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/tasks/krew.yml +2025-11-24T09:08:04.9238672Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/tasks/main.yml +2025-11-24T09:08:04.9239107Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/templates/ +2025-11-24T09:08:04.9239663Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/templates/krew.yml.j2 +2025-11-24T09:08:04.9240227Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/templates/krew.j2 +2025-11-24T09:08:04.9240741Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/ +2025-11-24T09:08:04.9241084Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/tasks/ +2025-11-24T09:08:04.9241432Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/tasks/oci.yml +2025-11-24T09:08:04.9241786Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/tasks/main.yml +2025-11-24T09:08:04.9242123Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/files/ +2025-11-24T09:08:04.9242506Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/files/oci-rbac.yml +2025-11-24T09:08:04.9243079Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/files/k8s-cluster-critical-pc.yml +2025-11-24T09:08:04.9243428Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/templates/ +2025-11-24T09:08:04.9243830Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/templates/namespace.j2 +2025-11-24T09:08:04.9244239Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/templates/node-crb.yml.j2 +2025-11-24T09:08:04.9244668Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/templates/vsphere-rbac.yml.j2 +2025-11-24T09:08:04.9245101Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/ +2025-11-24T09:08:04.9245435Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/defaults/ +2025-11-24T09:08:04.9245778Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/defaults/main.yml +2025-11-24T09:08:04.9246097Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/tasks/ +2025-11-24T09:08:04.9246430Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/tasks/main.yml +2025-11-24T09:08:04.9246752Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/ +2025-11-24T09:08:04.9247215Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-rs.yml.j2 +2025-11-24T09:08:04.9247621Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-pvc.yml.j2 +2025-11-24T09:08:04.9248012Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-sa.yml.j2 +2025-11-24T09:08:04.9248410Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-ing.yml.j2 +2025-11-24T09:08:04.9248806Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-svc.yml.j2 +2025-11-24T09:08:04.9249195Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-ns.yml.j2 +2025-11-24T09:08:04.9249588Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-cm.yml.j2 +2025-11-24T09:08:04.9250004Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-secrets.yml.j2 +2025-11-24T09:08:04.9250279Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/ +2025-11-24T09:08:04.9250601Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/defaults/ +2025-11-24T09:08:04.9250942Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/defaults/main.yml +2025-11-24T09:08:04.9251251Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/ +2025-11-24T09:08:04.9251632Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/nodelocaldns.yml +2025-11-24T09:08:04.9251980Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/dashboard.yml +2025-11-24T09:08:04.9252342Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/etcd_metrics.yml +2025-11-24T09:08:04.9252801Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/netchecker.yml +2025-11-24T09:08:04.9253217Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/coredns.yml +2025-11-24T09:08:04.9253548Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/main.yml +2025-11-24T09:08:04.9253874Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/ +2025-11-24T09:08:04.9254387Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-clusterrolebinding.yml.j2 +2025-11-24T09:08:04.9254797Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dns-autoscaler.yml.j2 +2025-11-24T09:08:04.9255231Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-clusterrole.yml.j2 +2025-11-24T09:08:04.9255635Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-ns.yml.j2 +2025-11-24T09:08:04.9256074Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/etcd_metrics-endpoints.yml.j2 +2025-11-24T09:08:04.9256543Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-poddisruptionbudget.yml.j2 +2025-11-24T09:08:04.9256954Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-config.yml.j2 +2025-11-24T09:08:04.9257412Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-agent-hostnet-ds.yml.j2 +2025-11-24T09:08:04.9257882Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-deployment.yml.j2 +2025-11-24T09:08:04.9258306Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/nodelocaldns-config.yml.j2 +2025-11-24T09:08:04.9258859Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/nodelocaldns-daemonset.yml.j2 +2025-11-24T09:08:04.9259359Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dns-autoscaler-clusterrolebinding.yml.j2 +2025-11-24T09:08:04.9259780Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-agent-sa.yml.j2 +2025-11-24T09:08:04.9260213Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-sa.yml.j2 +2025-11-24T09:08:04.9260631Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dns-autoscaler-sa.yml.j2 +2025-11-24T09:08:04.9261100Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/nodelocaldns-sa.yml.j2 +2025-11-24T09:08:04.9261518Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-agent-ds.yml.j2 +2025-11-24T09:08:04.9261911Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dashboard.yml.j2 +2025-11-24T09:08:04.9262310Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-svc.yml.j2 +2025-11-24T09:08:04.9262870Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-clusterrolebinding.yml.j2 +2025-11-24T09:08:04.9263341Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-clusterrole.yml.j2 +2025-11-24T09:08:04.9263738Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-sa.yml.j2 +2025-11-24T09:08:04.9264188Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dns-autoscaler-clusterrole.yml.j2 +2025-11-24T09:08:04.9264614Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/etcd_metrics-service.yml.j2 +2025-11-24T09:08:04.9265040Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-svc.yml.j2 +2025-11-24T09:08:04.9265464Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-deployment.yml.j2 +2025-11-24T09:08:04.9265931Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/nodelocaldns-second-daemonset.yml.j2 +2025-11-24T09:08:04.9266265Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/ +2025-11-24T09:08:04.9266662Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/ +2025-11-24T09:08:04.9267092Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/defaults/ +2025-11-24T09:08:04.9267646Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/defaults/main.yml +2025-11-24T09:08:04.9268099Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/tasks/ +2025-11-24T09:08:04.9268531Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/tasks/main.yml +2025-11-24T09:08:04.9268959Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/ +2025-11-24T09:08:04.9269495Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/sa-rbd-provisioner.yml.j2 +2025-11-24T09:08:04.9270039Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/role-rbd-provisioner.yml.j2 +2025-11-24T09:08:04.9270584Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/deploy-rbd-provisioner.yml.j2 +2025-11-24T09:08:04.9271107Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/sc-rbd-provisioner.yml.j2 +2025-11-24T09:08:04.9271710Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/clusterrolebinding-rbd-provisioner.yml.j2 +2025-11-24T09:08:04.9272274Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/clusterrole-rbd-provisioner.yml.j2 +2025-11-24T09:08:04.9273040Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/rolebinding-rbd-provisioner.yml.j2 +2025-11-24T09:08:04.9273593Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/secret-rbd-provisioner.yml.j2 +2025-11-24T09:08:04.9274098Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/00-namespace.yml.j2 +2025-11-24T09:08:04.9274508Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/ +2025-11-24T09:08:04.9274948Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/defaults/ +2025-11-24T09:08:04.9275476Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/defaults/main.yml +2025-11-24T09:08:04.9275906Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/tasks/ +2025-11-24T09:08:04.9276390Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/tasks/main.yml +2025-11-24T09:08:04.9276836Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/ +2025-11-24T09:08:04.9277398Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/sc-cephfs-provisioner.yml.j2 +2025-11-24T09:08:04.9277962Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/role-cephfs-provisioner.yml.j2 +2025-11-24T09:08:04.9278594Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/clusterrolebinding-cephfs-provisioner.yml.j2 +2025-11-24T09:08:04.9279150Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/sa-cephfs-provisioner.yml.j2 +2025-11-24T09:08:04.9279719Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/secret-cephfs-provisioner.yml.j2 +2025-11-24T09:08:04.9280239Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/00-namespace.yml.j2 +2025-11-24T09:08:04.9280827Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/clusterrole-cephfs-provisioner.yml.j2 +2025-11-24T09:08:04.9281394Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/deploy-cephfs-provisioner.yml.j2 +2025-11-24T09:08:04.9282076Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/rolebinding-cephfs-provisioner.yml.j2 +2025-11-24T09:08:04.9282428Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/meta/ +2025-11-24T09:08:04.9282954Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/meta/main.yml +2025-11-24T09:08:04.9283394Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/ +2025-11-24T09:08:04.9283863Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/defaults/ +2025-11-24T09:08:04.9284357Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/defaults/main.yml +2025-11-24T09:08:04.9284803Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/tasks/ +2025-11-24T09:08:04.9285297Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/tasks/basedirs.yml +2025-11-24T09:08:04.9285785Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/tasks/main.yml +2025-11-24T09:08:04.9286253Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/ +2025-11-24T09:08:04.9286852Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-sa.yml.j2 +2025-11-24T09:08:04.9287574Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-ds.yml.j2 +2025-11-24T09:08:04.9288168Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-ns.yml.j2 +2025-11-24T09:08:04.9288841Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-clusterrolebinding.yml.j2 +2025-11-24T09:08:04.9289530Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-cm.yml.j2 +2025-11-24T09:08:04.9290167Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-clusterrole.yml.j2 +2025-11-24T09:08:04.9290762Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-sc.yml.j2 +2025-11-24T09:08:04.9291187Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/ +2025-11-24T09:08:04.9291632Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/defaults/ +2025-11-24T09:08:04.9292115Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/defaults/main.yml +2025-11-24T09:08:04.9292558Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/tasks/ +2025-11-24T09:08:04.9293134Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/tasks/main.yml +2025-11-24T09:08:04.9293585Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/ +2025-11-24T09:08:04.9294148Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-sc.yml.j2 +2025-11-24T09:08:04.9294742Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-deployment.yml.j2 +2025-11-24T09:08:04.9295297Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-cm.yml.j2 +2025-11-24T09:08:04.9295919Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-cr.yml.j2 +2025-11-24T09:08:04.9296557Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-clusterrolebinding.yml.j2 +2025-11-24T09:08:04.9297104Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-ns.yml.j2 +2025-11-24T09:08:04.9297661Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-sa.yml.j2 +2025-11-24T09:08:04.9297934Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/ +2025-11-24T09:08:04.9298244Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/defaults/ +2025-11-24T09:08:04.9298580Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/defaults/main.yml +2025-11-24T09:08:04.9298886Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/.gitkeep +2025-11-24T09:08:04.9299188Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/tasks/ +2025-11-24T09:08:04.9299561Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/tasks/pyyaml-flatcar.yml +2025-11-24T09:08:04.9299895Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/tasks/main.yml +2025-11-24T09:08:04.9300181Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/ +2025-11-24T09:08:04.9300504Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/debian.yml +2025-11-24T09:08:04.9300940Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/ubuntu.yml +2025-11-24T09:08:04.9301265Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/suse.yml +2025-11-24T09:08:04.9301591Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/centos.yml +2025-11-24T09:08:04.9301907Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/redhat.yml +2025-11-24T09:08:04.9308420Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/amazon.yml +2025-11-24T09:08:04.9308854Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/redhat-7.yml +2025-11-24T09:08:04.9309367Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/fedora.yml +2025-11-24T09:08:04.9309709Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/centos-7.yml +2025-11-24T09:08:04.9310000Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/ +2025-11-24T09:08:04.9310344Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/ +2025-11-24T09:08:04.9310725Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/defaults/ +2025-11-24T09:08:04.9311132Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/defaults/main.yml +2025-11-24T09:08:04.9311479Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/tasks/ +2025-11-24T09:08:04.9311883Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/tasks/main.yml +2025-11-24T09:08:04.9312262Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/templates/ +2025-11-24T09:08:04.9313087Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/templates/cinder-csi-snapshot-class.yml.j2 +2025-11-24T09:08:04.9313444Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/meta/ +2025-11-24T09:08:04.9313790Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/meta/main.yml +2025-11-24T09:08:04.9314177Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/ +2025-11-24T09:08:04.9314592Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/defaults/ +2025-11-24T09:08:04.9315029Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/defaults/main.yml +2025-11-24T09:08:04.9315422Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/tasks/ +2025-11-24T09:08:04.9315933Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/tasks/main.yml +2025-11-24T09:08:04.9316342Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/templates/ +2025-11-24T09:08:04.9316877Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/templates/rbac-snapshot-controller.yml.j2 +2025-11-24T09:08:04.9317355Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/templates/snapshot-ns.yml.j2 +2025-11-24T09:08:04.9317869Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/templates/snapshot-controller.yml.j2 +2025-11-24T09:08:04.9318145Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/ +2025-11-24T09:08:04.9318467Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/defaults/ +2025-11-24T09:08:04.9318808Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/defaults/main.yml +2025-11-24T09:08:04.9319122Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/tasks/ +2025-11-24T09:08:04.9319450Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/tasks/main.yml +2025-11-24T09:08:04.9319757Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/OWNERS +2025-11-24T09:08:04.9320071Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/ +2025-11-24T09:08:04.9320450Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/layer3.yaml.j2 +2025-11-24T09:08:04.9320824Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/layer2.yaml.j2 +2025-11-24T09:08:04.9321352Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/pools.yaml.j2 +2025-11-24T09:08:04.9321746Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/metallb.yaml.j2 +2025-11-24T09:08:04.9322122Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/ +2025-11-24T09:08:04.9322518Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/meta/ +2025-11-24T09:08:04.9323059Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/meta/main.yml +2025-11-24T09:08:04.9323542Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/ +2025-11-24T09:08:04.9323990Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/defaults/ +2025-11-24T09:08:04.9324458Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/defaults/main.yml +2025-11-24T09:08:04.9324885Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/tasks/ +2025-11-24T09:08:04.9325351Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/tasks/main.yml +2025-11-24T09:08:04.9325786Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/vars/ +2025-11-24T09:08:04.9326260Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/vars/ubuntu-16.yml +2025-11-24T09:08:04.9326723Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/vars/centos-7.yml +2025-11-24T09:08:04.9327185Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/vars/ubuntu-18.yml +2025-11-24T09:08:04.9327626Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/templates/ +2025-11-24T09:08:04.9328225Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/templates/nvidia-driver-install-daemonset.yml.j2 +2025-11-24T09:08:04.9328825Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/templates/k8s-device-plugin-nvidia-daemonset.yml.j2 +2025-11-24T09:08:04.9329123Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/ +2025-11-24T09:08:04.9329451Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/ +2025-11-24T09:08:04.9329871Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/tasks/ +2025-11-24T09:08:04.9330258Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/tasks/main.yml +2025-11-24T09:08:04.9330629Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/templates/ +2025-11-24T09:08:04.9331097Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/templates/volumesnapshotcontents.yml.j2 +2025-11-24T09:08:04.9331558Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/templates/volumesnapshotclasses.yml.j2 +2025-11-24T09:08:04.9331998Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/templates/volumesnapshots.yml.j2 +2025-11-24T09:08:04.9332323Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/ +2025-11-24T09:08:04.9332784Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/defaults/ +2025-11-24T09:08:04.9333188Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/defaults/main.yml +2025-11-24T09:08:04.9333526Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/tasks/ +2025-11-24T09:08:04.9333904Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/tasks/main.yml +2025-11-24T09:08:04.9334254Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/ +2025-11-24T09:08:04.9334692Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-setup.yml.j2 +2025-11-24T09:08:04.9335274Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-cred-secret.yml.j2 +2025-11-24T09:08:04.9335733Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-sc-regional.yml.j2 +2025-11-24T09:08:04.9336164Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-node.yml.j2 +2025-11-24T09:08:04.9336621Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-controller.yml.j2 +2025-11-24T09:08:04.9337067Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-sc-zonal.yml.j2 +2025-11-24T09:08:04.9337459Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/ +2025-11-24T09:08:04.9337830Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/defaults/ +2025-11-24T09:08:04.9338228Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/defaults/main.yml +2025-11-24T09:08:04.9338573Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/tasks/ +2025-11-24T09:08:04.9339019Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/tasks/azure-credential-check.yml +2025-11-24T09:08:04.9339404Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/tasks/main.yml +2025-11-24T09:08:04.9339775Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/ +2025-11-24T09:08:04.9340299Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-node-rbac.yml.j2 +2025-11-24T09:08:04.9340812Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-controller.yml.j2 +2025-11-24T09:08:04.9341313Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-cloud-config-secret.yml.j2 +2025-11-24T09:08:04.9341807Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-node.yml.j2 +2025-11-24T09:08:04.9342265Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-cloud-config.j2 +2025-11-24T09:08:04.9342910Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-controller-rbac.yml.j2 +2025-11-24T09:08:04.9343410Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-driver.yml.j2 +2025-11-24T09:08:04.9343805Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/ +2025-11-24T09:08:04.9344162Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/defaults/ +2025-11-24T09:08:04.9344553Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/defaults/main.yml +2025-11-24T09:08:04.9344886Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/tasks/ +2025-11-24T09:08:04.9345342Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/tasks/vsphere-credentials-check.yml +2025-11-24T09:08:04.9345726Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/tasks/main.yml +2025-11-24T09:08:04.9346091Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/ +2025-11-24T09:08:04.9346535Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-driver.yml.j2 +2025-11-24T09:08:04.9347059Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-controller-deployment.yml.j2 +2025-11-24T09:08:04.9347525Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-namespace.yml.j2 +2025-11-24T09:08:04.9348039Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-controller-service.yml.j2 +2025-11-24T09:08:04.9348540Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-controller-rbac.yml.j2 +2025-11-24T09:08:04.9349137Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-cloud-config.j2 +2025-11-24T09:08:04.9349591Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-node.yml.j2 +2025-11-24T09:08:04.9350053Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-node-rbac.yml.j2 +2025-11-24T09:08:04.9350561Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-controller-config.yml.j2 +2025-11-24T09:08:04.9350947Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/ +2025-11-24T09:08:04.9351308Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/defaults/ +2025-11-24T09:08:04.9351703Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/defaults/main.yml +2025-11-24T09:08:04.9352047Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/tasks/ +2025-11-24T09:08:04.9352435Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/tasks/main.yml +2025-11-24T09:08:04.9353105Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/ +2025-11-24T09:08:04.9353600Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/aws-ebs-csi-nodeservice.yml.j2 +2025-11-24T09:08:04.9354055Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/aws-ebs-csi-driver.yml.j2 +2025-11-24T09:08:04.9354577Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/aws-ebs-csi-controllerservice-rbac.yml.j2 +2025-11-24T09:08:04.9355071Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/aws-ebs-csi-controllerservice.yml.j2 +2025-11-24T09:08:04.9355388Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/OWNERS +2025-11-24T09:08:04.9355710Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/ +2025-11-24T09:08:04.9356065Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/defaults/ +2025-11-24T09:08:04.9356455Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/defaults/main.yml +2025-11-24T09:08:04.9356790Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/tasks/ +2025-11-24T09:08:04.9357171Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/tasks/main.yml +2025-11-24T09:08:04.9357664Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/ +2025-11-24T09:08:04.9358142Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-controller.yml.j2 +2025-11-24T09:08:04.9358588Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-setup.yml.j2 +2025-11-24T09:08:04.9359061Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-cred-secret.yml.j2 +2025-11-24T09:08:04.9359510Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-driver.yml.j2 +2025-11-24T09:08:04.9359956Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-node.yml.j2 +2025-11-24T09:08:04.9360278Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/ +2025-11-24T09:08:04.9360623Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/defaults/ +2025-11-24T09:08:04.9361018Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/defaults/main.yml +2025-11-24T09:08:04.9361358Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/tasks/ +2025-11-24T09:08:04.9361790Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/tasks/cinder-write-cacert.yml +2025-11-24T09:08:04.9362164Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/tasks/main.yml +2025-11-24T09:08:04.9362838Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/tasks/cinder-credential-check.yml +2025-11-24T09:08:04.9363210Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/ +2025-11-24T09:08:04.9363730Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-poddisruptionbudget.yml.j2 +2025-11-24T09:08:04.9364221Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-nodeplugin-rbac.yml.j2 +2025-11-24T09:08:04.9364716Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-driver.yml.j2 +2025-11-24T09:08:04.9365277Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-cloud-config-secret.yml.j2 +2025-11-24T09:08:04.9365778Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-controllerplugin.yml.j2 +2025-11-24T09:08:04.9366282Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-controllerplugin-rbac.yml.j2 +2025-11-24T09:08:04.9366732Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-cloud-config.j2 +2025-11-24T09:08:04.9367195Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-nodeplugin.yml.j2 +2025-11-24T09:08:04.9367540Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/ +2025-11-24T09:08:04.9367978Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/ +2025-11-24T09:08:04.9368413Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/defaults/ +2025-11-24T09:08:04.9368863Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/defaults/main.yml +2025-11-24T09:08:04.9369287Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/tasks/ +2025-11-24T09:08:04.9369841Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/tasks/huaweicloud-credential-check.yml +2025-11-24T09:08:04.9370281Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/tasks/main.yml +2025-11-24T09:08:04.9370722Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/ +2025-11-24T09:08:04.9371285Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-config.j2 +2025-11-24T09:08:04.9371998Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-controller-manager-ds.yml.j2 +2025-11-24T09:08:04.9372607Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-config-secret.yml.j2 +2025-11-24T09:08:04.9373361Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-controller-manager-roles.yml.j2 +2025-11-24T09:08:04.9374065Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-controller-manager-role-bindings.yml.j2 +2025-11-24T09:08:04.9374442Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/meta/ +2025-11-24T09:08:04.9374850Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/meta/main.yml +2025-11-24T09:08:04.9375236Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/ +2025-11-24T09:08:04.9375649Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/defaults/ +2025-11-24T09:08:04.9376082Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/defaults/main.yml +2025-11-24T09:08:04.9376480Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/tasks/ +2025-11-24T09:08:04.9377015Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/tasks/main.yml +2025-11-24T09:08:04.9377436Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/ +2025-11-24T09:08:04.9378022Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-role-bindings.yml.j2 +2025-11-24T09:08:04.9378699Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-controller-manager-ds-with-networks.yml.j2 +2025-11-24T09:08:04.9379374Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-controller-manager-ds.yml.j2 +2025-11-24T09:08:04.9379962Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-service-account.yml.j2 +2025-11-24T09:08:04.9380547Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-secret.yml.j2 +2025-11-24T09:08:04.9380947Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/ +2025-11-24T09:08:04.9381367Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/defaults/ +2025-11-24T09:08:04.9381811Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/defaults/main.yml +2025-11-24T09:08:04.9382223Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/tasks/ +2025-11-24T09:08:04.9382862Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/tasks/vsphere-credentials-check.yml +2025-11-24T09:08:04.9383296Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/tasks/main.yml +2025-11-24T09:08:04.9540794Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/ +2025-11-24T09:08:04.9541512Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cpi-cloud-config-secret.yml.j2 +2025-11-24T09:08:04.9542240Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cloud-controller-manager-role-bindings.yml.j2 +2025-11-24T09:08:04.9543108Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cloud-controller-manager-roles.yml.j2 +2025-11-24T09:08:04.9544078Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cloud-controller-manager-ds.yml.j2 +2025-11-24T09:08:04.9544655Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cpi-cloud-config.j2 +2025-11-24T09:08:04.9545058Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/ +2025-11-24T09:08:04.9545495Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/defaults/ +2025-11-24T09:08:04.9545944Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/defaults/main.yml +2025-11-24T09:08:04.9546362Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/tasks/ +2025-11-24T09:08:04.9546894Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/tasks/openstack-credential-check.yml +2025-11-24T09:08:04.9547337Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/tasks/main.yml +2025-11-24T09:08:04.9547747Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/OWNERS +2025-11-24T09:08:04.9548169Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/ +2025-11-24T09:08:04.9548734Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-config.j2 +2025-11-24T09:08:04.9549549Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-controller-manager-ds.yml.j2 +2025-11-24T09:08:04.9550254Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-controller-manager-role-bindings.yml.j2 +2025-11-24T09:08:04.9550870Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-config-secret.yml.j2 +2025-11-24T09:08:04.9797439Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-controller-manager-roles.yml.j2 +2025-11-24T09:08:04.9797964Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/ +2025-11-24T09:08:04.9798465Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/defaults/ +2025-11-24T09:08:04.9799031Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/defaults/main.yml +2025-11-24T09:08:04.9799503Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/tasks/ +2025-11-24T09:08:04.9800010Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/tasks/main.yml +2025-11-24T09:08:04.9800488Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/ +2025-11-24T09:08:04.9801061Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-api-crds.yaml.j2 +2025-11-24T09:08:04.9801638Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-rolebinding.yaml.j2 +2025-11-24T09:08:04.9802188Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-master.yaml.j2 +2025-11-24T09:08:04.9802937Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-clusterrolebinding.yaml.j2 +2025-11-24T09:08:04.9803412Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-master-conf.yaml.j2 +2025-11-24T09:08:04.9803845Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-gc.yaml.j2 +2025-11-24T09:08:04.9804264Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-ns.yaml.j2 +2025-11-24T09:08:04.9805009Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-role.yaml.j2 +2025-11-24T09:08:04.9805476Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-worker-conf.yaml.j2 +2025-11-24T09:08:04.9805923Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-worker.yaml.j2 +2025-11-24T09:08:04.9806363Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-service.yaml.j2 +2025-11-24T09:08:04.9806819Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-clusterrole.yaml.j2 +2025-11-24T09:08:04.9807319Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-topologyupdater-conf.yaml.j2 +2025-11-24T09:08:04.9911264Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-serviceaccount.yaml.j2 +2025-11-24T09:08:04.9911709Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/ +2025-11-24T09:08:04.9912078Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/flannel/ +2025-11-24T09:08:04.9912475Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/flannel/tasks/ +2025-11-24T09:08:04.9913071Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/flannel/tasks/main.yml +2025-11-24T09:08:04.9913427Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/weave/ +2025-11-24T09:08:04.9913783Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/weave/tasks/ +2025-11-24T09:08:04.9914483Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/weave/tasks/main.yml +2025-11-24T09:08:04.9914824Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/meta/ +2025-11-24T09:08:04.9915179Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/meta/main.yml +2025-11-24T09:08:04.9915510Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/multus/ +2025-11-24T09:08:04.9915865Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/multus/tasks/ +2025-11-24T09:08:04.9916255Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/multus/tasks/main.yml +2025-11-24T09:08:04.9916694Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-ovn/ +2025-11-24T09:08:04.9917062Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-ovn/tasks/ +2025-11-24T09:08:04.9917460Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-ovn/tasks/main.yml +2025-11-24T09:08:04.9917811Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-router/ +2025-11-24T09:08:04.9918192Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-router/tasks/ +2025-11-24T09:08:04.9918594Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-router/tasks/main.yml +2025-11-24T09:08:04.9918969Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-router/OWNERS +2025-11-24T09:08:04.9919300Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/calico/ +2025-11-24T09:08:04.9919644Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/calico/tasks/ +2025-11-24T09:08:04.9920025Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/calico/tasks/main.yml +2025-11-24T09:08:04.9920357Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/ +2025-11-24T09:08:04.9920689Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/meta/ +2025-11-24T09:08:04.9921065Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/meta/main.yml +2025-11-24T09:08:04.9921403Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/ +2025-11-24T09:08:04.9921782Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/defaults/ +2025-11-24T09:08:04.9922196Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/defaults/main.yml +2025-11-24T09:08:04.9922805Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/tasks/ +2025-11-24T09:08:04.9923221Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/tasks/main.yml +2025-11-24T09:08:04.9923613Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/ +2025-11-24T09:08:04.9924083Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/calico-kube-crb.yml.j2 +2025-11-24T09:08:04.9924546Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/calico-kube-cr.yml.j2 +2025-11-24T09:08:04.9925000Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/calico-kube-sa.yml.j2 +2025-11-24T09:08:04.9925505Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/calico-kube-controllers.yml.j2 +2025-11-24T09:08:04.9925834Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/ +2025-11-24T09:08:04.9926204Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/ +2025-11-24T09:08:04.9926607Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/defaults/ +2025-11-24T09:08:04.9927046Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/defaults/main.yml +2025-11-24T09:08:04.9927441Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/tasks/ +2025-11-24T09:08:04.9928106Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/tasks/main.yml +2025-11-24T09:08:04.9928505Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/OWNERS +2025-11-24T09:08:04.9928920Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/templates/ +2025-11-24T09:08:04.9929460Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/templates/aws-ebs-csi-storage-class.yml.j2 +2025-11-24T09:08:04.9929883Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/ +2025-11-24T09:08:04.9930371Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/defaults/ +2025-11-24T09:08:04.9986134Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/defaults/main.yml +2025-11-24T09:08:04.9987377Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/tasks/ +2025-11-24T09:08:04.9988408Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/tasks/main.yml +2025-11-24T09:08:04.9989398Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/templates/ +2025-11-24T09:08:04.9990510Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/templates/cinder-csi-storage-class.yml.j2 +2025-11-24T09:08:04.9991545Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/meta/ +2025-11-24T09:08:04.9992413Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/meta/main.yml +2025-11-24T09:08:04.9993478Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/ +2025-11-24T09:08:04.9994359Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/defaults/ +2025-11-24T09:08:04.9995293Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/defaults/main.yml +2025-11-24T09:08:04.9996215Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/tasks/ +2025-11-24T09:08:04.9997133Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/tasks/main.yml +2025-11-24T09:08:04.9998063Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/templates/ +2025-11-24T09:08:04.9999094Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/templates/gcp-pd-csi-storage-class.yml.j2 +2025-11-24T09:08:05.0000293Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/ +2025-11-24T09:08:05.0001176Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/defaults/ +2025-11-24T09:08:05.0002122Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/defaults/main.yml +2025-11-24T09:08:05.0003187Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/tasks/ +2025-11-24T09:08:05.0004086Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/tasks/main.yml +2025-11-24T09:08:05.0004987Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/templates/ +2025-11-24T09:08:05.0005993Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/templates/upcloud-csi-storage-class.yml.j2 +2025-11-24T09:08:05.0007001Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/ +2025-11-24T09:08:05.0007881Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/defaults/ +2025-11-24T09:08:05.0008809Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/defaults/main.yml +2025-11-24T09:08:05.0009735Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/tasks/ +2025-11-24T09:08:05.0011297Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/tasks/main.yml +2025-11-24T09:08:05.0013506Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/templates/ +2025-11-24T09:08:05.0015335Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/templates/azure-csi-storage-class.yml.j2 +2025-11-24T09:08:05.0016362Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/ +2025-11-24T09:08:05.0017220Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/defaults/ +2025-11-24T09:08:05.0018121Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/defaults/main.yml +2025-11-24T09:08:05.0019652Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/tasks/ +2025-11-24T09:08:05.0020655Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/tasks/main.yml +2025-11-24T09:08:05.0021961Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/templates/ +2025-11-24T09:08:05.0023118Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/templates/openstack-storage-class.yml.j2 +2025-11-24T09:08:05.0023947Z ansible/roles-external/kubespray/roles/reset/ +2025-11-24T09:08:05.0024493Z ansible/roles-external/kubespray/roles/reset/defaults/ +2025-11-24T09:08:05.0025087Z ansible/roles-external/kubespray/roles/reset/defaults/main.yml +2025-11-24T09:08:05.0025682Z ansible/roles-external/kubespray/roles/reset/tasks/ +2025-11-24T09:08:05.0026251Z ansible/roles-external/kubespray/roles/reset/tasks/main.yml +2025-11-24T09:08:05.0027216Z ansible/roles-external/kubespray/roles/upgrade/ +2025-11-24T09:08:05.0027804Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/ +2025-11-24T09:08:05.0028718Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/tasks/ +2025-11-24T09:08:05.0029716Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/tasks/yum.yml +2025-11-24T09:08:05.0030456Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/tasks/apt.yml +2025-11-24T09:08:05.0031240Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/tasks/main.yml +2025-11-24T09:08:05.0031911Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/ +2025-11-24T09:08:05.0032581Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/defaults/ +2025-11-24T09:08:05.0033466Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/defaults/main.yml +2025-11-24T09:08:05.0034307Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/tasks/ +2025-11-24T09:08:05.0035015Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/tasks/main.yml +2025-11-24T09:08:05.0035678Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/ +2025-11-24T09:08:05.0036334Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/defaults/ +2025-11-24T09:08:05.0037045Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/defaults/main.yml +2025-11-24T09:08:05.0037737Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/tasks/ +2025-11-24T09:08:05.0038425Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/tasks/main.yml +2025-11-24T09:08:05.0039035Z ansible/roles-external/kubespray/roles/etcd/ +2025-11-24T09:08:05.0039565Z ansible/roles-external/kubespray/roles/etcd/defaults/ +2025-11-24T09:08:05.0040156Z ansible/roles-external/kubespray/roles/etcd/defaults/main.yml +2025-11-24T09:08:05.0040737Z ansible/roles-external/kubespray/roles/etcd/meta/ +2025-11-24T09:08:05.0041312Z ansible/roles-external/kubespray/roles/etcd/meta/main.yml +2025-11-24T09:08:05.0041887Z ansible/roles-external/kubespray/roles/etcd/tasks/ +2025-11-24T09:08:05.0042486Z ansible/roles-external/kubespray/roles/etcd/tasks/upd_ca_trust.yml +2025-11-24T09:08:05.0043291Z ansible/roles-external/kubespray/roles/etcd/tasks/gen_nodes_certs_script.yml +2025-11-24T09:08:05.0044011Z ansible/roles-external/kubespray/roles/etcd/tasks/join_etcd_member.yml +2025-11-24T09:08:05.0044701Z ansible/roles-external/kubespray/roles/etcd/tasks/refresh_config.yml +2025-11-24T09:08:05.0045522Z ansible/roles-external/kubespray/roles/etcd/tasks/gen_certs_script.yml +2025-11-24T09:08:05.0046174Z ansible/roles-external/kubespray/roles/etcd/tasks/configure.yml +2025-11-24T09:08:05.0046830Z ansible/roles-external/kubespray/roles/etcd/tasks/install_docker.yml +2025-11-24T09:08:05.0047492Z ansible/roles-external/kubespray/roles/etcd/tasks/install_host.yml +2025-11-24T09:08:05.0048192Z ansible/roles-external/kubespray/roles/etcd/tasks/join_etcd-events_member.yml +2025-11-24T09:08:05.0048882Z ansible/roles-external/kubespray/roles/etcd/tasks/check_certs.yml +2025-11-24T09:08:05.0049503Z ansible/roles-external/kubespray/roles/etcd/tasks/main.yml +2025-11-24T09:08:05.0050170Z ansible/roles-external/kubespray/roles/etcd/handlers/ +2025-11-24T09:08:05.0050809Z ansible/roles-external/kubespray/roles/etcd/handlers/backup_cleanup.yml +2025-11-24T09:08:05.0051461Z ansible/roles-external/kubespray/roles/etcd/handlers/main.yml +2025-11-24T09:08:05.0052086Z ansible/roles-external/kubespray/roles/etcd/handlers/backup.yml +2025-11-24T09:08:05.0052789Z ansible/roles-external/kubespray/roles/etcd/vars/ +2025-11-24T09:08:05.0053344Z ansible/roles-external/kubespray/roles/etcd/vars/main.yml +2025-11-24T09:08:05.0053918Z ansible/roles-external/kubespray/roles/etcd/templates/ +2025-11-24T09:08:05.0054552Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-events.j2 +2025-11-24T09:08:05.0055267Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-docker.service.j2 +2025-11-24T09:08:05.0055996Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-events.env.j2 +2025-11-24T09:08:05.0056705Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-host.service.j2 +2025-11-24T09:08:05.0057415Z ansible/roles-external/kubespray/roles/etcd/templates/openssl.conf.j2 +2025-11-24T09:08:05.0058154Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-events-docker.service.j2 +2025-11-24T09:08:05.0058862Z ansible/roles-external/kubespray/roles/etcd/templates/etcd.j2 +2025-11-24T09:08:05.0059554Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-events-host.service.j2 +2025-11-24T09:08:05.0060313Z ansible/roles-external/kubespray/roles/etcd/templates/make-ssl-etcd.sh.j2 +2025-11-24T09:08:05.0060993Z ansible/roles-external/kubespray/roles/etcd/templates/etcd.env.j2 +2025-11-24T09:08:05.0061619Z ansible/roles-external/kubespray/roles/kubespray-defaults/ +2025-11-24T09:08:05.0062264Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/ +2025-11-24T09:08:05.0063158Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/ +2025-11-24T09:08:05.0063917Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/download.yml +2025-11-24T09:08:05.0064739Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/checksums.yml +2025-11-24T09:08:05.0065512Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/main.yml +2025-11-24T09:08:05.0066213Z ansible/roles-external/kubespray/roles/kubespray-defaults/tasks/ +2025-11-24T09:08:05.0066896Z ansible/roles-external/kubespray/roles/kubespray-defaults/tasks/main.yaml +2025-11-24T09:08:05.0067626Z ansible/roles-external/kubespray/roles/kubespray-defaults/tasks/no_proxy.yml +2025-11-24T09:08:05.0068362Z ansible/roles-external/kubespray/roles/kubespray-defaults/tasks/fallback_ips.yml +2025-11-24T09:08:05.0069051Z ansible/roles-external/kubespray/roles/kubespray-defaults/vars/ +2025-11-24T09:08:05.0069721Z ansible/roles-external/kubespray/roles/kubespray-defaults/vars/main.yml +2025-11-24T09:08:05.0070358Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/ +2025-11-24T09:08:05.0070943Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/tasks/ +2025-11-24T09:08:05.0071602Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/tasks/main.yml +2025-11-24T09:08:05.0072269Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/templates/ +2025-11-24T09:08:05.0073070Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/templates/etcdctl.sh.j2 +2025-11-24T09:08:05.0073714Z ansible/roles-external/kubespray/roles/remove-node/ +2025-11-24T09:08:05.0074481Z ansible/roles-external/kubespray/roles/remove-node/remove-etcd-node/ +2025-11-24T09:08:05.0075228Z ansible/roles-external/kubespray/roles/remove-node/remove-etcd-node/tasks/ +2025-11-24T09:08:05.0075971Z ansible/roles-external/kubespray/roles/remove-node/remove-etcd-node/tasks/main.yml +2025-11-24T09:08:05.0076672Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/ +2025-11-24T09:08:05.0077343Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/defaults/ +2025-11-24T09:08:05.0078071Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/defaults/main.yml +2025-11-24T09:08:05.0078877Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/tasks/ +2025-11-24T09:08:05.0079582Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/tasks/main.yml +2025-11-24T09:08:05.0080247Z ansible/roles-external/kubespray/roles/remove-node/post-remove/ +2025-11-24T09:08:05.0080921Z ansible/roles-external/kubespray/roles/remove-node/post-remove/defaults/ +2025-11-24T09:08:05.0081662Z ansible/roles-external/kubespray/roles/remove-node/post-remove/defaults/main.yml +2025-11-24T09:08:05.0082386Z ansible/roles-external/kubespray/roles/remove-node/post-remove/tasks/ +2025-11-24T09:08:05.0083202Z ansible/roles-external/kubespray/roles/remove-node/post-remove/tasks/main.yml +2025-11-24T09:08:05.0083836Z ansible/roles-external/kubespray/roles/helm-apps/ +2025-11-24T09:08:05.0084390Z ansible/roles-external/kubespray/roles/helm-apps/meta/ +2025-11-24T09:08:05.0085037Z ansible/roles-external/kubespray/roles/helm-apps/meta/argument_specs.yml +2025-11-24T09:08:05.0085687Z ansible/roles-external/kubespray/roles/helm-apps/meta/main.yml +2025-11-24T09:08:05.0086291Z ansible/roles-external/kubespray/roles/helm-apps/tasks/ +2025-11-24T09:08:05.0086902Z ansible/roles-external/kubespray/roles/helm-apps/tasks/main.yml +2025-11-24T09:08:05.0087527Z ansible/roles-external/kubespray/roles/helm-apps/README.md +2025-11-24T09:08:05.0095055Z ansible/roles-external/kubespray/roles/helm-apps/vars/ +2025-11-24T09:08:05.0095739Z ansible/roles-external/kubespray/roles/helm-apps/vars/main.yml +2025-11-24T09:08:05.0096368Z ansible/roles-external/kubespray/roles/download/ +2025-11-24T09:08:05.0096926Z ansible/roles-external/kubespray/roles/download/meta/ +2025-11-24T09:08:05.0097962Z ansible/roles-external/kubespray/roles/download/meta/main.yml +2025-11-24T09:08:05.0098908Z ansible/roles-external/kubespray/roles/download/tasks/ +2025-11-24T09:08:05.0099936Z ansible/roles-external/kubespray/roles/download/tasks/download_container.yml +2025-11-24T09:08:05.0101209Z ansible/roles-external/kubespray/roles/download/tasks/prep_download.yml +2025-11-24T09:08:05.0102468Z ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml +2025-11-24T09:08:05.0103858Z ansible/roles-external/kubespray/roles/download/tasks/prep_kubeadm_images.yml +2025-11-24T09:08:05.0104775Z ansible/roles-external/kubespray/roles/download/tasks/set_container_facts.yml +2025-11-24T09:08:05.0106148Z ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml +2025-11-24T09:08:05.0107242Z ansible/roles-external/kubespray/roles/download/tasks/download_file.yml +2025-11-24T09:08:05.0108187Z ansible/roles-external/kubespray/roles/download/tasks/main.yml +2025-11-24T09:08:05.0109471Z ansible/roles-external/kubespray/roles/download/templates/ +2025-11-24T09:08:05.0110257Z ansible/roles-external/kubespray/roles/download/templates/kubeadm-images.yaml.j2 +2025-11-24T09:08:05.0111551Z ansible/roles-external/kubespray/roles/network_plugin/ +2025-11-24T09:08:05.0113455Z ansible/roles-external/kubespray/roles/network_plugin/flannel/ +2025-11-24T09:08:05.0114482Z ansible/roles-external/kubespray/roles/network_plugin/flannel/defaults/ +2025-11-24T09:08:05.0115404Z ansible/roles-external/kubespray/roles/network_plugin/flannel/defaults/main.yml +2025-11-24T09:08:05.0116139Z ansible/roles-external/kubespray/roles/network_plugin/flannel/meta/ +2025-11-24T09:08:05.0116863Z ansible/roles-external/kubespray/roles/network_plugin/flannel/meta/main.yml +2025-11-24T09:08:05.0118132Z ansible/roles-external/kubespray/roles/network_plugin/flannel/tasks/ +2025-11-24T09:08:05.0119137Z ansible/roles-external/kubespray/roles/network_plugin/flannel/tasks/reset.yml +2025-11-24T09:08:05.0119893Z ansible/roles-external/kubespray/roles/network_plugin/flannel/tasks/main.yml +2025-11-24T09:08:05.0120624Z ansible/roles-external/kubespray/roles/network_plugin/flannel/templates/ +2025-11-24T09:08:05.0121420Z ansible/roles-external/kubespray/roles/network_plugin/flannel/templates/cni-flannel.yml.j2 +2025-11-24T09:08:05.0122312Z ansible/roles-external/kubespray/roles/network_plugin/flannel/templates/cni-flannel-rbac.yml.j2 +2025-11-24T09:08:05.0123316Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/ +2025-11-24T09:08:05.0124025Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/defaults/ +2025-11-24T09:08:05.0124773Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/defaults/main.yml +2025-11-24T09:08:05.0125525Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/meta/ +2025-11-24T09:08:05.0126259Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/meta/main.yml +2025-11-24T09:08:05.0126992Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/tasks/ +2025-11-24T09:08:05.0127725Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/tasks/main.yml +2025-11-24T09:08:05.0128407Z ansible/roles-external/kubespray/roles/network_plugin/weave/ +2025-11-24T09:08:05.0129080Z ansible/roles-external/kubespray/roles/network_plugin/weave/defaults/ +2025-11-24T09:08:05.0129801Z ansible/roles-external/kubespray/roles/network_plugin/weave/defaults/main.yml +2025-11-24T09:08:05.0130508Z ansible/roles-external/kubespray/roles/network_plugin/weave/meta/ +2025-11-24T09:08:05.0131195Z ansible/roles-external/kubespray/roles/network_plugin/weave/meta/main.yml +2025-11-24T09:08:05.0131886Z ansible/roles-external/kubespray/roles/network_plugin/weave/tasks/ +2025-11-24T09:08:05.0132588Z ansible/roles-external/kubespray/roles/network_plugin/weave/tasks/main.yml +2025-11-24T09:08:05.0133626Z ansible/roles-external/kubespray/roles/network_plugin/weave/templates/ +2025-11-24T09:08:05.0134438Z ansible/roles-external/kubespray/roles/network_plugin/weave/templates/10-weave.conflist.j2 +2025-11-24T09:08:05.0135290Z ansible/roles-external/kubespray/roles/network_plugin/weave/templates/weave-net.yml.j2 +2025-11-24T09:08:05.0136021Z ansible/roles-external/kubespray/roles/network_plugin/meta/ +2025-11-24T09:08:05.0136795Z ansible/roles-external/kubespray/roles/network_plugin/meta/main.yml +2025-11-24T09:08:05.0137509Z ansible/roles-external/kubespray/roles/network_plugin/calico_defaults/ +2025-11-24T09:08:05.0138254Z ansible/roles-external/kubespray/roles/network_plugin/calico_defaults/defaults/ +2025-11-24T09:08:05.0139071Z ansible/roles-external/kubespray/roles/network_plugin/calico_defaults/defaults/main.yml +2025-11-24T09:08:05.0139800Z ansible/roles-external/kubespray/roles/network_plugin/cni/ +2025-11-24T09:08:05.0140459Z ansible/roles-external/kubespray/roles/network_plugin/cni/defaults/ +2025-11-24T09:08:05.0141179Z ansible/roles-external/kubespray/roles/network_plugin/cni/defaults/main.yml +2025-11-24T09:08:05.0141878Z ansible/roles-external/kubespray/roles/network_plugin/cni/tasks/ +2025-11-24T09:08:05.0142575Z ansible/roles-external/kubespray/roles/network_plugin/cni/tasks/main.yml +2025-11-24T09:08:05.0143405Z ansible/roles-external/kubespray/roles/network_plugin/multus/ +2025-11-24T09:08:05.0144088Z ansible/roles-external/kubespray/roles/network_plugin/multus/defaults/ +2025-11-24T09:08:05.0144817Z ansible/roles-external/kubespray/roles/network_plugin/multus/defaults/main.yml +2025-11-24T09:08:05.0145539Z ansible/roles-external/kubespray/roles/network_plugin/multus/meta/ +2025-11-24T09:08:05.0146237Z ansible/roles-external/kubespray/roles/network_plugin/multus/meta/main.yml +2025-11-24T09:08:05.0146936Z ansible/roles-external/kubespray/roles/network_plugin/multus/tasks/ +2025-11-24T09:08:05.0147638Z ansible/roles-external/kubespray/roles/network_plugin/multus/tasks/main.yml +2025-11-24T09:08:05.0148491Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/ +2025-11-24T09:08:05.0149291Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/multus-clusterrolebinding.yml +2025-11-24T09:08:05.0150182Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/multus-clusterrole.yml +2025-11-24T09:08:05.0151055Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/multus-serviceaccount.yml +2025-11-24T09:08:05.0151893Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/multus-crd.yml +2025-11-24T09:08:05.0152755Z ansible/roles-external/kubespray/roles/network_plugin/multus/templates/ +2025-11-24T09:08:05.0153654Z ansible/roles-external/kubespray/roles/network_plugin/multus/templates/multus-daemonset.yml.j2 +2025-11-24T09:08:05.0154406Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/ +2025-11-24T09:08:05.0155088Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/defaults/ +2025-11-24T09:08:05.0155821Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/defaults/main.yml +2025-11-24T09:08:05.0156547Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/meta/ +2025-11-24T09:08:05.0157272Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/meta/main.yml +2025-11-24T09:08:05.0157989Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/tasks/ +2025-11-24T09:08:05.0158702Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/tasks/main.yml +2025-11-24T09:08:05.0159422Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/handlers/ +2025-11-24T09:08:05.0160151Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/handlers/main.yml +2025-11-24T09:08:05.0160879Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ +2025-11-24T09:08:05.0161598Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-local +2025-11-24T09:08:05.0162358Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-local +2025-11-24T09:08:05.0163258Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-macvlan +2025-11-24T09:08:05.0164033Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-macvlan +2025-11-24T09:08:05.0164752Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/OWNERS +2025-11-24T09:08:05.0165456Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/ +2025-11-24T09:08:05.0166362Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/debian-network-macvlan.cfg.j2 +2025-11-24T09:08:05.0167320Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/centos-postdown-macvlan.cfg.j2 +2025-11-24T09:08:05.0168263Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/centos-postup-macvlan.cfg.j2 +2025-11-24T09:08:05.0169163Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/10-macvlan.conf.j2 +2025-11-24T09:08:05.0170053Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/centos-network-macvlan.cfg.j2 +2025-11-24T09:08:05.0170985Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/coreos-service-nat_ouside.j2 +2025-11-24T09:08:05.0171878Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/99-loopback.conf.j2 +2025-11-24T09:08:05.0172872Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/coreos-network-macvlan.cfg.j2 +2025-11-24T09:08:05.0173815Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/centos-routes-macvlan.cfg.j2 +2025-11-24T09:08:05.0174779Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/coreos-interface-macvlan.cfg.j2 +2025-11-24T09:08:05.0175717Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/coreos-device-macvlan.cfg.j2 +2025-11-24T09:08:05.0176490Z ansible/roles-external/kubespray/roles/network_plugin/ovn4nfv/ +2025-11-24T09:08:05.0177160Z ansible/roles-external/kubespray/roles/network_plugin/ovn4nfv/tasks/ +2025-11-24T09:08:05.0177864Z ansible/roles-external/kubespray/roles/network_plugin/ovn4nfv/tasks/main.yml +2025-11-24T09:08:05.0178677Z ansible/roles-external/kubespray/roles/network_plugin/cilium/ +2025-11-24T09:08:05.0179364Z ansible/roles-external/kubespray/roles/network_plugin/cilium/defaults/ +2025-11-24T09:08:05.0180088Z ansible/roles-external/kubespray/roles/network_plugin/cilium/defaults/main.yml +2025-11-24T09:08:05.0180798Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/ +2025-11-24T09:08:05.0181510Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/install.yml +2025-11-24T09:08:05.0182249Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/check.yml +2025-11-24T09:08:05.0183160Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/reset.yml +2025-11-24T09:08:05.0183912Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/reset_iface.yml +2025-11-24T09:08:05.0184674Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/apply.yml +2025-11-24T09:08:05.0185414Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/main.yml +2025-11-24T09:08:05.0186139Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/ +2025-11-24T09:08:05.0186956Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/000-cilium-portmap.conflist.j2 +2025-11-24T09:08:05.0187844Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/ +2025-11-24T09:08:05.0188723Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/deploy.yml.j2 +2025-11-24T09:08:05.0189642Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/cr.yml.j2 +2025-11-24T09:08:05.0190543Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/crb.yml.j2 +2025-11-24T09:08:05.0191435Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/sa.yml.j2 +2025-11-24T09:08:05.0192251Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/ +2025-11-24T09:08:05.0193201Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/config.yml.j2 +2025-11-24T09:08:05.0194040Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/cr.yml.j2 +2025-11-24T09:08:05.0194871Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/crb.yml.j2 +2025-11-24T09:08:05.0195694Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/sa.yml.j2 +2025-11-24T09:08:05.0196596Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/ds.yml.j2 +2025-11-24T09:08:05.0197428Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/secret.yml.j2 +2025-11-24T09:08:05.0198224Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/ +2025-11-24T09:08:05.0199031Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/service.yml.j2 +2025-11-24T09:08:05.0199886Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/job.yml.j2 +2025-11-24T09:08:05.0200726Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/config.yml.j2 +2025-11-24T09:08:05.0201570Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/deploy.yml.j2 +2025-11-24T09:08:05.0202391Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/cr.yml.j2 +2025-11-24T09:08:05.0203340Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/crb.yml.j2 +2025-11-24T09:08:05.0204185Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/cronjob.yml.j2 +2025-11-24T09:08:05.0205026Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/sa.yml.j2 +2025-11-24T09:08:05.0205740Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/ +2025-11-24T09:08:05.0206430Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/defaults/ +2025-11-24T09:08:05.0207175Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/defaults/main.yml +2025-11-24T09:08:05.0208037Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/tasks/ +2025-11-24T09:08:05.0208763Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/tasks/main.yml +2025-11-24T09:08:05.0209484Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/OWNERS +2025-11-24T09:08:05.0210195Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/templates/ +2025-11-24T09:08:05.0211009Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/templates/cni-kube-ovn-crd.yml.j2 +2025-11-24T09:08:05.0211872Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/templates/cni-ovn.yml.j2 +2025-11-24T09:08:05.0212882Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/templates/cni-kube-ovn.yml.j2 +2025-11-24T09:08:05.0213653Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/ +2025-11-24T09:08:05.0214361Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/defaults/ +2025-11-24T09:08:05.0215133Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/defaults/main.yml +2025-11-24T09:08:05.0215895Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/meta/ +2025-11-24T09:08:05.0216630Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/meta/main.yml +2025-11-24T09:08:05.0217373Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/tasks/ +2025-11-24T09:08:05.0218142Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/tasks/annotate.yml +2025-11-24T09:08:05.0218998Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/tasks/reset.yml +2025-11-24T09:08:05.0219774Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/tasks/main.yml +2025-11-24T09:08:05.0220521Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/handlers/ +2025-11-24T09:08:05.0221274Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/handlers/main.yml +2025-11-24T09:08:05.0222028Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/OWNERS +2025-11-24T09:08:05.0222849Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/templates/ +2025-11-24T09:08:05.0223658Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/templates/kubeconfig.yml.j2 +2025-11-24T09:08:05.0224522Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/templates/cni-conf.json.j2 +2025-11-24T09:08:05.0225521Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/templates/kube-router.yml.j2 +2025-11-24T09:08:05.0226265Z ansible/roles-external/kubespray/roles/network_plugin/calico/ +2025-11-24T09:08:05.0226918Z ansible/roles-external/kubespray/roles/network_plugin/calico/meta/ +2025-11-24T09:08:05.0227617Z ansible/roles-external/kubespray/roles/network_plugin/calico/meta/main.yml +2025-11-24T09:08:05.0228298Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/ +2025-11-24T09:08:05.0228984Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/defaults/ +2025-11-24T09:08:05.0229731Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/defaults/main.yml +2025-11-24T09:08:05.0230476Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/tasks/ +2025-11-24T09:08:05.0231206Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/tasks/pre.yml +2025-11-24T09:08:05.0231998Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/tasks/update-node.yml +2025-11-24T09:08:05.0232877Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/tasks/main.yml +2025-11-24T09:08:05.0233596Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/ +2025-11-24T09:08:05.0234309Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/install.yml +2025-11-24T09:08:05.0235075Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/typha_certs.yml +2025-11-24T09:08:05.0235844Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/check.yml +2025-11-24T09:08:05.0236620Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/peer_with_router.yml +2025-11-24T09:08:05.0237593Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/calico_apiserver_certs.yml +2025-11-24T09:08:05.0238394Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/repos.yml +2025-11-24T09:08:05.0239123Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/pre.yml +2025-11-24T09:08:05.0239917Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/peer_with_calico_rr.yml +2025-11-24T09:08:05.0240694Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/reset.yml +2025-11-24T09:08:05.0241487Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/main.yml +2025-11-24T09:08:05.0242205Z ansible/roles-external/kubespray/roles/network_plugin/calico/handlers/ +2025-11-24T09:08:05.0243045Z ansible/roles-external/kubespray/roles/network_plugin/calico/handlers/main.yml +2025-11-24T09:08:05.0243757Z ansible/roles-external/kubespray/roles/network_plugin/calico/files/ +2025-11-24T09:08:05.0244485Z ansible/roles-external/kubespray/roles/network_plugin/calico/files/openssl.conf +2025-11-24T09:08:05.0245880Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/ +2025-11-24T09:08:05.0246774Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/debian.yml +2025-11-24T09:08:05.0247518Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/centos-9.yml +2025-11-24T09:08:05.0248500Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/rocky-9.yml +2025-11-24T09:08:05.0250125Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/opensuse.yml +2025-11-24T09:08:05.0251633Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/redhat-9.yml +2025-11-24T09:08:05.0253523Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/redhat.yml +2025-11-24T09:08:05.0254973Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/amazon.yml +2025-11-24T09:08:05.0256569Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/fedora.yml +2025-11-24T09:08:05.0258549Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/ +2025-11-24T09:08:05.0260260Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/make-ssl-calico.sh.j2 +2025-11-24T09:08:05.0262219Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-node.yml.j2 +2025-11-24T09:08:05.0264547Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-node-sa.yml.j2 +2025-11-24T09:08:05.0267367Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-typha.yml.j2 +2025-11-24T09:08:05.0269246Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calicoctl.etcd.sh.j2 +2025-11-24T09:08:05.0271208Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-ipamconfig.yml.j2 +2025-11-24T09:08:05.0273273Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-crb.yml.j2 +2025-11-24T09:08:05.0275273Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-apiserver.yml.j2 +2025-11-24T09:08:05.0276776Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calicoctl.kdd.sh.j2 +2025-11-24T09:08:05.0278264Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/kubernetes-services-endpoint.yml.j2 +2025-11-24T09:08:05.0279200Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-cr.yml.j2 +2025-11-24T09:08:05.0280088Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-apiserver-ns.yml.j2 +2025-11-24T09:08:05.0280997Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-config.yml.j2 +2025-11-24T09:08:05.0281695Z ansible/roles-external/kubespray/meta/ +2025-11-24T09:08:05.0282217Z ansible/roles-external/kubespray/meta/runtime.yml +2025-11-24T09:08:05.0282903Z ansible/roles-external/kubespray/.gitlab-ci.yml +2025-11-24T09:08:05.0283439Z ansible/roles-external/kubespray/scripts/ +2025-11-24T09:08:05.0283988Z ansible/roles-external/kubespray/scripts/download_hash.sh +2025-11-24T09:08:05.0284779Z ansible/roles-external/kubespray/scripts/download_hash.py +2025-11-24T09:08:05.0285418Z ansible/roles-external/kubespray/scripts/openstack-cleanup/ +2025-11-24T09:08:05.0286128Z ansible/roles-external/kubespray/scripts/openstack-cleanup/requirements.txt +2025-11-24T09:08:05.0286875Z ansible/roles-external/kubespray/scripts/openstack-cleanup/.gitignore +2025-11-24T09:08:05.0287591Z ansible/roles-external/kubespray/scripts/openstack-cleanup/README.md +2025-11-24T09:08:05.0288285Z ansible/roles-external/kubespray/scripts/openstack-cleanup/main.py +2025-11-24T09:08:05.0289012Z ansible/roles-external/kubespray/scripts/gen_docs_sidebar.sh +2025-11-24T09:08:05.0289620Z ansible/roles-external/kubespray/scripts/premoderator.sh +2025-11-24T09:08:05.0290215Z ansible/roles-external/kubespray/scripts/gen_tags.sh +2025-11-24T09:08:05.0290803Z ansible/roles-external/kubespray/scripts/collect-info.yaml +2025-11-24T09:08:05.0291416Z ansible/roles-external/kubespray/scripts/gitlab-runner.sh +2025-11-24T09:08:05.0292045Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/ +2025-11-24T09:08:05.0292878Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/requirements.txt +2025-11-24T09:08:05.0293653Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/.gitignore +2025-11-24T09:08:05.0294382Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/README.md +2025-11-24T09:08:05.0295106Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/main.py +2025-11-24T09:08:05.0295723Z ansible/roles-external/kubespray/.github/ +2025-11-24T09:08:05.0296266Z ansible/roles-external/kubespray/.github/dependabot.yml +2025-11-24T09:08:05.0296908Z ansible/roles-external/kubespray/.github/PULL_REQUEST_TEMPLATE.md +2025-11-24T09:08:05.0297538Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/ +2025-11-24T09:08:05.0298208Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/bug-report.yaml +2025-11-24T09:08:05.0298925Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/config.yml +2025-11-24T09:08:05.0299643Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/failing-test.yaml +2025-11-24T09:08:05.0300381Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/enhancement.yaml +2025-11-24T09:08:05.0301010Z ansible/roles-external/kubespray/index.html +2025-11-24T09:08:05.0301542Z ansible/roles-external/kubespray/.gitattributes +2025-11-24T09:08:05.0302174Z ansible/roles-external/kubespray/scale.yml +2025-11-24T09:08:05.0302823Z ansible/roles-external/kubespray/test-infra/ +2025-11-24T09:08:05.0303412Z ansible/roles-external/kubespray/test-infra/vagrant-docker/ +2025-11-24T09:08:05.0304106Z ansible/roles-external/kubespray/test-infra/vagrant-docker/Dockerfile +2025-11-24T09:08:05.0304817Z ansible/roles-external/kubespray/test-infra/vagrant-docker/README.md +2025-11-24T09:08:05.0305509Z ansible/roles-external/kubespray/test-infra/vagrant-docker/build.sh +2025-11-24T09:08:05.0306164Z ansible/roles-external/kubespray/test-infra/image-builder/ +2025-11-24T09:08:05.0306818Z ansible/roles-external/kubespray/test-infra/image-builder/roles/ +2025-11-24T09:08:05.0307535Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/ +2025-11-24T09:08:05.0308354Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/defaults/ +2025-11-24T09:08:05.0309238Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/defaults/main.yml +2025-11-24T09:08:05.0310112Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/tasks/ +2025-11-24T09:08:05.0310973Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/tasks/main.yml +2025-11-24T09:08:05.0311845Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/templates/ +2025-11-24T09:08:05.0312825Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/templates/Dockerfile +2025-11-24T09:08:05.0313639Z ansible/roles-external/kubespray/test-infra/image-builder/hosts.ini +2025-11-24T09:08:05.0314468Z ansible/roles-external/kubespray/test-infra/image-builder/cluster.yml +2025-11-24T09:08:05.0315153Z ansible/roles-external/kubespray/test-infra/image-builder/OWNERS +2025-11-24T09:08:05.0315816Z ansible/roles-external/kubespray/test-infra/image-builder/Makefile +2025-11-24T09:08:05.0316412Z ansible/roles-external/kubespray/library/ +2025-11-24T09:08:05.0316945Z ansible/roles-external/kubespray/library/kube.py +2025-11-24T09:08:05.0317471Z ansible/roles-external/kubespray/.mdlrc +2025-11-24T09:08:05.0317973Z ansible/roles-external/kubespray/.gitignore +2025-11-24T09:08:05.0318574Z ansible/roles-external/kubespray/README.md +2025-11-24T09:08:05.0326386Z ansible/roles-external/kubespray/.gitlab-ci/ +2025-11-24T09:08:05.0327050Z ansible/roles-external/kubespray/.gitlab-ci/vagrant.yml +2025-11-24T09:08:05.0327666Z ansible/roles-external/kubespray/.gitlab-ci/terraform.yml +2025-11-24T09:08:05.0328284Z ansible/roles-external/kubespray/.gitlab-ci/molecule.yml +2025-11-24T09:08:05.0328879Z ansible/roles-external/kubespray/.gitlab-ci/build.yml +2025-11-24T09:08:05.0329479Z ansible/roles-external/kubespray/.gitlab-ci/packet.yml +2025-11-24T09:08:05.0330150Z ansible/roles-external/kubespray/.gitlab-ci/pre-commit-dynamic-stub.yml +2025-11-24T09:08:05.0330796Z ansible/roles-external/kubespray/.gitlab-ci/lint.yml +2025-11-24T09:08:05.0331334Z ansible/roles-external/kubespray/logo/ +2025-11-24T09:08:05.0331842Z ansible/roles-external/kubespray/logo/LICENSE +2025-11-24T09:08:05.0332397Z ansible/roles-external/kubespray/logo/usage_guidelines.md +2025-11-24T09:08:05.0333428Z ansible/roles-external/kubespray/logo/logo-text-dark.svg +2025-11-24T09:08:05.0334079Z ansible/roles-external/kubespray/logo/logo-text-mixed.svg +2025-11-24T09:08:05.0334675Z ansible/roles-external/kubespray/logo/logo-text-clear.svg +2025-11-24T09:08:05.0335261Z ansible/roles-external/kubespray/logo/logo-clear.svg +2025-11-24T09:08:05.0335843Z ansible/roles-external/kubespray/logo/logo-text-mixed.png +2025-11-24T09:08:05.0336413Z ansible/roles-external/kubespray/logo/logo-dark.svg +2025-11-24T09:08:05.0336995Z ansible/roles-external/kubespray/logo/logo-text-clear.png +2025-11-24T09:08:05.0337880Z ansible/roles-external/kubespray/logo/OWNERS +2025-11-24T09:08:05.0338428Z ansible/roles-external/kubespray/logo/logo-clear.png +2025-11-24T09:08:05.0339070Z ansible/roles-external/kubespray/logo/logo-text-dark.png +2025-11-24T09:08:05.0340029Z ansible/roles-external/kubespray/logo/logo-dark.png +2025-11-24T09:08:05.0340817Z ansible/roles-external/kubespray/logo/logos.pdf +2025-11-24T09:08:05.0341363Z ansible/roles-external/kubespray/SECURITY_CONTACTS +2025-11-24T09:08:05.0341929Z ansible/roles-external/kubespray/pipeline.Dockerfile +2025-11-24T09:08:05.0342482Z ansible/roles-external/kubespray/extra_playbooks/ +2025-11-24T09:08:05.0343176Z ansible/roles-external/kubespray/extra_playbooks/roles +2025-11-24T09:08:05.0343867Z ansible/roles-external/kubespray/extra_playbooks/migrate_openstack_provider.yml +2025-11-24T09:08:05.0344620Z ansible/roles-external/kubespray/extra_playbooks/wait-for-cloud-init.yml +2025-11-24T09:08:05.0345271Z ansible/roles-external/kubespray/extra_playbooks/files/ +2025-11-24T09:08:05.0345929Z ansible/roles-external/kubespray/extra_playbooks/files/get_cinder_pvs.sh +2025-11-24T09:08:05.0346587Z ansible/roles-external/kubespray/extra_playbooks/inventory +2025-11-24T09:08:05.0347274Z ansible/roles-external/kubespray/extra_playbooks/upgrade-only-k8s.yml +2025-11-24T09:08:05.0347898Z ansible/roles-external/kubespray/galaxy.yml +2025-11-24T09:08:05.0348416Z ansible/roles-external/kubespray/.ansible-lint +2025-11-24T09:08:05.0348928Z ansible/roles-external/kubespray/reset.yml +2025-11-24T09:08:05.0349432Z ansible/roles-external/kubespray/docs/ +2025-11-24T09:08:05.0349961Z ansible/roles-external/kubespray/docs/cloud_providers/ +2025-11-24T09:08:05.0350636Z ansible/roles-external/kubespray/docs/cloud_providers/cloud.md +2025-11-24T09:08:05.0351286Z ansible/roles-external/kubespray/docs/cloud_providers/vsphere.md +2025-11-24T09:08:05.0351953Z ansible/roles-external/kubespray/docs/cloud_providers/openstack.md +2025-11-24T09:08:05.0352843Z ansible/roles-external/kubespray/docs/cloud_providers/aws.md +2025-11-24T09:08:05.0353550Z ansible/roles-external/kubespray/docs/cloud_providers/equinix-metal.md +2025-11-24T09:08:05.0354231Z ansible/roles-external/kubespray/docs/cloud_providers/azure.md +2025-11-24T09:08:05.0354815Z ansible/roles-external/kubespray/docs/CRI/ +2025-11-24T09:08:05.0355352Z ansible/roles-external/kubespray/docs/CRI/gvisor.md +2025-11-24T09:08:05.0355945Z ansible/roles-external/kubespray/docs/CRI/kata-containers.md +2025-11-24T09:08:05.0356564Z ansible/roles-external/kubespray/docs/CRI/containerd.md +2025-11-24T09:08:05.0357250Z ansible/roles-external/kubespray/docs/CRI/cri-o.md +2025-11-24T09:08:05.0357803Z ansible/roles-external/kubespray/docs/CRI/docker.md +2025-11-24T09:08:05.0358435Z ansible/roles-external/kubespray/docs/external_storage_provisioners/ +2025-11-24T09:08:05.0359219Z ansible/roles-external/kubespray/docs/external_storage_provisioners/scheduler_plugins.md +2025-11-24T09:08:05.0360068Z ansible/roles-external/kubespray/docs/external_storage_provisioners/rbd_provisioner.md +2025-11-24T09:08:05.0360934Z ansible/roles-external/kubespray/docs/external_storage_provisioners/local_volume_provisioner.md +2025-11-24T09:08:05.0361822Z ansible/roles-external/kubespray/docs/external_storage_provisioners/cephfs_provisioner.md +2025-11-24T09:08:05.0362516Z ansible/roles-external/kubespray/docs/upgrades/ +2025-11-24T09:08:05.0363339Z ansible/roles-external/kubespray/docs/upgrades/migrate_docker2containerd.md +2025-11-24T09:08:05.0363969Z ansible/roles-external/kubespray/docs/img/ +2025-11-24T09:08:05.0364545Z ansible/roles-external/kubespray/docs/img/kubernetes-logo.png +2025-11-24T09:08:05.0365190Z ansible/roles-external/kubespray/docs/img/kubelet-hardening.png +2025-11-24T09:08:05.0365790Z ansible/roles-external/kubespray/docs/advanced/ +2025-11-24T09:08:05.0366654Z ansible/roles-external/kubespray/docs/advanced/arch.md +2025-11-24T09:08:05.0367262Z ansible/roles-external/kubespray/docs/advanced/registry.md +2025-11-24T09:08:05.0367907Z ansible/roles-external/kubespray/docs/advanced/proxy.md +2025-11-24T09:08:05.0369044Z ansible/roles-external/kubespray/docs/advanced/kubernetes-reliability.md +2025-11-24T09:08:05.0369787Z ansible/roles-external/kubespray/docs/advanced/cert_manager.md +2025-11-24T09:08:05.0370420Z ansible/roles-external/kubespray/docs/advanced/gcp-lb.md +2025-11-24T09:08:05.0371128Z ansible/roles-external/kubespray/docs/advanced/ntp.md +2025-11-24T09:08:05.0371728Z ansible/roles-external/kubespray/docs/advanced/dns-stack.md +2025-11-24T09:08:05.0372336Z ansible/roles-external/kubespray/docs/advanced/downloads.md +2025-11-24T09:08:05.0373435Z ansible/roles-external/kubespray/docs/advanced/mitogen.md +2025-11-24T09:08:05.0374071Z ansible/roles-external/kubespray/docs/advanced/netcheck.md +2025-11-24T09:08:05.0374680Z ansible/roles-external/kubespray/docs/CNI/ +2025-11-24T09:08:05.0375217Z ansible/roles-external/kubespray/docs/CNI/macvlan.md +2025-11-24T09:08:05.0375784Z ansible/roles-external/kubespray/docs/CNI/flannel.md +2025-11-24T09:08:05.0376362Z ansible/roles-external/kubespray/docs/CNI/calico.md +2025-11-24T09:08:05.0376913Z ansible/roles-external/kubespray/docs/CNI/multus.md +2025-11-24T09:08:05.0377477Z ansible/roles-external/kubespray/docs/CNI/kube-router.md +2025-11-24T09:08:05.0378056Z ansible/roles-external/kubespray/docs/CNI/cilium.md +2025-11-24T09:08:05.0378672Z ansible/roles-external/kubespray/docs/CNI/cni.md +2025-11-24T09:08:05.0379216Z ansible/roles-external/kubespray/docs/CNI/weave.md +2025-11-24T09:08:05.0379776Z ansible/roles-external/kubespray/docs/CNI/kube-ovn.md +2025-11-24T09:08:05.0380340Z ansible/roles-external/kubespray/docs/figures/ +2025-11-24T09:08:05.0380978Z ansible/roles-external/kubespray/docs/figures/loadbalancer_localhost.png +2025-11-24T09:08:05.0381710Z ansible/roles-external/kubespray/docs/figures/kubespray-calico-rr.png +2025-11-24T09:08:05.0382369Z ansible/roles-external/kubespray/docs/calico_peer_example/ +2025-11-24T09:08:05.0383248Z ansible/roles-external/kubespray/docs/calico_peer_example/new-york.yml +2025-11-24T09:08:05.0384169Z ansible/roles-external/kubespray/docs/calico_peer_example/paris.yml +2025-11-24T09:08:05.0384792Z ansible/roles-external/kubespray/docs/roadmap/ +2025-11-24T09:08:05.0385348Z ansible/roles-external/kubespray/docs/roadmap/roadmap.md +2025-11-24T09:08:05.0385917Z ansible/roles-external/kubespray/docs/ansible/ +2025-11-24T09:08:05.0386459Z ansible/roles-external/kubespray/docs/ansible/vars.md +2025-11-24T09:08:05.0387037Z ansible/roles-external/kubespray/docs/ansible/ansible.md +2025-11-24T09:08:05.0387675Z ansible/roles-external/kubespray/docs/ansible/ansible_collection.md +2025-11-24T09:08:05.0388378Z ansible/roles-external/kubespray/docs/CSI/ +2025-11-24T09:08:05.0388920Z ansible/roles-external/kubespray/docs/CSI/cinder-csi.md +2025-11-24T09:08:05.0389499Z ansible/roles-external/kubespray/docs/CSI/azure-csi.md +2025-11-24T09:08:05.0390081Z ansible/roles-external/kubespray/docs/CSI/gcp-pd-csi.md +2025-11-24T09:08:05.0390676Z ansible/roles-external/kubespray/docs/CSI/vsphere-csi.md +2025-11-24T09:08:05.0391277Z ansible/roles-external/kubespray/docs/CSI/aws-ebs-csi.md +2025-11-24T09:08:05.0391846Z ansible/roles-external/kubespray/docs/developers/ +2025-11-24T09:08:05.0392436Z ansible/roles-external/kubespray/docs/developers/ci-setup.md +2025-11-24T09:08:05.0393254Z ansible/roles-external/kubespray/docs/developers/vagrant.md +2025-11-24T09:08:05.0393876Z ansible/roles-external/kubespray/docs/developers/ci.md +2025-11-24T09:08:05.0394484Z ansible/roles-external/kubespray/docs/developers/test_cases.md +2025-11-24T09:08:05.0395090Z ansible/roles-external/kubespray/docs/getting_started/ +2025-11-24T09:08:05.0395756Z ansible/roles-external/kubespray/docs/getting_started/getting-started.md +2025-11-24T09:08:05.0396537Z ansible/roles-external/kubespray/docs/getting_started/setting-up-your-first-cluster.md +2025-11-24T09:08:05.0397311Z ansible/roles-external/kubespray/docs/getting_started/comparisons.md +2025-11-24T09:08:05.0397943Z ansible/roles-external/kubespray/docs/_sidebar.md +2025-11-24T09:08:05.0398492Z ansible/roles-external/kubespray/docs/ingress/ +2025-11-24T09:08:05.0399058Z ansible/roles-external/kubespray/docs/ingress/kube-vip.md +2025-11-24T09:08:05.0399667Z ansible/roles-external/kubespray/docs/ingress/metallb.md +2025-11-24T09:08:05.0399985Z ansible/roles-external/kubespray/docs/ingress/alb_ingress_controller.md +2025-11-24T09:08:05.0400253Z ansible/roles-external/kubespray/docs/ingress/ingress_nginx.md +2025-11-24T09:08:05.0400594Z ansible/roles-external/kubespray/docs/operating_systems/ +2025-11-24T09:08:05.0400866Z ansible/roles-external/kubespray/docs/operating_systems/fcos.md +2025-11-24T09:08:05.0401182Z ansible/roles-external/kubespray/docs/operating_systems/bootstrap-os.md +2025-11-24T09:08:05.0401451Z ansible/roles-external/kubespray/docs/operating_systems/rhel.md +2025-11-24T09:08:05.0401764Z ansible/roles-external/kubespray/docs/operating_systems/kylinlinux.md +2025-11-24T09:08:05.0402075Z ansible/roles-external/kubespray/docs/operating_systems/openeuler.md +2025-11-24T09:08:05.0402377Z ansible/roles-external/kubespray/docs/operating_systems/opensuse.md +2025-11-24T09:08:05.0402861Z ansible/roles-external/kubespray/docs/operating_systems/flatcar.md +2025-11-24T09:08:05.0403154Z ansible/roles-external/kubespray/docs/operating_systems/centos.md +2025-11-24T09:08:05.0403483Z ansible/roles-external/kubespray/docs/operating_systems/amazonlinux.md +2025-11-24T09:08:05.0403784Z ansible/roles-external/kubespray/docs/operating_systems/uoslinux.md +2025-11-24T09:08:05.0404013Z ansible/roles-external/kubespray/docs/operations/ +2025-11-24T09:08:05.0404324Z ansible/roles-external/kubespray/docs/operations/port-requirements.md +2025-11-24T09:08:05.0404584Z ansible/roles-external/kubespray/docs/operations/ha-mode.md +2025-11-24T09:08:05.0404835Z ansible/roles-external/kubespray/docs/operations/nodes.md +2025-11-24T09:08:05.0405098Z ansible/roles-external/kubespray/docs/operations/upgrades.md +2025-11-24T09:08:05.0405400Z ansible/roles-external/kubespray/docs/operations/large-deployments.md +2025-11-24T09:08:05.0405869Z ansible/roles-external/kubespray/docs/operations/recover-control-plane.md +2025-11-24T09:08:05.0406132Z ansible/roles-external/kubespray/docs/operations/mirror.md +2025-11-24T09:08:05.0406394Z ansible/roles-external/kubespray/docs/operations/cgroups.md +2025-11-24T09:08:05.0406660Z ansible/roles-external/kubespray/docs/operations/hardening.md +2025-11-24T09:08:05.0406978Z ansible/roles-external/kubespray/docs/operations/offline-environment.md +2025-11-24T09:08:05.0407346Z ansible/roles-external/kubespray/docs/operations/encrypting-secret-data-at-rest.md +2025-11-24T09:08:05.0407662Z ansible/roles-external/kubespray/docs/operations/etcd.md +2025-11-24T09:08:05.0407933Z ansible/roles-external/kubespray/docs/operations/integration.md +2025-11-24T09:08:05.0408145Z ansible/roles-external/kubespray/plugins/ +2025-11-24T09:08:05.0408367Z ansible/roles-external/kubespray/plugins/modules/ +2025-11-24T09:08:05.0408619Z ansible/roles-external/kubespray/plugins/modules/kube.py +2025-11-24T09:08:05.0408835Z ansible/roles-external/kubespray/cluster.yml +2025-11-24T09:08:05.0409062Z ansible/roles-external/kubespray/.gitmodules +2025-11-24T09:08:05.0409272Z ansible/roles-external/kubespray/playbooks/ +2025-11-24T09:08:05.0409528Z ansible/roles-external/kubespray/playbooks/boilerplate.yml +2025-11-24T09:08:05.0409795Z ansible/roles-external/kubespray/playbooks/upgrade_cluster.yml +2025-11-24T09:08:05.0410035Z ansible/roles-external/kubespray/playbooks/scale.yml +2025-11-24T09:08:05.0410262Z ansible/roles-external/kubespray/playbooks/facts.yml +2025-11-24T09:08:05.0410519Z ansible/roles-external/kubespray/playbooks/install_etcd.yml +2025-11-24T09:08:05.0410772Z ansible/roles-external/kubespray/playbooks/remove_node.yml +2025-11-24T09:08:05.0411034Z ansible/roles-external/kubespray/playbooks/ansible_version.yml +2025-11-24T09:08:05.0411265Z ansible/roles-external/kubespray/playbooks/reset.yml +2025-11-24T09:08:05.0411507Z ansible/roles-external/kubespray/playbooks/cluster.yml +2025-11-24T09:08:05.0411812Z ansible/roles-external/kubespray/playbooks/recover_control_plane.yml +2025-11-24T09:08:05.0412038Z ansible/roles-external/kubespray/remove-node.yml +2025-11-24T09:08:05.0412278Z ansible/roles-external/kubespray/upgrade-cluster.yml +2025-11-24T09:08:05.0412489Z ansible/roles-external/kubespray/ansible.cfg +2025-11-24T09:08:05.0412903Z ansible/roles-external/kubespray/code-of-conduct.md +2025-11-24T09:08:05.0413114Z ansible/roles-external/kubespray/CNAME +2025-11-24T09:08:05.0413406Z ansible/roles-external/kubespray/tests/ +2025-11-24T09:08:05.0413663Z ansible/roles-external/kubespray/tests/requirements.txt +2025-11-24T09:08:05.0413893Z ansible/roles-external/kubespray/tests/run-tests.sh +2025-11-24T09:08:05.0414114Z ansible/roles-external/kubespray/tests/scripts/ +2025-11-24T09:08:05.0414420Z ansible/roles-external/kubespray/tests/scripts/testcases_prepare.sh +2025-11-24T09:08:05.0414687Z ansible/roles-external/kubespray/tests/scripts/molecule_logs.sh +2025-11-24T09:08:05.0414978Z ansible/roles-external/kubespray/tests/scripts/terraform_install.sh +2025-11-24T09:08:05.0415227Z ansible/roles-external/kubespray/tests/scripts/rebase.sh +2025-11-24T09:08:05.0415543Z ansible/roles-external/kubespray/tests/scripts/check_galaxy_version.sh +2025-11-24T09:08:05.0415798Z ansible/roles-external/kubespray/tests/scripts/delete-tf.sh +2025-11-24T09:08:05.0416064Z ansible/roles-external/kubespray/tests/scripts/testcases_run.sh +2025-11-24T09:08:05.0416360Z ansible/roles-external/kubespray/tests/scripts/testcases_cleanup.sh +2025-11-24T09:08:05.0416670Z ansible/roles-external/kubespray/tests/scripts/check_readme_versions.sh +2025-11-24T09:08:05.0417004Z ansible/roles-external/kubespray/tests/scripts/collection-build-install.sh +2025-11-24T09:08:05.0417274Z ansible/roles-external/kubespray/tests/scripts/molecule_run.sh +2025-11-24T09:08:05.0417537Z ansible/roles-external/kubespray/tests/scripts/vagrant_clean.sh +2025-11-24T09:08:05.0417831Z ansible/roles-external/kubespray/tests/scripts/vagrant-validate.sh +2025-11-24T09:08:05.0418116Z ansible/roles-external/kubespray/tests/scripts/vagrant-install.sh +2025-11-24T09:08:05.0418531Z ansible/roles-external/kubespray/tests/scripts/check-templates.py +2025-11-24T09:08:05.0418786Z ansible/roles-external/kubespray/tests/scripts/md-table/ +2025-11-24T09:08:05.0419049Z ansible/roles-external/kubespray/tests/scripts/md-table/main.py +2025-11-24T09:08:05.0419348Z ansible/roles-external/kubespray/tests/scripts/md-table/table.md.j2 +2025-11-24T09:08:05.0419604Z ansible/roles-external/kubespray/tests/scripts/create-tf.sh +2025-11-24T09:08:05.0419833Z ansible/roles-external/kubespray/tests/shebang-unit +2025-11-24T09:08:05.0420055Z ansible/roles-external/kubespray/tests/testcases/ +2025-11-24T09:08:05.0420458Z ansible/roles-external/kubespray/tests/testcases/020_check-pods-running.yml +2025-11-24T09:08:05.0420700Z ansible/roles-external/kubespray/tests/testcases/roles/ +2025-11-24T09:08:05.0421005Z ansible/roles-external/kubespray/tests/testcases/roles/cluster-dump/ +2025-11-24T09:08:05.0421329Z ansible/roles-external/kubespray/tests/testcases/roles/cluster-dump/tasks/ +2025-11-24T09:08:05.0421693Z ansible/roles-external/kubespray/tests/testcases/roles/cluster-dump/tasks/main.yml +2025-11-24T09:08:05.0422007Z ansible/roles-external/kubespray/tests/testcases/030_check-network.yml +2025-11-24T09:08:05.0422341Z ansible/roles-external/kubespray/tests/testcases/100_check-k8s-conformance.yml +2025-11-24T09:08:05.0422861Z ansible/roles-external/kubespray/tests/testcases/010_check-apiserver.yml +2025-11-24T09:08:05.0423196Z ansible/roles-external/kubespray/tests/testcases/040_check-network-adv.yml +2025-11-24T09:08:05.0423520Z ansible/roles-external/kubespray/tests/testcases/015_check-nodes-ready.yml +2025-11-24T09:08:05.0423736Z ansible/roles-external/kubespray/tests/files/ +2025-11-24T09:08:05.0424085Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-kube-router-sep.yml +2025-11-24T09:08:05.0424419Z ansible/roles-external/kubespray/tests/files/packet_opensuse-docker-cilium.yml +2025-11-24T09:08:05.0424799Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-kube-router-svc-proxy.rb +2025-11-24T09:08:05.0425131Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-weave-medium.rb +2025-11-24T09:08:05.0425451Z ansible/roles-external/kubespray/tests/files/packet_debian12-cilium.yml +2025-11-24T09:08:05.0425775Z ansible/roles-external/kubespray/tests/files/packet_rockylinux9-calico.yml +2025-11-24T09:08:05.0426094Z ansible/roles-external/kubespray/tests/files/packet_centos7-calico-ha.yml +2025-11-24T09:08:05.0426517Z ansible/roles-external/kubespray/tests/files/packet_debian11-calico-upgrade.yml +2025-11-24T09:08:05.0426988Z ansible/roles-external/kubespray/tests/files/packet_debian12-cilium-svc-proxy.yml +2025-11-24T09:08:05.0427347Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-calico-dual-stack.rb +2025-11-24T09:08:05.0427675Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-flannel-ha.yml +2025-11-24T09:08:05.0427926Z ansible/roles-external/kubespray/tests/files/custom_cni/ +2025-11-24T09:08:05.0428229Z ansible/roles-external/kubespray/tests/files/custom_cni/cilium.yaml +2025-11-24T09:08:05.0428523Z ansible/roles-external/kubespray/tests/files/custom_cni/README.md +2025-11-24T09:08:05.0428816Z ansible/roles-external/kubespray/tests/files/custom_cni/values.yaml +2025-11-24T09:08:05.0429148Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-cilium-sep.yml +2025-11-24T09:08:05.0429476Z ansible/roles-external/kubespray/tests/files/vagrant_centos7-kube-router.rb +2025-11-24T09:08:05.0429827Z ansible/roles-external/kubespray/tests/files/packet_amazon-linux-2-all-in-one.yml +2025-11-24T09:08:05.0430151Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-flannel.rb +2025-11-24T09:08:05.0430487Z ansible/roles-external/kubespray/tests/files/packet_fedora37-calico-selinux.yml +2025-11-24T09:08:05.0430832Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-docker-weave-sep.yml +2025-11-24T09:08:05.0431185Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-flannel-collection.rb +2025-11-24T09:08:05.0431652Z ansible/roles-external/kubespray/tests/files/packet_rockylinux9-cilium.yml +2025-11-24T09:08:05.0432077Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-all-in-one-ansible-2_11.yml +2025-11-24T09:08:05.0432404Z ansible/roles-external/kubespray/tests/files/tf-elastx_ubuntu20-calico.yml +2025-11-24T09:08:05.0433094Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-calico-nodelocaldns-secondary.yml +2025-11-24T09:08:05.0433425Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-crio.yml +2025-11-24T09:08:05.0433779Z ansible/roles-external/kubespray/tests/files/packet_fedora38-docker-calico.yml +2025-11-24T09:08:05.0434243Z ansible/roles-external/kubespray/tests/files/packet_centos7-flannel-addons-ha.yml +2025-11-24T09:08:05.0434633Z ansible/roles-external/kubespray/tests/files/packet_fedora37-calico-swap-selinux.yml +2025-11-24T09:08:05.0434951Z ansible/roles-external/kubespray/tests/files/packet_debian12-calico.yml +2025-11-24T09:08:05.0435306Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-ha-recover.yml +2025-11-24T09:08:05.0435643Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-weave-medium.yml +2025-11-24T09:08:05.0435990Z ansible/roles-external/kubespray/tests/files/packet_ubuntu24-calico-all-in-one.yml +2025-11-24T09:08:05.0436333Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-all-in-one.yml +2025-11-24T09:08:05.0436753Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-etcd-kubeadm-upgrade-ha.yml +2025-11-24T09:08:05.0437066Z ansible/roles-external/kubespray/tests/files/packet_fedora37-crio.yml +2025-11-24T09:08:05.0437403Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-kube-ovn.yml +2025-11-24T09:08:05.0437746Z ansible/roles-external/kubespray/tests/files/packet_ubuntu22-calico-all-in-one.yml +2025-11-24T09:08:05.0438117Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-ha-wireguard.yml +2025-11-24T09:08:05.0438520Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-all-in-one-hardening.yml +2025-11-24T09:08:05.0438844Z ansible/roles-external/kubespray/tests/files/packet_fedora38-kube-ovn.yml +2025-11-24T09:08:05.0439186Z ansible/roles-external/kubespray/tests/files/packet_ubuntu22-all-in-one-docker.yml +2025-11-24T09:08:05.0439568Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-kube-router-svc-proxy.yml +2025-11-24T09:08:05.0439882Z ansible/roles-external/kubespray/tests/files/packet_debian12-docker.yml +2025-11-24T09:08:05.0440304Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-kube-router-sep.rb +2025-11-24T09:08:05.0440654Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-all-in-one-docker.yml +2025-11-24T09:08:05.0441000Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-calico-ha-ebpf.yml +2025-11-24T09:08:05.0441325Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-calico.yml +2025-11-24T09:08:05.0441638Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-flannel.yml +2025-11-24T09:08:05.0441974Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-flannel-ha-once.yml +2025-11-24T09:08:05.0442355Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-calico-remove-node.yml +2025-11-24T09:08:05.0442918Z ansible/roles-external/kubespray/tests/files/packet_ubuntu24-calico-etcd-datastore.yml +2025-11-24T09:08:05.0443249Z ansible/roles-external/kubespray/tests/files/packet_debian11-custom-cni.yml +2025-11-24T09:08:05.0443610Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-calico-dual-stack.yml +2025-11-24T09:08:05.0443947Z ansible/roles-external/kubespray/tests/files/packet_debian12-custom-cni-helm.yml +2025-11-24T09:08:05.0444316Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-etcd-kubeadm.yml +2025-11-24T09:08:05.0444678Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-flannel-collection.yml +2025-11-24T09:08:05.0445080Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-ha-recover-noquorum.yml +2025-11-24T09:08:05.0445535Z ansible/roles-external/kubespray/tests/files/packet_centos7-multus-calico.yml +2025-11-24T09:08:05.0445865Z ansible/roles-external/kubespray/tests/files/vagrant_fedora37-kube-router.rb +2025-11-24T09:08:05.0446195Z ansible/roles-external/kubespray/tests/files/packet_fedora38-docker-weave.yml +2025-11-24T09:08:05.0446518Z ansible/roles-external/kubespray/tests/files/vagrant_fedora37-kube-router.yml +2025-11-24T09:08:05.0446860Z ansible/roles-external/kubespray/tests/files/packet_centos7-weave-upgrade-ha.yml +2025-11-24T09:08:05.0447182Z ansible/roles-external/kubespray/tests/files/packet_rockylinux8-calico.yml +2025-11-24T09:08:05.0447574Z ansible/roles-external/kubespray/tests/files/vagrant_centos7-kube-router.yml +2025-11-24T09:08:05.0447943Z ansible/roles-external/kubespray/tests/files/packet_debian11-calico-upgrade-once.yml +2025-11-24T09:08:05.0448254Z ansible/roles-external/kubespray/tests/files/packet_debian11-calico.yml +2025-11-24T09:08:05.0448560Z ansible/roles-external/kubespray/tests/files/tf-ovh_ubuntu20-calico.yml +2025-11-24T09:08:05.0448961Z ansible/roles-external/kubespray/tests/files/packet_centos7-calico-ha-once-localhost.yml +2025-11-24T09:08:05.0449302Z ansible/roles-external/kubespray/tests/files/packet_ubuntu24-all-in-one-docker.yml +2025-11-24T09:08:05.0449616Z ansible/roles-external/kubespray/tests/files/packet_debian11-macvlan.yml +2025-11-24T09:08:05.0449926Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-crio.yml +2025-11-24T09:08:05.0450308Z ansible/roles-external/kubespray/tests/files/packet_debian11-kubelet-csr-approver.yml +2025-11-24T09:08:05.0450628Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-docker.yml +2025-11-24T09:08:05.0450933Z ansible/roles-external/kubespray/tests/files/packet_debian11-docker.yml +2025-11-24T09:08:05.0451153Z ansible/roles-external/kubespray/tests/common/ +2025-11-24T09:08:05.0451480Z ansible/roles-external/kubespray/tests/common/_docker_hub_registry_mirror.yml +2025-11-24T09:08:05.0451802Z ansible/roles-external/kubespray/tests/common/_kubespray_test_settings.yml +2025-11-24T09:08:05.0452034Z ansible/roles-external/kubespray/tests/ansible.cfg +2025-11-24T09:08:05.0452277Z ansible/roles-external/kubespray/tests/cloud_playbooks/ +2025-11-24T09:08:05.0452543Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/ +2025-11-24T09:08:05.0453007Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/cleanup-packet-ci/ +2025-11-24T09:08:05.0453482Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/cleanup-packet-ci/tasks/ +2025-11-24T09:08:05.0453884Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/cleanup-packet-ci/tasks/main.yml +2025-11-24T09:08:05.0454197Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/ +2025-11-24T09:08:05.0454536Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/defaults/ +2025-11-24T09:08:05.0454910Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/defaults/main.yml +2025-11-24T09:08:05.0455236Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/ +2025-11-24T09:08:05.0455626Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/delete-vms.yml +2025-11-24T09:08:05.0456000Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/create-vms.yml +2025-11-24T09:08:05.0456403Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/cleanup-old-vms.yml +2025-11-24T09:08:05.0456769Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/main.yml +2025-11-24T09:08:05.0457093Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/vars/ +2025-11-24T09:08:05.0457454Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/vars/main.yml +2025-11-24T09:08:05.0457795Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/templates/ +2025-11-24T09:08:05.0458190Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/templates/inventory.j2 +2025-11-24T09:08:05.0458699Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/templates/vm.yml.j2 +2025-11-24T09:08:05.0459022Z ansible/roles-external/kubespray/tests/cloud_playbooks/delete-packet.yml +2025-11-24T09:08:05.0459332Z ansible/roles-external/kubespray/tests/cloud_playbooks/wait-for-ssh.yml +2025-11-24T09:08:05.0459646Z ansible/roles-external/kubespray/tests/cloud_playbooks/cleanup-packet.yml +2025-11-24T09:08:05.0459961Z ansible/roles-external/kubespray/tests/cloud_playbooks/create-packet.yml +2025-11-24T09:08:05.0460189Z ansible/roles-external/kubespray/tests/templates/ +2025-11-24T09:08:05.0460486Z ansible/roles-external/kubespray/tests/templates/fake_hosts.yml.j2 +2025-11-24T09:08:05.0460774Z ansible/roles-external/kubespray/tests/Makefile +2025-11-24T09:08:05.0460984Z ansible/roles-external/kubespray/inventory/ +2025-11-24T09:08:05.0461208Z ansible/roles-external/kubespray/inventory/local/ +2025-11-24T09:08:05.0461463Z ansible/roles-external/kubespray/inventory/local/hosts.ini +2025-11-24T09:08:05.0461723Z ansible/roles-external/kubespray/inventory/local/group_vars +2025-11-24T09:08:05.0461953Z ansible/roles-external/kubespray/inventory/sample/ +2025-11-24T09:08:05.0462207Z ansible/roles-external/kubespray/inventory/sample/patches/ +2025-11-24T09:08:05.0462618Z ansible/roles-external/kubespray/inventory/sample/patches/kube-controller-manager+merge.yaml +2025-11-24T09:08:05.0463079Z ansible/roles-external/kubespray/inventory/sample/patches/kube-scheduler+merge.yaml +2025-11-24T09:08:05.0463348Z ansible/roles-external/kubespray/inventory/sample/group_vars/ +2025-11-24T09:08:05.0463669Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/ +2025-11-24T09:08:05.0464099Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-kube-router.yml +2025-11-24T09:08:05.0464500Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-weave.yml +2025-11-24T09:08:05.0464899Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-flannel.yml +2025-11-24T09:08:05.0465312Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-custom-cni.yml +2025-11-24T09:08:05.0465699Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-macvlan.yml +2025-11-24T09:08:05.0466085Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-kube-ovn.yml +2025-11-24T09:08:05.0466436Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/addons.yml +2025-11-24T09:08:05.0466902Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml +2025-11-24T09:08:05.0467289Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-calico.yml +2025-11-24T09:08:05.0467674Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-cilium.yml +2025-11-24T09:08:05.0467958Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/ +2025-11-24T09:08:05.0468274Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/oci.yml +2025-11-24T09:08:05.0468599Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/offline.yml +2025-11-24T09:08:05.0468917Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/azure.yml +2025-11-24T09:08:05.0469236Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/cri-o.yml +2025-11-24T09:08:05.0469539Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/all.yml +2025-11-24T09:08:05.0469866Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/upcloud.yml +2025-11-24T09:08:05.0470209Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/huaweicloud.yml +2025-11-24T09:08:05.0470537Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/coreos.yml +2025-11-24T09:08:05.0470846Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/gcp.yml +2025-11-24T09:08:05.0471160Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/etcd.yml +2025-11-24T09:08:05.0471498Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/containerd.yml +2025-11-24T09:08:05.0471936Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/hcloud.yml +2025-11-24T09:08:05.0472248Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/aws.yml +2025-11-24T09:08:05.0472567Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/docker.yml +2025-11-24T09:08:05.0472996Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/openstack.yml +2025-11-24T09:08:05.0473325Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/vsphere.yml +2025-11-24T09:08:05.0473632Z ansible/roles-external/kubespray/inventory/sample/group_vars/etcd.yml +2025-11-24T09:08:05.0473970Z ansible/roles-external/kubespray/inventory/sample/inventory.ini +2025-11-24T09:08:05.0474193Z ansible/roles-external/kubespray/.editorconfig +2025-11-24T09:08:05.0474397Z ansible/roles-external/kubespray/OWNERS +2025-11-24T09:08:05.0474650Z ansible/roles-external/kubespray/_config.yml +2025-11-24T09:08:05.0474868Z ansible/roles-external/kubespray/.md_style.rb +2025-11-24T09:08:05.0475125Z ansible/roles-external/kubespray/.pre-commit-config.yaml +2025-11-24T09:08:05.0475360Z ansible/roles-external/kubespray/.ansible-lint-ignore +2025-11-24T09:08:05.0475579Z ansible/roles-external/kubespray/OWNERS_ALIASES +2025-11-24T09:08:05.0475782Z ansible/roles-external/kubespray/Makefile +2025-11-24T09:08:05.0475991Z ansible/roles-external/kubespray/RELEASE.md +2025-11-24T09:08:05.0476197Z ansible/roles-external/ansible-minio/ +2025-11-24T09:08:05.0476425Z ansible/roles-external/ansible-minio/CHANGELOG.md +2025-11-24T09:08:05.0476644Z ansible/roles-external/ansible-minio/defaults/ +2025-11-24T09:08:05.0476891Z ansible/roles-external/ansible-minio/defaults/main.yml +2025-11-24T09:08:05.0477096Z ansible/roles-external/ansible-minio/.git +2025-11-24T09:08:05.0477307Z ansible/roles-external/ansible-minio/.yamllint +2025-11-24T09:08:05.0477525Z ansible/roles-external/ansible-minio/LICENSE.md +2025-11-24T09:08:05.0477731Z ansible/roles-external/ansible-minio/meta/ +2025-11-24T09:08:05.0477959Z ansible/roles-external/ansible-minio/meta/main.yml +2025-11-24T09:08:05.0478212Z ansible/roles-external/ansible-minio/.travis.disabled.yml +2025-11-24T09:08:05.0478470Z ansible/roles-external/ansible-minio/test-requirements.txt +2025-11-24T09:08:05.0478679Z ansible/roles-external/ansible-minio/tasks/ +2025-11-24T09:08:05.0478939Z ansible/roles-external/ansible-minio/tasks/install-server.yml +2025-11-24T09:08:05.0479324Z ansible/roles-external/ansible-minio/tasks/install-client.yml +2025-11-24T09:08:05.0479567Z ansible/roles-external/ansible-minio/tasks/python_sni.yml +2025-11-24T09:08:05.0479797Z ansible/roles-external/ansible-minio/tasks/main.yml +2025-11-24T09:08:05.0480015Z ansible/roles-external/ansible-minio/handlers/ +2025-11-24T09:08:05.0480253Z ansible/roles-external/ansible-minio/handlers/main.yml +2025-11-24T09:08:05.0480476Z ansible/roles-external/ansible-minio/.gitignore +2025-11-24T09:08:05.0480687Z ansible/roles-external/ansible-minio/README.md +2025-11-24T09:08:05.0480900Z ansible/roles-external/ansible-minio/tox.ini +2025-11-24T09:08:05.0481142Z ansible/roles-external/ansible-minio/.travis.disabled/ +2025-11-24T09:08:05.0481425Z ansible/roles-external/ansible-minio/.travis.disabled/releaser.sh +2025-11-24T09:08:05.0481627Z ansible/roles-external/ansible-minio/vars/ +2025-11-24T09:08:05.0481853Z ansible/roles-external/ansible-minio/vars/main.yml +2025-11-24T09:08:05.0482067Z ansible/roles-external/ansible-minio/molecule/ +2025-11-24T09:08:05.0482307Z ansible/roles-external/ansible-minio/molecule/default/ +2025-11-24T09:08:05.0482599Z ansible/roles-external/ansible-minio/molecule/default/playbook.yml +2025-11-24T09:08:05.0482997Z ansible/roles-external/ansible-minio/molecule/default/molecule.yml +2025-11-24T09:08:05.0483257Z ansible/roles-external/ansible-minio/molecule/default/tests/ +2025-11-24T09:08:05.0483613Z ansible/roles-external/ansible-minio/molecule/default/tests/test_minio_default.py +2025-11-24T09:08:05.0483849Z ansible/roles-external/ansible-minio/molecule/cluster/ +2025-11-24T09:08:05.0484243Z ansible/roles-external/ansible-minio/molecule/cluster/playbook.yml +2025-11-24T09:08:05.0484530Z ansible/roles-external/ansible-minio/molecule/cluster/molecule.yml +2025-11-24T09:08:05.0484789Z ansible/roles-external/ansible-minio/molecule/cluster/tests/ +2025-11-24T09:08:05.0485127Z ansible/roles-external/ansible-minio/molecule/cluster/tests/test_minio_cluster.py +2025-11-24T09:08:05.0485373Z ansible/roles-external/ansible-minio/molecule/resources/ +2025-11-24T09:08:05.0485654Z ansible/roles-external/ansible-minio/molecule/resources/vars.yml +2025-11-24T09:08:05.0485916Z ansible/roles-external/ansible-minio/molecule/resources/tests/ +2025-11-24T09:08:05.0670878Z ansible/roles-external/ansible-minio/molecule/resources/tests/test_minio_common.py +2025-11-24T09:08:05.0671290Z ansible/roles-external/ansible-minio/molecule/resources/destroy.yml +2025-11-24T09:08:05.0671633Z ansible/roles-external/ansible-minio/molecule/resources/prepare.yml +2025-11-24T09:08:05.0671958Z ansible/roles-external/ansible-minio/molecule/resources/create.yml +2025-11-24T09:08:05.0672242Z ansible/roles-external/ansible-minio/molecule/client/ +2025-11-24T09:08:05.0672543Z ansible/roles-external/ansible-minio/molecule/client/verify.yml +2025-11-24T09:08:05.0673086Z ansible/roles-external/ansible-minio/molecule/client/playbook.yml +2025-11-24T09:08:05.0673400Z ansible/roles-external/ansible-minio/molecule/client/molecule.yml +2025-11-24T09:08:05.0673713Z ansible/roles-external/ansible-minio/molecule/alternative/ +2025-11-24T09:08:05.0674106Z ansible/roles-external/ansible-minio/molecule/alternative/playbook.yml +2025-11-24T09:08:05.0674473Z ansible/roles-external/ansible-minio/molecule/alternative/molecule.yml +2025-11-24T09:08:05.0674826Z ansible/roles-external/ansible-minio/molecule/alternative/tests/ +2025-11-24T09:08:05.0675320Z ansible/roles-external/ansible-minio/molecule/alternative/tests/test_minio_alternative.py +2025-11-24T09:08:05.0675616Z ansible/roles-external/ansible-minio/molecule/layouts/ +2025-11-24T09:08:05.0675968Z ansible/roles-external/ansible-minio/molecule/layouts/playbook.yml +2025-11-24T09:08:05.0676319Z ansible/roles-external/ansible-minio/molecule/layouts/molecule.yml +2025-11-24T09:08:05.0676632Z ansible/roles-external/ansible-minio/molecule/layouts/tests/ +2025-11-24T09:08:05.0677091Z ansible/roles-external/ansible-minio/molecule/layouts/tests/test_minio_default.py +2025-11-24T09:08:05.0677375Z ansible/roles-external/ansible-minio/MAINTAINERS.md +2025-11-24T09:08:05.0677974Z ansible/roles-external/ansible-minio/templates/ +2025-11-24T09:08:05.0678370Z ansible/roles-external/ansible-minio/templates/minio.init.j2 +2025-11-24T09:08:05.0679046Z ansible/roles-external/ansible-minio/templates/minio.service.j2 +2025-11-24T09:08:05.0685845Z ansible/roles-external/ansible-minio/templates/minio.env.j2 +2025-11-24T09:08:05.0686254Z ansible/roles-external/ansible-minio/templates/minio.old-credentials.env.j2 +2025-11-24T09:08:05.0686483Z ansible/roles-external/ansible-ntp-verify/ +2025-11-24T09:08:05.0686722Z ansible/roles-external/ansible-ntp-verify/defaults/ +2025-11-24T09:08:05.0686995Z ansible/roles-external/ansible-ntp-verify/defaults/main.yml +2025-11-24T09:08:05.0687218Z ansible/roles-external/ansible-ntp-verify/LICENSE +2025-11-24T09:08:05.0687432Z ansible/roles-external/ansible-ntp-verify/.git +2025-11-24T09:08:05.0687683Z ansible/roles-external/ansible-ntp-verify/meta/ +2025-11-24T09:08:05.0687945Z ansible/roles-external/ansible-ntp-verify/meta/main.yml +2025-11-24T09:08:05.0688177Z ansible/roles-external/ansible-ntp-verify/tasks/ +2025-11-24T09:08:05.0688419Z ansible/roles-external/ansible-ntp-verify/tasks/main.yml +2025-11-24T09:08:05.0926901Z ansible/roles-external/ansible-ntp-verify/README.md +2025-11-24T09:08:05.0927285Z ansible/roles-external/ansible-role-java/ +2025-11-24T09:08:05.0927613Z ansible/roles-external/ansible-role-java/defaults/ +2025-11-24T09:08:05.0927989Z ansible/roles-external/ansible-role-java/defaults/main.yml +2025-11-24T09:08:05.0928297Z ansible/roles-external/ansible-role-java/LICENSE +2025-11-24T09:08:05.0928592Z ansible/roles-external/ansible-role-java/.git +2025-11-24T09:08:05.0929330Z ansible/roles-external/ansible-role-java/.yamllint +2025-11-24T09:08:05.0929643Z ansible/roles-external/ansible-role-java/meta/ +2025-11-24T09:08:05.0929986Z ansible/roles-external/ansible-role-java/meta/main.yml +2025-11-24T09:08:05.0930286Z ansible/roles-external/ansible-role-java/.github/ +2025-11-24T09:08:05.0930639Z ansible/roles-external/ansible-role-java/.github/workflows/ +2025-11-24T09:08:05.0931036Z ansible/roles-external/ansible-role-java/.github/workflows/ci.yml +2025-11-24T09:08:05.0931469Z ansible/roles-external/ansible-role-java/.github/workflows/release.yml +2025-11-24T09:08:05.0931923Z ansible/roles-external/ansible-role-java/.github/stale.yml +2025-11-24T09:08:05.0932290Z ansible/roles-external/ansible-role-java/.github/FUNDING.yml +2025-11-24T09:08:05.0932599Z ansible/roles-external/ansible-role-java/tasks/ +2025-11-24T09:08:05.0933264Z ansible/roles-external/ansible-role-java/tasks/setup-Debian.yml +2025-11-24T09:08:05.0933656Z ansible/roles-external/ansible-role-java/tasks/setup-FreeBSD.yml +2025-11-24T09:08:05.0934033Z ansible/roles-external/ansible-role-java/tasks/setup-RedHat.yml +2025-11-24T09:08:05.0934363Z ansible/roles-external/ansible-role-java/tasks/main.yml +2025-11-24T09:08:05.0934640Z ansible/roles-external/ansible-role-java/.gitignore +2025-11-24T09:08:05.0934892Z ansible/roles-external/ansible-role-java/README.md +2025-11-24T09:08:05.0935160Z ansible/roles-external/ansible-role-java/.ansible-lint +2025-11-24T09:08:05.0935404Z ansible/roles-external/ansible-role-java/vars/ +2025-11-24T09:08:05.0935688Z ansible/roles-external/ansible-role-java/vars/Ubuntu-22.yml +2025-11-24T09:08:05.0935974Z ansible/roles-external/ansible-role-java/vars/Ubuntu-14.yml +2025-11-24T09:08:05.0936255Z ansible/roles-external/ansible-role-java/vars/RedHat-9.yml +2025-11-24T09:08:05.0936533Z ansible/roles-external/ansible-role-java/vars/Ubuntu-16.yml +2025-11-24T09:08:05.0936803Z ansible/roles-external/ansible-role-java/vars/Debian-10.yml +2025-11-24T09:08:05.0937086Z ansible/roles-external/ansible-role-java/vars/Ubuntu-12.yml +2025-11-24T09:08:05.0937370Z ansible/roles-external/ansible-role-java/vars/FreeBSD.yml +2025-11-24T09:08:05.0937645Z ansible/roles-external/ansible-role-java/vars/Debian-11.yml +2025-11-24T09:08:05.0937924Z ansible/roles-external/ansible-role-java/vars/RedHat-8.yml +2025-11-24T09:08:05.0938201Z ansible/roles-external/ansible-role-java/vars/Ubuntu-20.yml +2025-11-24T09:08:05.1040194Z ansible/roles-external/ansible-role-java/vars/RedHat-7.yml +2025-11-24T09:08:05.1040653Z ansible/roles-external/ansible-role-java/vars/Fedora.yml +2025-11-24T09:08:05.1041078Z ansible/roles-external/ansible-role-java/vars/Debian-9.yml +2025-11-24T09:08:05.1041378Z ansible/roles-external/ansible-role-java/vars/Debian-8.yml +2025-11-24T09:08:05.1041735Z ansible/roles-external/ansible-role-java/vars/Ubuntu-18.yml +2025-11-24T09:08:05.1042133Z ansible/roles-external/ansible-role-java/molecule/ +2025-11-24T09:08:05.1042565Z ansible/roles-external/ansible-role-java/molecule/default/ +2025-11-24T09:08:05.1043290Z ansible/roles-external/ansible-role-java/molecule/default/converge.yml +2025-11-24T09:08:05.1043622Z ansible/roles-external/ansible-role-java/molecule/default/molecule.yml +2025-11-24T09:08:05.1043871Z ansible/roles-external/ansible-role-java/templates/ +2025-11-24T09:08:05.1044181Z ansible/roles-external/ansible-role-java/templates/java_home.sh.j2 +2025-11-24T09:08:05.1044399Z ansible/roles-external/ansible-role-ntp/ +2025-11-24T09:08:05.1044645Z ansible/roles-external/ansible-role-ntp/defaults/ +2025-11-24T09:08:05.1044907Z ansible/roles-external/ansible-role-ntp/defaults/main.yml +2025-11-24T09:08:05.1045134Z ansible/roles-external/ansible-role-ntp/LICENSE +2025-11-24T09:08:05.1045356Z ansible/roles-external/ansible-role-ntp/.git +2025-11-24T09:08:05.1045578Z ansible/roles-external/ansible-role-ntp/meta/ +2025-11-24T09:08:05.1045823Z ansible/roles-external/ansible-role-ntp/meta/main.yml +2025-11-24T09:08:05.1046048Z ansible/roles-external/ansible-role-ntp/tasks/ +2025-11-24T09:08:05.1046327Z ansible/roles-external/ansible-role-ntp/tasks/clock-rhel-6.yml +2025-11-24T09:08:05.1046880Z ansible/roles-external/ansible-role-ntp/tasks/main.yml +2025-11-24T09:08:05.1047121Z ansible/roles-external/ansible-role-ntp/handlers/ +2025-11-24T09:08:05.1047378Z ansible/roles-external/ansible-role-ntp/handlers/main.yml +2025-11-24T09:08:05.1047610Z ansible/roles-external/ansible-role-ntp/.gitignore +2025-11-24T09:08:05.1047840Z ansible/roles-external/ansible-role-ntp/README.md +2025-11-24T09:08:05.1048082Z ansible/roles-external/ansible-role-ntp/.travis.yml +2025-11-24T09:08:05.1048303Z ansible/roles-external/ansible-role-ntp/vars/ +2025-11-24T09:08:05.1048647Z ansible/roles-external/ansible-role-ntp/vars/RedHat.yml +2025-11-24T09:08:05.1048893Z ansible/roles-external/ansible-role-ntp/vars/Suse.yml +2025-11-24T09:08:05.1049149Z ansible/roles-external/ansible-role-ntp/vars/FreeBSD.yml +2025-11-24T09:08:05.1049398Z ansible/roles-external/ansible-role-ntp/vars/Debian.yml +2025-11-24T09:08:05.1049663Z ansible/roles-external/ansible-role-ntp/vars/Archlinux.yml +2025-11-24T09:08:05.1049891Z ansible/roles-external/ansible-role-ntp/tests/ +2025-11-24T09:08:05.1050143Z ansible/roles-external/ansible-role-ntp/tests/test.yml +2025-11-24T09:08:05.1050391Z ansible/roles-external/ansible-role-ntp/tests/README.md +2025-11-24T09:08:05.1050628Z ansible/roles-external/ansible-role-ntp/templates/ +2025-11-24T09:08:05.1050887Z ansible/roles-external/ansible-role-ntp/templates/clock.j2 +2025-11-24T09:08:05.1051164Z ansible/roles-external/ansible-role-ntp/templates/ntp.conf.j2 +2025-11-24T09:08:05.1051367Z ansible/roles-external/hostname/ +2025-11-24T09:08:05.1051585Z ansible/roles-external/hostname/Vagrantfile +2025-11-24T09:08:05.1051795Z ansible/roles-external/hostname/defaults/ +2025-11-24T09:08:05.1052018Z ansible/roles-external/hostname/defaults/main.yml +2025-11-24T09:08:05.1161374Z ansible/roles-external/hostname/LICENSE +2025-11-24T09:08:05.1163386Z ansible/roles-external/hostname/test.yml +2025-11-24T09:08:05.1163742Z ansible/roles-external/hostname/.git +2025-11-24T09:08:05.1164073Z ansible/roles-external/hostname/meta/ +2025-11-24T09:08:05.1164471Z ansible/roles-external/hostname/meta/main.yml +2025-11-24T09:08:05.1164987Z ansible/roles-external/hostname/tasks/ +2025-11-24T09:08:05.1166374Z ansible/roles-external/hostname/tasks/main.yml +2025-11-24T09:08:05.1166612Z ansible/roles-external/hostname/.gitignore +2025-11-24T09:08:05.1168010Z ansible/roles-external/hostname/README.md +2025-11-24T09:08:05.1168803Z ansible/roles-external/hostname/vagrant-inventory +2025-11-24T09:08:05.1169384Z ansible/roles-external/hostname/.travis.yml +2025-11-24T09:08:05.1169786Z ansible/roles-external/hostname/vars/ +2025-11-24T09:08:05.1170348Z ansible/roles-external/hostname/vars/main.yml +2025-11-24T09:08:05.1174094Z ansible/roles-external/elasticsearch/ +2025-11-24T09:08:05.1174515Z ansible/roles-external/elasticsearch/CHANGELOG.md +2025-11-24T09:08:05.1174919Z ansible/roles-external/elasticsearch/helpers/ +2025-11-24T09:08:05.1175562Z ansible/roles-external/elasticsearch/helpers/bumper.py +2025-11-24T09:08:05.1175968Z ansible/roles-external/elasticsearch/defaults/ +2025-11-24T09:08:05.1179454Z ansible/roles-external/elasticsearch/defaults/main.yml +2025-11-24T09:08:05.1179871Z ansible/roles-external/elasticsearch/LICENSE +2025-11-24T09:08:05.1180454Z ansible/roles-external/elasticsearch/.git +2025-11-24T09:08:05.1180702Z ansible/roles-external/elasticsearch/meta/ +2025-11-24T09:08:05.1229831Z ansible/roles-external/elasticsearch/meta/main.yml +2025-11-24T09:08:05.1230155Z ansible/roles-external/elasticsearch/.github/ +2025-11-24T09:08:05.1230686Z ansible/roles-external/elasticsearch/.github/issue_template.md +2025-11-24T09:08:05.1231185Z ansible/roles-external/elasticsearch/.github/stale.yml +2025-11-24T09:08:05.1231496Z ansible/roles-external/elasticsearch/filter_plugins/ +2025-11-24T09:08:05.1231845Z ansible/roles-external/elasticsearch/filter_plugins/custom.py +2025-11-24T09:08:05.1232113Z ansible/roles-external/elasticsearch/Gemfile +2025-11-24T09:08:05.1232369Z ansible/roles-external/elasticsearch/tasks/ +2025-11-24T09:08:05.1233682Z ansible/roles-external/elasticsearch/tasks/elasticsearch-plugins.yml +2025-11-24T09:08:05.1233995Z ansible/roles-external/elasticsearch/tasks/xpack/ +2025-11-24T09:08:05.1234416Z ansible/roles-external/elasticsearch/tasks/xpack/elasticsearch-xpack.yml +2025-11-24T09:08:05.1234762Z ansible/roles-external/elasticsearch/tasks/xpack/security/ +2025-11-24T09:08:05.1235341Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-xpack-activation.yml +2025-11-24T09:08:05.1235859Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-xpack-trial-activation.yml +2025-11-24T09:08:05.1236563Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-security-file.yml +2025-11-24T09:08:05.1237338Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-security.yml +2025-11-24T09:08:05.1238015Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-security-native.yml +2025-11-24T09:08:05.1238330Z ansible/roles-external/elasticsearch/tasks/snapshot-release.yml +2025-11-24T09:08:05.1238599Z ansible/roles-external/elasticsearch/tasks/java.yml +2025-11-24T09:08:05.1239278Z ansible/roles-external/elasticsearch/tasks/elasticsearch-RedHat.yml +2025-11-24T09:08:05.1239783Z ansible/roles-external/elasticsearch/tasks/elasticsearch-parameters.yml +2025-11-24T09:08:05.1240166Z ansible/roles-external/elasticsearch/tasks/elasticsearch-optional-user.yml +2025-11-24T09:08:05.1240521Z ansible/roles-external/elasticsearch/tasks/elasticsearch-template.yml +2025-11-24T09:08:05.1240851Z ansible/roles-external/elasticsearch/tasks/elasticsearch-Debian.yml +2025-11-24T09:08:05.1241174Z ansible/roles-external/elasticsearch/tasks/elasticsearch-config.yml +2025-11-24T09:08:05.1241485Z ansible/roles-external/elasticsearch/tasks/elasticsearch-ssl.yml +2025-11-24T09:08:05.1241878Z ansible/roles-external/elasticsearch/tasks/elasticsearch-RedHat-version-lock.yml +2025-11-24T09:08:05.1242303Z ansible/roles-external/elasticsearch/tasks/elasticsearch.yml +2025-11-24T09:08:05.1242792Z ansible/roles-external/elasticsearch/tasks/main.yml +2025-11-24T09:08:05.1243204Z ansible/roles-external/elasticsearch/tasks/compatibility-variables.yml +2025-11-24T09:08:05.1243456Z ansible/roles-external/elasticsearch/.kitchen.yml +2025-11-24T09:08:05.1243695Z ansible/roles-external/elasticsearch/handlers/ +2025-11-24T09:08:05.1243961Z ansible/roles-external/elasticsearch/handlers/main.yml +2025-11-24T09:08:05.1244320Z ansible/roles-external/elasticsearch/.gitignore +2025-11-24T09:08:05.1244552Z ansible/roles-external/elasticsearch/README.md +2025-11-24T09:08:05.1244795Z ansible/roles-external/elasticsearch/Gemfile.lock +2025-11-24T09:08:05.1245079Z ansible/roles-external/elasticsearch/.ruby-version +2025-11-24T09:08:05.1245306Z ansible/roles-external/elasticsearch/docs/ +2025-11-24T09:08:05.1245586Z ansible/roles-external/elasticsearch/docs/ssl-tls-setup.md +2025-11-24T09:08:05.1245860Z ansible/roles-external/elasticsearch/docs/multi-instance.md +2025-11-24T09:08:05.1246066Z ansible/roles-external/elasticsearch/files/ +2025-11-24T09:08:05.1246298Z ansible/roles-external/elasticsearch/files/systemd/ +2025-11-24T09:08:05.1246631Z ansible/roles-external/elasticsearch/files/systemd/elasticsearch_override.conf +2025-11-24T09:08:05.1246845Z ansible/roles-external/elasticsearch/ansible.cfg +2025-11-24T09:08:05.1247047Z ansible/roles-external/elasticsearch/vars/ +2025-11-24T09:08:05.1247276Z ansible/roles-external/elasticsearch/vars/RedHat.yml +2025-11-24T09:08:05.1247500Z ansible/roles-external/elasticsearch/vars/Debian.yml +2025-11-24T09:08:05.1247718Z ansible/roles-external/elasticsearch/vars/main.yml +2025-11-24T09:08:05.1247924Z ansible/roles-external/elasticsearch/test/ +2025-11-24T09:08:05.1248164Z ansible/roles-external/elasticsearch/test/integration/ +2025-11-24T09:08:05.1248486Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade-trial +2025-11-24T09:08:05.1248738Z ansible/roles-external/elasticsearch/test/integration/xpack/ +2025-11-24T09:08:05.1249038Z ansible/roles-external/elasticsearch/test/integration/xpack/xpack.yml +2025-11-24T09:08:05.1249482Z ansible/roles-external/elasticsearch/test/integration/xpack/serverspec/ +2025-11-24T09:08:05.1249867Z ansible/roles-external/elasticsearch/test/integration/xpack/serverspec/default_spec.rb +2025-11-24T09:08:05.1250136Z ansible/roles-external/elasticsearch/test/integration/helpers/ +2025-11-24T09:08:05.1250456Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/ +2025-11-24T09:08:05.1250823Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/oss_spec.rb +2025-11-24T09:08:05.1251219Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/oss_upgrade_spec.rb +2025-11-24T09:08:05.1251694Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/issue_test_spec.rb +2025-11-24T09:08:05.1252071Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/spec_helper.rb +2025-11-24T09:08:05.1252405Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/Gemfile +2025-11-24T09:08:05.1252988Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/oss_to_xpack_upgrade_spec.rb +2025-11-24T09:08:05.1253398Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/xpack_upgrade_spec.rb +2025-11-24T09:08:05.1253770Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/shared_spec.rb +2025-11-24T09:08:05.1254032Z ansible/roles-external/elasticsearch/test/integration/debug.yml +2025-11-24T09:08:05.1254341Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade.yml +2025-11-24T09:08:05.1254639Z ansible/roles-external/elasticsearch/test/integration/issue-test.yml +2025-11-24T09:08:05.1254893Z ansible/roles-external/elasticsearch/test/integration/oss/ +2025-11-24T09:08:05.1382438Z ansible/roles-external/elasticsearch/test/integration/oss/serverspec/ +2025-11-24T09:08:05.1383306Z ansible/roles-external/elasticsearch/test/integration/oss/serverspec/default_spec.rb +2025-11-24T09:08:05.1383875Z ansible/roles-external/elasticsearch/test/integration/oss/oss.yml +2025-11-24T09:08:05.1384520Z ansible/roles-external/elasticsearch/test/integration/issue-test/ +2025-11-24T09:08:05.1385149Z ansible/roles-external/elasticsearch/test/integration/issue-test/issue-test.yml +2025-11-24T09:08:05.1385766Z ansible/roles-external/elasticsearch/test/integration/issue-test/serverspec/ +2025-11-24T09:08:05.1386532Z ansible/roles-external/elasticsearch/test/integration/issue-test/serverspec/default_spec.rb +2025-11-24T09:08:05.1387426Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade-trial.yml +2025-11-24T09:08:05.1387953Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade/ +2025-11-24T09:08:05.1388612Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade/serverspec/ +2025-11-24T09:08:05.1389330Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade/serverspec/default_spec.rb +2025-11-24T09:08:05.1389979Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade/xpack-upgrade.yml +2025-11-24T09:08:05.1390628Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade.yml +2025-11-24T09:08:05.1391204Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade/ +2025-11-24T09:08:05.1391961Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade/oss-to-xpack-upgrade.yml +2025-11-24T09:08:05.1392845Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade/serverspec/ +2025-11-24T09:08:05.1393623Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade/serverspec/default_spec.rb +2025-11-24T09:08:05.1394125Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade/ +2025-11-24T09:08:05.1394732Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade/oss-upgrade.yml +2025-11-24T09:08:05.1395304Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade/serverspec/ +2025-11-24T09:08:05.1396058Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade/serverspec/default_spec.rb +2025-11-24T09:08:05.1396742Z ansible/roles-external/elasticsearch/test/integration/files/ +2025-11-24T09:08:05.1397286Z ansible/roles-external/elasticsearch/test/integration/files/custom_config/ +2025-11-24T09:08:05.1397963Z ansible/roles-external/elasticsearch/test/integration/files/custom_config/jvm.options +2025-11-24T09:08:05.1398596Z ansible/roles-external/elasticsearch/test/integration/files/custom_config/elasticsearch +2025-11-24T09:08:05.1399265Z ansible/roles-external/elasticsearch/test/integration/files/custom_config/log4j2.properties +2025-11-24T09:08:05.1399743Z ansible/roles-external/elasticsearch/test/integration/files/certs/ +2025-11-24T09:08:05.1400687Z ansible/roles-external/elasticsearch/test/integration/files/certs/shared-store-no-password-ca.p12 +2025-11-24T09:08:05.1401371Z ansible/roles-external/elasticsearch/test/integration/files/certs/keystore-password-ca.p12 +2025-11-24T09:08:05.1402057Z ansible/roles-external/elasticsearch/test/integration/files/certs/truststore-password-ca.p12 +2025-11-24T09:08:05.1402976Z ansible/roles-external/elasticsearch/test/integration/files/certs/keystore-password.p12 +2025-11-24T09:08:05.1403775Z ansible/roles-external/elasticsearch/test/integration/files/certs/truststore-password.p12 +2025-11-24T09:08:05.1404476Z ansible/roles-external/elasticsearch/test/integration/files/certs/shared-store-no-password.p12 +2025-11-24T09:08:05.1405022Z ansible/roles-external/elasticsearch/test/integration/files/templates-6.x/ +2025-11-24T09:08:05.1405703Z ansible/roles-external/elasticsearch/test/integration/files/templates-6.x/basic.json +2025-11-24T09:08:05.1406240Z ansible/roles-external/elasticsearch/test/integration/files/templates-7.x/ +2025-11-24T09:08:05.1406844Z ansible/roles-external/elasticsearch/test/integration/files/templates-7.x/basic.json +2025-11-24T09:08:05.1407539Z ansible/roles-external/elasticsearch/test/integration/xpack.yml +2025-11-24T09:08:05.1408170Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade.yml +2025-11-24T09:08:05.1408643Z ansible/roles-external/elasticsearch/test/integration/oss.yml +2025-11-24T09:08:05.1409069Z ansible/roles-external/elasticsearch/test/matrix.yml +2025-11-24T09:08:05.1409420Z ansible/roles-external/elasticsearch/.ci/ +2025-11-24T09:08:05.1409792Z ansible/roles-external/elasticsearch/.ci/jobs/ +2025-11-24T09:08:05.1410230Z ansible/roles-external/elasticsearch/.ci/jobs/defaults.yml +2025-11-24T09:08:05.1411042Z ansible/roles-external/elasticsearch/.ci/jobs/elastic+ansible-elasticsearch+pull-request.yml +2025-11-24T09:08:05.1412032Z ansible/roles-external/elasticsearch/.ci/jobs/elastic+ansible-elasticsearch+master.yml +2025-11-24T09:08:05.1412417Z ansible/roles-external/elasticsearch/templates/ +2025-11-24T09:08:05.1413116Z ansible/roles-external/elasticsearch/templates/elasticsearch.yml.j2 +2025-11-24T09:08:05.1413591Z ansible/roles-external/elasticsearch/templates/elasticsearch.j2 +2025-11-24T09:08:05.1414075Z ansible/roles-external/elasticsearch/templates/jvm.options.j2 +2025-11-24T09:08:05.1414537Z ansible/roles-external/elasticsearch/templates/override.conf.j2 +2025-11-24T09:08:05.1415099Z ansible/roles-external/elasticsearch/templates/elasticsearch.repo +2025-11-24T09:08:05.1415525Z ansible/roles-external/elasticsearch/templates/security/ +2025-11-24T09:08:05.1416053Z ansible/roles-external/elasticsearch/templates/security/users_roles.j2 +2025-11-24T09:08:05.1416613Z ansible/roles-external/elasticsearch/templates/security/roles.yml.j2 +2025-11-24T09:08:05.1417174Z ansible/roles-external/elasticsearch/templates/security/role_mapping.yml.j2 +2025-11-24T09:08:05.1417528Z ansible/roles-external/elasticsearch/Makefile +2025-11-24T09:08:05.1417840Z ansible/roles-external/sft/ +2025-11-24T09:08:05.1418162Z ansible/roles-external/sft/LICENSE +2025-11-24T09:08:05.1418477Z ansible/roles-external/sft/.git +2025-11-24T09:08:05.1418796Z ansible/roles-external/sft/roles/ +2025-11-24T09:08:05.1419161Z ansible/roles-external/sft/roles/sft-monitoring-certs/ +2025-11-24T09:08:05.1419607Z ansible/roles-external/sft/roles/sft-monitoring-certs/meta/ +2025-11-24T09:08:05.1420332Z ansible/roles-external/sft/roles/sft-monitoring-certs/meta/main.yml +2025-11-24T09:08:05.1420856Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/ +2025-11-24T09:08:05.1421450Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/ca-private-key.yml +2025-11-24T09:08:05.1422011Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/assert.yml +2025-11-24T09:08:05.1422480Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/client-cert.yml +2025-11-24T09:08:05.1423207Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/client-private-key.yml +2025-11-24T09:08:05.1423734Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/ca-cert.yml +2025-11-24T09:08:05.1424206Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/main.yml +2025-11-24T09:08:05.1424647Z ansible/roles-external/sft/roles/sft-monitoring-certs/README.md +2025-11-24T09:08:05.1425011Z ansible/roles-external/sft/roles/srv-announcer/ +2025-11-24T09:08:05.1425412Z ansible/roles-external/sft/roles/srv-announcer/defaults/ +2025-11-24T09:08:05.1425708Z ansible/roles-external/sft/roles/srv-announcer/defaults/main.yml +2025-11-24T09:08:05.1425966Z ansible/roles-external/sft/roles/srv-announcer/meta/ +2025-11-24T09:08:05.1426228Z ansible/roles-external/sft/roles/srv-announcer/meta/main.yml +2025-11-24T09:08:05.1426471Z ansible/roles-external/sft/roles/srv-announcer/tasks/ +2025-11-24T09:08:05.1426991Z ansible/roles-external/sft/roles/srv-announcer/tasks/install.yml +2025-11-24T09:08:05.1427418Z ansible/roles-external/sft/roles/srv-announcer/tasks/test.yml +2025-11-24T09:08:05.1427770Z ansible/roles-external/sft/roles/srv-announcer/tasks/assert.yml +2025-11-24T09:08:05.1428271Z ansible/roles-external/sft/roles/srv-announcer/tasks/configure.yml +2025-11-24T09:08:05.1428707Z ansible/roles-external/sft/roles/srv-announcer/tasks/start.yml +2025-11-24T09:08:05.1429105Z ansible/roles-external/sft/roles/srv-announcer/tasks/main.yml +2025-11-24T09:08:05.1429344Z ansible/roles-external/sft/roles/srv-announcer/vars/ +2025-11-24T09:08:05.1429603Z ansible/roles-external/sft/roles/srv-announcer/vars/main.yml +2025-11-24T09:08:05.1429859Z ansible/roles-external/sft/roles/srv-announcer/templates/ +2025-11-24T09:08:05.1430190Z ansible/roles-external/sft/roles/srv-announcer/templates/discovery.slice.j2 +2025-11-24T09:08:05.1430541Z ansible/roles-external/sft/roles/srv-announcer/templates/srv-announcer.service.j2 +2025-11-24T09:08:05.1430862Z ansible/roles-external/sft/roles/srv-announcer/templates/srv-announcer.env.j2 +2025-11-24T09:08:05.1431175Z ansible/roles-external/sft/roles/sft-server/ +2025-11-24T09:08:05.1431418Z ansible/roles-external/sft/roles/sft-server/defaults/ +2025-11-24T09:08:05.1431694Z ansible/roles-external/sft/roles/sft-server/defaults/main.yml +2025-11-24T09:08:05.1431923Z ansible/roles-external/sft/roles/sft-server/meta/ +2025-11-24T09:08:05.1432168Z ansible/roles-external/sft/roles/sft-server/meta/main.yml +2025-11-24T09:08:05.1432393Z ansible/roles-external/sft/roles/sft-server/tasks/ +2025-11-24T09:08:05.1432846Z ansible/roles-external/sft/roles/sft-server/tasks/install.yml +2025-11-24T09:08:05.1433119Z ansible/roles-external/sft/roles/sft-server/tasks/test.yml +2025-11-24T09:08:05.1433379Z ansible/roles-external/sft/roles/sft-server/tasks/assert.yml +2025-11-24T09:08:05.1433649Z ansible/roles-external/sft/roles/sft-server/tasks/configure.yml +2025-11-24T09:08:05.1433902Z ansible/roles-external/sft/roles/sft-server/tasks/start.yml +2025-11-24T09:08:05.1434155Z ansible/roles-external/sft/roles/sft-server/tasks/traffic.yml +2025-11-24T09:08:05.1434399Z ansible/roles-external/sft/roles/sft-server/tasks/main.yml +2025-11-24T09:08:05.1434635Z ansible/roles-external/sft/roles/sft-server/handlers/ +2025-11-24T09:08:05.1434890Z ansible/roles-external/sft/roles/sft-server/handlers/main.yml +2025-11-24T09:08:05.1435113Z ansible/roles-external/sft/roles/sft-server/vars/ +2025-11-24T09:08:05.1435357Z ansible/roles-external/sft/roles/sft-server/vars/main.yml +2025-11-24T09:08:05.1435590Z ansible/roles-external/sft/roles/sft-server/molecule/ +2025-11-24T09:08:05.1436046Z ansible/roles-external/sft/roles/sft-server/molecule/requirements.yml +2025-11-24T09:08:05.1436309Z ansible/roles-external/sft/roles/sft-server/molecule/default/ +2025-11-24T09:08:05.1436620Z ansible/roles-external/sft/roles/sft-server/molecule/default/verify.yml +2025-11-24T09:08:05.1436937Z ansible/roles-external/sft/roles/sft-server/molecule/default/converge.yml +2025-11-24T09:08:05.1437247Z ansible/roles-external/sft/roles/sft-server/molecule/default/molecule.yml +2025-11-24T09:08:05.1437554Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/ +2025-11-24T09:08:05.1437886Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/verify.yml +2025-11-24T09:08:05.1438295Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/converge.yml +2025-11-24T09:08:05.1438627Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/molecule.yml +2025-11-24T09:08:05.1438960Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/inventory.yml +2025-11-24T09:08:05.1439243Z ansible/roles-external/sft/roles/sft-server/molecule/cleanup.yml +2025-11-24T09:08:05.1439505Z ansible/roles-external/sft/roles/sft-server/molecule/inventory/ +2025-11-24T09:08:05.1439826Z ansible/roles-external/sft/roles/sft-server/molecule/inventory/group_vars/ +2025-11-24T09:08:05.1440154Z ansible/roles-external/sft/roles/sft-server/molecule/inventory/group_vars/all.yml +2025-11-24T09:08:05.1440395Z ansible/roles-external/sft/roles/sft-server/templates/ +2025-11-24T09:08:05.1440717Z ansible/roles-external/sft/roles/sft-server/templates/metrics.vhost.conf.j2 +2025-11-24T09:08:05.1441049Z ansible/roles-external/sft/roles/sft-server/templates/nginx.service.override.j2 +2025-11-24T09:08:05.1441353Z ansible/roles-external/sft/roles/sft-server/templates/sftd.service.j2 +2025-11-24T09:08:05.1441667Z ansible/roles-external/sft/roles/sft-server/templates/coredump.conf.j2 +2025-11-24T09:08:05.1441961Z ansible/roles-external/sft/roles/sft-server/templates/certbot.ini.j2 +2025-11-24T09:08:05.1442276Z ansible/roles-external/sft/roles/sft-server/templates/sftd.vhost.conf.j2 +2025-11-24T09:08:05.1442795Z ansible/roles-external/sft/roles/sft-server/templates/certbot-http-challenge.vhost.conf.j2 +2025-11-24T09:08:05.1443096Z ansible/roles-external/sft/roles/sft-server/templates/nginx.conf.j2 +2025-11-24T09:08:05.1443292Z ansible/roles-external/sft/meta/ +2025-11-24T09:08:05.1443493Z ansible/roles-external/sft/meta/main.yml +2025-11-24T09:08:05.1443762Z ansible/roles-external/sft/.github/ +2025-11-24T09:08:05.1443978Z ansible/roles-external/sft/.github/workflows/ +2025-11-24T09:08:05.1444225Z ansible/roles-external/sft/.github/workflows/molecule.yml +2025-11-24T09:08:05.1444433Z ansible/roles-external/sft/poetry.lock +2025-11-24T09:08:05.1444629Z ansible/roles-external/sft/README.md +2025-11-24T09:08:05.1444841Z ansible/roles-external/sft/pyproject.toml +2025-11-24T09:08:05.1445076Z ansible/roles-external/cloudalchemy.node-exporter/ +2025-11-24T09:08:05.1445358Z ansible/roles-external/cloudalchemy.node-exporter/CHANGELOG.md +2025-11-24T09:08:05.1445627Z ansible/roles-external/cloudalchemy.node-exporter/defaults/ +2025-11-24T09:08:05.1445922Z ansible/roles-external/cloudalchemy.node-exporter/defaults/main.yml +2025-11-24T09:08:05.1446172Z ansible/roles-external/cloudalchemy.node-exporter/LICENSE +2025-11-24T09:08:05.1446416Z ansible/roles-external/cloudalchemy.node-exporter/.git +2025-11-24T09:08:05.1446665Z ansible/roles-external/cloudalchemy.node-exporter/.yamllint +2025-11-24T09:08:05.1446951Z ansible/roles-external/cloudalchemy.node-exporter/CONTRIBUTING.md +2025-11-24T09:08:05.1447201Z ansible/roles-external/cloudalchemy.node-exporter/meta/ +2025-11-24T09:08:05.1447473Z ansible/roles-external/cloudalchemy.node-exporter/meta/main.yml +2025-11-24T09:08:05.1447725Z ansible/roles-external/cloudalchemy.node-exporter/.github/ +2025-11-24T09:08:05.1448017Z ansible/roles-external/cloudalchemy.node-exporter/.github/lock.yml +2025-11-24T09:08:05.1448318Z ansible/roles-external/cloudalchemy.node-exporter/.github/workflows/ +2025-11-24T09:08:05.1448782Z ansible/roles-external/cloudalchemy.node-exporter/.github/workflows/labeler.yml +2025-11-24T09:08:05.1449121Z ansible/roles-external/cloudalchemy.node-exporter/.github/workflows/labels.yml +2025-11-24T09:08:05.1449414Z ansible/roles-external/cloudalchemy.node-exporter/.github/stale.yml +2025-11-24T09:08:05.1449741Z ansible/roles-external/cloudalchemy.node-exporter/.github/labeler.yml +2025-11-24T09:08:05.1450067Z ansible/roles-external/cloudalchemy.node-exporter/.github/ISSUE_TEMPLATE/ +2025-11-24T09:08:05.1450419Z ansible/roles-external/cloudalchemy.node-exporter/.github/ISSUE_TEMPLATE/feature.md +2025-11-24T09:08:05.1450830Z ansible/roles-external/cloudalchemy.node-exporter/.github/ISSUE_TEMPLATE/support.md +2025-11-24T09:08:05.1451162Z ansible/roles-external/cloudalchemy.node-exporter/.github/ISSUE_TEMPLATE/bug.md +2025-11-24T09:08:05.1451460Z ansible/roles-external/cloudalchemy.node-exporter/.github/labels.yml +2025-11-24T09:08:05.1451780Z ansible/roles-external/cloudalchemy.node-exporter/test-requirements.txt +2025-11-24T09:08:05.1452038Z ansible/roles-external/cloudalchemy.node-exporter/tasks/ +2025-11-24T09:08:05.1452331Z ansible/roles-external/cloudalchemy.node-exporter/tasks/install.yml +2025-11-24T09:08:05.1452729Z ansible/roles-external/cloudalchemy.node-exporter/tasks/configure.yml +2025-11-24T09:08:05.1453017Z ansible/roles-external/cloudalchemy.node-exporter/tasks/main.yml +2025-11-24T09:08:05.1453305Z ansible/roles-external/cloudalchemy.node-exporter/tasks/selinux.yml +2025-11-24T09:08:05.1453613Z ansible/roles-external/cloudalchemy.node-exporter/tasks/preflight.yml +2025-11-24T09:08:05.1453872Z ansible/roles-external/cloudalchemy.node-exporter/handlers/ +2025-11-24T09:08:05.1454169Z ansible/roles-external/cloudalchemy.node-exporter/handlers/main.yml +2025-11-24T09:08:05.1454431Z ansible/roles-external/cloudalchemy.node-exporter/.gitignore +2025-11-24T09:08:05.1454684Z ansible/roles-external/cloudalchemy.node-exporter/.travis/ +2025-11-24T09:08:05.1454983Z ansible/roles-external/cloudalchemy.node-exporter/.travis/releaser.sh +2025-11-24T09:08:05.1455269Z ansible/roles-external/cloudalchemy.node-exporter/.travis/test.sh +2025-11-24T09:08:05.1455519Z ansible/roles-external/cloudalchemy.node-exporter/README.md +2025-11-24T09:08:05.1455768Z ansible/roles-external/cloudalchemy.node-exporter/tox.ini +2025-11-24T09:08:05.1456043Z ansible/roles-external/cloudalchemy.node-exporter/.travis.yml +2025-11-24T09:08:05.1456318Z ansible/roles-external/cloudalchemy.node-exporter/.ansible-lint +2025-11-24T09:08:05.1456639Z ansible/roles-external/cloudalchemy.node-exporter/vars/ +2025-11-24T09:08:05.1456903Z ansible/roles-external/cloudalchemy.node-exporter/vars/main.yml +2025-11-24T09:08:05.1457161Z ansible/roles-external/cloudalchemy.node-exporter/molecule/ +2025-11-24T09:08:05.1457451Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/ +2025-11-24T09:08:05.1457788Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/playbook.yml +2025-11-24T09:08:05.1458110Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/molecule.yml +2025-11-24T09:08:05.1458476Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/tests/ +2025-11-24T09:08:05.1458867Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/tests/test_default.py +2025-11-24T09:08:05.1459220Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/destroy.yml +2025-11-24T09:08:05.1459547Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/prepare.yml +2025-11-24T09:08:05.1459876Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/create.yml +2025-11-24T09:08:05.1460190Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/ +2025-11-24T09:08:05.1460563Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/playbook.yml +2025-11-24T09:08:05.1460915Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/molecule.yml +2025-11-24T09:08:05.1461263Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/tests/ +2025-11-24T09:08:05.1461819Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/tests/test_alternative.py +2025-11-24T09:08:05.1462169Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/prepare.yml +2025-11-24T09:08:05.1462470Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/ +2025-11-24T09:08:05.1462921Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/playbook.yml +2025-11-24T09:08:05.1463257Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/molecule.yml +2025-11-24T09:08:05.1463576Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/tests/ +2025-11-24T09:08:05.1464072Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/tests/test_alternative.py +2025-11-24T09:08:05.1464346Z ansible/roles-external/cloudalchemy.node-exporter/.mergify.yml +2025-11-24T09:08:05.1464609Z ansible/roles-external/cloudalchemy.node-exporter/templates/ +2025-11-24T09:08:05.1464934Z ansible/roles-external/cloudalchemy.node-exporter/templates/config.yaml.j2 +2025-11-24T09:08:05.1465307Z ansible/roles-external/cloudalchemy.node-exporter/templates/node_exporter.service.j2 +2025-11-24T09:08:05.1469829Z ansible/roles-external/cloudalchemy.node-exporter/TROUBLESHOOTING.md +2025-11-24T09:08:05.1470167Z ansible/roles-external/ANXS.apt/ +2025-11-24T09:08:05.1470517Z ansible/roles-external/ANXS.apt/Vagrantfile +2025-11-24T09:08:05.1470747Z ansible/roles-external/ANXS.apt/defaults/ +2025-11-24T09:08:05.1471008Z ansible/roles-external/ANXS.apt/defaults/main.yml +2025-11-24T09:08:05.1471220Z ansible/roles-external/ANXS.apt/LICENSE +2025-11-24T09:08:05.1471431Z ansible/roles-external/ANXS.apt/test.yml +2025-11-24T09:08:05.1471637Z ansible/roles-external/ANXS.apt/.git +2025-11-24T09:08:05.1471838Z ansible/roles-external/ANXS.apt/meta/ +2025-11-24T09:08:05.1472060Z ansible/roles-external/ANXS.apt/meta/main.yml +2025-11-24T09:08:05.1472265Z ansible/roles-external/ANXS.apt/tasks/ +2025-11-24T09:08:05.1472481Z ansible/roles-external/ANXS.apt/tasks/main.yml +2025-11-24T09:08:05.1472939Z ansible/roles-external/ANXS.apt/.gitignore +2025-11-24T09:08:05.1473158Z ansible/roles-external/ANXS.apt/README.md +2025-11-24T09:08:05.1473390Z ansible/roles-external/ANXS.apt/vagrant-inventory +2025-11-24T09:08:05.1473596Z ansible/roles-external/ANXS.apt/.travis.yml +2025-11-24T09:08:05.1473799Z ansible/roles-external/ANXS.apt/templates/ +2025-11-24T09:08:05.1474128Z ansible/roles-external/ANXS.apt/templates/etc_apt_apt.conf.d_10general.j2 +2025-11-24T09:08:05.1474549Z ansible/roles-external/ANXS.apt/templates/etc_apt_sources.list.j2 +2025-11-24T09:08:05.1474747Z ansible/roles-external/ansible-tinc/ +2025-11-24T09:08:05.1474967Z ansible/roles-external/ansible-tinc/defaults/ +2025-11-24T09:08:05.1475205Z ansible/roles-external/ansible-tinc/defaults/main.yml +2025-11-24T09:08:05.1475412Z ansible/roles-external/ansible-tinc/.git +2025-11-24T09:08:05.1475619Z ansible/roles-external/ansible-tinc/meta/ +2025-11-24T09:08:05.1475845Z ansible/roles-external/ansible-tinc/meta/main.yml +2025-11-24T09:08:05.1476054Z ansible/roles-external/ansible-tinc/tasks/ +2025-11-24T09:08:05.1476287Z ansible/roles-external/ansible-tinc/tasks/main.yml +2025-11-24T09:08:05.1476512Z ansible/roles-external/ansible-tinc/handlers/ +2025-11-24T09:08:05.1476752Z ansible/roles-external/ansible-tinc/handlers/main.yml +2025-11-24T09:08:05.1476969Z ansible/roles-external/ansible-tinc/.gitignore +2025-11-24T09:08:05.1477180Z ansible/roles-external/ansible-tinc/README.md +2025-11-24T09:08:05.1477398Z ansible/roles-external/ansible-tinc/templates/ +2025-11-24T09:08:05.1477652Z ansible/roles-external/ansible-tinc/templates/nets.boot.j2 +2025-11-24T09:08:05.1496693Z ansible/roles-external/ansible-tinc/templates/tinc.service.j2 +2025-11-24T09:08:05.1497131Z ansible/roles-external/ansible-tinc/templates/tinc-up.j2 +2025-11-24T09:08:05.1497501Z ansible/roles-external/ansible-tinc/templates/tinc.conf.j2 +2025-11-24T09:08:05.1497763Z ansible/roles-external/ansible-tinc/templates/tinc-down.j2 +2025-11-24T09:08:05.1498019Z ansible/roles-external/andrewrothstein.unarchive-deps/ +2025-11-24T09:08:05.1498474Z ansible/roles-external/andrewrothstein.unarchive-deps/defaults/ +2025-11-24T09:08:05.1498816Z ansible/roles-external/andrewrothstein.unarchive-deps/defaults/main.yml +2025-11-24T09:08:05.1499114Z ansible/roles-external/andrewrothstein.unarchive-deps/LICENSE +2025-11-24T09:08:05.1499461Z ansible/roles-external/andrewrothstein.unarchive-deps/requirements.txt +2025-11-24T09:08:05.1499737Z ansible/roles-external/andrewrothstein.unarchive-deps/test.yml +2025-11-24T09:08:05.1499995Z ansible/roles-external/andrewrothstein.unarchive-deps/.git +2025-11-24T09:08:05.1500278Z ansible/roles-external/andrewrothstein.unarchive-deps/meta/ +2025-11-24T09:08:05.1500670Z ansible/roles-external/andrewrothstein.unarchive-deps/meta/main.yml +2025-11-24T09:08:05.1500961Z ansible/roles-external/andrewrothstein.unarchive-deps/tasks/ +2025-11-24T09:08:05.1501293Z ansible/roles-external/andrewrothstein.unarchive-deps/tasks/main.yml +2025-11-24T09:08:05.1501586Z ansible/roles-external/andrewrothstein.unarchive-deps/.gitignore +2025-11-24T09:08:05.1501864Z ansible/roles-external/andrewrothstein.unarchive-deps/README.md +2025-11-24T09:08:05.1502165Z ansible/roles-external/andrewrothstein.unarchive-deps/.travis.yml +2025-11-24T09:08:05.1502462Z ansible/roles-external/andrewrothstein.unarchive-deps/dcb-os.yml +2025-11-24T09:08:05.1502964Z ansible/roles-external/andrewrothstein.unarchive-deps/vars/ +2025-11-24T09:08:05.1503305Z ansible/roles-external/andrewrothstein.unarchive-deps/vars/Debian.yml +2025-11-24T09:08:05.1503618Z ansible/roles-external/andrewrothstein.unarchive-deps/vars/Darwin.yml +2025-11-24T09:08:05.1503840Z ansible/roles-external/admin_users/ +2025-11-24T09:08:05.1504058Z ansible/roles-external/admin_users/defaults/ +2025-11-24T09:08:05.1504305Z ansible/roles-external/admin_users/defaults/main.yml +2025-11-24T09:08:05.1504510Z ansible/roles-external/admin_users/LICENSE +2025-11-24T09:08:05.1504760Z ansible/roles-external/admin_users/requirements.txt +2025-11-24T09:08:05.1504978Z ansible/roles-external/admin_users/.git +2025-11-24T09:08:05.1505207Z ansible/roles-external/admin_users/.bumpversion.cfg +2025-11-24T09:08:05.1505424Z ansible/roles-external/admin_users/meta/ +2025-11-24T09:08:05.1505651Z ansible/roles-external/admin_users/meta/main.yml +2025-11-24T09:08:05.1505877Z ansible/roles-external/admin_users/filter_plugins/ +2025-11-24T09:08:05.1506135Z ansible/roles-external/admin_users/filter_plugins/main.py +2025-11-24T09:08:05.1506443Z ansible/roles-external/admin_users/tasks/ +2025-11-24T09:08:05.1506666Z ansible/roles-external/admin_users/tasks/main.yml +2025-11-24T09:08:05.1506881Z ansible/roles-external/admin_users/.gitignore +2025-11-24T09:08:05.1507093Z ansible/roles-external/admin_users/README.md +2025-11-24T09:08:05.1507297Z ansible/roles-external/admin_users/tox.ini +2025-11-24T09:08:05.1507510Z ansible/roles-external/admin_users/.travis.yml +2025-11-24T09:08:05.1507732Z ansible/roles-external/admin_users/requirements.in +2025-11-24T09:08:05.1507935Z ansible/roles-external/admin_users/vars/ +2025-11-24T09:08:05.1508178Z ansible/roles-external/admin_users/vars/RedHat.yml +2025-11-24T09:08:05.1508419Z ansible/roles-external/admin_users/vars/Debian.yml +2025-11-24T09:08:05.1508654Z ansible/roles-external/admin_users/vars/Archlinux.yml +2025-11-24T09:08:05.1508856Z ansible/roles-external/admin_users/tests/ +2025-11-24T09:08:05.1509076Z ansible/roles-external/admin_users/tests/test.yml +2025-11-24T09:08:05.1509309Z ansible/roles-external/admin_users/tests/roles/ +2025-11-24T09:08:05.1509580Z ansible/roles-external/admin_users/tests/roles/requirements.yml +2025-11-24T09:08:05.1800393Z ansible/roles-external/admin_users/tests/roles/cchurch.admin-users +2025-11-24T09:08:05.1800788Z ansible/roles-external/admin_users/tests/setup.yml +2025-11-24T09:08:05.1801053Z ansible/roles-external/admin_users/tests/cleanup.yml +2025-11-24T09:08:05.1801300Z ansible/roles-external/admin_users/tests/ansible.cfg +2025-11-24T09:08:05.1801531Z ansible/roles-external/admin_users/tests/inventory +2025-11-24T09:08:05.1801765Z ansible/roles-external/admin_users/tests/main.yml +2025-11-24T09:08:05.1802437Z ansible/roles-external/admin_users/templates/ +2025-11-24T09:08:05.1803082Z ansible/roles-external/admin_users/templates/sudo_nopasswd.j2 +2025-11-24T09:08:05.1803316Z ansible/roles-external/admin_users/Makefile +2025-11-24T09:08:05.1803525Z ansible/roles-external/logrotate/ +2025-11-24T09:08:05.1803744Z ansible/roles-external/logrotate/defaults/ +2025-11-24T09:08:05.1803981Z ansible/roles-external/logrotate/defaults/main.yml +2025-11-24T09:08:05.1804207Z ansible/roles-external/logrotate/LICENSE +2025-11-24T09:08:05.1804408Z ansible/roles-external/logrotate/.git +2025-11-24T09:08:05.1804718Z ansible/roles-external/logrotate/meta/ +2025-11-24T09:08:05.1804945Z ansible/roles-external/logrotate/meta/main.yml +2025-11-24T09:08:05.1805155Z ansible/roles-external/logrotate/tasks/ +2025-11-24T09:08:05.1805385Z ansible/roles-external/logrotate/tasks/main.yml +2025-11-24T09:08:05.1805604Z ansible/roles-external/logrotate/.gitignore +2025-11-24T09:08:05.1805823Z ansible/roles-external/logrotate/README.md +2025-11-24T09:08:05.1806052Z ansible/roles-external/logrotate/.travis.yml +2025-11-24T09:08:05.1806260Z ansible/roles-external/logrotate/tests/ +2025-11-24T09:08:05.1806497Z ansible/roles-external/logrotate/tests/Vagrantfile +2025-11-24T09:08:05.1806719Z ansible/roles-external/logrotate/tests/test.yml +2025-11-24T09:08:05.1806936Z ansible/roles-external/logrotate/tests/inventory +2025-11-24T09:08:05.1807144Z ansible/roles-external/logrotate/templates/ +2025-11-24T09:08:05.1807408Z ansible/roles-external/logrotate/templates/logrotate.d.j2 +2025-11-24T09:08:05.1807617Z ansible/roles-external/ansible-cassandra/ +2025-11-24T09:08:05.1807862Z ansible/roles-external/ansible-cassandra/CHANGELOG.md +2025-11-24T09:08:05.1808088Z ansible/roles-external/ansible-cassandra/defaults/ +2025-11-24T09:08:05.1808346Z ansible/roles-external/ansible-cassandra/defaults/RedHat.yml +2025-11-24T09:08:05.1808609Z ansible/roles-external/ansible-cassandra/defaults/Alpine.yml +2025-11-24T09:08:05.2056749Z ansible/roles-external/ansible-cassandra/defaults/Debian.yml +2025-11-24T09:08:05.2057229Z ansible/roles-external/ansible-cassandra/defaults/main.yml +2025-11-24T09:08:05.2057553Z ansible/roles-external/ansible-cassandra/defaults/Ubuntu-jammy.yml +2025-11-24T09:08:05.2057791Z ansible/roles-external/ansible-cassandra/LICENSE +2025-11-24T09:08:05.2058018Z ansible/roles-external/ansible-cassandra/.git +2025-11-24T09:08:05.2058259Z ansible/roles-external/ansible-cassandra/.yamllint +2025-11-24T09:08:05.2058806Z ansible/roles-external/ansible-cassandra/meta/ +2025-11-24T09:08:05.2059065Z ansible/roles-external/ansible-cassandra/meta/main.yml +2025-11-24T09:08:05.2059301Z ansible/roles-external/ansible-cassandra/tasks/ +2025-11-24T09:08:05.2059569Z ansible/roles-external/ansible-cassandra/tasks/setup.yml +2025-11-24T09:08:05.2059838Z ansible/roles-external/ansible-cassandra/tasks/systemd.yml +2025-11-24T09:08:05.2060106Z ansible/roles-external/ansible-cassandra/tasks/swapoff.yml +2025-11-24T09:08:05.2060380Z ansible/roles-external/ansible-cassandra/tasks/configure.yml +2025-11-24T09:08:05.2060696Z ansible/roles-external/ansible-cassandra/tasks/repairs_backups.yml +2025-11-24T09:08:05.2060953Z ansible/roles-external/ansible-cassandra/tasks/main.yml +2025-11-24T09:08:05.2061190Z ansible/roles-external/ansible-cassandra/.gitignore +2025-11-24T09:08:05.2061427Z ansible/roles-external/ansible-cassandra/README.md +2025-11-24T09:08:05.2061672Z ansible/roles-external/ansible-cassandra/.travis.yml +2025-11-24T09:08:05.2061901Z ansible/roles-external/ansible-cassandra/files/ +2025-11-24T09:08:05.2062205Z ansible/roles-external/ansible-cassandra/files/prometheus-jmx.yml +2025-11-24T09:08:05.2062490Z ansible/roles-external/ansible-cassandra/files/logback.xml +2025-11-24T09:08:05.2063048Z ansible/roles-external/ansible-cassandra/files/nodetool +2025-11-24T09:08:05.2063322Z ansible/roles-external/ansible-cassandra/lookup_plugins/ +2025-11-24T09:08:05.2063646Z ansible/roles-external/ansible-cassandra/lookup_plugins/zip_cycle.py +2025-11-24T09:08:05.2070408Z ansible/roles-external/ansible-cassandra/ansible.cfg +2025-11-24T09:08:05.2071010Z ansible/roles-external/ansible-cassandra/molecule/ +2025-11-24T09:08:05.2071308Z ansible/roles-external/ansible-cassandra/molecule/default/ +2025-11-24T09:08:05.2071656Z ansible/roles-external/ansible-cassandra/molecule/default/requirements.yml +2025-11-24T09:08:05.2071990Z ansible/roles-external/ansible-cassandra/molecule/default/playbook.yml +2025-11-24T09:08:05.2072317Z ansible/roles-external/ansible-cassandra/molecule/default/INSTALL.rst +2025-11-24T09:08:05.2170170Z ansible/roles-external/ansible-cassandra/molecule/default/Dockerfile.j2 +2025-11-24T09:08:05.2170914Z ansible/roles-external/ansible-cassandra/molecule/default/molecule.yml +2025-11-24T09:08:05.2171268Z ansible/roles-external/ansible-cassandra/molecule/default/disable_getty.yml +2025-11-24T09:08:05.2171521Z ansible/roles-external/ansible-cassandra/templates/ +2025-11-24T09:08:05.2171848Z ansible/roles-external/ansible-cassandra/templates/cassandra_backup.j2 +2025-11-24T09:08:05.2172182Z ansible/roles-external/ansible-cassandra/templates/cassandra_restore.j2 +2025-11-24T09:08:05.2172522Z ansible/roles-external/ansible-cassandra/templates/cassandra.service.j2 +2025-11-24T09:08:05.2173103Z ansible/roles-external/ansible-cassandra/templates/cassandra_incremental_backup.j2 +2025-11-24T09:08:05.2173414Z ansible/roles-external/ansible-cassandra/templates/cassandra.sh.j2 +2025-11-24T09:08:05.2173687Z ansible/roles-external/ansible-cassandra/templates/env.sh.j2 +2025-11-24T09:08:05.2173961Z ansible/roles-external/ansible-cassandra/templates/cqlsh.j2 +2025-11-24T09:08:05.2174274Z ansible/roles-external/ansible-cassandra/templates/cassandra.yaml.j2 +2025-11-24T09:08:05.2174599Z ansible/roles-external/ansible-cassandra/templates/cassandra_repair.j2 +2025-11-24T09:08:05.2174835Z ansible/roles-external/ansible-cassandra/Makefile +2025-11-24T09:08:05.2175021Z ansible/iptables.yml +2025-11-24T09:08:05.2175209Z ansible/tasks/ +2025-11-24T09:08:05.2175409Z ansible/tasks/helm_external.yml +2025-11-24T09:08:05.2175596Z ansible/sync_time.yml +2025-11-24T09:08:05.2175804Z ansible/postgresql-playbooks/ +2025-11-24T09:08:05.2176075Z ansible/postgresql-playbooks/postgresql-wire-setup.yml +2025-11-24T09:08:05.2176336Z ansible/postgresql-playbooks/postgresql-verify-HA.yml +2025-11-24T09:08:05.2176582Z ansible/postgresql-playbooks/postgresql-secrets.yml +2025-11-24T09:08:05.2176853Z ansible/postgresql-playbooks/postgresql-deploy-replica.yml +2025-11-24T09:08:05.2177224Z ansible/postgresql-playbooks/postgresql-monitoring.yml +2025-11-24T09:08:05.2177457Z ansible/postgresql-playbooks/postgresql-install.yml +2025-11-24T09:08:05.2177734Z ansible/postgresql-playbooks/clean_existing_setup.yml +2025-11-24T09:08:05.2178009Z ansible/postgresql-playbooks/postgresql-deploy-primary.yml +2025-11-24T09:08:05.2178204Z ansible/seed-offline-docker.yml +2025-11-24T09:08:05.2178402Z ansible/seed-offline-containerd.yml +2025-11-24T09:08:05.2178578Z ansible/.gitignore +2025-11-24T09:08:05.2178755Z ansible/README.md +2025-11-24T09:08:05.2178931Z ansible/cassandra.yml +2025-11-24T09:08:05.2179114Z ansible/db-operations/ +2025-11-24T09:08:05.2291689Z ansible/db-operations/cassandra_healthy.yml +2025-11-24T09:08:05.2292147Z ansible/db-operations/cassandra_pre_upgrade.yml +2025-11-24T09:08:05.2292525Z ansible/db-operations/cassandra_restart.yml +2025-11-24T09:08:05.2293132Z ansible/db-operations/tasks/ +2025-11-24T09:08:05.2293530Z ansible/db-operations/tasks/cassandra_down.yml +2025-11-24T09:08:05.2293981Z ansible/db-operations/tasks/cassandra_manual_repair.yml +2025-11-24T09:08:05.2294447Z ansible/db-operations/tasks/cassandra_wait_ongoing_repair.yml +2025-11-24T09:08:05.2294892Z ansible/db-operations/tasks/elasticsearch_cluster_healthy.yml +2025-11-24T09:08:05.2295263Z ansible/db-operations/tasks/cassandra_up.yml +2025-11-24T09:08:05.2295717Z ansible/db-operations/tasks/elasticsearch_shard_allocation.yml +2025-11-24T09:08:05.2296134Z ansible/db-operations/tasks/cassandra_cluster_healthy.yml +2025-11-24T09:08:05.2296695Z ansible/db-operations/tasks/cassandra_remove_repair_and_daily_backup_cron.yml +2025-11-24T09:08:05.2297421Z ansible/db-operations/tasks/elasticsearch_up.yml +2025-11-24T09:08:05.2297717Z ansible/db-operations/tasks/cassandra_remove_backup.yml +2025-11-24T09:08:05.2298050Z ansible/db-operations/tasks/elasticsearch_down.yml +2025-11-24T09:08:05.2298313Z ansible/db-operations/tasks/cassandra_remove_cron.yml +2025-11-24T09:08:05.2298612Z ansible/db-operations/cassandra_alter_keyspace_replication.yml +2025-11-24T09:08:05.2298831Z ansible/db-operations/README.md +2025-11-24T09:08:05.2299079Z ansible/db-operations/cassandra_post_upgrade.yml +2025-11-24T09:08:05.2299314Z ansible/db-operations/elasticsearch_joined.yml +2025-11-24T09:08:05.2299659Z ansible/db-operations/elasticsearch_restart.yml +2025-11-24T09:08:05.2299897Z ansible/db-operations/elasticsearch_stop.yml +2025-11-24T09:08:05.2300152Z ansible/db-operations/cassandra_rolling_repair.yml +2025-11-24T09:08:05.2300384Z ansible/db-operations/cassandra_cleanup.yml +2025-11-24T09:08:05.2300609Z ansible/kubernetes-renew-certs.yml +2025-11-24T09:08:05.2300822Z ansible/kubernetes_logging.yml +2025-11-24T09:08:05.2301046Z ansible/cassandra-verify-ntp.yml +2025-11-24T09:08:05.2301270Z ansible/kubernetes-fetch-kubeconfig.yml +2025-11-24T09:08:05.2301470Z ansible/get-logs.yml +2025-11-24T09:08:05.2301668Z ansible/files/ +2025-11-24T09:08:05.2301888Z ansible/files/hetzner_server_sshd_config +2025-11-24T09:08:05.2302093Z ansible/files/registry/ +2025-11-24T09:08:05.2302308Z ansible/files/registry/mk-certs +2025-11-24T09:08:05.2302522Z ansible/files/registry/images.sh +2025-11-24T09:08:05.2303019Z ansible/files/registry/registry-run.sh +2025-11-24T09:08:05.2303262Z ansible/files/registry/.gitignore +2025-11-24T09:08:05.2303489Z ansible/files/registry/upload_image.sh +2025-11-24T09:08:05.2303715Z ansible/files/registry/mk-sub-certificate +2025-11-24T09:08:05.2303961Z ansible/files/registry/list_of_docker_images.txt +2025-11-24T09:08:05.2304175Z ansible/files/registry/openssl.cnf +2025-11-24T09:08:05.2304408Z ansible/files/hetzner_server_nftables.conf.j2 +2025-11-24T09:08:05.2304666Z ansible/files/hetzner_server_libvirt_default_net.xml +2025-11-24T09:08:05.2304885Z ansible/files/serve-assets.service +2025-11-24T09:08:05.2305089Z ansible/bootstrap.yml +2025-11-24T09:08:05.2305283Z ansible/ansible.cfg +2025-11-24T09:08:05.2305481Z ansible/logging.yml +2025-11-24T09:08:05.2305698Z ansible/setup-offline-sources.yml +2025-11-24T09:08:05.2305896Z ansible/wiab-demo/ +2025-11-24T09:08:05.2306112Z ansible/wiab-demo/clean_cluster.yml +2025-11-24T09:08:05.2306423Z ansible/wiab-demo/verify_dns.yml +2025-11-24T09:08:05.2306670Z ansible/wiab-demo/wire_secrets.yml +2025-11-24T09:08:05.2306973Z ansible/wiab-demo/helm_install.yml +2025-11-24T09:08:05.2307272Z ansible/wiab-demo/iptables_rules.yml +2025-11-24T09:08:05.2307586Z ansible/wiab-demo/install_pkgs.yml +2025-11-24T09:08:05.2307889Z ansible/wiab-demo/verify_wire_ip.yml +2025-11-24T09:08:05.2308199Z ansible/wiab-demo/minikube_cluster.yml +2025-11-24T09:08:05.2308494Z ansible/wiab-demo/deploy_wiab.yml +2025-11-24T09:08:05.2308790Z ansible/wiab-demo/setup_ssh.yml +2025-11-24T09:08:05.2309106Z ansible/wiab-demo/download_artifact.yml +2025-11-24T09:08:05.2309393Z ansible/inventory/ +2025-11-24T09:08:05.2309685Z ansible/inventory/prod/ +2025-11-24T09:08:05.2310007Z ansible/inventory/prod/hosts.example.ini +2025-11-24T09:08:05.2310301Z ansible/inventory/offline/ +2025-11-24T09:08:05.2310614Z ansible/inventory/offline/99-static +2025-11-24T09:08:05.2310916Z ansible/inventory/offline/README.md +2025-11-24T09:08:05.2311250Z ansible/inventory/offline/group_vars/ +2025-11-24T09:08:05.2311633Z ansible/inventory/offline/group_vars/postgresql/ +2025-11-24T09:08:05.2312007Z ansible/inventory/offline/group_vars/postgresql/postgresql.yml +2025-11-24T09:08:05.2312237Z ansible/inventory/offline/group_vars/k8s-cluster/ +2025-11-24T09:08:05.2312798Z ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml +2025-11-24T09:08:05.2313153Z ansible/inventory/offline/group_vars/all/ +2025-11-24T09:08:05.2313397Z ansible/inventory/offline/group_vars/all/offline.yml +2025-11-24T09:08:05.2313689Z ansible/inventory/offline/group_vars/all/key.yml +2025-11-24T09:08:05.2314135Z ansible/inventory/offline/group_vars/demo/ +2025-11-24T09:08:05.2314396Z ansible/inventory/offline/group_vars/demo/offline.yml +2025-11-24T09:08:05.2314695Z ansible/inventory/demo/ +2025-11-24T09:08:05.2314889Z ansible/inventory/demo/host.yml +2025-11-24T09:08:05.2315082Z ansible/hetzner-single-deploy.yml +2025-11-24T09:08:05.2315300Z ansible/elasticsearch.yml +2025-11-24T09:08:05.2315550Z ansible/registry.yml +2025-11-24T09:08:05.2315727Z ansible/host_vars/ +2025-11-24T09:08:05.2315912Z ansible/host_vars/localhost/ +2025-11-24T09:08:05.2316161Z ansible/host_vars/localhost/python.yml +2025-11-24T09:08:05.2316472Z ansible/templates/ +2025-11-24T09:08:05.2316666Z ansible/templates/postgresql/ +2025-11-24T09:08:05.2316992Z ansible/templates/postgresql/detect-rogue-primary.timer.j2 +2025-11-24T09:08:05.2317318Z ansible/templates/postgresql/postgresql.conf.j2 +2025-11-24T09:08:05.2317578Z ansible/templates/postgresql/detect_rogue_primary.sh.j2 +2025-11-24T09:08:05.2317944Z ansible/templates/postgresql/detect-rogue-primary.service.j2 +2025-11-24T09:08:05.2318213Z ansible/templates/postgresql/failover_validation.sh.j2 +2025-11-24T09:08:05.2318431Z ansible/templates/postgresql/pgpass.j2 +2025-11-24T09:08:05.2318741Z ansible/templates/postgresql/repmgrd_service.j2 +2025-11-24T09:08:05.2318971Z ansible/templates/postgresql/repmgr.conf.j2 +2025-11-24T09:08:05.2319179Z ansible/templates/postgresql/pg_hba.conf.j2 +2025-11-24T09:08:05.2319416Z ansible/templates/postgresql/simple_fence.sh.j2 +2025-11-24T09:08:05.2319720Z ansible/templates/helm_external.yaml.j2 +2025-11-24T09:08:05.2319920Z ansible/templates/ntp.conf.j2 +2025-11-24T09:08:05.2320114Z ansible/templates/qradar.conf.j2 +2025-11-24T09:08:05.2320390Z ansible/templates/elasticsearch.conf.j2 +2025-11-24T09:08:05.2320598Z ansible/Makefile +2025-11-24T09:08:05.2320779Z ansible/minio.yml +2025-11-24T09:08:05.2320948Z bin/ +2025-11-24T09:08:05.2321188Z bin/offline-cluster.sh +2025-11-24T09:08:05.2321423Z bin/test-aws-s3-auth-v4.sh +2025-11-24T09:08:05.2321608Z bin/offline-deploy.sh +2025-11-24T09:08:05.2321787Z bin/shellcheck.sh +2025-11-24T09:08:05.2322028Z bin/offline-env.sh +2025-11-24T09:08:05.2322253Z bin/information-gathering.sh +2025-11-24T09:08:05.2322442Z bin/fix_default_router.sh +2025-11-24T09:08:05.2322831Z bin/offline-helm.sh +2025-11-24T09:08:05.2323095Z bin/sync-k8s-secret-to-wire-secrets.sh +2025-11-24T09:08:05.2323289Z bin/offline-vm-setup.sh +2025-11-24T09:08:05.2323610Z bin/generate-image-list.sh +2025-11-24T09:08:05.2323858Z bin/bootstrap/ +2025-11-24T09:08:05.2324048Z bin/bootstrap/init.sh +2025-11-24T09:08:05.2324231Z bin/bootstrap/README.md +2025-11-24T09:08:05.2324442Z bin/bootstrap/inside.sh +2025-11-24T09:08:05.2324689Z bin/autodeploy.sh +2025-11-24T09:08:05.2324868Z bin/logging.sh +2025-11-24T09:08:05.2325081Z bin/accept-invitation.sh +2025-11-24T09:08:05.2325307Z bin/debug_logs.sh +2025-11-24T09:08:05.2325550Z bin/secrets.sh +2025-11-24T09:08:05.2325733Z bin/prod-init.sh +2025-11-24T09:08:05.2325915Z bin/grafana-vm.sh +2025-11-24T09:08:05.2326145Z bin/demo-setup.sh +2025-11-24T09:08:05.2326396Z bin/install-grafana.sh +2025-11-24T09:08:05.2326577Z bin/wiab-demo/ +2025-11-24T09:08:05.2326776Z bin/wiab-demo/offline_deploy_k8s.sh +2025-11-24T09:08:05.2327065Z bin/wiab-demo/offline-env.sh +2025-11-24T09:08:05.2327260Z bin/deployment-info.sh +2025-11-24T09:08:05.2327434Z bin/prod-setup.sh +2025-11-24T09:08:05.2327618Z bin/offline-secrets.sh +2025-11-24T09:08:05.2327889Z versions/ +2025-11-24T09:08:05.2328090Z versions/debian-builds.json +2025-11-24T09:08:05.2328290Z versions/containers_system_images.json +2025-11-24T09:08:05.2328493Z versions/containers_adminhost_images.json +2025-11-24T09:08:05.2328825Z versions/containers_helm_images.json +2025-11-24T09:08:05.2329018Z versions/helm_image_tree.json +2025-11-24T09:08:05.2329200Z versions/wire-binaries.json +2025-11-24T09:08:05.2329409Z dashboards/ +2025-11-24T09:08:05.2329663Z dashboards/manual_upload/ +2025-11-24T09:08:05.2329873Z dashboards/manual_upload/k8s_node_view.json +2025-11-24T09:08:05.2330114Z dashboards/manual_upload/k8s _ system _ apiserver.json +2025-11-24T09:08:05.2330565Z dashboards/manual_upload/prometheus.json +2025-11-24T09:08:05.2330805Z dashboards/manual_upload/k8s_system_coredns.json +2025-11-24T09:08:05.2331052Z dashboards/manual_upload/k8s_global_view.json +2025-11-24T09:08:05.2331373Z dashboards/manual_upload/nginx_ingrerss_controller.json +2025-11-24T09:08:05.2331579Z dashboards/manual_upload/dashboard_full.json +2025-11-24T09:08:05.2331775Z dashboards/manual_upload/sft.json +2025-11-24T09:08:05.2332081Z dashboards/manual_upload/k8s_namespace_view.json +2025-11-24T09:08:05.2332287Z dashboards/manual_upload/k8s_pod_view.json +2025-11-24T09:08:05.2332580Z dashboards/manual_upload/cpu_and_memory.json +2025-11-24T09:08:05.2333027Z dashboards/manual_upload/coturn.json +2025-11-24T09:08:05.2333258Z dashboards/manual_upload/node_exporter_full.json +2025-11-24T09:08:05.2333464Z dashboards/manual_upload/wire_service.json +2025-11-24T09:08:05.2333734Z dashboards/api_upload/ +2025-11-24T09:08:05.2333985Z dashboards/api_upload/Kubernetes__System__CoreDNS.json +2025-11-24T09:08:05.2334241Z dashboards/api_upload/Kubernetes__System__API_Server.json +2025-11-24T09:08:05.2334516Z dashboards/api_upload/CPU_and_Memory.json +2025-11-24T09:08:05.2334781Z dashboards/api_upload/Kubernetes__Views__Nodes.json +2025-11-24T09:08:05.2335012Z dashboards/api_upload/Calling__TURN__coturn.json +2025-11-24T09:08:05.2335233Z dashboards/api_upload/SFT.json +2025-11-24T09:08:05.2335527Z dashboards/api_upload/Node_Exporter_Full.json +2025-11-24T09:08:05.2335782Z dashboards/api_upload/Kubernetes__Views__Namespaces.json +2025-11-24T09:08:05.2335978Z dashboards/api_upload/Wire_Services.json +2025-11-24T09:08:05.2336308Z dashboards/api_upload/Kubernetes__Views__Pods.json +2025-11-24T09:08:05.2336547Z dashboards/api_upload/Kubernetes__Views__Global.json +2025-11-24T09:08:05.2336775Z dashboards/api_upload/NGINX_Ingress_controller.json +2025-11-24T09:08:05.2337088Z dashboards/api_upload/Prometheus.json +2025-11-24T09:08:05.2337280Z dashboards/grafana_sync.sh +2025-11-24T09:08:12.2403444Z adminhost: +2025-11-24T09:08:12.2404209Z hosts: +2025-11-24T09:08:12.2404879Z adminhost: +2025-11-24T09:08:12.2405556Z ansible_host: 23.88.33.8 +2025-11-24T09:08:12.2406296Z adminhost_local: +2025-11-24T09:08:12.2406832Z hosts: +2025-11-24T09:08:12.2407286Z adminhost: +2025-11-24T09:08:12.2407724Z ansible_host: 10.1.1.10 +2025-11-24T09:08:12.2408196Z all: +2025-11-24T09:08:12.2408931Z vars: +2025-11-24T09:08:12.2409362Z adminhost_ip: 10.1.1.10 +2025-11-24T09:08:12.2410250Z ansible_ssh_common_args: -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s +2025-11-24T09:08:12.2411333Z ansible_user: root +2025-11-24T09:08:12.2412034Z private_interface: enp7s0 +2025-11-24T09:08:12.2412982Z assethost: +2025-11-24T09:08:12.2413623Z hosts: +2025-11-24T09:08:12.2414230Z assethost: +2025-11-24T09:08:12.2414870Z ansible_host: 10.1.1.1 +2025-11-24T09:08:12.2415548Z cassandra: +2025-11-24T09:08:12.2416195Z hosts: +2025-11-24T09:08:12.2416634Z cassandra-improved-teal: +2025-11-24T09:08:12.2417256Z ansible_host: 10.1.1.14 +2025-11-24T09:08:12.2417837Z cassandra-noted-manatee: +2025-11-24T09:08:12.2418347Z ansible_host: 10.1.1.15 +2025-11-24T09:08:12.2418832Z cassandra-tops-fowl: +2025-11-24T09:08:12.2419290Z ansible_host: 10.1.1.5 +2025-11-24T09:08:12.2419724Z vars: +2025-11-24T09:08:12.2420109Z cassandra_network_interface: enp7s0 +2025-11-24T09:08:12.2420595Z cassandra_seed: +2025-11-24T09:08:12.2420994Z hosts: +2025-11-24T09:08:12.2421389Z cassandra-tops-fowl: {} +2025-11-24T09:08:12.2421823Z elasticsearch: +2025-11-24T09:08:12.2422208Z hosts: +2025-11-24T09:08:12.2422611Z elasticsearch-amusing-pup: +2025-11-24T09:08:12.2423273Z ansible_host: 10.1.1.3 +2025-11-24T09:08:12.2423912Z elasticsearch-renewing-bear: +2025-11-24T09:08:12.2424514Z ansible_host: 10.1.1.12 +2025-11-24T09:08:12.2424933Z vars: +2025-11-24T09:08:12.2425439Z elasticsearch_network_interface: enp7s0 +2025-11-24T09:08:12.2425997Z elasticsearch_master: +2025-11-24T09:08:12.2426668Z children: +2025-11-24T09:08:12.2427163Z elasticsearch: {} +2025-11-24T09:08:12.2427609Z etcd: +2025-11-24T09:08:12.2428017Z children: +2025-11-24T09:08:12.2428507Z kube-master: {} +2025-11-24T09:08:12.2428954Z k8s-cluster: +2025-11-24T09:08:12.2429449Z children: +2025-11-24T09:08:12.2429827Z kube-master: {} +2025-11-24T09:08:12.2430319Z kube-node: {} +2025-11-24T09:08:12.2430736Z vars: +2025-11-24T09:08:12.2431207Z calico_mtu: 1450 +2025-11-24T09:08:12.2431616Z calico_veth_mtu: 1430 +2025-11-24T09:08:12.2432147Z docker_dns_servers_strict: false +2025-11-24T09:08:12.2433067Z kube_proxy_strict_arp: true +2025-11-24T09:08:12.2433626Z kube_vip_address: 10.1.1.254 +2025-11-24T09:08:12.2434078Z kube_vip_arp_enabled: true +2025-11-24T09:08:12.2434664Z kube_vip_controlplane_enabled: true +2025-11-24T09:08:12.2435240Z kube_vip_enabled: true +2025-11-24T09:08:12.2435675Z kube_vip_interface: enp7s0 +2025-11-24T09:08:12.2436217Z kube_vip_services_enabled: false +2025-11-24T09:08:12.2436769Z upstream_dns_servers: +2025-11-24T09:08:12.2437199Z - 10.1.1.10 +2025-11-24T09:08:12.2437688Z kube-master: +2025-11-24T09:08:12.2438078Z children: +2025-11-24T09:08:12.2438555Z kube-node: {} +2025-11-24T09:08:12.2438946Z kube-node: +2025-11-24T09:08:12.2439417Z hosts: +2025-11-24T09:08:12.2439804Z kubenode-renewed-asp: +2025-11-24T09:08:12.2440336Z ansible_host: 10.1.1.4 +2025-11-24T09:08:12.2440881Z etcd_member_name: kubenode-renewed-asp +2025-11-24T09:08:12.2441369Z ip: 10.1.1.4 +2025-11-24T09:08:12.2441883Z kubenode-super-marlin: +2025-11-24T09:08:12.2442308Z ansible_host: 10.1.1.8 +2025-11-24T09:08:12.2443122Z etcd_member_name: kubenode-super-marlin +2025-11-24T09:08:12.2443657Z ip: 10.1.1.8 +2025-11-24T09:08:12.2444118Z kubenode-teaching-gobbler: +2025-11-24T09:08:12.2444653Z ansible_host: 10.1.1.9 +2025-11-24T09:08:12.2445107Z etcd_member_name: kubenode-teaching-gobbler +2025-11-24T09:08:12.2445688Z ip: 10.1.1.9 +2025-11-24T09:08:12.2446131Z minio: +2025-11-24T09:08:12.2446548Z hosts: +2025-11-24T09:08:12.2446994Z minio-aware-zebra: +2025-11-24T09:08:12.2447441Z ansible_host: 10.1.1.6 +2025-11-24T09:08:12.2447962Z minio-striking-malamute: +2025-11-24T09:08:12.2448386Z ansible_host: 10.1.1.7 +2025-11-24T09:08:12.2448895Z vars: +2025-11-24T09:08:12.2449478Z minio_network_interface: enp7s0 +2025-11-24T09:08:12.2449979Z postgresql: +2025-11-24T09:08:12.2450449Z hosts: +2025-11-24T09:08:12.2450826Z postgresql1: +2025-11-24T09:08:12.2451313Z ansible_host: 10.1.1.2 +2025-11-24T09:08:12.2451738Z postgresql2: +2025-11-24T09:08:12.2452237Z ansible_host: 10.1.1.11 +2025-11-24T09:08:12.2452828Z postgresql3: +2025-11-24T09:08:12.2453260Z ansible_host: 10.1.1.13 +2025-11-24T09:08:12.2453805Z vars: +2025-11-24T09:08:12.2454229Z postgresql_network_interface: enp7s0 +2025-11-24T09:08:12.2454823Z wire_dbname: wire-server +2025-11-24T09:08:12.2455356Z wire_pass: verysecurepassword +2025-11-24T09:08:12.2455822Z wire_user: wire-server +2025-11-24T09:08:12.2456331Z postgresql_ro: +2025-11-24T09:08:12.2456711Z hosts: +2025-11-24T09:08:12.2457190Z postgresql2: {} +2025-11-24T09:08:12.2457589Z postgresql3: {} +2025-11-24T09:08:12.2458091Z postgresql_rw: +2025-11-24T09:08:12.2458530Z hosts: +2025-11-24T09:08:12.2458957Z postgresql1: {} +2025-11-24T09:08:12.2459590Z Running ansible playbook setup_nodes.yml via adminhost (23.88.33.8)... +2025-11-24T09:08:13.0051532Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:08:13.0052844Z -vvvv to see details +2025-11-24T09:08:13.0057965Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:08:13.0058920Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:08:13.1426226Z +2025-11-24T09:08:13.1427105Z PLAY [Setup adminhost with dnsmasq and Docker] ********************************* +2025-11-24T09:08:13.1427845Z +2025-11-24T09:08:13.1428626Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:08:21.6111325Z ok: [adminhost] +2025-11-24T09:08:21.6111655Z +2025-11-24T09:08:21.6112018Z TASK [Check if private interface exists] *************************************** +2025-11-24T09:08:25.2188166Z changed: [adminhost] +2025-11-24T09:08:25.2188499Z +2025-11-24T09:08:25.2188815Z TASK [Get private IP address] ************************************************** +2025-11-24T09:08:28.7044724Z changed: [adminhost] +2025-11-24T09:08:28.7045060Z +2025-11-24T09:08:28.7045371Z TASK [Set private IP fact] ***************************************************** +2025-11-24T09:08:28.7193329Z ok: [adminhost] +2025-11-24T09:08:28.7193630Z +2025-11-24T09:08:28.7193976Z TASK [Disable systemd-resolved] ************************************************ +2025-11-24T09:08:33.0702612Z changed: [adminhost] +2025-11-24T09:08:33.0703174Z +2025-11-24T09:08:33.0703508Z TASK [Remove existing resolv.conf symlink] ************************************* +2025-11-24T09:08:36.5494595Z changed: [adminhost] +2025-11-24T09:08:36.5495088Z +2025-11-24T09:08:36.5495605Z TASK [Create new resolv.conf with Google DNS] ********************************** +2025-11-24T09:08:43.7376422Z changed: [adminhost] +2025-11-24T09:08:43.7376816Z +2025-11-24T09:08:43.7377150Z TASK [Update package cache] **************************************************** +2025-11-24T09:08:58.4128741Z changed: [adminhost] +2025-11-24T09:08:58.4129140Z +2025-11-24T09:08:58.4129456Z TASK [Install dnsmasq] ********************************************************* +2025-11-24T09:09:08.6401019Z changed: [adminhost] +2025-11-24T09:09:08.6401471Z +2025-11-24T09:09:08.6403137Z TASK [Configure dnsmasq] ******************************************************* +2025-11-24T09:09:15.9922031Z changed: [adminhost] +2025-11-24T09:09:15.9922514Z +2025-11-24T09:09:15.9923154Z TASK [Restart dnsmasq] ********************************************************* +2025-11-24T09:09:19.8214690Z changed: [adminhost] +2025-11-24T09:09:19.8215061Z +2025-11-24T09:09:19.8215455Z TASK [Add Docker GPG key] ****************************************************** +2025-11-24T09:09:23.7075163Z changed: [adminhost] +2025-11-24T09:09:23.7075643Z +2025-11-24T09:09:23.7076113Z TASK [Add Docker repository] *************************************************** +2025-11-24T09:09:33.4673655Z changed: [adminhost] +2025-11-24T09:09:33.4674432Z +2025-11-24T09:09:33.4674829Z TASK [Install Docker packages] ************************************************* +2025-11-24T09:09:55.3756210Z changed: [adminhost] +2025-11-24T09:09:55.3756533Z +2025-11-24T09:09:55.3756879Z TASK [Configure iptables for DNS] ********************************************** +2025-11-24T09:09:59.1481513Z changed: [adminhost] +2025-11-24T09:09:59.1481993Z +2025-11-24T09:09:59.1482533Z TASK [Configure iptables for DNS input from private network] ******************* +2025-11-24T09:10:02.6482603Z changed: [adminhost] +2025-11-24T09:10:02.6483189Z +2025-11-24T09:10:02.6483541Z TASK [Start and enable Docker] ************************************************* +2025-11-24T09:10:06.4093014Z ok: [adminhost] +2025-11-24T09:10:06.4093447Z +2025-11-24T09:10:06.4093960Z PLAY [Setup default routing for all k8s and datastore nodes] ******************* +2025-11-24T09:10:06.4094612Z +2025-11-24T09:10:06.4095020Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:10:16.1496131Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:10:16.2106940Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:10:16.3051732Z ok: [cassandra-tops-fowl] +2025-11-24T09:10:16.6400858Z ok: [cassandra-improved-teal] +2025-11-24T09:10:25.5211985Z ok: [cassandra-noted-manatee] +2025-11-24T09:10:25.7444993Z ok: [minio-striking-malamute] +2025-11-24T09:10:26.1743436Z ok: [postgresql1] +2025-11-24T09:10:34.8024267Z ok: [postgresql2] +2025-11-24T09:10:34.8024934Z ok: [postgresql3] +2025-11-24T09:10:34.8025537Z ok: [minio-aware-zebra] +2025-11-24T09:10:34.8026174Z ok: [kubenode-renewed-asp] +2025-11-24T09:10:34.8026802Z ok: [kubenode-super-marlin] +2025-11-24T09:10:34.8027863Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:10:34.8028305Z +2025-11-24T09:10:34.8028787Z TASK [Check if private interface exists] *************************************** +2025-11-24T09:10:38.4878094Z changed: [cassandra-noted-manatee] +2025-11-24T09:10:38.4987042Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:10:38.5072333Z changed: [cassandra-tops-fowl] +2025-11-24T09:10:38.5201628Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:10:42.2119548Z changed: [cassandra-improved-teal] +2025-11-24T09:10:42.2254968Z changed: [postgresql3] +2025-11-24T09:10:42.2382854Z changed: [postgresql1] +2025-11-24T09:10:45.8531515Z changed: [minio-aware-zebra] +2025-11-24T09:10:45.8532298Z changed: [postgresql2] +2025-11-24T09:10:45.8533187Z changed: [minio-striking-malamute] +2025-11-24T09:10:45.8533924Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:10:45.8534668Z changed: [kubenode-super-marlin] +2025-11-24T09:10:45.8535400Z changed: [kubenode-renewed-asp] +2025-11-24T09:10:45.8535794Z +2025-11-24T09:10:45.8536309Z TASK [Get existing gateway for private interface] ****************************** +2025-11-24T09:10:49.5356348Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:10:49.5455473Z ok: [cassandra-improved-teal] +2025-11-24T09:10:49.5578810Z ok: [cassandra-noted-manatee] +2025-11-24T09:10:49.5683819Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:10:53.2683417Z ok: [cassandra-tops-fowl] +2025-11-24T09:10:53.2784154Z ok: [postgresql2] +2025-11-24T09:10:53.2886374Z ok: [postgresql1] +2025-11-24T09:10:56.8843559Z ok: [minio-striking-malamute] +2025-11-24T09:10:56.8844284Z ok: [postgresql3] +2025-11-24T09:10:56.8844725Z ok: [minio-aware-zebra] +2025-11-24T09:10:56.8845182Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:10:56.8845650Z ok: [kubenode-super-marlin] +2025-11-24T09:10:56.8846120Z ok: [kubenode-renewed-asp] +2025-11-24T09:10:56.8846390Z +2025-11-24T09:10:56.8846718Z TASK [Check if default route already exists] *********************************** +2025-11-24T09:11:00.5583545Z ok: [cassandra-tops-fowl] +2025-11-24T09:11:00.5693036Z ok: [cassandra-improved-teal] +2025-11-24T09:11:00.5866785Z ok: [cassandra-noted-manatee] +2025-11-24T09:11:00.5988822Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:11:04.2361879Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:11:04.2799588Z ok: [minio-striking-malamute] +2025-11-24T09:11:04.2923416Z ok: [postgresql1] +2025-11-24T09:11:07.8774203Z ok: [postgresql3] +2025-11-24T09:11:07.8774738Z ok: [minio-aware-zebra] +2025-11-24T09:11:07.8775215Z ok: [postgresql2] +2025-11-24T09:11:07.8775683Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:11:07.8776217Z ok: [kubenode-super-marlin] +2025-11-24T09:11:07.8776696Z ok: [kubenode-renewed-asp] +2025-11-24T09:11:07.8776972Z +2025-11-24T09:11:07.8777321Z TASK [Add default route via existing gateway] ********************************** +2025-11-24T09:11:11.5900031Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:11:11.5995268Z changed: [cassandra-tops-fowl] +2025-11-24T09:11:11.6141808Z changed: [cassandra-noted-manatee] +2025-11-24T09:11:11.6243203Z changed: [cassandra-improved-teal] +2025-11-24T09:11:15.2990905Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:11:15.3254331Z changed: [postgresql3] +2025-11-24T09:11:15.3327666Z changed: [postgresql1] +2025-11-24T09:11:19.1415772Z changed: [minio-striking-malamute] +2025-11-24T09:11:19.1416396Z changed: [postgresql2] +2025-11-24T09:11:19.1416919Z changed: [minio-aware-zebra] +2025-11-24T09:11:19.1417456Z changed: [kubenode-renewed-asp] +2025-11-24T09:11:19.1417971Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:11:19.1418571Z changed: [kubenode-super-marlin] +2025-11-24T09:11:19.1418888Z +2025-11-24T09:11:19.1419233Z PLAY [Configure DNS for all k8s and datastore nodes] *************************** +2025-11-24T09:11:19.1419695Z +2025-11-24T09:11:19.1420012Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:11:24.1577565Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:11:24.2090765Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:11:24.2265423Z ok: [cassandra-improved-teal] +2025-11-24T09:11:24.3490042Z ok: [cassandra-tops-fowl] +2025-11-24T09:11:29.1795434Z ok: [cassandra-noted-manatee] +2025-11-24T09:11:29.2352034Z ok: [minio-aware-zebra] +2025-11-24T09:11:29.2431525Z ok: [postgresql2] +2025-11-24T09:11:34.1499912Z ok: [minio-striking-malamute] +2025-11-24T09:11:34.1500795Z ok: [postgresql1] +2025-11-24T09:11:34.1501317Z ok: [postgresql3] +2025-11-24T09:11:34.1501849Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:11:34.1502415Z ok: [kubenode-super-marlin] +2025-11-24T09:11:34.1503317Z ok: [kubenode-renewed-asp] +2025-11-24T09:11:34.1503965Z +2025-11-24T09:11:34.1504354Z TASK [Disable systemd-resolved] ************************************************ +2025-11-24T09:11:38.8551602Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:11:38.8715991Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:11:38.9506703Z changed: [cassandra-noted-manatee] +2025-11-24T09:11:38.9639058Z changed: [cassandra-tops-fowl] +2025-11-24T09:11:43.5854608Z changed: [cassandra-improved-teal] +2025-11-24T09:11:43.6434519Z changed: [postgresql1] +2025-11-24T09:11:43.6857225Z changed: [minio-striking-malamute] +2025-11-24T09:11:48.0544294Z changed: [minio-aware-zebra] +2025-11-24T09:11:48.0545116Z changed: [postgresql2] +2025-11-24T09:11:48.0545757Z changed: [postgresql3] +2025-11-24T09:11:48.0546421Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:11:48.0547200Z changed: [kubenode-renewed-asp] +2025-11-24T09:11:48.0547970Z changed: [kubenode-super-marlin] +2025-11-24T09:11:48.0548388Z +2025-11-24T09:11:48.0548883Z TASK [Remove existing resolv.conf symlink] ************************************* +2025-11-24T09:11:51.7320590Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:11:51.7577450Z changed: [cassandra-noted-manatee] +2025-11-24T09:11:51.7719222Z changed: [cassandra-improved-teal] +2025-11-24T09:11:51.7799387Z changed: [cassandra-tops-fowl] +2025-11-24T09:11:55.4583669Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:11:55.4782903Z changed: [postgresql3] +2025-11-24T09:11:55.4956670Z changed: [postgresql1] +2025-11-24T09:11:59.1251767Z changed: [minio-aware-zebra] +2025-11-24T09:11:59.1252548Z changed: [minio-striking-malamute] +2025-11-24T09:11:59.1253481Z changed: [postgresql2] +2025-11-24T09:11:59.1254141Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:11:59.1254882Z changed: [kubenode-renewed-asp] +2025-11-24T09:11:59.1255584Z changed: [kubenode-super-marlin] +2025-11-24T09:11:59.1256292Z +2025-11-24T09:11:59.1256771Z TASK [Create new resolv.conf with Adminhost dnsmasq service] ******************* +2025-11-24T09:12:06.7466326Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:12:06.7677173Z changed: [cassandra-tops-fowl] +2025-11-24T09:12:06.8086475Z changed: [cassandra-noted-manatee] +2025-11-24T09:12:06.8332472Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:12:14.4071398Z changed: [cassandra-improved-teal] +2025-11-24T09:12:14.4342898Z changed: [postgresql1] +2025-11-24T09:12:14.4507975Z changed: [minio-striking-malamute] +2025-11-24T09:12:22.0760148Z changed: [postgresql3] +2025-11-24T09:12:22.0760946Z changed: [minio-aware-zebra] +2025-11-24T09:12:22.0761460Z changed: [postgresql2] +2025-11-24T09:12:22.0761956Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:12:22.0762495Z changed: [kubenode-super-marlin] +2025-11-24T09:12:22.0763259Z changed: [kubenode-renewed-asp] +2025-11-24T09:12:22.0763549Z +2025-11-24T09:12:22.0763864Z PLAY [Add demo user on all nodes] ********************************************** +2025-11-24T09:12:22.0764301Z +2025-11-24T09:12:22.0764595Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:12:26.9820366Z ok: [cassandra-noted-manatee] +2025-11-24T09:12:27.0132300Z ok: [cassandra-improved-teal] +2025-11-24T09:12:29.5955994Z ok: [cassandra-tops-fowl] +2025-11-24T09:12:30.8706245Z ok: [adminhost] +2025-11-24T09:12:31.7978275Z ok: [assethost] +2025-11-24T09:12:31.9097142Z ok: [postgresql1] +2025-11-24T09:12:32.1156147Z ok: [minio-aware-zebra] +2025-11-24T09:12:34.6880902Z ok: [minio-striking-malamute] +2025-11-24T09:12:36.0951946Z ok: [postgresql2] +2025-11-24T09:12:40.8918706Z ok: [postgresql3] +2025-11-24T09:12:40.8919295Z ok: [kubenode-renewed-asp] +2025-11-24T09:12:40.8919775Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:12:40.8920252Z ok: [kubenode-super-marlin] +2025-11-24T09:12:40.8920715Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:12:40.8921187Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:12:40.8921477Z +2025-11-24T09:12:40.8921764Z TASK [Create demo user] ******************************************************** +2025-11-24T09:12:44.7531381Z changed: [assethost] +2025-11-24T09:12:44.8188882Z changed: [adminhost] +2025-11-24T09:12:44.8662841Z changed: [cassandra-tops-fowl] +2025-11-24T09:12:44.9806185Z changed: [cassandra-improved-teal] +2025-11-24T09:12:48.6297368Z changed: [cassandra-noted-manatee] +2025-11-24T09:12:48.6378345Z changed: [minio-aware-zebra] +2025-11-24T09:12:48.6680252Z changed: [postgresql1] +2025-11-24T09:12:48.7285622Z changed: [minio-striking-malamute] +2025-11-24T09:12:48.7889828Z changed: [postgresql2] +2025-11-24T09:12:52.7078378Z changed: [postgresql3] +2025-11-24T09:12:52.7078957Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:12:52.7079478Z changed: [kubenode-renewed-asp] +2025-11-24T09:12:52.7079954Z changed: [kubenode-super-marlin] +2025-11-24T09:12:52.7080431Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:12:52.7080944Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:12:52.7081261Z +2025-11-24T09:12:52.7081557Z TASK [Add demo user to sudo group] ********************************************* +2025-11-24T09:12:56.3707870Z changed: [adminhost] +2025-11-24T09:12:56.4751171Z changed: [assethost] +2025-11-24T09:12:56.5491853Z changed: [cassandra-tops-fowl] +2025-11-24T09:12:56.6371649Z changed: [cassandra-improved-teal] +2025-11-24T09:13:00.1843102Z changed: [cassandra-noted-manatee] +2025-11-24T09:13:00.2157820Z changed: [minio-striking-malamute] +2025-11-24T09:13:00.2936555Z changed: [minio-aware-zebra] +2025-11-24T09:13:00.4172968Z changed: [postgresql1] +2025-11-24T09:13:00.4302171Z changed: [postgresql3] +2025-11-24T09:13:04.2192577Z changed: [postgresql2] +2025-11-24T09:13:04.2193413Z changed: [kubenode-renewed-asp] +2025-11-24T09:13:04.2194162Z changed: [kubenode-super-marlin] +2025-11-24T09:13:04.2194682Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:13:04.2195189Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:13:04.2195701Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:13:04.2196345Z +2025-11-24T09:13:04.2196660Z TASK [Ensure .ssh directory exists for demo user] ****************************** +2025-11-24T09:13:07.8347106Z changed: [assethost] +2025-11-24T09:13:07.9505776Z changed: [adminhost] +2025-11-24T09:13:07.9643881Z changed: [cassandra-tops-fowl] +2025-11-24T09:13:07.9751593Z changed: [cassandra-improved-teal] +2025-11-24T09:13:11.5139768Z changed: [cassandra-noted-manatee] +2025-11-24T09:13:11.5535918Z changed: [minio-aware-zebra] +2025-11-24T09:13:11.6771063Z changed: [minio-striking-malamute] +2025-11-24T09:13:11.6944112Z changed: [postgresql1] +2025-11-24T09:13:11.7630281Z changed: [postgresql3] +2025-11-24T09:13:15.4249803Z changed: [postgresql2] +2025-11-24T09:13:15.4250933Z changed: [kubenode-super-marlin] +2025-11-24T09:13:15.4251604Z changed: [kubenode-renewed-asp] +2025-11-24T09:13:15.4253039Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:13:15.4253652Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:13:15.4254151Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:13:15.4254467Z +2025-11-24T09:13:15.4254771Z TASK [Copy root's authorized_keys to demo user] ******************************** +2025-11-24T09:13:19.0583492Z changed: [assethost] +2025-11-24T09:13:19.1372601Z changed: [adminhost] +2025-11-24T09:13:19.1483530Z changed: [cassandra-noted-manatee] +2025-11-24T09:13:19.1666259Z changed: [cassandra-tops-fowl] +2025-11-24T09:13:22.7262227Z changed: [cassandra-improved-teal] +2025-11-24T09:13:22.8069635Z changed: [minio-aware-zebra] +2025-11-24T09:13:22.8407386Z changed: [minio-striking-malamute] +2025-11-24T09:13:22.8546790Z changed: [postgresql1] +2025-11-24T09:13:22.9262464Z changed: [postgresql3] +2025-11-24T09:13:26.6028057Z changed: [postgresql2] +2025-11-24T09:13:26.6028655Z changed: [kubenode-super-marlin] +2025-11-24T09:13:26.6029187Z changed: [kubenode-renewed-asp] +2025-11-24T09:13:26.6029705Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:13:26.6030253Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:13:26.6030791Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:13:26.6031128Z +2025-11-24T09:13:26.6031474Z TASK [Allow demo user to run sudo without password] **************************** +2025-11-24T09:13:30.3595825Z changed: [adminhost] +2025-11-24T09:13:30.4188739Z changed: [assethost] +2025-11-24T09:13:30.4380154Z changed: [cassandra-noted-manatee] +2025-11-24T09:13:30.4583392Z changed: [cassandra-improved-teal] +2025-11-24T09:13:34.0694261Z changed: [cassandra-tops-fowl] +2025-11-24T09:13:34.1413409Z changed: [minio-striking-malamute] +2025-11-24T09:13:34.1487972Z changed: [postgresql3] +2025-11-24T09:13:34.1701206Z changed: [minio-aware-zebra] +2025-11-24T09:13:34.2100254Z changed: [postgresql1] +2025-11-24T09:13:38.0887844Z changed: [postgresql2] +2025-11-24T09:13:38.0888675Z changed: [kubenode-super-marlin] +2025-11-24T09:13:38.0889455Z changed: [kubenode-renewed-asp] +2025-11-24T09:13:38.0890208Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:13:38.0891022Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:13:38.0891836Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:13:38.0892304Z +2025-11-24T09:13:38.0892567Z PLAY RECAP ********************************************************************* +2025-11-24T09:13:38.0893599Z adminhost : ok=23 changed=19 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0894500Z assethost : ok=6 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0895418Z cassandra-improved-teal : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0896394Z cassandra-noted-manatee : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0897359Z cassandra-tops-fowl : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0898335Z elasticsearch-amusing-pup : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0899589Z elasticsearch-renewing-bear : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0900557Z kubenode-renewed-asp : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0901512Z kubenode-super-marlin : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0902432Z kubenode-teaching-gobbler : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0903525Z minio-aware-zebra : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0904392Z minio-striking-malamute : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0905252Z postgresql1 : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0906061Z postgresql2 : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0906858Z postgresql3 : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:13:38.0907309Z +2025-11-24T09:13:40.0078724Z Still deploying... +2025-11-24T09:13:40.0436730Z WARNING: This output is designed for human readability. For machine-readable output, please use --format. +2025-11-24T09:13:40.0470862Z Loading ZAUTH container... +2025-11-24T09:13:43.7017194Z WARNING: This output is designed for human readability. For machine-readable output, please use --format. +2025-11-24T09:13:43.7059225Z Loading WSD container... +2025-11-24T09:13:50.0091636Z Still deploying... +2025-11-24T09:14:00.0106608Z Still deploying... +2025-11-24T09:14:10.0115781Z Still deploying... +2025-11-24T09:14:20.0128012Z Still deploying... +2025-11-24T09:14:30.0138600Z Still deploying... +2025-11-24T09:14:40.0152862Z Still deploying... +2025-11-24T09:14:50.0168651Z Still deploying... +2025-11-24T09:15:00.0181961Z Still deploying... +2025-11-24T09:15:05.7403182Z Writing /root/values/wire-server/secrets.yaml +2025-11-24T09:15:05.7424152Z Writing /root/ansible/inventory/offline/group_vars/all/secrets.yaml +2025-11-24T09:15:05.7436816Z Writing /root/values/kube-prometheus-stack/secrets.yaml +2025-11-24T09:15:05.9485824Z + ls /wire-server-deploy/ansible/inventory/offline +2025-11-24T09:15:05.9555787Z 99-static +2025-11-24T09:15:05.9556517Z README.md +2025-11-24T09:15:05.9557029Z group_vars +2025-11-24T09:15:05.9557573Z inventory.yml +2025-11-24T09:15:05.9559535Z + '[' -f /wire-server-deploy/ansible/inventory/offline/hosts.ini ']' +2025-11-24T09:15:05.9560676Z + '[' -f /wire-server-deploy/ansible/inventory/offline/inventory.yml ']' +2025-11-24T09:15:05.9561603Z + INVENTORY_FILE=/wire-server-deploy/ansible/inventory/offline/inventory.yml +2025-11-24T09:15:05.9562476Z + '[' -f /wire-server-deploy/ansible/inventory/offline/hosts.ini ']' +2025-11-24T09:15:05.9563723Z + echo 'using ansible inventory: /wire-server-deploy/ansible/inventory/offline/inventory.yml' +2025-11-24T09:15:05.9565025Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/setup-offline-sources.yml +2025-11-24T09:15:05.9566282Z using ansible inventory: /wire-server-deploy/ansible/inventory/offline/inventory.yml +2025-11-24T09:15:06.6059572Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:15:06.6063773Z -vvvv to see details +2025-11-24T09:15:06.6064379Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:15:06.6065119Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:15:06.8141757Z +2025-11-24T09:15:06.8142832Z PLAY [Copy over binaries, debs and container images to the asset host and host them] *** +2025-11-24T09:15:06.8143442Z +2025-11-24T09:15:06.8143762Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:15:09.2633663Z ok: [assethost] +2025-11-24T09:15:09.2634215Z +2025-11-24T09:15:09.2634572Z TASK [file] ******************************************************************** +2025-11-24T09:15:09.6188818Z changed: [assethost] +2025-11-24T09:15:09.6189253Z +2025-11-24T09:15:09.6189551Z TASK [Copy debs jammy] ********************************************************* +2025-11-24T09:15:10.0193892Z Still deploying... +2025-11-24T09:15:20.0209065Z Still deploying... +2025-11-24T09:15:27.0173472Z changed: [assethost] +2025-11-24T09:15:27.0173821Z +2025-11-24T09:15:27.0174149Z TASK [Copy binaries] *********************************************************** +2025-11-24T09:15:30.0225527Z Still deploying... +2025-11-24T09:15:40.0239400Z Still deploying... +2025-11-24T09:15:50.0251685Z Still deploying... +2025-11-24T09:15:56.1094507Z changed: [assethost] +2025-11-24T09:15:56.1094950Z +2025-11-24T09:15:56.1095410Z TASK [Copy system containers] ************************************************** +2025-11-24T09:16:00.0263832Z Still deploying... +2025-11-24T09:16:10.0281094Z Still deploying... +2025-11-24T09:16:20.0296397Z Still deploying... +2025-11-24T09:16:30.0311868Z Still deploying... +2025-11-24T09:16:40.0325142Z Still deploying... +2025-11-24T09:16:50.0336919Z Still deploying... +2025-11-24T09:17:00.0350158Z Still deploying... +2025-11-24T09:17:10.0368321Z Still deploying... +2025-11-24T09:17:20.0383572Z Still deploying... +2025-11-24T09:17:30.0393656Z Still deploying... +2025-11-24T09:17:40.0407136Z Still deploying... +2025-11-24T09:17:46.3509615Z changed: [assethost] +2025-11-24T09:17:46.3509991Z +2025-11-24T09:17:46.3510851Z TASK [Copy helm containers] **************************************************** +2025-11-24T09:17:50.0420175Z Still deploying... +2025-11-24T09:18:00.0433326Z Still deploying... +2025-11-24T09:18:10.0454983Z Still deploying... +2025-11-24T09:18:20.0469044Z Still deploying... +2025-11-24T09:18:30.0484115Z Still deploying... +2025-11-24T09:18:40.0498377Z Still deploying... +2025-11-24T09:18:50.0515382Z Still deploying... +2025-11-24T09:19:00.0527007Z Still deploying... +2025-11-24T09:19:10.0539628Z Still deploying... +2025-11-24T09:19:20.0554861Z Still deploying... +2025-11-24T09:19:30.0567180Z Still deploying... +2025-11-24T09:19:40.0581683Z Still deploying... +2025-11-24T09:19:50.0623617Z Still deploying... +2025-11-24T09:20:00.0622900Z Still deploying... +2025-11-24T09:20:10.0637760Z Still deploying... +2025-11-24T09:20:20.0653568Z Still deploying... +2025-11-24T09:20:30.0668932Z Still deploying... +2025-11-24T09:20:40.0682438Z Still deploying... +2025-11-24T09:20:50.0698613Z Still deploying... +2025-11-24T09:21:00.0712074Z Still deploying... +2025-11-24T09:21:10.0723666Z Still deploying... +2025-11-24T09:21:20.0742809Z Still deploying... +2025-11-24T09:21:30.0728966Z Still deploying... +2025-11-24T09:21:40.0743439Z Still deploying... +2025-11-24T09:21:50.0837790Z Still deploying... +2025-11-24T09:22:00.0772480Z Still deploying... +2025-11-24T09:22:10.0784105Z Still deploying... +2025-11-24T09:22:20.0794880Z Still deploying... +2025-11-24T09:22:30.0813514Z Still deploying... +2025-11-24T09:22:40.0834855Z Still deploying... +2025-11-24T09:22:50.0867918Z Still deploying... +2025-11-24T09:23:00.0867671Z Still deploying... +2025-11-24T09:23:10.0881916Z Still deploying... +2025-11-24T09:23:20.0898839Z Still deploying... +2025-11-24T09:23:30.0910956Z Still deploying... +2025-11-24T09:23:40.0930171Z Still deploying... +2025-11-24T09:23:50.0951050Z Still deploying... +2025-11-24T09:24:00.0963363Z Still deploying... +2025-11-24T09:24:10.0980580Z Still deploying... +2025-11-24T09:24:20.0991939Z Still deploying... +2025-11-24T09:24:30.1006477Z Still deploying... +2025-11-24T09:24:40.1019254Z Still deploying... +2025-11-24T09:24:50.1031563Z Still deploying... +2025-11-24T09:25:00.1043138Z Still deploying... +2025-11-24T09:25:10.1058338Z Still deploying... +2025-11-24T09:25:20.1076989Z Still deploying... +2025-11-24T09:25:30.1089549Z Still deploying... +2025-11-24T09:25:40.1101874Z Still deploying... +2025-11-24T09:25:50.1115965Z Still deploying... +2025-11-24T09:26:00.1128630Z Still deploying... +2025-11-24T09:26:10.1140010Z Still deploying... +2025-11-24T09:26:20.1155403Z Still deploying... +2025-11-24T09:26:30.1166825Z Still deploying... +2025-11-24T09:26:40.1180182Z Still deploying... +2025-11-24T09:26:50.1197872Z Still deploying... +2025-11-24T09:27:00.1211141Z Still deploying... +2025-11-24T09:27:10.1229682Z Still deploying... +2025-11-24T09:27:20.1244806Z Still deploying... +2025-11-24T09:27:30.1258586Z Still deploying... +2025-11-24T09:27:40.1270771Z Still deploying... +2025-11-24T09:27:50.1284238Z Still deploying... +2025-11-24T09:28:00.1298461Z Still deploying... +2025-11-24T09:28:10.1321989Z Still deploying... +2025-11-24T09:28:20.1334628Z Still deploying... +2025-11-24T09:28:30.1348972Z Still deploying... +2025-11-24T09:28:40.1365153Z Still deploying... +2025-11-24T09:28:50.1379835Z Still deploying... +2025-11-24T09:29:00.1421629Z Still deploying... +2025-11-24T09:29:10.1436547Z Still deploying... +2025-11-24T09:29:20.1449234Z Still deploying... +2025-11-24T09:29:30.1464637Z Still deploying... +2025-11-24T09:29:40.1478210Z Still deploying... +2025-11-24T09:29:50.1493736Z Still deploying... +2025-11-24T09:30:00.1511178Z Still deploying... +2025-11-24T09:30:10.1521345Z Still deploying... +2025-11-24T09:30:20.1534050Z Still deploying... +2025-11-24T09:30:30.1546017Z Still deploying... +2025-11-24T09:30:40.1560468Z Still deploying... +2025-11-24T09:30:50.1575708Z Still deploying... +2025-11-24T09:31:00.1600052Z Still deploying... +2025-11-24T09:31:10.1600917Z Still deploying... +2025-11-24T09:31:20.1615559Z Still deploying... +2025-11-24T09:31:30.1627812Z Still deploying... +2025-11-24T09:31:40.1643134Z Still deploying... +2025-11-24T09:31:50.1651916Z Still deploying... +2025-11-24T09:32:00.1665252Z Still deploying... +2025-11-24T09:32:10.1677673Z Still deploying... +2025-11-24T09:32:20.1689940Z Still deploying... +2025-11-24T09:32:30.1713420Z Still deploying... +2025-11-24T09:32:40.1719686Z Still deploying... +2025-11-24T09:32:50.1731987Z Still deploying... +2025-11-24T09:33:00.1744089Z Still deploying... +2025-11-24T09:33:10.1759498Z Still deploying... +2025-11-24T09:33:20.1772265Z Still deploying... +2025-11-24T09:33:30.1789287Z Still deploying... +2025-11-24T09:33:40.1806232Z Still deploying... +2025-11-24T09:33:50.1819632Z Still deploying... +2025-11-24T09:34:00.1833810Z Still deploying... +2025-11-24T09:34:10.1847378Z Still deploying... +2025-11-24T09:34:20.1859174Z Still deploying... +2025-11-24T09:34:30.1873403Z Still deploying... +2025-11-24T09:34:40.1885093Z Still deploying... +2025-11-24T09:34:50.1898725Z Still deploying... +2025-11-24T09:35:00.1914659Z Still deploying... +2025-11-24T09:35:05.0286302Z changed: [assethost] +2025-11-24T09:35:05.0287935Z +2025-11-24T09:35:05.0288540Z TASK [Copy serve-assets.service file] ****************************************** +2025-11-24T09:35:05.6600468Z changed: [assethost] +2025-11-24T09:35:05.6600850Z +2025-11-24T09:35:05.6601258Z TASK [Running serve-assets systemd service] ************************************ +2025-11-24T09:35:06.5913463Z [WARNING]: Could not match supplied host pattern, ignoring: rmq-cluster +2025-11-24T09:35:06.6026384Z changed: [assethost] +2025-11-24T09:35:06.6026736Z +2025-11-24T09:35:06.6027134Z PLAY [Set up offline repositories and remove online ones] ********************** +2025-11-24T09:35:06.6027650Z +2025-11-24T09:35:06.6027961Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:35:08.7462578Z ok: [kubenode-super-marlin] +2025-11-24T09:35:08.9102929Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:09.4810675Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:09.6313838Z ok: [cassandra-improved-teal] +2025-11-24T09:35:10.1927692Z Still deploying... +2025-11-24T09:35:11.4411036Z ok: [cassandra-noted-manatee] +2025-11-24T09:35:11.5239898Z ok: [cassandra-tops-fowl] +2025-11-24T09:35:11.6207698Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:35:14.7709716Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:35:14.7710430Z ok: [minio-aware-zebra] +2025-11-24T09:35:14.7710942Z ok: [minio-striking-malamute] +2025-11-24T09:35:14.7711436Z ok: [postgresql1] +2025-11-24T09:35:14.7712295Z ok: [postgresql3] +2025-11-24T09:35:14.7712950Z ok: [postgresql2] +2025-11-24T09:35:14.7713203Z +2025-11-24T09:35:14.7713545Z TASK [Bail if GPG is not installed or installable.] **************************** +2025-11-24T09:35:15.3305383Z ok: [kubenode-super-marlin] +2025-11-24T09:35:15.3777961Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:15.5635752Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:15.6550253Z ok: [cassandra-noted-manatee] +2025-11-24T09:35:15.8400364Z ok: [cassandra-improved-teal] +2025-11-24T09:35:15.9233460Z ok: [cassandra-tops-fowl] +2025-11-24T09:35:15.9581102Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:35:16.6055215Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:35:16.6055968Z ok: [minio-aware-zebra] +2025-11-24T09:35:16.6056481Z ok: [minio-striking-malamute] +2025-11-24T09:35:16.6056980Z ok: [postgresql1] +2025-11-24T09:35:16.6057432Z ok: [postgresql2] +2025-11-24T09:35:16.6057886Z ok: [postgresql3] +2025-11-24T09:35:16.6058160Z +2025-11-24T09:35:16.6058547Z TASK [Remove /etc/apt/sources.list to remove all online debian package repos] *** +2025-11-24T09:35:16.8766604Z changed: [kubenode-super-marlin] +2025-11-24T09:35:16.8893497Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:16.9873000Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:17.0067636Z changed: [cassandra-noted-manatee] +2025-11-24T09:35:17.1550777Z changed: [cassandra-improved-teal] +2025-11-24T09:35:17.1889824Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:35:17.2080306Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:35:17.5918080Z changed: [cassandra-tops-fowl] +2025-11-24T09:35:17.5918926Z changed: [minio-aware-zebra] +2025-11-24T09:35:17.5920006Z changed: [minio-striking-malamute] +2025-11-24T09:35:17.5920687Z changed: [postgresql1] +2025-11-24T09:35:17.5921263Z changed: [postgresql3] +2025-11-24T09:35:17.5921795Z changed: [postgresql2] +2025-11-24T09:35:17.5922055Z +2025-11-24T09:35:17.5922470Z TASK [Remove /etc/apt/sources.list.d/ to remove all online debian package repos] *** +2025-11-24T09:35:17.8468724Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:17.8767090Z changed: [kubenode-super-marlin] +2025-11-24T09:35:17.9926362Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:18.0515803Z changed: [cassandra-noted-manatee] +2025-11-24T09:35:18.2150605Z changed: [cassandra-improved-teal] +2025-11-24T09:35:18.2348686Z changed: [cassandra-tops-fowl] +2025-11-24T09:35:18.2696186Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:35:18.6064920Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:35:18.6065663Z changed: [minio-aware-zebra] +2025-11-24T09:35:18.6066154Z changed: [minio-striking-malamute] +2025-11-24T09:35:18.6066647Z changed: [postgresql1] +2025-11-24T09:35:18.6067096Z changed: [postgresql2] +2025-11-24T09:35:18.6067526Z changed: [postgresql3] +2025-11-24T09:35:18.6067764Z +2025-11-24T09:35:18.6068072Z TASK [Register offline repo key] *********************************************** +2025-11-24T09:35:19.6433160Z changed: [kubenode-super-marlin] +2025-11-24T09:35:19.6774431Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:19.9103303Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:20.1938448Z Still deploying... +2025-11-24T09:35:20.3035219Z changed: [cassandra-improved-teal] +2025-11-24T09:35:20.6207594Z changed: [cassandra-noted-manatee] +2025-11-24T09:35:20.6321235Z changed: [cassandra-tops-fowl] +2025-11-24T09:35:20.7473387Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:35:22.1779418Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:35:22.1780173Z changed: [minio-aware-zebra] +2025-11-24T09:35:22.1780646Z changed: [minio-striking-malamute] +2025-11-24T09:35:22.1781124Z changed: [postgresql1] +2025-11-24T09:35:22.1781557Z changed: [postgresql2] +2025-11-24T09:35:22.1781980Z changed: [postgresql3] +2025-11-24T09:35:22.1782211Z +2025-11-24T09:35:22.1782505Z TASK [Register offline repo] *************************************************** +2025-11-24T09:35:23.8523095Z changed: [kubenode-super-marlin] +2025-11-24T09:35:23.9935943Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:24.7322285Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:24.8331129Z changed: [cassandra-noted-manatee] +2025-11-24T09:35:25.9987648Z changed: [cassandra-improved-teal] +2025-11-24T09:35:26.2032378Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:35:26.2230106Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:35:28.9627505Z changed: [cassandra-tops-fowl] +2025-11-24T09:35:28.9628223Z changed: [minio-striking-malamute] +2025-11-24T09:35:28.9628728Z changed: [minio-aware-zebra] +2025-11-24T09:35:28.9629195Z changed: [postgresql1] +2025-11-24T09:35:28.9629624Z changed: [postgresql3] +2025-11-24T09:35:28.9630054Z changed: [postgresql2] +2025-11-24T09:35:28.9630298Z +2025-11-24T09:35:28.9630593Z TASK [Apt update] ************************************************************** +2025-11-24T09:35:29.5832480Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:29.7412349Z changed: [kubenode-super-marlin] +2025-11-24T09:35:29.9750758Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:29.9885080Z changed: [cassandra-noted-manatee] +2025-11-24T09:35:30.1954060Z Still deploying... +2025-11-24T09:35:30.4040211Z changed: [cassandra-improved-teal] +2025-11-24T09:35:30.4696362Z changed: [cassandra-tops-fowl] +2025-11-24T09:35:30.4998601Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:35:31.8193649Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:35:31.8194600Z changed: [minio-striking-malamute] +2025-11-24T09:35:31.8195250Z changed: [minio-aware-zebra] +2025-11-24T09:35:31.8195846Z changed: [postgresql3] +2025-11-24T09:35:31.8196403Z changed: [postgresql1] +2025-11-24T09:35:31.8196938Z changed: [postgresql2] +2025-11-24T09:35:31.8197241Z +2025-11-24T09:35:31.8198098Z PLAY RECAP ********************************************************************* +2025-11-24T09:35:31.8199071Z assethost : ok=8 changed=7 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8200020Z cassandra-improved-teal : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8201004Z cassandra-noted-manatee : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8201959Z cassandra-tops-fowl : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8203171Z elasticsearch-amusing-pup : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8204165Z elasticsearch-renewing-bear : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8205138Z kubenode-renewed-asp : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8206077Z kubenode-super-marlin : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8207041Z kubenode-teaching-gobbler : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8207988Z minio-aware-zebra : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8208932Z minio-striking-malamute : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8209828Z postgresql1 : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8210626Z postgresql2 : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8211493Z postgresql3 : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:35:31.8211949Z +2025-11-24T09:35:31.9311957Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/kubernetes.yml --tags bastion,bootstrap-os,preinstall,container-engine +2025-11-24T09:35:32.7178450Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:35:32.7179523Z -vvvv to see details +2025-11-24T09:35:32.7183831Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:35:32.7184557Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:35:33.0497880Z [WARNING]: While constructing a mapping from /wire-server-deploy/ansible/roles- +2025-11-24T09:35:33.0498755Z external/kubespray/roles/bootstrap-os/tasks/main.yml, line 29, column 7, found +2025-11-24T09:35:33.0499485Z a duplicate dict key (paths). Using last defined value only. +2025-11-24T09:35:34.9295354Z +2025-11-24T09:35:34.9302421Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:35:34.9303394Z +2025-11-24T09:35:34.9303758Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:35:36.4444218Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:36.4444838Z ok: [kubenode-super-marlin] +2025-11-24T09:35:36.4445347Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:36.4445651Z +2025-11-24T09:35:36.4445970Z PLAY [Check Ansible version] *************************************************** +2025-11-24T09:35:36.4446397Z +2025-11-24T09:35:36.4446720Z TASK [Check 2.16.4 <= Ansible version < 2.17.0] ******************************** +2025-11-24T09:35:36.4964510Z ok: [adminhost] => { +2025-11-24T09:35:36.4965059Z "changed": false, +2025-11-24T09:35:36.4965522Z "msg": "All assertions passed" +2025-11-24T09:35:36.4966015Z } +2025-11-24T09:35:36.4966228Z +2025-11-24T09:35:36.4966564Z TASK [Check that python netaddr is installed] ********************************** +2025-11-24T09:35:36.6495629Z ok: [adminhost] => { +2025-11-24T09:35:36.6496262Z "changed": false, +2025-11-24T09:35:36.6496814Z "msg": "All assertions passed" +2025-11-24T09:35:36.6497401Z } +2025-11-24T09:35:36.6497651Z +2025-11-24T09:35:36.6498033Z TASK [Check that jinja is not too old (install via pip)] *********************** +2025-11-24T09:35:36.8053366Z ok: [adminhost] => { +2025-11-24T09:35:36.8054004Z "changed": false, +2025-11-24T09:35:36.8054557Z "msg": "All assertions passed" +2025-11-24T09:35:36.8055124Z } +2025-11-24T09:35:36.8055368Z +2025-11-24T09:35:36.8056130Z PLAY [Add kube-master nodes to kube_control_plane] ***************************** +2025-11-24T09:35:36.8056650Z +2025-11-24T09:35:36.8057018Z TASK [Add nodes to kube_control_plane group] *********************************** +2025-11-24T09:35:36.9303642Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:36.9304434Z changed: [kubenode-super-marlin] +2025-11-24T09:35:36.9305102Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:36.9305441Z +2025-11-24T09:35:36.9305791Z PLAY [Add kube-node nodes to kube_node] **************************************** +2025-11-24T09:35:36.9306229Z +2025-11-24T09:35:36.9306531Z TASK [Add nodes to kube_node group] ******************************************** +2025-11-24T09:35:37.0454174Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:37.0454893Z changed: [kubenode-super-marlin] +2025-11-24T09:35:37.0455435Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:37.0455756Z +2025-11-24T09:35:37.0456093Z PLAY [Add k8s-cluster nodes to k8s_cluster] ************************************ +2025-11-24T09:35:37.0456536Z +2025-11-24T09:35:37.0456848Z TASK [Add nodes to k8s_cluster group] ****************************************** +2025-11-24T09:35:37.1422003Z [WARNING]: Could not match supplied host pattern, ignoring: calico-rr +2025-11-24T09:35:37.1424791Z [WARNING]: Could not match supplied host pattern, ignoring: no-floating +2025-11-24T09:35:37.1433186Z [WARNING]: Could not match supplied host pattern, ignoring: bastion +2025-11-24T09:35:37.1465793Z [WARNING]: Could not match supplied host pattern, ignoring: calico_rr +2025-11-24T09:35:37.1806725Z changed: [kubenode-super-marlin] +2025-11-24T09:35:37.1807475Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:37.1808092Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:37.1808484Z +2025-11-24T09:35:37.1808887Z PLAY [Add calico-rr nodes to calico_rr] **************************************** +2025-11-24T09:35:37.1810008Z skipping: no hosts matched +2025-11-24T09:35:37.1810278Z +2025-11-24T09:35:37.1810596Z PLAY [Add no-floating nodes to no_floating] ************************************ +2025-11-24T09:35:37.1811236Z skipping: no hosts matched +2025-11-24T09:35:37.1811499Z +2025-11-24T09:35:37.1811808Z PLAY [Install bastion ssh config] ********************************************** +2025-11-24T09:35:37.1812425Z skipping: no hosts matched +2025-11-24T09:35:37.1812944Z +2025-11-24T09:35:37.1813262Z PLAY [Bootstrap hosts for Ansible] ********************************************* +2025-11-24T09:35:37.1813678Z +2025-11-24T09:35:37.1814029Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:35:37.2578494Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:35:37.2579437Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:35:37.2580339Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:35:37.2581149Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:37.2581452Z +2025-11-24T09:35:37.2581796Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:35:37.2956726Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:37.2957232Z +2025-11-24T09:35:37.2957666Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:35:37.3612144Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:37.3613180Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:37.3613782Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:37.3614121Z +2025-11-24T09:35:37.3614910Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:35:37.3994522Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:37.3994975Z +2025-11-24T09:35:37.3995400Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:35:37.4704123Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:37.4704884Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:37.4705508Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:37.4705831Z +2025-11-24T09:35:37.4706631Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:35:37.5401641Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:37.5402385Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:37.5403388Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:37.5403791Z +2025-11-24T09:35:37.5404208Z TASK [bootstrap-os : Fetch /etc/os-release] ************************************ +2025-11-24T09:35:37.6010851Z [WARNING]: raw module does not support the environment keyword +2025-11-24T09:35:37.6628305Z ok: [kubenode-super-marlin] +2025-11-24T09:35:37.6628949Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:37.6629433Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:37.6629712Z +2025-11-24T09:35:37.6630041Z TASK [bootstrap-os : Include vars] ********************************************* +2025-11-24T09:35:37.7834711Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:37.7835317Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:37.7835844Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:37.7836195Z +2025-11-24T09:35:37.7836529Z TASK [bootstrap-os : Include tasks] ******************************************** +2025-11-24T09:35:37.9427046Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/bootstrap-os/tasks/ubuntu.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/bootstrap-os/tasks/ubuntu.yml) +2025-11-24T09:35:37.9428468Z +2025-11-24T09:35:37.9428832Z TASK [bootstrap-os : Check if bootstrap is needed] ***************************** +2025-11-24T09:35:38.1546888Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:38.1547552Z ok: [kubenode-super-marlin] +2025-11-24T09:35:38.1548182Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:38.1548529Z +2025-11-24T09:35:38.1549314Z TASK [bootstrap-os : Check http::proxy in apt configuration files] ************* +2025-11-24T09:35:38.2820958Z ok: [kubenode-super-marlin] +2025-11-24T09:35:38.2821518Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:38.2822014Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:38.2822295Z +2025-11-24T09:35:38.2822898Z TASK [bootstrap-os : Add http_proxy to /etc/apt/apt.conf if http_proxy is defined] *** +2025-11-24T09:35:38.3438779Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:38.3439509Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:38.3440196Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:38.3440592Z +2025-11-24T09:35:38.3441471Z TASK [bootstrap-os : Check https::proxy in apt configuration files] ************ +2025-11-24T09:35:38.4443114Z ok: [kubenode-super-marlin] +2025-11-24T09:35:38.4443701Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:38.4444233Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:38.4444502Z +2025-11-24T09:35:38.4444893Z TASK [bootstrap-os : Add https_proxy to /etc/apt/apt.conf if https_proxy is defined] *** +2025-11-24T09:35:38.4965079Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:38.4965689Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:38.4966191Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:38.4966528Z +2025-11-24T09:35:38.4966854Z TASK [bootstrap-os : Install python3] ****************************************** +2025-11-24T09:35:38.6475474Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:38.6476178Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:38.6476775Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:38.6477161Z +2025-11-24T09:35:38.6477930Z TASK [bootstrap-os : Update Apt cache] ***************************************** +2025-11-24T09:35:38.7569010Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:38.7569675Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:38.7570276Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:38.7570695Z +2025-11-24T09:35:38.7571105Z TASK [bootstrap-os : Create remote_tmp for it is used by another module] ******* +2025-11-24T09:35:39.2288818Z ok: [kubenode-super-marlin] +2025-11-24T09:35:39.2289839Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:39.2290602Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:39.2291261Z +2025-11-24T09:35:39.2291636Z TASK [bootstrap-os : Gather facts] ********************************************* +2025-11-24T09:35:39.8730145Z ok: [kubenode-super-marlin] +2025-11-24T09:35:39.8730917Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:39.8731476Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:39.8731792Z +2025-11-24T09:35:39.8732457Z TASK [bootstrap-os : Assign inventory name to unconfigured hostnames (non-CoreOS, non-Flatcar, Suse and ClearLinux, non-Fedora)] *** +2025-11-24T09:35:40.1972920Z Still deploying... +2025-11-24T09:35:40.9123872Z ok: [kubenode-super-marlin] +2025-11-24T09:35:40.9124745Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:40.9125319Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:40.9125632Z +2025-11-24T09:35:40.9126032Z TASK [bootstrap-os : Install ceph-commmon package] ***************************** +2025-11-24T09:35:40.9877842Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:40.9878678Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:40.9879279Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:40.9879675Z +2025-11-24T09:35:40.9880071Z TASK [bootstrap-os : Ensure bash_completion.d folder exists] ******************* +2025-11-24T09:35:41.4250564Z ok: [kubenode-super-marlin] +2025-11-24T09:35:41.4251404Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:41.4251981Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:41.4252314Z +2025-11-24T09:35:41.4252978Z PLAY [Gather facts] ************************************************************ +2025-11-24T09:35:41.4253481Z +2025-11-24T09:35:41.4253848Z TASK [Gather minimal facts] **************************************************** +2025-11-24T09:35:41.9129413Z ok: [kubenode-super-marlin] +2025-11-24T09:35:41.9130260Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:41.9130869Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:41.9131578Z +2025-11-24T09:35:41.9131957Z TASK [Gather necessary facts (network)] **************************************** +2025-11-24T09:35:42.4004711Z ok: [kubenode-super-marlin] +2025-11-24T09:35:42.4005544Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:42.4006139Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:42.4006449Z +2025-11-24T09:35:42.4006830Z TASK [Gather necessary facts (hardware)] *************************************** +2025-11-24T09:35:43.5234554Z ok: [kubenode-super-marlin] +2025-11-24T09:35:43.5235365Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:43.5235926Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:43.5236243Z +2025-11-24T09:35:43.5236636Z PLAY [Prepare for etcd install] ************************************************ +2025-11-24T09:35:43.5237122Z +2025-11-24T09:35:43.5237527Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:35:43.6702147Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:35:43.6703301Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:35:43.6704060Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:35:43.6704695Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:43.6704998Z +2025-11-24T09:35:43.6705340Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:35:43.7712495Z ok: [kubenode-super-marlin -> localhost] +2025-11-24T09:35:43.7713491Z +2025-11-24T09:35:43.7713913Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:35:43.9229820Z ok: [kubenode-super-marlin] +2025-11-24T09:35:43.9230557Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:43.9231498Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:43.9231845Z +2025-11-24T09:35:43.9232296Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:35:43.9751706Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:43.9752315Z +2025-11-24T09:35:43.9753013Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:35:44.0723048Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:44.0723883Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:44.0724870Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:44.0725212Z +2025-11-24T09:35:44.0725736Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:35:44.1106027Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:44.1698589Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:44.1699292Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:44.1699684Z +2025-11-24T09:35:44.1700073Z TASK [adduser : User | Create User Group] ************************************** +2025-11-24T09:35:44.6825870Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:44.6826467Z changed: [kubenode-super-marlin] +2025-11-24T09:35:44.6826975Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:44.6827255Z +2025-11-24T09:35:44.6827557Z TASK [adduser : User | Create User] ******************************************** +2025-11-24T09:35:45.3258997Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:45.3259618Z changed: [kubenode-super-marlin] +2025-11-24T09:35:45.3260161Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:45.3260452Z +2025-11-24T09:35:45.3260820Z TASK [kubernetes/preinstall : Check if /etc/fstab exists] ********************** +2025-11-24T09:35:45.8138591Z ok: [kubenode-super-marlin] +2025-11-24T09:35:45.8139274Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:45.8139843Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:45.8140160Z +2025-11-24T09:35:45.8140607Z TASK [kubernetes/preinstall : Remove swapfile from /etc/fstab] ***************** +2025-11-24T09:35:46.4991050Z ok: [kubenode-super-marlin] => (item=swap) +2025-11-24T09:35:46.4991830Z ok: [kubenode-teaching-gobbler] => (item=swap) +2025-11-24T09:35:46.4992495Z ok: [kubenode-renewed-asp] => (item=swap) +2025-11-24T09:35:46.4993484Z ok: [kubenode-teaching-gobbler] => (item=none) +2025-11-24T09:35:46.4994140Z ok: [kubenode-super-marlin] => (item=none) +2025-11-24T09:35:46.4995162Z ok: [kubenode-renewed-asp] => (item=none) +2025-11-24T09:35:46.4995470Z +2025-11-24T09:35:46.4995820Z TASK [kubernetes/preinstall : Mask swap.target (persist swapoff)] ************** +2025-11-24T09:35:47.6895022Z changed: [kubenode-super-marlin] +2025-11-24T09:35:47.6895705Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:47.6896332Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:47.6896664Z +2025-11-24T09:35:47.6897078Z TASK [kubernetes/preinstall : Disable swap] ************************************ +2025-11-24T09:35:48.2110390Z changed: [kubenode-super-marlin] +2025-11-24T09:35:48.2111104Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:48.2111693Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:48.2112074Z +2025-11-24T09:35:48.2112583Z TASK [kubernetes/preinstall : Set os_family fact for other redhat-based operating systems] *** +2025-11-24T09:35:48.2494038Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:48.2735905Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:48.2736632Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:48.2737032Z +2025-11-24T09:35:48.2737438Z TASK [kubernetes/preinstall : Check resolvconf] ******************************** +2025-11-24T09:35:48.5543960Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:48.5544627Z ok: [kubenode-super-marlin] +2025-11-24T09:35:48.5545195Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:48.5545532Z +2025-11-24T09:35:48.5545981Z TASK [kubernetes/preinstall : Check existence of /etc/resolvconf/resolv.conf.d] *** +2025-11-24T09:35:48.8112564Z ok: [kubenode-super-marlin] +2025-11-24T09:35:48.8113394Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:48.8114289Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:48.8114586Z +2025-11-24T09:35:48.8114948Z TASK [kubernetes/preinstall : Check status of /etc/resolv.conf] **************** +2025-11-24T09:35:49.1147560Z ok: [kubenode-super-marlin] +2025-11-24T09:35:49.1148220Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:49.1148785Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:49.1149131Z +2025-11-24T09:35:49.1149544Z TASK [kubernetes/preinstall : Get content of /etc/resolv.conf] ***************** +2025-11-24T09:35:49.6151572Z ok: [kubenode-super-marlin] +2025-11-24T09:35:49.6152493Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:49.6153276Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:49.6153563Z +2025-11-24T09:35:49.6153940Z TASK [kubernetes/preinstall : Get currently configured nameservers] ************ +2025-11-24T09:35:49.7506930Z ok: [kubenode-super-marlin] +2025-11-24T09:35:49.7507595Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:49.7508159Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:49.7508510Z +2025-11-24T09:35:49.7509006Z TASK [kubernetes/preinstall : Stop if /etc/resolv.conf not configured nameservers] *** +2025-11-24T09:35:49.8208448Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:49.8209125Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:49.8209717Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:49.8210095Z +2025-11-24T09:35:49.8210578Z TASK [kubernetes/preinstall : NetworkManager | Check if host has NetworkManager] *** +2025-11-24T09:35:50.0836554Z ok: [kubenode-super-marlin] +2025-11-24T09:35:50.0837196Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:50.0837781Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:50.0838103Z +2025-11-24T09:35:50.0838515Z TASK [kubernetes/preinstall : Check systemd-resolved] ************************** +2025-11-24T09:35:50.1987722Z Still deploying... +2025-11-24T09:35:50.3776438Z ok: [kubenode-super-marlin] +2025-11-24T09:35:50.3777100Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:50.3777697Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:50.3777977Z +2025-11-24T09:35:50.3778414Z TASK [kubernetes/preinstall : Set default dns if remove_default_searchdomains is false] *** +2025-11-24T09:35:50.5076771Z ok: [kubenode-super-marlin] +2025-11-24T09:35:50.5077450Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:50.5078042Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:50.5078404Z +2025-11-24T09:35:50.5078832Z TASK [kubernetes/preinstall : Set dns facts] *********************************** +2025-11-24T09:35:50.6275242Z ok: [kubenode-super-marlin] +2025-11-24T09:35:50.6275802Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:50.6276306Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:50.6276593Z +2025-11-24T09:35:50.6276942Z TASK [kubernetes/preinstall : Check if kubelet is configured] ****************** +2025-11-24T09:35:50.8851829Z ok: [kubenode-super-marlin] +2025-11-24T09:35:50.8852482Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:50.8853365Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:50.8853709Z +2025-11-24T09:35:50.8854160Z TASK [kubernetes/preinstall : Check if early DNS configuration stage] ********** +2025-11-24T09:35:50.9675076Z ok: [kubenode-super-marlin] +2025-11-24T09:35:50.9675738Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:50.9676371Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:50.9676699Z +2025-11-24T09:35:50.9677106Z TASK [kubernetes/preinstall : Target resolv.conf files] ************************ +2025-11-24T09:35:51.0521409Z ok: [kubenode-super-marlin] +2025-11-24T09:35:51.0522009Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:51.0522499Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:51.0523052Z +2025-11-24T09:35:51.0523662Z TASK [kubernetes/preinstall : Target temporary resolvconf cloud init file (Flatcar Container Linux by Kinvolk / Fedora CoreOS)] *** +2025-11-24T09:35:51.0782500Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:51.0997750Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:51.0998447Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:51.0998840Z +2025-11-24T09:35:51.0999664Z TASK [kubernetes/preinstall : Check if /etc/dhclient.conf exists] ************** +2025-11-24T09:35:51.3480888Z ok: [kubenode-super-marlin] +2025-11-24T09:35:51.3481579Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:51.3482196Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:51.3482542Z +2025-11-24T09:35:51.3483367Z TASK [kubernetes/preinstall : Target dhclient conf file for /etc/dhclient.conf] *** +2025-11-24T09:35:51.3936315Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:51.4110290Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:51.4111038Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:51.4111815Z +2025-11-24T09:35:51.4112273Z TASK [kubernetes/preinstall : Check if /etc/dhcp/dhclient.conf exists] ********* +2025-11-24T09:35:51.6735873Z ok: [kubenode-super-marlin] +2025-11-24T09:35:51.6736429Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:51.6736906Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:51.6737177Z +2025-11-24T09:35:51.6737578Z TASK [kubernetes/preinstall : Target dhclient conf file for /etc/dhcp/dhclient.conf] *** +2025-11-24T09:35:51.7640609Z ok: [kubenode-super-marlin] +2025-11-24T09:35:51.7641292Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:51.7641895Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:51.7642244Z +2025-11-24T09:35:51.7642970Z TASK [kubernetes/preinstall : Target dhclient hook file for Red Hat family] **** +2025-11-24T09:35:51.8014998Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:51.8231569Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:51.8232164Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:51.8232493Z +2025-11-24T09:35:51.8233014Z TASK [kubernetes/preinstall : Target dhclient hook file for Debian family] ***** +2025-11-24T09:35:51.9458112Z ok: [kubenode-super-marlin] +2025-11-24T09:35:51.9458689Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:51.9459161Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:51.9459434Z +2025-11-24T09:35:51.9459789Z TASK [kubernetes/preinstall : Generate search domains to resolvconf] *********** +2025-11-24T09:35:52.0484748Z ok: [kubenode-super-marlin] +2025-11-24T09:35:52.0485417Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:52.0485973Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:52.0486308Z +2025-11-24T09:35:52.0486738Z TASK [kubernetes/preinstall : Pick coredns cluster IP or default resolver] ***** +2025-11-24T09:35:52.1814733Z ok: [kubenode-super-marlin] +2025-11-24T09:35:52.1815397Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:52.1816356Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:52.1816724Z +2025-11-24T09:35:52.1817236Z TASK [kubernetes/preinstall : Generate nameservers for resolvconf, including cluster DNS] *** +2025-11-24T09:35:52.2114907Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:52.2334969Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:52.2335671Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:52.2336067Z +2025-11-24T09:35:52.2336586Z TASK [kubernetes/preinstall : Generate nameservers for resolvconf, not including cluster DNS] *** +2025-11-24T09:35:52.3327769Z ok: [kubenode-super-marlin] +2025-11-24T09:35:52.3328396Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:52.3329010Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:52.3329339Z +2025-11-24T09:35:52.3329745Z TASK [kubernetes/preinstall : Set etcd vars if using kubeadm mode] ************* +2025-11-24T09:35:52.3638095Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:52.3878238Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:52.3878887Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:52.3879345Z +2025-11-24T09:35:52.3879748Z TASK [kubernetes/preinstall : Check /usr readonly] ***************************** +2025-11-24T09:35:52.6504472Z ok: [kubenode-super-marlin] +2025-11-24T09:35:52.6505044Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:52.6505544Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:52.6505809Z +2025-11-24T09:35:52.6506158Z TASK [kubernetes/preinstall : Set alternate flexvolume path] ******************* +2025-11-24T09:35:52.6971137Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:52.7274270Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:52.7274868Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:52.7275654Z +2025-11-24T09:35:52.7276112Z TASK [kubernetes/preinstall : Stop if either kube_control_plane or kube_node group is empty] *** +2025-11-24T09:35:52.8008055Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:52.8008604Z "changed": false, +2025-11-24T09:35:52.8009057Z "msg": "All assertions passed" +2025-11-24T09:35:52.8009571Z } +2025-11-24T09:35:52.8009787Z +2025-11-24T09:35:52.8010164Z TASK [kubernetes/preinstall : Stop if etcd group is empty in external etcd mode] *** +2025-11-24T09:35:52.8577694Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:52.8578708Z "changed": false, +2025-11-24T09:35:52.8579265Z "msg": "All assertions passed" +2025-11-24T09:35:52.8579815Z } +2025-11-24T09:35:52.8580054Z +2025-11-24T09:35:52.8580459Z TASK [kubernetes/preinstall : Stop if non systemd OS type] ********************* +2025-11-24T09:35:52.9731354Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:52.9732010Z "changed": false, +2025-11-24T09:35:52.9732464Z "msg": "All assertions passed" +2025-11-24T09:35:52.9733187Z } +2025-11-24T09:35:52.9733603Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:52.9734097Z "changed": false, +2025-11-24T09:35:52.9734530Z "msg": "All assertions passed" +2025-11-24T09:35:52.9735002Z } +2025-11-24T09:35:52.9735404Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:52.9735854Z "changed": false, +2025-11-24T09:35:52.9736299Z "msg": "All assertions passed" +2025-11-24T09:35:52.9736749Z } +2025-11-24T09:35:52.9736948Z +2025-11-24T09:35:52.9737286Z TASK [kubernetes/preinstall : Stop if the os does not support] ***************** +2025-11-24T09:35:53.0770778Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:53.0771424Z "changed": false, +2025-11-24T09:35:53.0771985Z "msg": "All assertions passed" +2025-11-24T09:35:53.0772543Z } +2025-11-24T09:35:53.0773236Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:53.0773789Z "changed": false, +2025-11-24T09:35:53.0774289Z "msg": "All assertions passed" +2025-11-24T09:35:53.0774819Z } +2025-11-24T09:35:53.0775311Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:53.0775881Z "changed": false, +2025-11-24T09:35:53.0776389Z "msg": "All assertions passed" +2025-11-24T09:35:53.0776914Z } +2025-11-24T09:35:53.0777149Z +2025-11-24T09:35:53.0777554Z TASK [kubernetes/preinstall : Stop if unknown network plugin] ****************** +2025-11-24T09:35:53.1671910Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:53.1673217Z "changed": false, +2025-11-24T09:35:53.1673824Z "msg": "All assertions passed" +2025-11-24T09:35:53.1674387Z } +2025-11-24T09:35:53.1674881Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:53.1675431Z "changed": false, +2025-11-24T09:35:53.1675942Z "msg": "All assertions passed" +2025-11-24T09:35:53.1676482Z } +2025-11-24T09:35:53.1676956Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:53.1677539Z "changed": false, +2025-11-24T09:35:53.1678048Z "msg": "All assertions passed" +2025-11-24T09:35:53.1678588Z } +2025-11-24T09:35:53.1678824Z +2025-11-24T09:35:53.1679244Z TASK [kubernetes/preinstall : Stop if unsupported version of Kubernetes] ******* +2025-11-24T09:35:53.3778280Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:53.3778942Z "changed": false, +2025-11-24T09:35:53.3779492Z "msg": "All assertions passed" +2025-11-24T09:35:53.3780074Z } +2025-11-24T09:35:53.3780577Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:53.3781162Z "changed": false, +2025-11-24T09:35:53.3781701Z "msg": "All assertions passed" +2025-11-24T09:35:53.3782261Z } +2025-11-24T09:35:53.3783062Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:53.3783675Z "changed": false, +2025-11-24T09:35:53.3784196Z "msg": "All assertions passed" +2025-11-24T09:35:53.3784709Z } +2025-11-24T09:35:53.3784909Z +2025-11-24T09:35:53.3785413Z TASK [kubernetes/preinstall : Stop if known booleans are set as strings (Use JSON format on CLI: -e "{'key': true }")] *** +2025-11-24T09:35:53.6114817Z ok: [kubenode-super-marlin] => (item={'name': 'download_run_once', 'value': False}) => { +2025-11-24T09:35:53.6115905Z "ansible_loop_var": "item", +2025-11-24T09:35:53.6116362Z "changed": false, +2025-11-24T09:35:53.6116811Z "item": { +2025-11-24T09:35:53.6117210Z "name": "download_run_once", +2025-11-24T09:35:53.6117664Z "value": false +2025-11-24T09:35:53.6118056Z }, +2025-11-24T09:35:53.6118442Z "msg": "All assertions passed" +2025-11-24T09:35:53.6118892Z } +2025-11-24T09:35:53.6119429Z ok: [kubenode-super-marlin] => (item={'name': 'deploy_netchecker', 'value': False}) => { +2025-11-24T09:35:53.6120060Z "ansible_loop_var": "item", +2025-11-24T09:35:53.6120623Z "changed": false, +2025-11-24T09:35:53.6121019Z "item": { +2025-11-24T09:35:53.6121412Z "name": "deploy_netchecker", +2025-11-24T09:35:53.6121875Z "value": false +2025-11-24T09:35:53.6122265Z }, +2025-11-24T09:35:53.6122816Z "msg": "All assertions passed" +2025-11-24T09:35:53.6123264Z } +2025-11-24T09:35:53.6123812Z ok: [kubenode-super-marlin] => (item={'name': 'download_always_pull', 'value': False}) => { +2025-11-24T09:35:53.6124433Z "ansible_loop_var": "item", +2025-11-24T09:35:53.6124858Z "changed": false, +2025-11-24T09:35:53.6125258Z "item": { +2025-11-24T09:35:53.6125651Z "name": "download_always_pull", +2025-11-24T09:35:53.6126105Z "value": false +2025-11-24T09:35:53.6126498Z }, +2025-11-24T09:35:53.6126881Z "msg": "All assertions passed" +2025-11-24T09:35:53.6127317Z } +2025-11-24T09:35:53.6127820Z ok: [kubenode-super-marlin] => (item={'name': 'helm_enabled', 'value': False}) => { +2025-11-24T09:35:53.6128428Z "ansible_loop_var": "item", +2025-11-24T09:35:53.6128858Z "changed": false, +2025-11-24T09:35:53.6129264Z "item": { +2025-11-24T09:35:53.6129649Z "name": "helm_enabled", +2025-11-24T09:35:53.6130063Z "value": false +2025-11-24T09:35:53.6130448Z }, +2025-11-24T09:35:53.6130821Z "msg": "All assertions passed" +2025-11-24T09:35:53.6131255Z } +2025-11-24T09:35:53.6131799Z ok: [kubenode-super-marlin] => (item={'name': 'openstack_lbaas_enabled', 'value': False}) => { +2025-11-24T09:35:53.6132414Z "ansible_loop_var": "item", +2025-11-24T09:35:53.6132942Z "changed": false, +2025-11-24T09:35:53.6133337Z "item": { +2025-11-24T09:35:53.6133737Z "name": "openstack_lbaas_enabled", +2025-11-24T09:35:53.6134203Z "value": false +2025-11-24T09:35:53.6134598Z }, +2025-11-24T09:35:53.6135074Z "msg": "All assertions passed" +2025-11-24T09:35:53.6135510Z } +2025-11-24T09:35:53.6135694Z +2025-11-24T09:35:53.6136018Z TASK [kubernetes/preinstall : Stop if even number of etcd hosts] *************** +2025-11-24T09:35:53.9228344Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:53.9229002Z "changed": false, +2025-11-24T09:35:53.9229542Z "msg": "All assertions passed" +2025-11-24T09:35:53.9230093Z } +2025-11-24T09:35:53.9230568Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:53.9231147Z "changed": false, +2025-11-24T09:35:53.9231667Z "msg": "All assertions passed" +2025-11-24T09:35:53.9232221Z } +2025-11-24T09:35:53.9232986Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:53.9233537Z "changed": false, +2025-11-24T09:35:53.9234050Z "msg": "All assertions passed" +2025-11-24T09:35:53.9234600Z } +2025-11-24T09:35:53.9234809Z +2025-11-24T09:35:53.9235140Z TASK [kubernetes/preinstall : Stop if memory is too small for masters] ********* +2025-11-24T09:35:54.0419292Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:54.0420049Z "changed": false, +2025-11-24T09:35:54.0420574Z "msg": "All assertions passed" +2025-11-24T09:35:54.0421126Z } +2025-11-24T09:35:54.0421609Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:54.0422146Z "changed": false, +2025-11-24T09:35:54.0422933Z "msg": "All assertions passed" +2025-11-24T09:35:54.0423518Z } +2025-11-24T09:35:54.0423994Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:54.0424591Z "changed": false, +2025-11-24T09:35:54.0425104Z "msg": "All assertions passed" +2025-11-24T09:35:54.0425645Z } +2025-11-24T09:35:54.0425880Z +2025-11-24T09:35:54.0426708Z TASK [kubernetes/preinstall : Stop if memory is too small for nodes] *********** +2025-11-24T09:35:54.1216562Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:54.1217221Z "changed": false, +2025-11-24T09:35:54.1217744Z "msg": "All assertions passed" +2025-11-24T09:35:54.1218300Z } +2025-11-24T09:35:54.1218698Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:54.1219175Z "changed": false, +2025-11-24T09:35:54.1219602Z "msg": "All assertions passed" +2025-11-24T09:35:54.1220060Z } +2025-11-24T09:35:54.1220467Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:54.1221275Z "changed": false, +2025-11-24T09:35:54.1221703Z "msg": "All assertions passed" +2025-11-24T09:35:54.1222159Z } +2025-11-24T09:35:54.1222362Z +2025-11-24T09:35:54.1222969Z TASK [kubernetes/preinstall : Stop if cgroups are not enabled on nodes] ******** +2025-11-24T09:35:54.3849123Z ok: [kubenode-super-marlin] +2025-11-24T09:35:54.3849769Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:54.3850357Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:54.3850719Z +2025-11-24T09:35:54.3851269Z TASK [kubernetes/preinstall : Guarantee that enough network address space is available for all pods] *** +2025-11-24T09:35:54.4730053Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:54.4730643Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:54.4731142Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:54.4731472Z +2025-11-24T09:35:54.4731821Z TASK [kubernetes/preinstall : Stop if ip var does not match local ips] ********* +2025-11-24T09:35:54.5720897Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:54.5721561Z "changed": false, +2025-11-24T09:35:54.5722110Z "msg": "All assertions passed" +2025-11-24T09:35:54.5722966Z } +2025-11-24T09:35:54.5723465Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:54.5724048Z "changed": false, +2025-11-24T09:35:54.5724600Z "msg": "All assertions passed" +2025-11-24T09:35:54.5725178Z } +2025-11-24T09:35:54.5725674Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:54.5726273Z "changed": false, +2025-11-24T09:35:54.5726803Z "msg": "All assertions passed" +2025-11-24T09:35:54.5727265Z } +2025-11-24T09:35:54.5727459Z +2025-11-24T09:35:54.5727793Z TASK [kubernetes/preinstall : Ensure ping package] ***************************** +2025-11-24T09:35:54.6269836Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:54.6270541Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:54.6271498Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:54.6271881Z +2025-11-24T09:35:54.6272309Z TASK [kubernetes/preinstall : Stop if access_ip is not pingable] *************** +2025-11-24T09:35:54.6835067Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:54.6835764Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:54.6836365Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:54.6836737Z +2025-11-24T09:35:54.6837202Z TASK [kubernetes/preinstall : Stop if RBAC is not enabled when dashboard is enabled] *** +2025-11-24T09:35:54.7325496Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:54.7326205Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:54.7326846Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:54.7327234Z +2025-11-24T09:35:54.7327760Z TASK [kubernetes/preinstall : Stop if RBAC is not enabled when OCI cloud controller is enabled] *** +2025-11-24T09:35:54.7915387Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:54.7916082Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:54.7916699Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:54.7917084Z +2025-11-24T09:35:54.7917490Z TASK [kubernetes/preinstall : Stop if kernel version is too low] *************** +2025-11-24T09:35:54.8697069Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:54.8697666Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:54.8698191Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:54.8698473Z +2025-11-24T09:35:54.8698814Z TASK [kubernetes/preinstall : Stop if bad hostname] **************************** +2025-11-24T09:35:54.9698849Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:54.9699501Z "changed": false, +2025-11-24T09:35:54.9700580Z "msg": "All assertions passed" +2025-11-24T09:35:54.9701151Z } +2025-11-24T09:35:54.9701632Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:54.9702166Z "changed": false, +2025-11-24T09:35:54.9708793Z "msg": "All assertions passed" +2025-11-24T09:35:54.9709385Z } +2025-11-24T09:35:54.9709794Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:54.9710299Z "changed": false, +2025-11-24T09:35:54.9710739Z "msg": "All assertions passed" +2025-11-24T09:35:54.9711200Z } +2025-11-24T09:35:54.9711399Z +2025-11-24T09:35:54.9711732Z TASK [kubernetes/preinstall : Check cloud_provider value] ********************** +2025-11-24T09:35:55.0360809Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:55.0361424Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:55.0361960Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:55.0362321Z +2025-11-24T09:35:55.0362993Z TASK [kubernetes/preinstall : Check that kube_service_addresses is a network range] *** +2025-11-24T09:35:55.1551802Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.1552521Z "changed": false, +2025-11-24T09:35:55.1553355Z "msg": "All assertions passed" +2025-11-24T09:35:55.1553926Z } +2025-11-24T09:35:55.1554169Z +2025-11-24T09:35:55.1554585Z TASK [kubernetes/preinstall : Check that kube_pods_subnet is a network range] *** +2025-11-24T09:35:55.2503357Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.2504043Z "changed": false, +2025-11-24T09:35:55.2504575Z "msg": "All assertions passed" +2025-11-24T09:35:55.2505151Z } +2025-11-24T09:35:55.2505390Z +2025-11-24T09:35:55.2505933Z TASK [kubernetes/preinstall : Check that kube_pods_subnet does not collide with kube_service_addresses] *** +2025-11-24T09:35:55.3563178Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.3563918Z "changed": false, +2025-11-24T09:35:55.3564475Z "msg": "All assertions passed" +2025-11-24T09:35:55.3565064Z } +2025-11-24T09:35:55.3565315Z +2025-11-24T09:35:55.3565762Z TASK [kubernetes/preinstall : Check that IP range is enough for the nodes] ***** +2025-11-24T09:35:55.3844634Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:55.3845085Z +2025-11-24T09:35:55.3845519Z TASK [kubernetes/preinstall : Stop if unknown dns mode] ************************ +2025-11-24T09:35:55.4613259Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.4613938Z "changed": false, +2025-11-24T09:35:55.4614488Z "msg": "All assertions passed" +2025-11-24T09:35:55.4615407Z } +2025-11-24T09:35:55.4615656Z +2025-11-24T09:35:55.4616083Z TASK [kubernetes/preinstall : Stop if unknown kube proxy mode] ***************** +2025-11-24T09:35:55.5175785Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.5176442Z "changed": false, +2025-11-24T09:35:55.5176969Z "msg": "All assertions passed" +2025-11-24T09:35:55.5177523Z } +2025-11-24T09:35:55.5177764Z +2025-11-24T09:35:55.5178167Z TASK [kubernetes/preinstall : Stop if unknown cert_management] ***************** +2025-11-24T09:35:55.5789128Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.5789801Z "changed": false, +2025-11-24T09:35:55.5790361Z "msg": "All assertions passed" +2025-11-24T09:35:55.5790908Z } +2025-11-24T09:35:55.5791150Z +2025-11-24T09:35:55.5791559Z TASK [kubernetes/preinstall : Stop if unknown resolvconf_mode] ***************** +2025-11-24T09:35:55.6435039Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.6435660Z "changed": false, +2025-11-24T09:35:55.6436114Z "msg": "All assertions passed" +2025-11-24T09:35:55.6436600Z } +2025-11-24T09:35:55.6436801Z +2025-11-24T09:35:55.6437219Z TASK [kubernetes/preinstall : Stop if etcd deployment type is not host, docker or kubeadm] *** +2025-11-24T09:35:55.7355451Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.7356117Z "changed": false, +2025-11-24T09:35:55.7356647Z "msg": "All assertions passed" +2025-11-24T09:35:55.7357205Z } +2025-11-24T09:35:55.7357675Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:55.7358218Z "changed": false, +2025-11-24T09:35:55.7358712Z "msg": "All assertions passed" +2025-11-24T09:35:55.7359168Z } +2025-11-24T09:35:55.7359939Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:55.7360437Z "changed": false, +2025-11-24T09:35:55.7360867Z "msg": "All assertions passed" +2025-11-24T09:35:55.7361319Z } +2025-11-24T09:35:55.7361514Z +2025-11-24T09:35:55.7361925Z TASK [kubernetes/preinstall : Stop if container manager is not docker, crio or containerd] *** +2025-11-24T09:35:55.7946080Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.7946774Z "changed": false, +2025-11-24T09:35:55.7947328Z "msg": "All assertions passed" +2025-11-24T09:35:55.7947923Z } +2025-11-24T09:35:55.7948520Z +2025-11-24T09:35:55.7949139Z TASK [kubernetes/preinstall : Stop if etcd deployment type is not host or kubeadm when container_manager != docker] *** +2025-11-24T09:35:55.9230722Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:55.9231381Z "changed": false, +2025-11-24T09:35:55.9231933Z "msg": "All assertions passed" +2025-11-24T09:35:55.9232425Z } +2025-11-24T09:35:55.9233065Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:55.9233546Z "changed": false, +2025-11-24T09:35:55.9233974Z "msg": "All assertions passed" +2025-11-24T09:35:55.9234426Z } +2025-11-24T09:35:55.9234827Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:55.9235305Z "changed": false, +2025-11-24T09:35:55.9235734Z "msg": "All assertions passed" +2025-11-24T09:35:55.9236187Z } +2025-11-24T09:35:55.9236387Z +2025-11-24T09:35:55.9236799Z TASK [kubernetes/preinstall : Warn the user if they are still using `etcd_kubeadm_enabled`] *** +2025-11-24T09:35:55.9656324Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:55.9656785Z +2025-11-24T09:35:55.9657458Z TASK [kubernetes/preinstall : Stop if `etcd_kubeadm_enabled` is defined and `etcd_deployment_type` is not `kubeadm` or `host`] *** +2025-11-24T09:35:56.0127066Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:56.0127491Z +2025-11-24T09:35:56.0128017Z TASK [kubernetes/preinstall : Stop if download_localhost is enabled but download_run_once is not] *** +2025-11-24T09:35:56.0648562Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:56.0649395Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:56.0650057Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:56.0650475Z +2025-11-24T09:35:56.0651105Z TASK [kubernetes/preinstall : Stop if kata_containers_enabled is enabled when container_manager is docker] *** +2025-11-24T09:35:56.0912199Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:56.1194254Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:56.1194955Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:56.1195343Z +2025-11-24T09:35:56.1195881Z TASK [kubernetes/preinstall : Stop if gvisor_enabled is enabled when container_manager is not containerd] *** +2025-11-24T09:35:56.1506883Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:56.1737382Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:56.1738161Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:56.1738561Z +2025-11-24T09:35:56.1739076Z TASK [kubernetes/preinstall : Stop if download_localhost is enabled for Flatcar Container Linux] *** +2025-11-24T09:35:56.2230123Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:56.2230726Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:56.2231255Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:56.2231592Z +2025-11-24T09:35:56.2231961Z TASK [kubernetes/preinstall : Ensure minimum containerd version] *************** +2025-11-24T09:35:56.3086341Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:56.3086954Z "changed": false, +2025-11-24T09:35:56.3087406Z "msg": "All assertions passed" +2025-11-24T09:35:56.3087873Z } +2025-11-24T09:35:56.3088074Z +2025-11-24T09:35:56.3088462Z TASK [kubernetes/preinstall : Stop if using deprecated containerd_config variable] *** +2025-11-24T09:35:56.3725502Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:56.3726191Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:56.3726816Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:56.3727189Z +2025-11-24T09:35:56.3728316Z TASK [kubernetes/preinstall : Stop if auto_renew_certificates is enabled when certificates are managed externally (kube_external_ca_mode is true)] *** +2025-11-24T09:35:56.4038841Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:56.4393143Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:56.4393965Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:56.4394311Z +2025-11-24T09:35:56.4394799Z TASK [kubernetes/preinstall : Stop if using deprecated comma separated list for admission plugins] *** +2025-11-24T09:35:56.4997193Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:56.4997894Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:56.4998518Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:56.4999240Z +2025-11-24T09:35:56.4999677Z TASK [kubernetes/preinstall : Verify that the packages list structure is valid] *** +2025-11-24T09:35:56.6814518Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:56.6815195Z ok: [kubenode-super-marlin] +2025-11-24T09:35:56.6815855Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:56.6816205Z +2025-11-24T09:35:56.6816581Z TASK [kubernetes/preinstall : Verify that the packages list is sorted] ********* +2025-11-24T09:35:56.8252457Z ok: [kubenode-super-marlin] => { +2025-11-24T09:35:56.8253391Z "changed": false, +2025-11-24T09:35:56.8253983Z "msg": "All assertions passed" +2025-11-24T09:35:56.8254557Z } +2025-11-24T09:35:56.8255047Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:35:56.8255601Z "changed": false, +2025-11-24T09:35:56.8256154Z "msg": "All assertions passed" +2025-11-24T09:35:56.8256713Z } +2025-11-24T09:35:56.8257225Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:35:56.8257819Z "changed": false, +2025-11-24T09:35:56.8258362Z "msg": "All assertions passed" +2025-11-24T09:35:56.8258929Z } +2025-11-24T09:35:56.8259148Z +2025-11-24T09:35:56.8259491Z TASK [kubernetes/preinstall : Create kubernetes directories] ******************* +2025-11-24T09:35:57.7247693Z changed: [kubenode-super-marlin] => (item=/etc/kubernetes) +2025-11-24T09:35:57.7248617Z changed: [kubenode-renewed-asp] => (item=/etc/kubernetes) +2025-11-24T09:35:57.7249436Z changed: [kubenode-teaching-gobbler] => (item=/etc/kubernetes) +2025-11-24T09:35:57.7250294Z changed: [kubenode-super-marlin] => (item=/etc/kubernetes/manifests) +2025-11-24T09:35:57.7251159Z changed: [kubenode-renewed-asp] => (item=/etc/kubernetes/manifests) +2025-11-24T09:35:57.7252055Z changed: [kubenode-teaching-gobbler] => (item=/etc/kubernetes/manifests) +2025-11-24T09:35:57.7253683Z changed: [kubenode-super-marlin] => (item=/usr/local/bin/kubernetes-scripts) +2025-11-24T09:35:57.7254615Z changed: [kubenode-renewed-asp] => (item=/usr/local/bin/kubernetes-scripts) +2025-11-24T09:35:57.7255561Z changed: [kubenode-teaching-gobbler] => (item=/usr/local/bin/kubernetes-scripts) +2025-11-24T09:35:57.7256496Z changed: [kubenode-super-marlin] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) +2025-11-24T09:35:57.7257378Z changed: [kubenode-renewed-asp] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) +2025-11-24T09:35:57.7258275Z changed: [kubenode-teaching-gobbler] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) +2025-11-24T09:35:57.7258802Z +2025-11-24T09:35:57.7259151Z TASK [kubernetes/preinstall : Create other directories of root owner] ********** +2025-11-24T09:35:58.2198113Z changed: [kubenode-super-marlin] => (item=/etc/kubernetes/ssl) +2025-11-24T09:35:58.2199037Z changed: [kubenode-teaching-gobbler] => (item=/etc/kubernetes/ssl) +2025-11-24T09:35:58.2199885Z changed: [kubenode-renewed-asp] => (item=/etc/kubernetes/ssl) +2025-11-24T09:35:58.2200653Z ok: [kubenode-super-marlin] => (item=/usr/local/bin) +2025-11-24T09:35:58.2201417Z ok: [kubenode-teaching-gobbler] => (item=/usr/local/bin) +2025-11-24T09:35:58.2202153Z ok: [kubenode-renewed-asp] => (item=/usr/local/bin) +2025-11-24T09:35:58.2202564Z +2025-11-24T09:35:58.2203334Z TASK [kubernetes/preinstall : Check if kubernetes kubeadm compat cert dir exists] *** +2025-11-24T09:35:58.4465106Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:35:58.4465771Z ok: [kubenode-super-marlin] +2025-11-24T09:35:58.4466334Z ok: [kubenode-renewed-asp] +2025-11-24T09:35:58.4466642Z +2025-11-24T09:35:58.4467613Z TASK [kubernetes/preinstall : Create kubernetes kubeadm compat cert dir (kubernetes/kubeadm issue 1498)] *** +2025-11-24T09:35:58.7082391Z changed: [kubenode-renewed-asp] +2025-11-24T09:35:58.7083161Z changed: [kubenode-super-marlin] +2025-11-24T09:35:58.7083657Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:35:58.7083964Z +2025-11-24T09:35:58.7084315Z TASK [kubernetes/preinstall : Create cni directories] ************************** +2025-11-24T09:35:59.1490102Z changed: [kubenode-super-marlin] => (item=/etc/cni/net.d) +2025-11-24T09:35:59.1491322Z changed: [kubenode-teaching-gobbler] => (item=/etc/cni/net.d) +2025-11-24T09:35:59.1492121Z changed: [kubenode-renewed-asp] => (item=/etc/cni/net.d) +2025-11-24T09:35:59.1493145Z changed: [kubenode-super-marlin] => (item=/opt/cni/bin) +2025-11-24T09:35:59.1493777Z changed: [kubenode-teaching-gobbler] => (item=/opt/cni/bin) +2025-11-24T09:35:59.1494392Z changed: [kubenode-renewed-asp] => (item=/opt/cni/bin) +2025-11-24T09:35:59.1494742Z +2025-11-24T09:35:59.1495098Z TASK [kubernetes/preinstall : Create calico cni directories] ******************* +2025-11-24T09:35:59.4556172Z changed: [kubenode-super-marlin] => (item=/var/lib/calico) +2025-11-24T09:35:59.4557031Z changed: [kubenode-renewed-asp] => (item=/var/lib/calico) +2025-11-24T09:35:59.4557824Z changed: [kubenode-teaching-gobbler] => (item=/var/lib/calico) +2025-11-24T09:35:59.4558328Z +2025-11-24T09:35:59.4558771Z TASK [kubernetes/preinstall : Create local volume provisioner directories] ***** +2025-11-24T09:35:59.5579108Z skipping: [kubenode-super-marlin] => (item=local-storage) +2025-11-24T09:35:59.5580006Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:59.5580680Z skipping: [kubenode-renewed-asp] => (item=local-storage) +2025-11-24T09:35:59.5581319Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:59.5581909Z skipping: [kubenode-teaching-gobbler] => (item=local-storage) +2025-11-24T09:35:59.5582546Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:59.5583211Z +2025-11-24T09:35:59.5583599Z TASK [kubernetes/preinstall : Create temporary resolveconf cloud init file] **** +2025-11-24T09:35:59.6114999Z skipping: [kubenode-super-marlin] +2025-11-24T09:35:59.6115588Z skipping: [kubenode-renewed-asp] +2025-11-24T09:35:59.6116125Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:35:59.6116458Z +2025-11-24T09:35:59.6116854Z TASK [kubernetes/preinstall : Add domain/search/nameservers/options to resolv.conf] *** +2025-11-24T09:36:00.1202338Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:00.1203308Z changed: [kubenode-super-marlin] +2025-11-24T09:36:00.1203999Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:00.1204320Z +2025-11-24T09:36:00.1204799Z TASK [kubernetes/preinstall : Remove search/domain/nameserver options before block] *** +2025-11-24T09:36:00.1998171Z Still deploying... +2025-11-24T09:36:01.2355795Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:36:01.2356700Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:36:01.2357501Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:36:01.2358235Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:36:01.2358994Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:36:01.2359742Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:36:01.2360534Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:36:01.2361252Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:36:01.2361963Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:36:01.2362863Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:36:01.2363631Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:36:01.2364350Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:36:01.2365110Z +2025-11-24T09:36:01.2365502Z TASK [kubernetes/preinstall : Remove search/domain/nameserver options after block] *** +2025-11-24T09:36:02.1265384Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:36:02.1266338Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:36:02.1267225Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:36:02.1268144Z changed: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:36:02.1269359Z changed: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:36:02.1270108Z changed: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:36:02.1270793Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:36:02.1271478Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:36:02.1272176Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:36:02.1273075Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:36:02.1273772Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:36:02.1274449Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:36:02.1274838Z +2025-11-24T09:36:02.1275196Z TASK [kubernetes/preinstall : Get temporary resolveconf cloud init file content] *** +2025-11-24T09:36:02.2003476Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.2004179Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.2004760Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.2005139Z +2025-11-24T09:36:02.2005551Z TASK [kubernetes/preinstall : Persist resolvconf cloud init file] ************** +2025-11-24T09:36:02.2501439Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.2502034Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.2502566Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.2503128Z +2025-11-24T09:36:02.2503486Z TASK [kubernetes/preinstall : Create systemd-resolved drop-in directory] ******* +2025-11-24T09:36:02.2975669Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.2976394Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.2977073Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.2977857Z +2025-11-24T09:36:02.2978350Z TASK [kubernetes/preinstall : Write Kubespray DNS settings to systemd-resolved] *** +2025-11-24T09:36:02.3436522Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.3437234Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.3437822Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.3438199Z +2025-11-24T09:36:02.3438650Z TASK [kubernetes/preinstall : NetworkManager | Ensure NetworkManager conf.d dir] *** +2025-11-24T09:36:02.3741851Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.4012210Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.4013216Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.4013635Z +2025-11-24T09:36:02.4014269Z TASK [kubernetes/preinstall : NetworkManager | Prevent NetworkManager from managing Calico interfaces (cali*/tunl*/vxlan.calico)] *** +2025-11-24T09:36:02.4527492Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.4528185Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.4528781Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.4529179Z +2025-11-24T09:36:02.4529825Z TASK [kubernetes/preinstall : NetworkManager | Prevent NetworkManager from managing K8S interfaces (kube-ipvs0/nodelocaldns)] *** +2025-11-24T09:36:02.5003841Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.5004855Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.5005628Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.5006142Z +2025-11-24T09:36:02.5006751Z TASK [kubernetes/preinstall : NetworkManager | Add nameservers to NM configuration] *** +2025-11-24T09:36:02.5486009Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.5487133Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.5487725Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.5488100Z +2025-11-24T09:36:02.5488571Z TASK [kubernetes/preinstall : Set default dns if remove_default_searchdomains is false] *** +2025-11-24T09:36:02.6039500Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.6040221Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.6040832Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.6041193Z +2025-11-24T09:36:02.6041647Z TASK [kubernetes/preinstall : NetworkManager | Add DNS search to NM configuration] *** +2025-11-24T09:36:02.6615561Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.6616318Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.6616928Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.6617345Z +2025-11-24T09:36:02.6623758Z TASK [kubernetes/preinstall : NetworkManager | Add DNS options to NM configuration] *** +2025-11-24T09:36:02.7159258Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.7159944Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.7160562Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.7160952Z +2025-11-24T09:36:02.7161399Z TASK [kubernetes/preinstall : Update package management cache (zypper) - SUSE] *** +2025-11-24T09:36:02.7735833Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.7736450Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.7736999Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.7737337Z +2025-11-24T09:36:02.7737707Z TASK [kubernetes/preinstall : Add Debian Backports apt repo] ******************* +2025-11-24T09:36:02.8328556Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.8329260Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.8329860Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.8330226Z +2025-11-24T09:36:02.8330747Z TASK [kubernetes/preinstall : Set libseccomp2 pin priority to apt_preferences on Debian buster] *** +2025-11-24T09:36:02.8826849Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:02.8827458Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:02.8828008Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:02.8828340Z +2025-11-24T09:36:02.8828715Z TASK [kubernetes/preinstall : Update package management cache (APT)] *********** +2025-11-24T09:36:03.4827163Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:03.4827802Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:03.4828352Z ok: [kubenode-super-marlin] +2025-11-24T09:36:03.4828972Z +2025-11-24T09:36:03.4829408Z TASK [kubernetes/preinstall : Remove legacy docker repo file] ****************** +2025-11-24T09:36:03.5266847Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:03.5554402Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:03.5554995Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:03.5555316Z +2025-11-24T09:36:03.5555654Z TASK [kubernetes/preinstall : Install epel-release on RHEL derivatives] ******** +2025-11-24T09:36:03.6186972Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:03.6187599Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:03.6188104Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:03.6188410Z +2025-11-24T09:36:03.6188747Z TASK [kubernetes/preinstall : Install packages requirements] ******************* +2025-11-24T09:36:08.7159599Z changed: [kubenode-super-marlin] +2025-11-24T09:36:08.7160306Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:08.7160905Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:08.7161229Z +2025-11-24T09:36:08.7161710Z TASK [kubernetes/preinstall : Confirm selinux deployed] ************************ +2025-11-24T09:36:08.7583949Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:08.7886998Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:08.7887719Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:08.7888062Z +2025-11-24T09:36:08.7888426Z TASK [kubernetes/preinstall : Set selinux policy] ****************************** +2025-11-24T09:36:08.8502979Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:08.8503704Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:08.8504228Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:08.8505031Z +2025-11-24T09:36:08.8505388Z TASK [kubernetes/preinstall : Disable IPv6 DNS lookup] ************************* +2025-11-24T09:36:08.9094850Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:08.9095559Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:08.9096054Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:08.9096357Z +2025-11-24T09:36:08.9096718Z TASK [kubernetes/preinstall : Clean previously used sysctl file locations] ***** +2025-11-24T09:36:09.4043260Z ok: [kubenode-super-marlin] => (item=ipv4-ip_forward.conf) +2025-11-24T09:36:09.4044483Z ok: [kubenode-teaching-gobbler] => (item=ipv4-ip_forward.conf) +2025-11-24T09:36:09.4045171Z ok: [kubenode-renewed-asp] => (item=ipv4-ip_forward.conf) +2025-11-24T09:36:09.4045887Z ok: [kubenode-super-marlin] => (item=bridge-nf-call.conf) +2025-11-24T09:36:09.4046565Z ok: [kubenode-teaching-gobbler] => (item=bridge-nf-call.conf) +2025-11-24T09:36:09.4047234Z ok: [kubenode-renewed-asp] => (item=bridge-nf-call.conf) +2025-11-24T09:36:09.4047624Z +2025-11-24T09:36:09.4048007Z TASK [kubernetes/preinstall : Stat sysctl file configuration] ****************** +2025-11-24T09:36:09.6810009Z ok: [kubenode-super-marlin] +2025-11-24T09:36:09.6810703Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:09.6811218Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:09.6811507Z +2025-11-24T09:36:09.6812016Z TASK [kubernetes/preinstall : Change sysctl file path to link source if linked] *** +2025-11-24T09:36:09.8020537Z ok: [kubenode-super-marlin] +2025-11-24T09:36:09.8021253Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:09.8021782Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:09.8022078Z +2025-11-24T09:36:09.8022459Z TASK [kubernetes/preinstall : Make sure sysctl file path folder exists] ******** +2025-11-24T09:36:10.1002009Z ok: [kubenode-super-marlin] +2025-11-24T09:36:10.1003152Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:10.1003925Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:10.1004259Z +2025-11-24T09:36:10.1004642Z TASK [kubernetes/preinstall : Enable ip forwarding] **************************** +2025-11-24T09:36:10.2010073Z Still deploying... +2025-11-24T09:36:10.5811034Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:10.5811821Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:10.5812380Z changed: [kubenode-super-marlin] +2025-11-24T09:36:10.5813010Z +2025-11-24T09:36:10.5813415Z TASK [kubernetes/preinstall : Enable ipv6 forwarding] ************************** +2025-11-24T09:36:10.6586223Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:10.6586947Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:10.6587457Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:10.6587758Z +2025-11-24T09:36:10.6588092Z TASK [kubernetes/preinstall : Check if we need to set fs.may_detach_mounts] **** +2025-11-24T09:36:10.9228470Z ok: [kubenode-super-marlin] +2025-11-24T09:36:10.9229137Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:10.9229619Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:10.9229897Z +2025-11-24T09:36:10.9230268Z TASK [kubernetes/preinstall : Set fs.may_detach_mounts if needed] ************** +2025-11-24T09:36:11.0076014Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:11.0076755Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:11.0077270Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:11.0077591Z +2025-11-24T09:36:11.0077944Z TASK [kubernetes/preinstall : Ensure kubelet expected parameters are set] ****** +2025-11-24T09:36:13.1613609Z changed: [kubenode-renewed-asp] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) +2025-11-24T09:36:13.1614923Z changed: [kubenode-super-marlin] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) +2025-11-24T09:36:13.1616089Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) +2025-11-24T09:36:13.1617078Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) +2025-11-24T09:36:13.1618029Z changed: [kubenode-super-marlin] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) +2025-11-24T09:36:13.1619366Z changed: [kubenode-renewed-asp] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) +2025-11-24T09:36:13.1620276Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kernel.panic', 'value': 10}) +2025-11-24T09:36:13.1621129Z changed: [kubenode-super-marlin] => (item={'name': 'kernel.panic', 'value': 10}) +2025-11-24T09:36:13.1621965Z changed: [kubenode-renewed-asp] => (item={'name': 'kernel.panic', 'value': 10}) +2025-11-24T09:36:13.1623046Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) +2025-11-24T09:36:13.1624085Z changed: [kubenode-renewed-asp] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) +2025-11-24T09:36:13.1624971Z changed: [kubenode-teaching-gobbler] => (item={'name': 'vm.overcommit_memory', 'value': 1}) +2025-11-24T09:36:13.1625856Z changed: [kubenode-renewed-asp] => (item={'name': 'vm.overcommit_memory', 'value': 1}) +2025-11-24T09:36:13.1626725Z changed: [kubenode-teaching-gobbler] => (item={'name': 'vm.panic_on_oom', 'value': 0}) +2025-11-24T09:36:13.1627498Z changed: [kubenode-renewed-asp] => (item={'name': 'vm.panic_on_oom', 'value': 0}) +2025-11-24T09:36:13.1628248Z changed: [kubenode-super-marlin] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) +2025-11-24T09:36:13.1628997Z changed: [kubenode-super-marlin] => (item={'name': 'vm.overcommit_memory', 'value': 1}) +2025-11-24T09:36:13.1629733Z changed: [kubenode-super-marlin] => (item={'name': 'vm.panic_on_oom', 'value': 0}) +2025-11-24T09:36:13.1630152Z +2025-11-24T09:36:13.1630460Z TASK [kubernetes/preinstall : Check dummy module] ****************************** +2025-11-24T09:36:13.6710000Z changed: [kubenode-super-marlin] +2025-11-24T09:36:13.7190732Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:13.7191599Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:13.7191985Z +2025-11-24T09:36:13.7192409Z TASK [kubernetes/preinstall : Set additional sysctl variables] ***************** +2025-11-24T09:36:13.7193491Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:13.7194106Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:13.7194689Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:13.7195056Z +2025-11-24T09:36:13.7195448Z TASK [kubernetes/preinstall : Disable fapolicyd service] *********************** +2025-11-24T09:36:14.5781727Z ok: [kubenode-super-marlin] +2025-11-24T09:36:14.5782483Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:14.5783790Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:14.5784116Z +2025-11-24T09:36:14.5784528Z TASK [kubernetes/preinstall : Ensure NTP package] ****************************** +2025-11-24T09:36:14.6329584Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:14.6330384Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:14.6330893Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:14.6331208Z +2025-11-24T09:36:14.6331556Z TASK [kubernetes/preinstall : Disable systemd-timesyncd] *********************** +2025-11-24T09:36:14.6646542Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:14.7004112Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:14.7004875Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:14.7005287Z +2025-11-24T09:36:14.7005724Z TASK [kubernetes/preinstall : Set fact NTP settings] *************************** +2025-11-24T09:36:14.7514127Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:14.7514878Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:14.7515442Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:14.7515828Z +2025-11-24T09:36:14.7516209Z TASK [kubernetes/preinstall : Generate NTP configuration file.] **************** +2025-11-24T09:36:14.8113419Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:14.8114346Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:14.8114951Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:14.8115323Z +2025-11-24T09:36:14.8115742Z TASK [kubernetes/preinstall : Stop the NTP Deamon For Sync Immediately] ******** +2025-11-24T09:36:14.8621220Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:14.8621949Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:14.8623129Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:14.8623496Z +2025-11-24T09:36:14.8623867Z TASK [kubernetes/preinstall : Force Sync NTP Immediately] ********************** +2025-11-24T09:36:14.9178055Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:14.9178816Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:14.9179433Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:14.9179836Z +2025-11-24T09:36:14.9180249Z TASK [kubernetes/preinstall : Ensure NTP service is started and enabled] ******* +2025-11-24T09:36:14.9677260Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:14.9678433Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:14.9679013Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:14.9679386Z +2025-11-24T09:36:14.9679815Z TASK [kubernetes/preinstall : Ensure tzdata package] *************************** +2025-11-24T09:36:14.9979129Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:15.0302394Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:15.0303533Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:15.0303945Z +2025-11-24T09:36:15.0304343Z TASK [kubernetes/preinstall : Set timezone] ************************************ +2025-11-24T09:36:15.0637646Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:15.0907188Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:15.0907931Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:15.0908286Z +2025-11-24T09:36:15.0908656Z TASK [kubernetes/preinstall : Hosts | create hosts list from inventory] ******** +2025-11-24T09:36:15.3522545Z ok: [kubenode-super-marlin -> localhost] +2025-11-24T09:36:15.3523358Z +2025-11-24T09:36:15.3523754Z TASK [kubernetes/preinstall : Hosts | populate inventory into hosts file] ****** +2025-11-24T09:36:15.7475273Z changed: [kubenode-super-marlin] +2025-11-24T09:36:15.7475999Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:15.7476535Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:15.7476866Z +2025-11-24T09:36:15.7477327Z TASK [kubernetes/preinstall : Hosts | populate kubernetes loadbalancer address into hosts file] *** +2025-11-24T09:36:15.8199162Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:15.8199878Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:15.8200418Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:15.8200750Z +2025-11-24T09:36:15.8201119Z TASK [kubernetes/preinstall : Hosts | Retrieve hosts file content] ************* +2025-11-24T09:36:16.1922873Z ok: [kubenode-super-marlin] +2025-11-24T09:36:16.1923622Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:16.1924140Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:16.1924426Z +2025-11-24T09:36:16.1924901Z TASK [kubernetes/preinstall : Hosts | Extract existing entries for localhost from hosts file] *** +2025-11-24T09:36:16.4488603Z skipping: [kubenode-super-marlin] => (item=# Your system has configured 'manage_etc_hosts' as True.) +2025-11-24T09:36:16.4489950Z skipping: [kubenode-super-marlin] => (item=# As a result, if you wish for changes to this file to persist) +2025-11-24T09:36:16.4491002Z skipping: [kubenode-super-marlin] => (item=# then you will need to either) +2025-11-24T09:36:16.4492062Z skipping: [kubenode-super-marlin] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) +2025-11-24T09:36:16.4493554Z skipping: [kubenode-super-marlin] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) +2025-11-24T09:36:16.4494594Z skipping: [kubenode-renewed-asp] => (item=# Your system has configured 'manage_etc_hosts' as True.) +2025-11-24T09:36:16.4495627Z skipping: [kubenode-super-marlin] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) +2025-11-24T09:36:16.4496677Z skipping: [kubenode-renewed-asp] => (item=# As a result, if you wish for changes to this file to persist) +2025-11-24T09:36:16.4497754Z skipping: [kubenode-teaching-gobbler] => (item=# Your system has configured 'manage_etc_hosts' as True.) +2025-11-24T09:36:16.4498488Z skipping: [kubenode-super-marlin] => (item=#) +2025-11-24T09:36:16.4499094Z skipping: [kubenode-renewed-asp] => (item=# then you will need to either) +2025-11-24T09:36:16.4500295Z skipping: [kubenode-teaching-gobbler] => (item=# As a result, if you wish for changes to this file to persist) +2025-11-24T09:36:16.4501199Z skipping: [kubenode-super-marlin] => (item=127.0.1.1 kubenode-super-marlin kubenode-super-marlin) +2025-11-24T09:36:16.4502122Z skipping: [kubenode-renewed-asp] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) +2025-11-24T09:36:16.4503087Z skipping: [kubenode-teaching-gobbler] => (item=# then you will need to either) +2025-11-24T09:36:16.4503890Z skipping: [kubenode-renewed-asp] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) +2025-11-24T09:36:16.4504937Z skipping: [kubenode-teaching-gobbler] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) +2025-11-24T09:36:16.4505880Z skipping: [kubenode-teaching-gobbler] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) +2025-11-24T09:36:16.4506606Z ok: [kubenode-super-marlin] => (item=127.0.0.1 localhost) +2025-11-24T09:36:16.4507332Z skipping: [kubenode-renewed-asp] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) +2025-11-24T09:36:16.4508230Z skipping: [kubenode-teaching-gobbler] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) +2025-11-24T09:36:16.4508931Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:36:16.4509450Z skipping: [kubenode-renewed-asp] => (item=#) +2025-11-24T09:36:16.4510134Z skipping: [kubenode-super-marlin] => (item=# The following lines are desirable for IPv6 capable hosts) +2025-11-24T09:36:16.4510831Z skipping: [kubenode-teaching-gobbler] => (item=#) +2025-11-24T09:36:16.4511520Z skipping: [kubenode-renewed-asp] => (item=127.0.1.1 kubenode-renewed-asp kubenode-renewed-asp) +2025-11-24T09:36:16.4512384Z skipping: [kubenode-teaching-gobbler] => (item=127.0.1.1 kubenode-teaching-gobbler kubenode-teaching-gobbler) +2025-11-24T09:36:16.4513319Z ok: [kubenode-super-marlin] => (item=::1 localhost ip6-localhost ip6-loopback) +2025-11-24T09:36:16.4514008Z skipping: [kubenode-super-marlin] => (item=ff02::1 ip6-allnodes) +2025-11-24T09:36:16.4514667Z skipping: [kubenode-super-marlin] => (item=ff02::2 ip6-allrouters) +2025-11-24T09:36:16.4515248Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:36:16.4515768Z ok: [kubenode-renewed-asp] => (item=127.0.0.1 localhost) +2025-11-24T09:36:16.4516514Z skipping: [kubenode-super-marlin] => (item=# Ansible inventory hosts BEGIN) +2025-11-24T09:36:16.4517121Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:36:16.4517837Z skipping: [kubenode-super-marlin] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) +2025-11-24T09:36:16.4518734Z skipping: [kubenode-renewed-asp] => (item=# The following lines are desirable for IPv6 capable hosts) +2025-11-24T09:36:16.4519609Z skipping: [kubenode-super-marlin] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) +2025-11-24T09:36:16.4520362Z ok: [kubenode-teaching-gobbler] => (item=127.0.0.1 localhost) +2025-11-24T09:36:16.4521176Z skipping: [kubenode-super-marlin] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) +2025-11-24T09:36:16.4522027Z skipping: [kubenode-super-marlin] => (item=# Ansible inventory hosts END) +2025-11-24T09:36:16.4522802Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:36:16.4523427Z ok: [kubenode-renewed-asp] => (item=::1 localhost ip6-localhost ip6-loopback) +2025-11-24T09:36:16.4524211Z skipping: [kubenode-teaching-gobbler] => (item=# The following lines are desirable for IPv6 capable hosts) +2025-11-24T09:36:16.4524971Z skipping: [kubenode-renewed-asp] => (item=ff02::1 ip6-allnodes) +2025-11-24T09:36:16.4525607Z skipping: [kubenode-renewed-asp] => (item=ff02::2 ip6-allrouters) +2025-11-24T09:36:16.4526184Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:36:16.4526796Z ok: [kubenode-teaching-gobbler] => (item=::1 localhost ip6-localhost ip6-loopback) +2025-11-24T09:36:16.4527659Z skipping: [kubenode-renewed-asp] => (item=# Ansible inventory hosts BEGIN) +2025-11-24T09:36:16.4528468Z skipping: [kubenode-renewed-asp] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) +2025-11-24T09:36:16.4529266Z skipping: [kubenode-teaching-gobbler] => (item=ff02::1 ip6-allnodes) +2025-11-24T09:36:16.4530049Z skipping: [kubenode-renewed-asp] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) +2025-11-24T09:36:16.4530837Z skipping: [kubenode-teaching-gobbler] => (item=ff02::2 ip6-allrouters) +2025-11-24T09:36:16.4531671Z skipping: [kubenode-renewed-asp] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) +2025-11-24T09:36:16.4532510Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:36:16.4533294Z skipping: [kubenode-renewed-asp] => (item=# Ansible inventory hosts END) +2025-11-24T09:36:16.4533996Z skipping: [kubenode-teaching-gobbler] => (item=# Ansible inventory hosts BEGIN) +2025-11-24T09:36:16.4534853Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) +2025-11-24T09:36:16.4535802Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) +2025-11-24T09:36:16.4536783Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) +2025-11-24T09:36:16.4537651Z skipping: [kubenode-teaching-gobbler] => (item=# Ansible inventory hosts END) +2025-11-24T09:36:16.4538069Z +2025-11-24T09:36:16.4538465Z TASK [kubernetes/preinstall : Hosts | Update target hosts file entries dict with required entries] *** +2025-11-24T09:36:16.5633293Z ok: [kubenode-super-marlin] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:36:16.5634971Z ok: [kubenode-super-marlin] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:36:16.5636502Z ok: [kubenode-renewed-asp] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:36:16.5637772Z ok: [kubenode-teaching-gobbler] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:36:16.5639270Z ok: [kubenode-renewed-asp] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:36:16.5641090Z ok: [kubenode-teaching-gobbler] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:36:16.5641862Z +2025-11-24T09:36:16.5642228Z TASK [kubernetes/preinstall : Hosts | Update (if necessary) hosts file] ******** +2025-11-24T09:36:17.1272251Z changed: [kubenode-super-marlin] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) +2025-11-24T09:36:17.1273690Z changed: [kubenode-teaching-gobbler] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) +2025-11-24T09:36:17.1274714Z changed: [kubenode-renewed-asp] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) +2025-11-24T09:36:17.1275850Z changed: [kubenode-teaching-gobbler] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) +2025-11-24T09:36:17.1277043Z changed: [kubenode-super-marlin] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) +2025-11-24T09:36:17.1278200Z changed: [kubenode-renewed-asp] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) +2025-11-24T09:36:17.1278852Z +2025-11-24T09:36:17.1279213Z TASK [kubernetes/preinstall : Update facts] ************************************ +2025-11-24T09:36:17.5920290Z ok: [kubenode-super-marlin] +2025-11-24T09:36:17.5921146Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:17.5922135Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:17.5922463Z +2025-11-24T09:36:17.5923273Z TASK [kubernetes/preinstall : Configure dhclient to supersede search/domain/nameservers] *** +2025-11-24T09:36:17.8880289Z changed: [kubenode-super-marlin] +2025-11-24T09:36:17.8881030Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:17.8881594Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:17.8881911Z +2025-11-24T09:36:17.8882294Z TASK [kubernetes/preinstall : Configure dhclient hooks for resolv.conf (non-RH)] *** +2025-11-24T09:36:18.5451241Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:18.5452355Z changed: [kubenode-super-marlin] +2025-11-24T09:36:18.5453199Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:18.5453518Z +2025-11-24T09:36:18.5453939Z TASK [kubernetes/preinstall : Configure dhclient hooks for resolv.conf (RH-only)] *** +2025-11-24T09:36:18.6256321Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:18.6257038Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:18.6257582Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:18.6257905Z +2025-11-24T09:36:18.6258313Z TASK [kubernetes/preinstall : Remove kubespray specific config from dhclient config] *** +2025-11-24T09:36:18.6868078Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:18.6868810Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:18.6869320Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:18.6869666Z +2025-11-24T09:36:18.6870048Z TASK [kubernetes/preinstall : Remove kubespray specific dhclient hook] ********* +2025-11-24T09:36:18.7181666Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:18.7827178Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:18.7827911Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:18.7828241Z +2025-11-24T09:36:18.7828583Z TASK [kubernetes/preinstall : Flush handlers] ********************************** +2025-11-24T09:36:18.7829034Z +2025-11-24T09:36:18.7829359Z TASK [kubernetes/preinstall : Flush handlers] ********************************** +2025-11-24T09:36:18.7829795Z +2025-11-24T09:36:18.7830142Z TASK [kubernetes/preinstall : Flush handlers] ********************************** +2025-11-24T09:36:18.7830571Z +2025-11-24T09:36:18.7830916Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | reload kubelet] ********** +2025-11-24T09:36:18.8480636Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:18.8481474Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:18.8482414Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:18.8483041Z +2025-11-24T09:36:18.8483434Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | kube-apiserver configured] *** +2025-11-24T09:36:19.0992876Z ok: [kubenode-super-marlin] +2025-11-24T09:36:19.0993555Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:19.0994032Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:19.0994284Z +2025-11-24T09:36:19.0994669Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | kube-controller configured] *** +2025-11-24T09:36:19.4041631Z ok: [kubenode-super-marlin] +2025-11-24T09:36:19.4042283Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:19.4043024Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:19.4043313Z +2025-11-24T09:36:19.4043741Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | restart kube-controller-manager docker] *** +2025-11-24T09:36:19.4740132Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:19.4740927Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:19.4741502Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:19.4741882Z +2025-11-24T09:36:19.4742473Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | restart kube-controller-manager crio/containerd] *** +2025-11-24T09:36:19.5423476Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:19.5424236Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:19.5424778Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:19.5425107Z +2025-11-24T09:36:19.5425545Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | restart kube-apiserver docker] *** +2025-11-24T09:36:19.5839244Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:19.6106952Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:19.6108101Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:19.6108452Z +2025-11-24T09:36:19.6108904Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | restart kube-apiserver crio/containerd] *** +2025-11-24T09:36:19.6711544Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:19.6712255Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:19.6713032Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:19.6713377Z +2025-11-24T09:36:19.6713829Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | wait for the apiserver to be running] *** +2025-11-24T09:36:19.7058077Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:19.7255249Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:19.7256034Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:19.7256416Z +2025-11-24T09:36:19.7256819Z TASK [kubernetes/preinstall : Check if we are running inside a Azure VM] ******* +2025-11-24T09:36:19.9906218Z ok: [kubenode-super-marlin] +2025-11-24T09:36:19.9907050Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:19.9907595Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:19.9907893Z +2025-11-24T09:36:19.9908249Z TASK [kubernetes/preinstall : Install growpart] ******************************** +2025-11-24T09:36:20.0711292Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:20.0711960Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:20.0712497Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:20.0713190Z +2025-11-24T09:36:20.0713561Z TASK [kubernetes/preinstall : Gather mounts facts] ***************************** +2025-11-24T09:36:20.1116481Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:20.1415455Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:20.1416394Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:20.1416903Z +2025-11-24T09:36:20.1417395Z TASK [kubernetes/preinstall : Search root filesystem device] ******************* +2025-11-24T09:36:20.1982048Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:20.1983171Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:20.1983810Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:20.1984191Z +2025-11-24T09:36:20.1984600Z TASK [kubernetes/preinstall : Check if growpart needs to be run] *************** +2025-11-24T09:36:20.2020112Z Still deploying... +2025-11-24T09:36:20.2598877Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:20.2599696Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:20.2600636Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:20.2601021Z +2025-11-24T09:36:20.2601423Z TASK [kubernetes/preinstall : Check fs type] *********************************** +2025-11-24T09:36:20.3128982Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:20.3129796Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:20.3130396Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:20.3130768Z +2025-11-24T09:36:20.3131160Z TASK [kubernetes/preinstall : Run growpart] ************************************ +2025-11-24T09:36:20.3377372Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:20.3639536Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:20.3640268Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:20.3640623Z +2025-11-24T09:36:20.3640982Z TASK [kubernetes/preinstall : Run xfs_growfs] ********************************** +2025-11-24T09:36:20.3945435Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:20.4170816Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:20.4171515Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:20.4171854Z +2025-11-24T09:36:20.4172135Z TASK [Run calico checks] ******************************************************* +2025-11-24T09:36:20.7521121Z +2025-11-24T09:36:20.7522231Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (ipip)] *** +2025-11-24T09:36:20.8453658Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { +2025-11-24T09:36:20.8454356Z "changed": false, +2025-11-24T09:36:20.8454798Z "msg": "All assertions passed" +2025-11-24T09:36:20.8455251Z } +2025-11-24T09:36:20.8455447Z +2025-11-24T09:36:20.8456269Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (ipip_mode)] *** +2025-11-24T09:36:20.9176762Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { +2025-11-24T09:36:20.9177537Z "changed": false, +2025-11-24T09:36:20.9177995Z "msg": "All assertions passed" +2025-11-24T09:36:20.9178464Z } +2025-11-24T09:36:20.9178669Z +2025-11-24T09:36:20.9179177Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (calcio_ipam_autoallocateblocks)] *** +2025-11-24T09:36:20.9930384Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { +2025-11-24T09:36:20.9931482Z "changed": false, +2025-11-24T09:36:20.9931954Z "msg": "All assertions passed" +2025-11-24T09:36:20.9932489Z } +2025-11-24T09:36:20.9932980Z +2025-11-24T09:36:20.9933461Z TASK [network_plugin/calico : Stop if incompatible network plugin and cloudprovider] *** +2025-11-24T09:36:21.0221188Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:21.0221691Z +2025-11-24T09:36:21.0222068Z TASK [network_plugin/calico : Stop if supported Calico versions] *************** +2025-11-24T09:36:21.0903492Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { +2025-11-24T09:36:21.0904332Z "changed": false, +2025-11-24T09:36:21.0904848Z "msg": "All assertions passed" +2025-11-24T09:36:21.0905386Z } +2025-11-24T09:36:21.0905613Z +2025-11-24T09:36:21.0906003Z TASK [network_plugin/calico : Check if calicoctl.sh exists] ******************** +2025-11-24T09:36:21.3391066Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] +2025-11-24T09:36:21.3391618Z +2025-11-24T09:36:21.3391996Z TASK [network_plugin/calico : Check if calico ready] *************************** +2025-11-24T09:36:21.3896071Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:21.3896576Z +2025-11-24T09:36:21.3896912Z TASK [network_plugin/calico : Get current calico version] ********************** +2025-11-24T09:36:21.4345597Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:21.4346098Z +2025-11-24T09:36:21.4346569Z TASK [network_plugin/calico : Assert that current calico version is enough for upgrade] *** +2025-11-24T09:36:21.4780835Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:21.4781347Z +2025-11-24T09:36:21.4781847Z TASK [network_plugin/calico : Check that cluster_id is set and a valid IPv4 address if calico_rr enabled] *** +2025-11-24T09:36:21.5604801Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:21.5605600Z +2025-11-24T09:36:21.5605976Z TASK [network_plugin/calico : Check that calico_rr nodes are in k8s_cluster group] *** +2025-11-24T09:36:21.5869916Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:21.5870435Z +2025-11-24T09:36:21.5870792Z TASK [network_plugin/calico : Check vars defined correctly] ******************** +2025-11-24T09:36:21.6668293Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { +2025-11-24T09:36:21.6669007Z "changed": false, +2025-11-24T09:36:21.6669451Z "msg": "All assertions passed" +2025-11-24T09:36:21.6669906Z } +2025-11-24T09:36:21.6670099Z +2025-11-24T09:36:21.6670458Z TASK [network_plugin/calico : Check calico network backend defined correctly] *** +2025-11-24T09:36:21.7310104Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { +2025-11-24T09:36:21.7310995Z "changed": false, +2025-11-24T09:36:21.7311487Z "msg": "All assertions passed" +2025-11-24T09:36:21.7311986Z } +2025-11-24T09:36:21.7312206Z +2025-11-24T09:36:21.7312572Z TASK [network_plugin/calico : Check ipip and vxlan mode defined correctly] ***** +2025-11-24T09:36:21.7933685Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { +2025-11-24T09:36:21.7934448Z "changed": false, +2025-11-24T09:36:21.7934923Z "msg": "All assertions passed" +2025-11-24T09:36:21.7935391Z } +2025-11-24T09:36:21.7935593Z +2025-11-24T09:36:21.7935964Z TASK [network_plugin/calico : Check ipip and vxlan mode if simultaneously enabled] *** +2025-11-24T09:36:21.8259307Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:21.8259801Z +2025-11-24T09:36:21.8260209Z TASK [network_plugin/calico : Check ipip and vxlan mode if simultaneously enabled] *** +2025-11-24T09:36:21.8953257Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { +2025-11-24T09:36:21.8954081Z "changed": false, +2025-11-24T09:36:21.8954593Z "msg": "All assertions passed" +2025-11-24T09:36:21.8955127Z } +2025-11-24T09:36:21.8955355Z +2025-11-24T09:36:21.8955746Z TASK [network_plugin/calico : Get Calico default-pool configuration] *********** +2025-11-24T09:36:22.1503322Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] +2025-11-24T09:36:22.1503944Z +2025-11-24T09:36:22.1504335Z TASK [network_plugin/calico : Set calico_pool_conf] **************************** +2025-11-24T09:36:22.1935329Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:22.1935945Z +2025-11-24T09:36:22.1936448Z TASK [network_plugin/calico : Check if inventory match current cluster configuration] *** +2025-11-24T09:36:22.2510408Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:22.2510948Z +2025-11-24T09:36:22.2511461Z TASK [network_plugin/calico : Check kdd calico_datastore if calico_apiserver_enabled] *** +2025-11-24T09:36:22.2877546Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:22.2878073Z +2025-11-24T09:36:22.2878454Z TASK [network_plugin/calico : Check kdd calico_datastore if typha_enabled] ***** +2025-11-24T09:36:22.3241101Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:22.3241657Z +2025-11-24T09:36:22.3242209Z TASK [network_plugin/calico : Check ipip mode is Never for calico ipv6] ******** +2025-11-24T09:36:22.3885351Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:22.3885841Z +2025-11-24T09:36:22.3886350Z TASK [container-engine/validate-container-engine : Validate-container-engine | check if fedora coreos] *** +2025-11-24T09:36:22.6557067Z ok: [kubenode-super-marlin] +2025-11-24T09:36:22.6557733Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:22.6558240Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:22.6558533Z +2025-11-24T09:36:22.6559030Z TASK [container-engine/validate-container-engine : Validate-container-engine | set is_ostree] *** +2025-11-24T09:36:22.7803163Z ok: [kubenode-super-marlin] +2025-11-24T09:36:22.7803905Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:22.7804414Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:22.7804708Z +2025-11-24T09:36:22.7805173Z TASK [container-engine/validate-container-engine : Ensure kubelet systemd unit exists] *** +2025-11-24T09:36:23.0725413Z ok: [kubenode-super-marlin] +2025-11-24T09:36:23.0726392Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:23.0726851Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:23.0727118Z +2025-11-24T09:36:23.0727478Z TASK [container-engine/validate-container-engine : Populate service facts] ***** +2025-11-24T09:36:26.5926729Z ok: [kubenode-super-marlin] +2025-11-24T09:36:26.5927381Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:26.5927858Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:26.5928123Z +2025-11-24T09:36:26.5928547Z TASK [container-engine/validate-container-engine : Check if containerd is installed] *** +2025-11-24T09:36:27.1049933Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:27.1050577Z ok: [kubenode-super-marlin] +2025-11-24T09:36:27.1051072Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:27.1051344Z +2025-11-24T09:36:27.1051731Z TASK [container-engine/validate-container-engine : Check if docker is installed] *** +2025-11-24T09:36:27.5394649Z ok: [kubenode-super-marlin] +2025-11-24T09:36:27.5395328Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:27.5395834Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:27.5396159Z +2025-11-24T09:36:27.5396561Z TASK [container-engine/validate-container-engine : Check if crio is installed] *** +2025-11-24T09:36:27.8175342Z ok: [kubenode-super-marlin] +2025-11-24T09:36:27.8176274Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:27.8176843Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:27.8177176Z +2025-11-24T09:36:27.8177510Z TASK [Drain node] ************************************************************** +2025-11-24T09:36:27.8710373Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:27.9134980Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:27.9135709Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:27.9136486Z +2025-11-24T09:36:27.9136888Z TASK [container-engine/validate-container-engine : Stop kubelet] *************** +2025-11-24T09:36:27.9601264Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:27.9905694Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:27.9906535Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:27.9906885Z +2025-11-24T09:36:27.9907305Z TASK [container-engine/containerd-common : Containerd-common | check if fedora coreos] *** +2025-11-24T09:36:28.0319086Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.0698542Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.0699294Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.0699614Z +2025-11-24T09:36:28.0699963Z TASK [container-engine/containerd-common : Containerd-common | set is_ostree] *** +2025-11-24T09:36:28.1463717Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.1464423Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.1464908Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.1465232Z +2025-11-24T09:36:28.1465637Z TASK [container-engine/containerd-common : Containerd-common | gather os specific variables] *** +2025-11-24T09:36:28.3473611Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) +2025-11-24T09:36:28.3474868Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.3476008Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) +2025-11-24T09:36:28.3477122Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.3478215Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) +2025-11-24T09:36:28.3479327Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.3479693Z +2025-11-24T09:36:28.3480082Z TASK [container-engine/runc : Runc | check if fedora coreos] ******************* +2025-11-24T09:36:28.3887608Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.4256860Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.4257611Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.4257940Z +2025-11-24T09:36:28.4258280Z TASK [container-engine/runc : Runc | set is_ostree] **************************** +2025-11-24T09:36:28.4949989Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.4950943Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.4951587Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.4952005Z +2025-11-24T09:36:28.4952494Z TASK [container-engine/runc : Runc | Uninstall runc package managed by package manager] *** +2025-11-24T09:36:28.5673763Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.5674465Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.5674976Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.5675286Z +2025-11-24T09:36:28.5675620Z TASK [container-engine/runc : Runc | Download runc binary] ********************* +2025-11-24T09:36:28.6398475Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.6399401Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.6399961Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.6400300Z +2025-11-24T09:36:28.6401233Z TASK [container-engine/runc : Copy runc binary from download dir] ************** +2025-11-24T09:36:28.7230458Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.7231080Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.7231617Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.7231957Z +2025-11-24T09:36:28.7232324Z TASK [container-engine/runc : Runc | Remove orphaned binary] ******************* +2025-11-24T09:36:28.8314651Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.8315247Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.8315754Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.8316069Z +2025-11-24T09:36:28.8316407Z TASK [container-engine/crictl : Install crictl] ******************************** +2025-11-24T09:36:28.9268163Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:28.9268802Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:28.9269342Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:28.9269675Z +2025-11-24T09:36:28.9270039Z TASK [container-engine/nerdctl : Nerdctl | Download nerdctl] ******************* +2025-11-24T09:36:29.0017175Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.0017800Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.0018311Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.0018622Z +2025-11-24T09:36:29.0018999Z TASK [container-engine/nerdctl : Nerdctl | Copy nerdctl binary from download dir] *** +2025-11-24T09:36:29.0423805Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.0726804Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.0727434Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.0727781Z +2025-11-24T09:36:29.0728164Z TASK [container-engine/nerdctl : Nerdctl | Create configuration dir] *********** +2025-11-24T09:36:29.1371727Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.1372343Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.1373043Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.1373354Z +2025-11-24T09:36:29.1373695Z TASK [container-engine/nerdctl : Nerdctl | Install nerdctl configuration] ****** +2025-11-24T09:36:29.1759747Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.2417148Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.2417815Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.2418202Z +2025-11-24T09:36:29.2418736Z TASK [container-engine/containerd : Containerd | Remove containerd repository for RedHat os family] *** +2025-11-24T09:36:29.2814688Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.3093528Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.3094123Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.3094448Z +2025-11-24T09:36:29.3095435Z TASK [container-engine/containerd : Containerd | Remove containerd repository for Debian os family] *** +2025-11-24T09:36:29.3846182Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:36:29.3846932Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.3847562Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:36:29.3848186Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.3848796Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:36:29.3849435Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.3850148Z +2025-11-24T09:36:29.3850576Z TASK [container-engine/containerd : Containerd | Stop containerd service] ****** +2025-11-24T09:36:29.4539754Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.4540364Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.4540879Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.4541194Z +2025-11-24T09:36:29.4541554Z TASK [container-engine/containerd : Containerd | Remove configuration files] *** +2025-11-24T09:36:29.4936439Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service) +2025-11-24T09:36:29.4937350Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:36:29.4938070Z skipping: [kubenode-super-marlin] => (item=/etc/containerd) +2025-11-24T09:36:29.7135340Z skipping: [kubenode-super-marlin] => (item=/var/lib/containerd) +2025-11-24T09:36:29.7136113Z skipping: [kubenode-super-marlin] => (item=/run/containerd) +2025-11-24T09:36:29.7136866Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service) +2025-11-24T09:36:29.7137729Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:36:29.7138439Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.7139003Z skipping: [kubenode-renewed-asp] => (item=/etc/containerd) +2025-11-24T09:36:29.7139769Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service) +2025-11-24T09:36:29.7140640Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:36:29.7141767Z skipping: [kubenode-renewed-asp] => (item=/var/lib/containerd) +2025-11-24T09:36:29.7142458Z skipping: [kubenode-teaching-gobbler] => (item=/etc/containerd) +2025-11-24T09:36:29.7143359Z skipping: [kubenode-renewed-asp] => (item=/run/containerd) +2025-11-24T09:36:29.7143942Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.7144527Z skipping: [kubenode-teaching-gobbler] => (item=/var/lib/containerd) +2025-11-24T09:36:29.7145223Z skipping: [kubenode-teaching-gobbler] => (item=/run/containerd) +2025-11-24T09:36:29.7145819Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.7146127Z +2025-11-24T09:36:29.7146525Z TASK [Drain node] ************************************************************** +2025-11-24T09:36:29.7499848Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.7815367Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.7816037Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.7816422Z +2025-11-24T09:36:29.7816850Z TASK [container-engine/validate-container-engine : Stop kubelet] *************** +2025-11-24T09:36:29.8597282Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.8597979Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.8598591Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.8598972Z +2025-11-24T09:36:29.8599467Z TASK [container-engine/containerd-common : Containerd-common | check if fedora coreos] *** +2025-11-24T09:36:29.9024322Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:29.9382400Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:29.9383381Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:29.9383790Z +2025-11-24T09:36:29.9384244Z TASK [container-engine/containerd-common : Containerd-common | set is_ostree] *** +2025-11-24T09:36:29.9917356Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.0127013Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.0127676Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.0128059Z +2025-11-24T09:36:30.0128568Z TASK [container-engine/containerd-common : Containerd-common | gather os specific variables] *** +2025-11-24T09:36:30.1553432Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:36:30.1554590Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.1555669Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:36:30.1556931Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.1557859Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:36:30.1558819Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.1559122Z +2025-11-24T09:36:30.1559519Z TASK [container-engine/docker-storage : Docker-storage-setup | install git and make] *** +2025-11-24T09:36:30.1910636Z skipping: [kubenode-super-marlin] => (item=git) +2025-11-24T09:36:30.1911416Z skipping: [kubenode-super-marlin] => (item=make) +2025-11-24T09:36:30.2035489Z Still deploying... +2025-11-24T09:36:30.2261011Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.2261697Z skipping: [kubenode-renewed-asp] => (item=git) +2025-11-24T09:36:30.2262372Z skipping: [kubenode-renewed-asp] => (item=make) +2025-11-24T09:36:30.2263205Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.2263847Z skipping: [kubenode-teaching-gobbler] => (item=git) +2025-11-24T09:36:30.2264573Z skipping: [kubenode-teaching-gobbler] => (item=make) +2025-11-24T09:36:30.2265233Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.2265607Z +2025-11-24T09:36:30.2266149Z TASK [container-engine/docker-storage : Docker-storage-setup | docker-storage-setup sysconfig template] *** +2025-11-24T09:36:30.2942909Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.2943613Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.2944241Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.2944633Z +2025-11-24T09:36:30.2945700Z TASK [container-engine/docker-storage : Docker-storage-override-directory | docker service storage-setup override dir] *** +2025-11-24T09:36:30.3314005Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.3582595Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.3583469Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.3583868Z +2025-11-24T09:36:30.3584493Z TASK [container-engine/docker-storage : Docker-storage-override | docker service storage-setup override file] *** +2025-11-24T09:36:30.4000020Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.4405556Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.4406487Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.4406809Z +2025-11-24T09:36:30.4407165Z TASK [container-engine/docker-storage : Docker-storage-setup | install lvm2] *** +2025-11-24T09:36:30.4986275Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.4986863Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.4987367Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.4987736Z +2025-11-24T09:36:30.4988243Z TASK [container-engine/docker-storage : Docker-storage-setup | install and run container-storage-setup] *** +2025-11-24T09:36:30.5388595Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.6033138Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.6033729Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.6034135Z +2025-11-24T09:36:30.6034578Z TASK [container-engine/docker : Docker | Get package facts] ******************** +2025-11-24T09:36:30.6801140Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.6801720Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.6802248Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.6802599Z +2025-11-24T09:36:30.6803241Z TASK [container-engine/docker : Docker | Find docker packages] ***************** +2025-11-24T09:36:30.7521350Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.7522045Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.7522876Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.7523268Z +2025-11-24T09:36:30.7523722Z TASK [container-engine/docker : Docker | Stop all running container] *********** +2025-11-24T09:36:30.7925186Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.8257163Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.8257865Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.8258249Z +2025-11-24T09:36:30.8258590Z TASK [container-engine/docker : Reset | remove all containers] ***************** +2025-11-24T09:36:30.8956292Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:30.8956999Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:30.8957603Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:30.8958034Z +2025-11-24T09:36:30.8958438Z TASK [container-engine/docker : Docker | Stop docker service] ****************** +2025-11-24T09:36:30.9359644Z skipping: [kubenode-super-marlin] => (item=docker) +2025-11-24T09:36:31.0049777Z skipping: [kubenode-super-marlin] => (item=docker.socket) +2025-11-24T09:36:31.0050481Z skipping: [kubenode-renewed-asp] => (item=docker) +2025-11-24T09:36:31.0051087Z skipping: [kubenode-super-marlin] => (item=containerd) +2025-11-24T09:36:31.0051669Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.0052211Z skipping: [kubenode-renewed-asp] => (item=docker.socket) +2025-11-24T09:36:31.0053160Z skipping: [kubenode-renewed-asp] => (item=containerd) +2025-11-24T09:36:31.0053743Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.0054281Z skipping: [kubenode-teaching-gobbler] => (item=docker) +2025-11-24T09:36:31.0054902Z skipping: [kubenode-teaching-gobbler] => (item=docker.socket) +2025-11-24T09:36:31.0055552Z skipping: [kubenode-teaching-gobbler] => (item=containerd) +2025-11-24T09:36:31.0056145Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.0056450Z +2025-11-24T09:36:31.0056784Z TASK [container-engine/docker : Docker | Remove dpkg hold] ********************* +2025-11-24T09:36:31.0785740Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.0786477Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.0787109Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.0787507Z +2025-11-24T09:36:31.0788414Z TASK [container-engine/docker : Docker | Remove docker package] **************** +2025-11-24T09:36:31.1226441Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.1660836Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.1661527Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.1661926Z +2025-11-24T09:36:31.1662396Z TASK [container-engine/docker : Docker | ensure docker-ce repository is removed] *** +2025-11-24T09:36:31.2030664Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:36:31.2423070Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.2424035Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:36:31.2424618Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.2425178Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:36:31.2425725Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.2426039Z +2025-11-24T09:36:31.2426381Z TASK [container-engine/docker : Docker | Remove docker repository on Fedora] *** +2025-11-24T09:36:31.3217299Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.3217992Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.3218586Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.3218965Z +2025-11-24T09:36:31.3219517Z TASK [container-engine/docker : Docker | Remove docker repository on RedHat/CentOS/Oracle/AlmaLinux Linux] *** +2025-11-24T09:36:31.3942033Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.3942944Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.3943546Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.3943948Z +2025-11-24T09:36:31.3944372Z TASK [container-engine/docker : Docker | Remove docker configuration files] **** +2025-11-24T09:36:31.5865232Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/docker.service.d/) +2025-11-24T09:36:31.5866501Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/docker.socket) +2025-11-24T09:36:31.5867429Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/docker.service.d/) +2025-11-24T09:36:31.5868367Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/docker.service) +2025-11-24T09:36:31.5869258Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/docker.socket) +2025-11-24T09:36:31.5870165Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service) +2025-11-24T09:36:31.5871125Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:36:31.5872317Z skipping: [kubenode-super-marlin] => (item=/var/lib/docker) +2025-11-24T09:36:31.5873197Z skipping: [kubenode-super-marlin] => (item=/etc/docker) +2025-11-24T09:36:31.5873888Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/docker.service) +2025-11-24T09:36:31.6920814Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.6921543Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service) +2025-11-24T09:36:31.6922347Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:36:31.6923321Z skipping: [kubenode-renewed-asp] => (item=/var/lib/docker) +2025-11-24T09:36:31.6923907Z skipping: [kubenode-renewed-asp] => (item=/etc/docker) +2025-11-24T09:36:31.6924447Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.6925072Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/docker.service.d/) +2025-11-24T09:36:31.6925855Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/docker.socket) +2025-11-24T09:36:31.6926618Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/docker.service) +2025-11-24T09:36:31.6927409Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service) +2025-11-24T09:36:31.6928257Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:36:31.6928985Z skipping: [kubenode-teaching-gobbler] => (item=/var/lib/docker) +2025-11-24T09:36:31.6929600Z skipping: [kubenode-teaching-gobbler] => (item=/etc/docker) +2025-11-24T09:36:31.6930546Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.6930878Z +2025-11-24T09:36:31.6931210Z TASK [container-engine/docker : Docker | systemctl daemon-reload] ************** +2025-11-24T09:36:31.8019398Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.8019975Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.8020520Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.8020849Z +2025-11-24T09:36:31.8021109Z TASK [Drain node] ************************************************************** +2025-11-24T09:36:31.8855105Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.8856001Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.8856501Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.8856820Z +2025-11-24T09:36:31.8857183Z TASK [container-engine/validate-container-engine : Stop kubelet] *************** +2025-11-24T09:36:31.9571570Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:31.9572185Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:31.9572877Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:31.9573228Z +2025-11-24T09:36:31.9573577Z TASK [container-engine/runc : Runc | check if fedora coreos] ******************* +2025-11-24T09:36:32.0413067Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.0413767Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.0414364Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.0414741Z +2025-11-24T09:36:32.0415152Z TASK [container-engine/runc : Runc | set is_ostree] **************************** +2025-11-24T09:36:32.0797411Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.1099326Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.1099912Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.1100221Z +2025-11-24T09:36:32.1100611Z TASK [container-engine/runc : Runc | Uninstall runc package managed by package manager] *** +2025-11-24T09:36:32.1478146Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.1813148Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.1813841Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.1814235Z +2025-11-24T09:36:32.1814654Z TASK [container-engine/runc : Runc | Download runc binary] ********************* +2025-11-24T09:36:32.2520711Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.2521394Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.2522005Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.2522376Z +2025-11-24T09:36:32.2523406Z TASK [container-engine/runc : Copy runc binary from download dir] ************** +2025-11-24T09:36:32.2905739Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.3263906Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.3264488Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.3264810Z +2025-11-24T09:36:32.3265156Z TASK [container-engine/runc : Runc | Remove orphaned binary] ******************* +2025-11-24T09:36:32.4313558Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.4314127Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.4314610Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.4314909Z +2025-11-24T09:36:32.4315257Z TASK [container-engine/crictl : Install crictl] ******************************** +2025-11-24T09:36:32.5291140Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.5291834Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.5292434Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.5293069Z +2025-11-24T09:36:32.5293498Z TASK [container-engine/skopeo : Skopeo | check if fedora coreos] *************** +2025-11-24T09:36:32.6085097Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.6085680Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.6086191Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.6086552Z +2025-11-24T09:36:32.6086885Z TASK [container-engine/skopeo : Skopeo | set is_ostree] ************************ +2025-11-24T09:36:32.6427220Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.6719733Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.6720397Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.6720782Z +2025-11-24T09:36:32.6721771Z TASK [container-engine/skopeo : Skopeo | Uninstall skopeo package managed by package manager] *** +2025-11-24T09:36:32.7116697Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.7565136Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.7565838Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.7566243Z +2025-11-24T09:36:32.7566655Z TASK [container-engine/skopeo : Skopeo | Download skopeo binary] *************** +2025-11-24T09:36:32.8414554Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.8415148Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.8416013Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.8416330Z +2025-11-24T09:36:32.8416680Z TASK [container-engine/skopeo : Copy skopeo binary from download dir] ********** +2025-11-24T09:36:32.9407713Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:32.9408446Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:32.9409069Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:32.9409456Z +2025-11-24T09:36:32.9409902Z TASK [container-engine/cri-o : Cri-o | include vars/v1.28.yml] ***************** +2025-11-24T09:36:33.0101710Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.0102391Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.0103269Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.0103648Z +2025-11-24T09:36:33.0104054Z TASK [container-engine/cri-o : Cri-o | include vars/v1.29.yml] ***************** +2025-11-24T09:36:33.0458351Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.0750810Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.0751555Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.0752010Z +2025-11-24T09:36:33.0752467Z TASK [container-engine/cri-o : CRI-O | Kubic repo name for debian os family] *** +2025-11-24T09:36:33.1138765Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.1519406Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.1520367Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.1520905Z +2025-11-24T09:36:33.1521480Z TASK [container-engine/cri-o : CRI-O | Remove kubic apt repo] ****************** +2025-11-24T09:36:33.2283944Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.2284669Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.2285295Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.2285722Z +2025-11-24T09:36:33.2286144Z TASK [container-engine/cri-o : CRI-O | Remove cri-o apt repo] ****************** +2025-11-24T09:36:33.3071264Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.3071948Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.3072556Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.3073246Z +2025-11-24T09:36:33.3073659Z TASK [container-engine/cri-o : CRI-O | Remove CRI-O kubic yum repo] ************ +2025-11-24T09:36:33.3835684Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.3836371Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.3836904Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.3837219Z +2025-11-24T09:36:33.3837580Z TASK [container-engine/cri-o : CRI-O | Remove CRI-O kubic yum repo] ************ +2025-11-24T09:36:33.5941837Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.5942603Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.5943504Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.5943894Z +2025-11-24T09:36:33.5944320Z TASK [container-engine/cri-o : CRI-O | Run yum-clean-metadata] ***************** +2025-11-24T09:36:33.6752044Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.6753144Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.6753705Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.6754058Z +2025-11-24T09:36:33.6754428Z TASK [container-engine/cri-o : CRI-O | Remove crictl] ************************** +2025-11-24T09:36:33.7331106Z skipping: [kubenode-super-marlin] => (item=/etc/crictl.yaml) +2025-11-24T09:36:33.7332026Z skipping: [kubenode-super-marlin] => (item=/usr/local/bin/crictl) +2025-11-24T09:36:33.7333077Z skipping: [kubenode-renewed-asp] => (item=/etc/crictl.yaml) +2025-11-24T09:36:33.7945091Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.7946382Z skipping: [kubenode-renewed-asp] => (item=/usr/local/bin/crictl) +2025-11-24T09:36:33.7947177Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.7947897Z skipping: [kubenode-teaching-gobbler] => (item=/etc/crictl.yaml) +2025-11-24T09:36:33.7948793Z skipping: [kubenode-teaching-gobbler] => (item=/usr/local/bin/crictl) +2025-11-24T09:36:33.7949583Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.7949981Z +2025-11-24T09:36:33.7950399Z TASK [container-engine/cri-o : CRI-O | Stop crio service] ********************** +2025-11-24T09:36:33.8631129Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.8631714Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.8632202Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.8632514Z +2025-11-24T09:36:33.8633163Z TASK [container-engine/cri-o : CRI-O | Remove CRI-O configuration files] ******* +2025-11-24T09:36:33.9139080Z skipping: [kubenode-super-marlin] => (item=/etc/crio) +2025-11-24T09:36:33.9139997Z skipping: [kubenode-super-marlin] => (item=/etc/containers) +2025-11-24T09:36:33.9140806Z skipping: [kubenode-renewed-asp] => (item=/etc/crio) +2025-11-24T09:36:33.9141673Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/crio.service.d) +2025-11-24T09:36:33.9142562Z skipping: [kubenode-renewed-asp] => (item=/etc/containers) +2025-11-24T09:36:33.9627760Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:33.9628657Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/crio.service.d) +2025-11-24T09:36:33.9629488Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:33.9630158Z skipping: [kubenode-teaching-gobbler] => (item=/etc/crio) +2025-11-24T09:36:33.9630987Z skipping: [kubenode-teaching-gobbler] => (item=/etc/containers) +2025-11-24T09:36:33.9631912Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/crio.service.d) +2025-11-24T09:36:33.9633029Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:33.9633433Z +2025-11-24T09:36:33.9633844Z TASK [container-engine/cri-o : CRI-O | Remove CRI-O binaries] ****************** +2025-11-24T09:36:34.1068184Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.1068816Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.1069350Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.1069686Z +2025-11-24T09:36:34.1070097Z TASK [container-engine/kata-containers : Kata-containers | Download kata binary] *** +2025-11-24T09:36:34.1883162Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.1883883Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.1884488Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.1884885Z +2025-11-24T09:36:34.1885377Z TASK [container-engine/kata-containers : Kata-containers | Copy kata-containers binary] *** +2025-11-24T09:36:34.2593430Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.2594121Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.2594718Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.2595100Z +2025-11-24T09:36:34.2595573Z TASK [container-engine/kata-containers : Kata-containers | Create config directory] *** +2025-11-24T09:36:34.3395579Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.3396283Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.3396879Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.3397264Z +2025-11-24T09:36:34.3397692Z TASK [container-engine/kata-containers : Kata-containers | Set configuration] *** +2025-11-24T09:36:34.3986533Z skipping: [kubenode-renewed-asp] => (item=configuration-qemu.toml) +2025-11-24T09:36:34.3987362Z skipping: [kubenode-super-marlin] => (item=configuration-qemu.toml) +2025-11-24T09:36:34.3987999Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.3988506Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.3989122Z skipping: [kubenode-teaching-gobbler] => (item=configuration-qemu.toml) +2025-11-24T09:36:34.3989827Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.3990140Z +2025-11-24T09:36:34.3990500Z TASK [container-engine/kata-containers : Kata-containers | Set containerd bin] *** +2025-11-24T09:36:34.4174256Z skipping: [kubenode-super-marlin] => (item=qemu) +2025-11-24T09:36:34.4405966Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.4406598Z skipping: [kubenode-renewed-asp] => (item=qemu) +2025-11-24T09:36:34.4844107Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.4844857Z skipping: [kubenode-teaching-gobbler] => (item=qemu) +2025-11-24T09:36:34.4845582Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.4845998Z +2025-11-24T09:36:34.4846506Z TASK [container-engine/kata-containers : Kata-containers | Load vhost kernel modules] *** +2025-11-24T09:36:34.5208224Z skipping: [kubenode-super-marlin] => (item=vhost_vsock) +2025-11-24T09:36:34.5650763Z skipping: [kubenode-super-marlin] => (item=vhost_net) +2025-11-24T09:36:34.5651639Z skipping: [kubenode-renewed-asp] => (item=vhost_vsock) +2025-11-24T09:36:34.5652422Z skipping: [kubenode-renewed-asp] => (item=vhost_net) +2025-11-24T09:36:34.5653448Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.5654069Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.5654779Z skipping: [kubenode-teaching-gobbler] => (item=vhost_vsock) +2025-11-24T09:36:34.5655579Z skipping: [kubenode-teaching-gobbler] => (item=vhost_net) +2025-11-24T09:36:34.5656303Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.5656685Z +2025-11-24T09:36:34.5657196Z TASK [container-engine/kata-containers : Kata-containers | Persist vhost kernel modules] *** +2025-11-24T09:36:34.6045997Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.6697046Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.6697629Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.6697965Z +2025-11-24T09:36:34.6698309Z TASK [container-engine/gvisor : GVisor | Download runsc binary] **************** +2025-11-24T09:36:34.7422422Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.7423457Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.7424091Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.7424489Z +2025-11-24T09:36:34.7424968Z TASK [container-engine/gvisor : GVisor | Download containerd-shim-runsc-v1 binary] *** +2025-11-24T09:36:34.8137764Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:34.8138474Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:34.8139104Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:34.8139492Z +2025-11-24T09:36:34.8139911Z TASK [container-engine/gvisor : GVisor | Copy binaries] ************************ +2025-11-24T09:36:35.6688471Z skipping: [kubenode-renewed-asp] => (item={'src': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'dest': 'runsc'}) +2025-11-24T09:36:35.6689878Z skipping: [kubenode-renewed-asp] => (item={'src': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'dest': 'containerd-shim-runsc-v1'}) +2025-11-24T09:36:35.6690832Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:35.6691594Z skipping: [kubenode-teaching-gobbler] => (item={'src': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'dest': 'runsc'}) +2025-11-24T09:36:35.6693082Z skipping: [kubenode-teaching-gobbler] => (item={'src': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'dest': 'containerd-shim-runsc-v1'}) +2025-11-24T09:36:35.6694037Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:35.6694795Z skipping: [kubenode-super-marlin] => (item={'src': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'dest': 'runsc'}) +2025-11-24T09:36:35.6695944Z skipping: [kubenode-super-marlin] => (item={'src': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'dest': 'containerd-shim-runsc-v1'}) +2025-11-24T09:36:35.6696851Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:35.6697144Z +2025-11-24T09:36:35.6697473Z TASK [container-engine/crun : Crun | Download crun binary] ********************* +2025-11-24T09:36:35.7123662Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:35.7454006Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:35.7454679Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:35.7455073Z +2025-11-24T09:36:35.7455485Z TASK [container-engine/crun : Copy crun binary from download dir] ************** +2025-11-24T09:36:35.7854622Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:35.8532587Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:35.8533589Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:35.8533937Z +2025-11-24T09:36:35.8534293Z TASK [container-engine/youki : Youki | Download youki] ************************* +2025-11-24T09:36:35.9212293Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:35.9213321Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:35.9213989Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:35.9214323Z +2025-11-24T09:36:35.9214697Z TASK [container-engine/youki : Youki | Copy youki binary from download dir] **** +2025-11-24T09:36:36.1394400Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.1395147Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.1395808Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.1396233Z +2025-11-24T09:36:36.1396683Z TASK [container-engine/runc : Runc | check if fedora coreos] ******************* +2025-11-24T09:36:36.2140254Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.2140970Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.2141587Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.2141956Z +2025-11-24T09:36:36.2142348Z TASK [container-engine/runc : Runc | set is_ostree] **************************** +2025-11-24T09:36:36.2815443Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.2816143Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.2816818Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.2817238Z +2025-11-24T09:36:36.2817737Z TASK [container-engine/runc : Runc | Uninstall runc package managed by package manager] *** +2025-11-24T09:36:36.3735776Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.3736497Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.3737133Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.3737521Z +2025-11-24T09:36:36.3737944Z TASK [container-engine/runc : Runc | Download runc binary] ********************* +2025-11-24T09:36:36.4097120Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.4486684Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.4487434Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.4487847Z +2025-11-24T09:36:36.4488282Z TASK [container-engine/runc : Copy runc binary from download dir] ************** +2025-11-24T09:36:36.5141918Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.5142928Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.5143982Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.5144372Z +2025-11-24T09:36:36.5144789Z TASK [container-engine/runc : Runc | Remove orphaned binary] ******************* +2025-11-24T09:36:36.5502904Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.6218785Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.6219498Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.6219936Z +2025-11-24T09:36:36.6220364Z TASK [container-engine/crictl : Install crictl] ******************************** +2025-11-24T09:36:36.6699748Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.7431070Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.7431775Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.7432198Z +2025-11-24T09:36:36.7432866Z TASK [container-engine/skopeo : Skopeo | check if fedora coreos] *************** +2025-11-24T09:36:36.8176173Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.8176917Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.8177585Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.8178017Z +2025-11-24T09:36:36.8178463Z TASK [container-engine/skopeo : Skopeo | set is_ostree] ************************ +2025-11-24T09:36:36.8537690Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.8858734Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.8859330Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.8859652Z +2025-11-24T09:36:36.8860086Z TASK [container-engine/skopeo : Skopeo | Uninstall skopeo package managed by package manager] *** +2025-11-24T09:36:36.9464524Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:36.9465218Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:36.9466251Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:36.9466655Z +2025-11-24T09:36:36.9467087Z TASK [container-engine/skopeo : Skopeo | Download skopeo binary] *************** +2025-11-24T09:36:37.0082845Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.0083437Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.0083941Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.0084277Z +2025-11-24T09:36:37.0084715Z TASK [container-engine/skopeo : Copy skopeo binary from download dir] ********** +2025-11-24T09:36:37.1030724Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.1031770Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.1032366Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.1033056Z +2025-11-24T09:36:37.1033480Z TASK [container-engine/cri-o : Cri-o | include vars/v1.28.yml] ***************** +2025-11-24T09:36:37.1809314Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.1810232Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.1810882Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.1811268Z +2025-11-24T09:36:37.1811692Z TASK [container-engine/cri-o : Cri-o | include vars/v1.29.yml] ***************** +2025-11-24T09:36:37.2681523Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.2682166Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.2682888Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.2683228Z +2025-11-24T09:36:37.2683554Z TASK [container-engine/cri-o : Cri-o | check if fedora coreos] ***************** +2025-11-24T09:36:37.3043635Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.3396658Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.3397614Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.3398013Z +2025-11-24T09:36:37.3398426Z TASK [container-engine/cri-o : Cri-o | set is_ostree] ************************** +2025-11-24T09:36:37.3767174Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.4119236Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.4119892Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.4120239Z +2025-11-24T09:36:37.4120566Z TASK [container-engine/cri-o : Cri-o | get ostree version] ********************* +2025-11-24T09:36:37.4896501Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.4897596Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.4898112Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.4898703Z +2025-11-24T09:36:37.4899649Z TASK [container-engine/cri-o : Cri-o | Download cri-o] ************************* +2025-11-24T09:36:37.5658926Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.5659624Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.5660138Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.5660492Z +2025-11-24T09:36:37.5660831Z TASK [container-engine/cri-o : Check that amzn2-extras.repo exists] ************ +2025-11-24T09:36:37.6364398Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.6365208Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.6365816Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.6366206Z +2025-11-24T09:36:37.7003475Z TASK [container-engine/cri-o : Find docker repo in amzn2-extras.repo file] ***** +2025-11-24T09:36:37.7004334Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.7004835Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.7005329Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.7005642Z +2025-11-24T09:36:37.7005977Z TASK [container-engine/cri-o : Remove docker repository] *********************** +2025-11-24T09:36:37.7343549Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.7645962Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.7646854Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.7647240Z +2025-11-24T09:36:37.7647758Z TASK [container-engine/cri-o : Cri-o | build a list of crio runtimes with Katacontainers runtimes] *** +2025-11-24T09:36:37.7991571Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:37.9522855Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:37.9523752Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:37.9524158Z +2025-11-24T09:36:37.9525071Z TASK [container-engine/cri-o : Cri-o | build a list of crio runtimes with crun runtime] *** +2025-11-24T09:36:38.0154647Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.0155327Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.0155915Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.0156284Z +2025-11-24T09:36:38.0156972Z TASK [container-engine/cri-o : Cri-o | build a list of crio runtimes with youki runtime] *** +2025-11-24T09:36:38.0495422Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.0832268Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.0833590Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.0833971Z +2025-11-24T09:36:38.0834449Z TASK [container-engine/cri-o : Cri-o | make sure needed folders exist in the system] *** +2025-11-24T09:36:38.1010864Z skipping: [kubenode-super-marlin] => (item=/etc/crio) +2025-11-24T09:36:38.1230522Z skipping: [kubenode-super-marlin] => (item=/etc/containers) +2025-11-24T09:36:38.1231331Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/crio.service.d) +2025-11-24T09:36:38.1232030Z skipping: [kubenode-renewed-asp] => (item=/etc/crio) +2025-11-24T09:36:38.1646525Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.1647280Z skipping: [kubenode-renewed-asp] => (item=/etc/containers) +2025-11-24T09:36:38.1648151Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/crio.service.d) +2025-11-24T09:36:38.1648949Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.1649603Z skipping: [kubenode-teaching-gobbler] => (item=/etc/crio) +2025-11-24T09:36:38.1650419Z skipping: [kubenode-teaching-gobbler] => (item=/etc/containers) +2025-11-24T09:36:38.1651312Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/crio.service.d) +2025-11-24T09:36:38.1652106Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.1652476Z +2025-11-24T09:36:38.1653118Z TASK [container-engine/cri-o : Cri-o | install cri-o config] ******************* +2025-11-24T09:36:38.1975826Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.2250430Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.2251087Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.2251477Z +2025-11-24T09:36:38.2251881Z TASK [container-engine/cri-o : Cri-o | install config.json] ******************** +2025-11-24T09:36:38.2616022Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.2896301Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.2896878Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.2897194Z +2025-11-24T09:36:38.3534089Z TASK [container-engine/cri-o : Cri-o | copy binaries] ************************** +2025-11-24T09:36:38.3534930Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.3535543Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.3536129Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.3536499Z +2025-11-24T09:36:38.3536892Z TASK [container-engine/cri-o : Cri-o | copy service file] ********************** +2025-11-24T09:36:38.3936168Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.4156422Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.4157020Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.4157345Z +2025-11-24T09:36:38.4157733Z TASK [container-engine/cri-o : Cri-o | configure crio to use kube reserved cgroups] *** +2025-11-24T09:36:38.4974123Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.4974701Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.4975209Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.4975592Z +2025-11-24T09:36:38.4975961Z TASK [container-engine/cri-o : Cri-o | update the bin dir for crio.service file] *** +2025-11-24T09:36:38.5469762Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.5763969Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.5764689Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.5765073Z +2025-11-24T09:36:38.5765481Z TASK [container-engine/cri-o : Cri-o | copy default policy] ******************** +2025-11-24T09:36:38.6386957Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.6388074Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.6388687Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.6389067Z +2025-11-24T09:36:38.6389473Z TASK [container-engine/cri-o : Cri-o | copy mounts.conf] *********************** +2025-11-24T09:36:38.7126633Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.7127342Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.7127958Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.7128331Z +2025-11-24T09:36:38.7128793Z TASK [container-engine/cri-o : Cri-o | create directory for oci hooks] ********* +2025-11-24T09:36:38.7483983Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.7862110Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.7862942Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.7863284Z +2025-11-24T09:36:38.7863627Z TASK [container-engine/cri-o : Cri-o | set overlay driver] ********************* +2025-11-24T09:36:38.8255993Z skipping: [kubenode-super-marlin] => (item={'option': 'driver', 'value': '"overlay"'}) +2025-11-24T09:36:38.8256999Z skipping: [kubenode-super-marlin] => (item={'option': 'graphroot', 'value': '"/var/lib/containers/storage"'}) +2025-11-24T09:36:38.8650650Z skipping: [kubenode-renewed-asp] => (item={'option': 'driver', 'value': '"overlay"'}) +2025-11-24T09:36:38.8651652Z skipping: [kubenode-super-marlin] => (item={'option': 'runroot', 'value': '"/var/run/containers/storage"'}) +2025-11-24T09:36:38.8652930Z skipping: [kubenode-renewed-asp] => (item={'option': 'graphroot', 'value': '"/var/lib/containers/storage"'}) +2025-11-24T09:36:38.8653934Z skipping: [kubenode-renewed-asp] => (item={'option': 'runroot', 'value': '"/var/run/containers/storage"'}) +2025-11-24T09:36:38.8654684Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.8655187Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.8655859Z skipping: [kubenode-teaching-gobbler] => (item={'option': 'driver', 'value': '"overlay"'}) +2025-11-24T09:36:38.8656811Z skipping: [kubenode-teaching-gobbler] => (item={'option': 'graphroot', 'value': '"/var/lib/containers/storage"'}) +2025-11-24T09:36:38.8657800Z skipping: [kubenode-teaching-gobbler] => (item={'option': 'runroot', 'value': '"/var/run/containers/storage"'}) +2025-11-24T09:36:38.8658549Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.8658864Z +2025-11-24T09:36:38.8659245Z TASK [container-engine/cri-o : Cri-o | set metacopy mount options correctly] *** +2025-11-24T09:36:38.9450052Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:38.9450738Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:38.9451240Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:38.9451581Z +2025-11-24T09:36:38.9451933Z TASK [container-engine/cri-o : Cri-o | create directory registries configs] **** +2025-11-24T09:36:39.0135523Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:39.0136129Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:39.0136650Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.0136964Z +2025-11-24T09:36:39.0137317Z TASK [container-engine/cri-o : Cri-o | write registries configs] *************** +2025-11-24T09:36:39.0534811Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:39.0855760Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:39.0856415Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.0856798Z +2025-11-24T09:36:39.0857228Z TASK [container-engine/cri-o : Cri-o | configure unqualified registry settings] *** +2025-11-24T09:36:39.1564796Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:39.1565515Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:39.1566113Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.1566517Z +2025-11-24T09:36:39.1566932Z TASK [container-engine/cri-o : Cri-o | write cri-o proxy drop-in] ************** +2025-11-24T09:36:39.2289042Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:39.2289882Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:39.2290392Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.2290704Z +2025-11-24T09:36:39.2291103Z TASK [container-engine/cri-o : Cri-o | configure the uid/gid space for user namespaces] *** +2025-11-24T09:36:39.2699835Z skipping: [kubenode-super-marlin] => (item=/etc/subuid) +2025-11-24T09:36:39.2700574Z skipping: [kubenode-super-marlin] => (item=/etc/subgid) +2025-11-24T09:36:39.3035877Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:39.3036715Z skipping: [kubenode-renewed-asp] => (item=/etc/subuid) +2025-11-24T09:36:39.3037334Z skipping: [kubenode-renewed-asp] => (item=/etc/subgid) +2025-11-24T09:36:39.3037911Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:39.3038455Z skipping: [kubenode-teaching-gobbler] => (item=/etc/subuid) +2025-11-24T09:36:39.3039410Z skipping: [kubenode-teaching-gobbler] => (item=/etc/subgid) +2025-11-24T09:36:39.3039997Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.3040304Z +2025-11-24T09:36:39.3040668Z TASK [container-engine/cri-o : Cri-o | ensure crio service is started and enabled] *** +2025-11-24T09:36:39.3682226Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:39.3683450Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:39.3684079Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.3684450Z +2025-11-24T09:36:39.3684898Z TASK [container-engine/cri-o : Cri-o | trigger service restart only when needed] *** +2025-11-24T09:36:39.4054737Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:39.4335069Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:39.4335724Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.4336053Z +2025-11-24T09:36:39.4336390Z TASK [container-engine/cri-o : Cri-o | verify that crio is running] ************ +2025-11-24T09:36:39.5246932Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:39.5247604Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:39.5248112Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.5248424Z +2025-11-24T09:36:39.5248853Z TASK [container-engine/containerd-common : Containerd-common | check if fedora coreos] *** +2025-11-24T09:36:39.9699521Z ok: [kubenode-super-marlin] +2025-11-24T09:36:39.9700218Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:39.9700698Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:39.9701022Z +2025-11-24T09:36:39.9701391Z TASK [container-engine/containerd-common : Containerd-common | set is_ostree] *** +2025-11-24T09:36:40.2046162Z Still deploying... +2025-11-24T09:36:40.2187826Z ok: [kubenode-super-marlin] +2025-11-24T09:36:40.2188700Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:40.2189266Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:40.2189944Z +2025-11-24T09:36:40.2190469Z TASK [container-engine/containerd-common : Containerd-common | gather os specific variables] *** +2025-11-24T09:36:40.3990391Z ok: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) +2025-11-24T09:36:40.6912613Z ok: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) +2025-11-24T09:36:40.6914549Z ok: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) +2025-11-24T09:36:40.6915348Z +2025-11-24T09:36:40.6915707Z TASK [container-engine/runc : Runc | check if fedora coreos] ******************* +2025-11-24T09:36:40.6916388Z ok: [kubenode-super-marlin] +2025-11-24T09:36:40.6916874Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:40.6917360Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:40.6917654Z +2025-11-24T09:36:40.6917998Z TASK [container-engine/runc : Runc | set is_ostree] **************************** +2025-11-24T09:36:40.8100888Z ok: [kubenode-super-marlin] +2025-11-24T09:36:40.8101877Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:40.8102469Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:40.8103101Z +2025-11-24T09:36:40.8103599Z TASK [container-engine/runc : Runc | Uninstall runc package managed by package manager] *** +2025-11-24T09:36:41.1744989Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:41.1745806Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:41.1746368Z ok: [kubenode-super-marlin] +2025-11-24T09:36:41.1746683Z +2025-11-24T09:36:41.1747537Z TASK [container-engine/runc : Runc | Download runc binary] ********************* +2025-11-24T09:36:41.2858025Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/runc/tasks/../../../download/tasks/download_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:36:41.2859142Z +2025-11-24T09:36:41.2859499Z TASK [container-engine/runc : Prep_download | Set a few facts] ***************** +2025-11-24T09:36:41.7831391Z ok: [kubenode-super-marlin] +2025-11-24T09:36:41.7832235Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:41.7833490Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:41.7833847Z +2025-11-24T09:36:41.7834208Z TASK [container-engine/runc : Download_file | Show url of file to dowload] ***** +2025-11-24T09:36:42.6851534Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:36:42.6852493Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" +2025-11-24T09:36:42.6853714Z } +2025-11-24T09:36:42.6854201Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:36:42.6854874Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" +2025-11-24T09:36:42.6855489Z } +2025-11-24T09:36:42.6855962Z ok: [kubenode-super-marlin] => { +2025-11-24T09:36:42.6856577Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" +2025-11-24T09:36:42.6857175Z } +2025-11-24T09:36:42.6857409Z +2025-11-24T09:36:42.6857821Z TASK [container-engine/runc : Download_file | Set pathname of cached file] ***** +2025-11-24T09:36:43.4913789Z ok: [kubenode-super-marlin] +2025-11-24T09:36:43.4914636Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:43.4915284Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:43.4915611Z +2025-11-24T09:36:43.4916016Z TASK [container-engine/runc : Download_file | Create dest directory on node] *** +2025-11-24T09:36:44.8858256Z changed: [kubenode-super-marlin] +2025-11-24T09:36:44.8859165Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:44.8859808Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:44.8860181Z +2025-11-24T09:36:44.8860621Z TASK [container-engine/runc : Download_file | Create local cache directory] **** +2025-11-24T09:36:44.9528311Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:44.9528924Z +2025-11-24T09:36:44.9529449Z TASK [container-engine/runc : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:36:45.0246319Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:45.0247282Z +2025-11-24T09:36:45.0247713Z TASK [container-engine/runc : Download_file | Download item] ******************* +2025-11-24T09:36:49.2367462Z changed: [kubenode-super-marlin] +2025-11-24T09:36:49.2368143Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:49.2368669Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:49.2368963Z +2025-11-24T09:36:49.2369355Z TASK [container-engine/runc : Download_file | Copy file back to ansible host file cache] *** +2025-11-24T09:36:49.3358538Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:49.3359194Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:49.3359679Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:49.3360064Z +2025-11-24T09:36:49.3360506Z TASK [container-engine/runc : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:36:49.4113827Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:49.4114609Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:49.4115210Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:49.4115609Z +2025-11-24T09:36:49.4116016Z TASK [container-engine/runc : Download_file | Set mode and owner] ************** +2025-11-24T09:36:49.4835590Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:49.4836469Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:49.4837082Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:49.4837454Z +2025-11-24T09:36:49.4837875Z TASK [container-engine/runc : Download_file | Extract file archives] *********** +2025-11-24T09:36:49.6171526Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:36:49.6173374Z +2025-11-24T09:36:49.6173843Z TASK [container-engine/runc : Extract_file | Unpacking archive] **************** +2025-11-24T09:36:50.1053500Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:50.1054333Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:50.1054932Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:50.1055307Z +2025-11-24T09:36:50.1055741Z TASK [container-engine/runc : Copy runc binary from download dir] ************** +2025-11-24T09:36:50.2072461Z Still deploying... +2025-11-24T09:36:50.8521011Z changed: [kubenode-super-marlin] +2025-11-24T09:36:50.8522182Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:50.8523044Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:50.8523426Z +2025-11-24T09:36:50.8523839Z TASK [container-engine/runc : Runc | Remove orphaned binary] ******************* +2025-11-24T09:36:51.2318234Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:51.2319005Z ok: [kubenode-super-marlin] +2025-11-24T09:36:51.2319484Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:51.2319778Z +2025-11-24T09:36:51.2320118Z TASK [container-engine/crictl : Install crictl] ******************************** +2025-11-24T09:36:51.3554602Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/crictl.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:36:51.3555652Z +2025-11-24T09:36:51.3556001Z TASK [container-engine/crictl : Crictl | Download crictl] ********************** +2025-11-24T09:36:51.6103862Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/../../../download/tasks/download_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:36:51.6105208Z +2025-11-24T09:36:51.6105644Z TASK [container-engine/crictl : Prep_download | Set a few facts] *************** +2025-11-24T09:36:52.0914570Z ok: [kubenode-super-marlin] +2025-11-24T09:36:52.0915398Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:52.0915993Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:52.0916317Z +2025-11-24T09:36:52.0916738Z TASK [container-engine/crictl : Download_file | Show url of file to dowload] *** +2025-11-24T09:36:52.9315247Z ok: [kubenode-super-marlin] => { +2025-11-24T09:36:52.9316396Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" +2025-11-24T09:36:52.9317121Z } +2025-11-24T09:36:52.9317987Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:36:52.9318683Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" +2025-11-24T09:36:52.9319359Z } +2025-11-24T09:36:52.9319843Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:36:52.9320544Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" +2025-11-24T09:36:52.9321195Z } +2025-11-24T09:36:52.9321435Z +2025-11-24T09:36:52.9321846Z TASK [container-engine/crictl : Download_file | Set pathname of cached file] *** +2025-11-24T09:36:53.7882157Z ok: [kubenode-super-marlin] +2025-11-24T09:36:53.7883239Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:53.7883820Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:53.7884145Z +2025-11-24T09:36:53.7884573Z TASK [container-engine/crictl : Download_file | Create dest directory on node] *** +2025-11-24T09:36:55.1678242Z ok: [kubenode-super-marlin] +2025-11-24T09:36:55.1678883Z ok: [kubenode-renewed-asp] +2025-11-24T09:36:55.1679437Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:36:55.1679787Z +2025-11-24T09:36:55.1680219Z TASK [container-engine/crictl : Download_file | Create local cache directory] *** +2025-11-24T09:36:55.2161346Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:55.2161805Z +2025-11-24T09:36:55.2162331Z TASK [container-engine/crictl : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:36:55.2910283Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:55.2910722Z +2025-11-24T09:36:55.2911137Z TASK [container-engine/crictl : Download_file | Download item] ***************** +2025-11-24T09:36:59.2650971Z changed: [kubenode-super-marlin] +2025-11-24T09:36:59.2651985Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:36:59.2652524Z changed: [kubenode-renewed-asp] +2025-11-24T09:36:59.2653064Z +2025-11-24T09:36:59.2653477Z TASK [container-engine/crictl : Download_file | Copy file back to ansible host file cache] *** +2025-11-24T09:36:59.3704251Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:59.3704854Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:59.3705379Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:59.3705735Z +2025-11-24T09:36:59.3706179Z TASK [container-engine/crictl : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:36:59.4514254Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:59.4514970Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:59.4515628Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:59.4516080Z +2025-11-24T09:36:59.4516449Z TASK [container-engine/crictl : Download_file | Set mode and owner] ************ +2025-11-24T09:36:59.5315609Z skipping: [kubenode-super-marlin] +2025-11-24T09:36:59.5316319Z skipping: [kubenode-renewed-asp] +2025-11-24T09:36:59.5316977Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:36:59.5317333Z +2025-11-24T09:36:59.5317677Z TASK [container-engine/crictl : Download_file | Extract file archives] ********* +2025-11-24T09:36:59.6477481Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:36:59.6478419Z +2025-11-24T09:36:59.6478779Z TASK [container-engine/crictl : Extract_file | Unpacking archive] ************** +2025-11-24T09:37:00.2074057Z Still deploying... +2025-11-24T09:37:04.7331464Z changed: [kubenode-super-marlin] +2025-11-24T09:37:04.7332118Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:04.7333020Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:04.7333328Z +2025-11-24T09:37:04.7333702Z TASK [container-engine/crictl : Install crictl config] ************************* +2025-11-24T09:37:05.3071494Z changed: [kubenode-super-marlin] +2025-11-24T09:37:05.3072121Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:05.3072908Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:05.3073195Z +2025-11-24T09:37:05.3073536Z TASK [container-engine/crictl : Copy crictl binary from download dir] ********** +2025-11-24T09:37:05.9418786Z changed: [kubenode-super-marlin] +2025-11-24T09:37:05.9419790Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:05.9420289Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:05.9420565Z +2025-11-24T09:37:05.9420903Z TASK [container-engine/nerdctl : Nerdctl | Download nerdctl] ******************* +2025-11-24T09:37:06.0765705Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/nerdctl/tasks/../../../download/tasks/download_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:37:06.0766872Z +2025-11-24T09:37:06.0767251Z TASK [container-engine/nerdctl : Prep_download | Set a few facts] ************** +2025-11-24T09:37:06.5723861Z ok: [kubenode-super-marlin] +2025-11-24T09:37:06.5724460Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:06.5724941Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:06.5725356Z +2025-11-24T09:37:06.5725929Z TASK [container-engine/nerdctl : Download_file | Show url of file to dowload] *** +2025-11-24T09:37:07.5970205Z ok: [kubenode-super-marlin] => { +2025-11-24T09:37:07.5970923Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" +2025-11-24T09:37:07.5971538Z } +2025-11-24T09:37:07.5971946Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:37:07.5972557Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" +2025-11-24T09:37:07.5973406Z } +2025-11-24T09:37:07.5973816Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:37:07.5974379Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" +2025-11-24T09:37:07.5974947Z } +2025-11-24T09:37:07.5975143Z +2025-11-24T09:37:07.5975505Z TASK [container-engine/nerdctl : Download_file | Set pathname of cached file] *** +2025-11-24T09:37:08.6000078Z ok: [kubenode-super-marlin] +2025-11-24T09:37:08.6000680Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:08.6001150Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:08.6001413Z +2025-11-24T09:37:08.6001767Z TASK [container-engine/nerdctl : Download_file | Create dest directory on node] *** +2025-11-24T09:37:10.1243210Z ok: [kubenode-super-marlin] +2025-11-24T09:37:10.1243926Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:10.1244528Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:10.1244855Z +2025-11-24T09:37:10.1245290Z TASK [container-engine/nerdctl : Download_file | Create local cache directory] *** +2025-11-24T09:37:10.1637315Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:10.1637711Z +2025-11-24T09:37:10.1638204Z TASK [container-engine/nerdctl : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:37:10.2082451Z Still deploying... +2025-11-24T09:37:10.2083483Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:10.2083830Z +2025-11-24T09:37:10.2084221Z TASK [container-engine/nerdctl : Download_file | Download item] **************** +2025-11-24T09:37:14.2080769Z changed: [kubenode-super-marlin] +2025-11-24T09:37:14.2081375Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:14.2081881Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:14.2082184Z +2025-11-24T09:37:14.2082606Z TASK [container-engine/nerdctl : Download_file | Copy file back to ansible host file cache] *** +2025-11-24T09:37:14.2782236Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:14.2783291Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:14.2790370Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:14.2790827Z +2025-11-24T09:37:14.2791317Z TASK [container-engine/nerdctl : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:37:14.3199658Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:14.3502071Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:14.3502967Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:14.3503334Z +2025-11-24T09:37:14.3503750Z TASK [container-engine/nerdctl : Download_file | Set mode and owner] *********** +2025-11-24T09:37:14.4167635Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:14.4168268Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:14.4168821Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:14.4169163Z +2025-11-24T09:37:14.4169546Z TASK [container-engine/nerdctl : Download_file | Extract file archives] ******** +2025-11-24T09:37:14.5360814Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:37:14.5361812Z +2025-11-24T09:37:14.5362172Z TASK [container-engine/nerdctl : Extract_file | Unpacking archive] ************* +2025-11-24T09:37:17.9238751Z changed: [kubenode-super-marlin] +2025-11-24T09:37:17.9239362Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:17.9239932Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:17.9240218Z +2025-11-24T09:37:17.9240628Z TASK [container-engine/nerdctl : Nerdctl | Copy nerdctl binary from download dir] *** +2025-11-24T09:37:18.3432615Z changed: [kubenode-super-marlin] +2025-11-24T09:37:18.3433463Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:18.3433993Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:18.3434337Z +2025-11-24T09:37:18.3434712Z TASK [container-engine/nerdctl : Nerdctl | Create configuration dir] *********** +2025-11-24T09:37:18.6520152Z changed: [kubenode-super-marlin] +2025-11-24T09:37:18.6520812Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:18.6521380Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:18.6521706Z +2025-11-24T09:37:18.6522093Z TASK [container-engine/nerdctl : Nerdctl | Install nerdctl configuration] ****** +2025-11-24T09:37:19.2931176Z changed: [kubenode-super-marlin] +2025-11-24T09:37:19.2931812Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:19.2932337Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:19.2932608Z +2025-11-24T09:37:19.2933923Z TASK [container-engine/containerd : Fail containerd setup if distribution is not supported] *** +2025-11-24T09:37:19.4335920Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:19.4336540Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:19.4337056Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:19.4337372Z +2025-11-24T09:37:19.4337856Z TASK [container-engine/containerd : Containerd | Remove any package manager controlled containerd package] *** +2025-11-24T09:37:19.8606841Z ok: [kubenode-super-marlin] +2025-11-24T09:37:19.8607420Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:19.8607932Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:19.8608561Z +2025-11-24T09:37:19.8608958Z TASK [container-engine/containerd : Containerd | Remove containerd repository] *** +2025-11-24T09:37:19.9544175Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:19.9544865Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:19.9545472Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:19.9545851Z +2025-11-24T09:37:19.9546316Z TASK [container-engine/containerd : Containerd | Remove containerd repository] *** +2025-11-24T09:37:20.2097303Z Still deploying... +2025-11-24T09:37:20.7081799Z ok: [kubenode-super-marlin] => (item=deb https://download.docker.com/linux/ubuntu jammy stable +2025-11-24T09:37:20.7082908Z ) +2025-11-24T09:37:20.7083653Z ok: [kubenode-teaching-gobbler] => (item=deb https://download.docker.com/linux/ubuntu jammy stable +2025-11-24T09:37:20.7084433Z ) +2025-11-24T09:37:20.7085082Z ok: [kubenode-renewed-asp] => (item=deb https://download.docker.com/linux/ubuntu jammy stable +2025-11-24T09:37:20.7085786Z ) +2025-11-24T09:37:20.7086007Z +2025-11-24T09:37:20.7086379Z TASK [container-engine/containerd : Containerd | Download containerd] ********** +2025-11-24T09:37:20.8274486Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/tasks/../../../download/tasks/download_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:37:20.8275738Z +2025-11-24T09:37:20.8276208Z TASK [container-engine/containerd : Prep_download | Set a few facts] *********** +2025-11-24T09:37:21.3841210Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:21.3841778Z ok: [kubenode-super-marlin] +2025-11-24T09:37:21.3842254Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:21.3842563Z +2025-11-24T09:37:21.3843300Z TASK [container-engine/containerd : Download_file | Show url of file to dowload] *** +2025-11-24T09:37:22.1906877Z ok: [kubenode-super-marlin] => { +2025-11-24T09:37:22.1907638Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" +2025-11-24T09:37:22.1908328Z } +2025-11-24T09:37:22.1908760Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:37:22.1909384Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" +2025-11-24T09:37:22.1910010Z } +2025-11-24T09:37:22.1910453Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:37:22.1911094Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" +2025-11-24T09:37:22.1911724Z } +2025-11-24T09:37:22.1911936Z +2025-11-24T09:37:22.1912355Z TASK [container-engine/containerd : Download_file | Set pathname of cached file] *** +2025-11-24T09:37:22.9957605Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:22.9958181Z ok: [kubenode-super-marlin] +2025-11-24T09:37:22.9958665Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:22.9958938Z +2025-11-24T09:37:22.9959325Z TASK [container-engine/containerd : Download_file | Create dest directory on node] *** +2025-11-24T09:37:24.4987765Z ok: [kubenode-super-marlin] +2025-11-24T09:37:24.4988318Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:24.4988794Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:24.4989074Z +2025-11-24T09:37:24.4989453Z TASK [container-engine/containerd : Download_file | Create local cache directory] *** +2025-11-24T09:37:24.5367092Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:24.5367596Z +2025-11-24T09:37:24.5368172Z TASK [container-engine/containerd : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:37:24.6050865Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:24.6051301Z +2025-11-24T09:37:24.6051654Z TASK [container-engine/containerd : Download_file | Download item] ************* +2025-11-24T09:37:28.7680418Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:28.7681144Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:28.7681731Z changed: [kubenode-super-marlin] +2025-11-24T09:37:28.7682088Z +2025-11-24T09:37:28.7682589Z TASK [container-engine/containerd : Download_file | Copy file back to ansible host file cache] *** +2025-11-24T09:37:28.8201327Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:28.8681322Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:28.8682083Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:28.8682484Z +2025-11-24T09:37:28.8683332Z TASK [container-engine/containerd : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:37:28.9463225Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:28.9463945Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:28.9464588Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:28.9465014Z +2025-11-24T09:37:28.9465433Z TASK [container-engine/containerd : Download_file | Set mode and owner] ******** +2025-11-24T09:37:29.0227080Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:29.0227672Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:29.0228159Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:29.0228491Z +2025-11-24T09:37:29.0228838Z TASK [container-engine/containerd : Download_file | Extract file archives] ***** +2025-11-24T09:37:29.1315017Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:37:29.1315994Z +2025-11-24T09:37:29.1316359Z TASK [container-engine/containerd : Extract_file | Unpacking archive] ********** +2025-11-24T09:37:29.6114265Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:29.6114837Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:29.6115322Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:29.6115644Z +2025-11-24T09:37:29.6115988Z TASK [container-engine/containerd : Containerd | Unpack containerd archive] **** +2025-11-24T09:37:30.2105898Z Still deploying... +2025-11-24T09:37:33.5007400Z changed: [kubenode-super-marlin] +2025-11-24T09:37:33.5008244Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:33.5008871Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:33.5009609Z +2025-11-24T09:37:33.5010027Z TASK [container-engine/containerd : Containerd | Remove orphaned binary] ******* +2025-11-24T09:37:34.7070909Z ok: [kubenode-super-marlin] => (item=containerd) +2025-11-24T09:37:34.7071665Z ok: [kubenode-renewed-asp] => (item=containerd) +2025-11-24T09:37:34.7072248Z ok: [kubenode-teaching-gobbler] => (item=containerd) +2025-11-24T09:37:34.7073079Z ok: [kubenode-super-marlin] => (item=containerd-shim) +2025-11-24T09:37:34.7073688Z ok: [kubenode-teaching-gobbler] => (item=containerd-shim) +2025-11-24T09:37:34.7074302Z ok: [kubenode-renewed-asp] => (item=containerd-shim) +2025-11-24T09:37:34.7074937Z ok: [kubenode-super-marlin] => (item=containerd-shim-runc-v1) +2025-11-24T09:37:34.7075610Z ok: [kubenode-teaching-gobbler] => (item=containerd-shim-runc-v1) +2025-11-24T09:37:34.7076270Z ok: [kubenode-renewed-asp] => (item=containerd-shim-runc-v1) +2025-11-24T09:37:34.7076913Z ok: [kubenode-super-marlin] => (item=containerd-shim-runc-v2) +2025-11-24T09:37:34.7077557Z ok: [kubenode-renewed-asp] => (item=containerd-shim-runc-v2) +2025-11-24T09:37:34.7078211Z ok: [kubenode-teaching-gobbler] => (item=containerd-shim-runc-v2) +2025-11-24T09:37:34.7078817Z ok: [kubenode-super-marlin] => (item=ctr) +2025-11-24T09:37:34.7079357Z ok: [kubenode-teaching-gobbler] => (item=ctr) +2025-11-24T09:37:34.7079880Z ok: [kubenode-renewed-asp] => (item=ctr) +2025-11-24T09:37:34.7080185Z +2025-11-24T09:37:34.7080589Z TASK [container-engine/containerd : Containerd | Generate systemd service for containerd] *** +2025-11-24T09:37:35.2961181Z changed: [kubenode-super-marlin] +2025-11-24T09:37:35.2962551Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:35.2963447Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:35.2963783Z +2025-11-24T09:37:35.2964276Z TASK [container-engine/containerd : Containerd | Ensure containerd directories exist] *** +2025-11-24T09:37:36.2433870Z changed: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:37:36.2435198Z changed: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:37:36.2436196Z changed: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service.d) +2025-11-24T09:37:36.2437349Z changed: [kubenode-super-marlin] => (item=/etc/containerd) +2025-11-24T09:37:36.2437965Z changed: [kubenode-teaching-gobbler] => (item=/etc/containerd) +2025-11-24T09:37:36.2438578Z changed: [kubenode-renewed-asp] => (item=/etc/containerd) +2025-11-24T09:37:36.2439187Z changed: [kubenode-super-marlin] => (item=/var/lib/containerd) +2025-11-24T09:37:36.2439834Z changed: [kubenode-teaching-gobbler] => (item=/var/lib/containerd) +2025-11-24T09:37:36.2440468Z changed: [kubenode-renewed-asp] => (item=/var/lib/containerd) +2025-11-24T09:37:36.2441072Z changed: [kubenode-super-marlin] => (item=/run/containerd) +2025-11-24T09:37:36.2441671Z changed: [kubenode-teaching-gobbler] => (item=/run/containerd) +2025-11-24T09:37:36.2442267Z changed: [kubenode-renewed-asp] => (item=/run/containerd) +2025-11-24T09:37:36.2442789Z +2025-11-24T09:37:36.2443190Z TASK [container-engine/containerd : Containerd | Write containerd proxy drop-in] *** +2025-11-24T09:37:36.3524913Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:36.3525647Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:36.3526151Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:36.3526465Z +2025-11-24T09:37:36.3526855Z TASK [container-engine/containerd : Containerd | Generate default base_runtime_spec] *** +2025-11-24T09:37:36.6674596Z ok: [kubenode-super-marlin] +2025-11-24T09:37:36.6675437Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:36.6676022Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:36.6676386Z +2025-11-24T09:37:36.6676894Z TASK [container-engine/containerd : Containerd | Store generated default base_runtime_spec] *** +2025-11-24T09:37:36.7885837Z ok: [kubenode-super-marlin] +2025-11-24T09:37:36.7886670Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:36.7887245Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:36.7887522Z +2025-11-24T09:37:36.7888208Z TASK [container-engine/containerd : Containerd | Write base_runtime_specs] ***** +2025-11-24T09:37:37.3285650Z changed: [kubenode-teaching-gobbler] => (item={'key': 'cri-base.json', 'value': {'ociVersion': '1.1.0', 'process': {'user': {'uid': 0, 'gid': 0}, 'cwd': '/', 'capabilities': {'bounding': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'effective': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'permitted': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE']}, 'rlimits': [{'type': 'RLIMIT_NOFILE', 'hard': 65535, 'soft': 65535}], 'noNewPrivileges': True}, 'root': {'path': 'rootfs'}, 'mounts': [{'destination': '/proc', 'type': 'proc', 'source': 'proc', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/dev', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}, {'destination': '/dev/pts', 'type': 'devpts', 'source': 'devpts', 'options': ['nosuid', 'noexec', 'newinstance', 'ptmxmode=0666', 'mode=0620', 'gid=5']}, {'destination': '/dev/shm', 'type': 'tmpfs', 'source': 'shm', 'options': ['nosuid', 'noexec', 'nodev', 'mode=1777', 'size=65536k']}, {'destination': '/dev/mqueue', 'type': 'mqueue', 'source': 'mqueue', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/sys', 'type': 'sysfs', 'source': 'sysfs', 'options': ['nosuid', 'noexec', 'nodev', 'ro']}, {'destination': '/run', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}], 'linux': {'resources': {'devices': [{'allow': False, 'access': 'rwm'}]}, 'cgroupsPath': '/default', 'namespaces': [{'type': 'pid'}, {'type': 'ipc'}, {'type': 'uts'}, {'type': 'mount'}, {'type': 'network'}], 'maskedPaths': ['/proc/acpi', '/proc/asound', '/proc/kcore', '/proc/keys', '/proc/latency_stats', '/proc/timer_list', '/proc/timer_stats', '/proc/sched_debug', '/sys/firmware', '/sys/devices/virtual/powercap', '/proc/scsi'], 'readonlyPaths': ['/proc/bus', '/proc/fs', '/proc/irq', '/proc/sys', '/proc/sysrq-trigger']}}}) +2025-11-24T09:37:37.3298693Z changed: [kubenode-super-marlin] => (item={'key': 'cri-base.json', 'value': {'ociVersion': '1.1.0', 'process': {'user': {'uid': 0, 'gid': 0}, 'cwd': '/', 'capabilities': {'bounding': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'effective': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'permitted': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE']}, 'rlimits': [{'type': 'RLIMIT_NOFILE', 'hard': 65535, 'soft': 65535}], 'noNewPrivileges': True}, 'root': {'path': 'rootfs'}, 'mounts': [{'destination': '/proc', 'type': 'proc', 'source': 'proc', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/dev', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}, {'destination': '/dev/pts', 'type': 'devpts', 'source': 'devpts', 'options': ['nosuid', 'noexec', 'newinstance', 'ptmxmode=0666', 'mode=0620', 'gid=5']}, {'destination': '/dev/shm', 'type': 'tmpfs', 'source': 'shm', 'options': ['nosuid', 'noexec', 'nodev', 'mode=1777', 'size=65536k']}, {'destination': '/dev/mqueue', 'type': 'mqueue', 'source': 'mqueue', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/sys', 'type': 'sysfs', 'source': 'sysfs', 'options': ['nosuid', 'noexec', 'nodev', 'ro']}, {'destination': '/run', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}], 'linux': {'resources': {'devices': [{'allow': False, 'access': 'rwm'}]}, 'cgroupsPath': '/default', 'namespaces': [{'type': 'pid'}, {'type': 'ipc'}, {'type': 'uts'}, {'type': 'mount'}, {'type': 'network'}], 'maskedPaths': ['/proc/acpi', '/proc/asound', '/proc/kcore', '/proc/keys', '/proc/latency_stats', '/proc/timer_list', '/proc/timer_stats', '/proc/sched_debug', '/sys/firmware', '/sys/devices/virtual/powercap', '/proc/scsi'], 'readonlyPaths': ['/proc/bus', '/proc/fs', '/proc/irq', '/proc/sys', '/proc/sysrq-trigger']}}}) +2025-11-24T09:37:37.3311425Z changed: [kubenode-renewed-asp] => (item={'key': 'cri-base.json', 'value': {'ociVersion': '1.1.0', 'process': {'user': {'uid': 0, 'gid': 0}, 'cwd': '/', 'capabilities': {'bounding': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'effective': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'permitted': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE']}, 'rlimits': [{'type': 'RLIMIT_NOFILE', 'hard': 65535, 'soft': 65535}], 'noNewPrivileges': True}, 'root': {'path': 'rootfs'}, 'mounts': [{'destination': '/proc', 'type': 'proc', 'source': 'proc', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/dev', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}, {'destination': '/dev/pts', 'type': 'devpts', 'source': 'devpts', 'options': ['nosuid', 'noexec', 'newinstance', 'ptmxmode=0666', 'mode=0620', 'gid=5']}, {'destination': '/dev/shm', 'type': 'tmpfs', 'source': 'shm', 'options': ['nosuid', 'noexec', 'nodev', 'mode=1777', 'size=65536k']}, {'destination': '/dev/mqueue', 'type': 'mqueue', 'source': 'mqueue', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/sys', 'type': 'sysfs', 'source': 'sysfs', 'options': ['nosuid', 'noexec', 'nodev', 'ro']}, {'destination': '/run', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}], 'linux': {'resources': {'devices': [{'allow': False, 'access': 'rwm'}]}, 'cgroupsPath': '/default', 'namespaces': [{'type': 'pid'}, {'type': 'ipc'}, {'type': 'uts'}, {'type': 'mount'}, {'type': 'network'}], 'maskedPaths': ['/proc/acpi', '/proc/asound', '/proc/kcore', '/proc/keys', '/proc/latency_stats', '/proc/timer_list', '/proc/timer_stats', '/proc/sched_debug', '/sys/firmware', '/sys/devices/virtual/powercap', '/proc/scsi'], 'readonlyPaths': ['/proc/bus', '/proc/fs', '/proc/irq', '/proc/sys', '/proc/sysrq-trigger']}}}) +2025-11-24T09:37:37.3317920Z +2025-11-24T09:37:37.3318276Z TASK [container-engine/containerd : Containerd | Copy containerd config file] *** +2025-11-24T09:37:37.9130387Z changed: [kubenode-super-marlin] +2025-11-24T09:37:37.9131127Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:37.9131620Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:37.9131928Z +2025-11-24T09:37:37.9132317Z TASK [container-engine/containerd : Containerd | Create registry directories] *** +2025-11-24T09:37:38.2475944Z changed: [kubenode-super-marlin] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) +2025-11-24T09:37:38.2477645Z changed: [kubenode-teaching-gobbler] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) +2025-11-24T09:37:38.2479607Z changed: [kubenode-renewed-asp] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) +2025-11-24T09:37:38.2480465Z +2025-11-24T09:37:38.2480877Z TASK [container-engine/containerd : Containerd | Write hosts.toml file] ******** +2025-11-24T09:37:38.9610185Z changed: [kubenode-super-marlin] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) +2025-11-24T09:37:38.9611913Z changed: [kubenode-teaching-gobbler] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) +2025-11-24T09:37:38.9613756Z changed: [kubenode-renewed-asp] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) +2025-11-24T09:37:38.9614603Z +2025-11-24T09:37:38.9615014Z TASK [container-engine/containerd : Containerd | Flush handlers] *************** +2025-11-24T09:37:38.9615550Z +2025-11-24T09:37:38.9615938Z TASK [container-engine/containerd : Containerd | Flush handlers] *************** +2025-11-24T09:37:38.9616448Z +2025-11-24T09:37:38.9616835Z TASK [container-engine/containerd : Containerd | Flush handlers] *************** +2025-11-24T09:37:38.9617339Z +2025-11-24T09:37:38.9617765Z RUNNING HANDLER [container-engine/containerd : Containerd | restart containerd] *** +2025-11-24T09:37:40.2121638Z Still deploying... +2025-11-24T09:37:40.2371227Z changed: [kubenode-super-marlin] +2025-11-24T09:37:40.2371947Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:40.2372583Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:40.2373181Z +2025-11-24T09:37:40.2373666Z RUNNING HANDLER [container-engine/containerd : Containerd | wait for containerd] *** +2025-11-24T09:37:40.7623866Z changed: [kubenode-renewed-asp] +2025-11-24T09:37:40.7624532Z changed: [kubenode-super-marlin] +2025-11-24T09:37:40.7625139Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:37:40.7625506Z +2025-11-24T09:37:40.7626270Z RUNNING HANDLER [container-engine/nerdctl : Get nerdctl completion] ************ +2025-11-24T09:37:40.9451534Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:40.9724315Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:40.9725002Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:40.9725319Z +2025-11-24T09:37:40.9725669Z RUNNING HANDLER [container-engine/nerdctl : Install nerdctl completion] ******** +2025-11-24T09:37:41.0130741Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:41.0409373Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:41.0410264Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:41.0410666Z +2025-11-24T09:37:41.0411071Z RUNNING HANDLER [container-engine/crictl : Get crictl completion] ************** +2025-11-24T09:37:41.0767115Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:41.1095731Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:41.1096613Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:41.1097006Z +2025-11-24T09:37:41.1097428Z RUNNING HANDLER [container-engine/crictl : Install crictl completion] ********** +2025-11-24T09:37:41.1793068Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:41.1793979Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:41.1794673Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:41.1795050Z +2025-11-24T09:37:41.1795547Z TASK [container-engine/containerd : Containerd | Ensure containerd is started and enabled] *** +2025-11-24T09:37:42.0204231Z ok: [kubenode-super-marlin] +2025-11-24T09:37:42.0204887Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.0205369Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:42.0205709Z +2025-11-24T09:37:42.0206232Z TASK [container-engine/containerd-common : Containerd-common | check if fedora coreos] *** +2025-11-24T09:37:42.0541345Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.0939187Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.0939918Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.0940279Z +2025-11-24T09:37:42.0940677Z TASK [container-engine/containerd-common : Containerd-common | set is_ostree] *** +2025-11-24T09:37:42.1610092Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.1610828Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.1611319Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.1611618Z +2025-11-24T09:37:42.1612039Z TASK [container-engine/containerd-common : Containerd-common | gather os specific variables] *** +2025-11-24T09:37:42.3040618Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:37:42.3041828Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.3043189Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:37:42.3044301Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.3045419Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:37:42.3046555Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.3046927Z +2025-11-24T09:37:42.3047399Z TASK [container-engine/docker-storage : Docker-storage-setup | install git and make] *** +2025-11-24T09:37:42.3475447Z skipping: [kubenode-super-marlin] => (item=git) +2025-11-24T09:37:42.3476409Z skipping: [kubenode-super-marlin] => (item=make) +2025-11-24T09:37:42.3874008Z skipping: [kubenode-renewed-asp] => (item=git) +2025-11-24T09:37:42.3874767Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.3875458Z skipping: [kubenode-renewed-asp] => (item=make) +2025-11-24T09:37:42.3876107Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.3876740Z skipping: [kubenode-teaching-gobbler] => (item=git) +2025-11-24T09:37:42.3877466Z skipping: [kubenode-teaching-gobbler] => (item=make) +2025-11-24T09:37:42.3878145Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.3878518Z +2025-11-24T09:37:42.3879069Z TASK [container-engine/docker-storage : Docker-storage-setup | docker-storage-setup sysconfig template] *** +2025-11-24T09:37:42.4590864Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.4591732Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.4592326Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.4592915Z +2025-11-24T09:37:42.4593559Z TASK [container-engine/docker-storage : Docker-storage-override-directory | docker service storage-setup override dir] *** +2025-11-24T09:37:42.5257571Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.5258286Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.5258802Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.5259129Z +2025-11-24T09:37:42.5259640Z TASK [container-engine/docker-storage : Docker-storage-override | docker service storage-setup override file] *** +2025-11-24T09:37:42.5648165Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.5987292Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.5988012Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.5988354Z +2025-11-24T09:37:42.5988699Z TASK [container-engine/docker-storage : Docker-storage-setup | install lvm2] *** +2025-11-24T09:37:42.6730091Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.6730786Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.6731281Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.6731584Z +2025-11-24T09:37:42.6732067Z TASK [container-engine/docker-storage : Docker-storage-setup | install and run container-storage-setup] *** +2025-11-24T09:37:42.7672130Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.7673232Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.7673845Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.7674232Z +2025-11-24T09:37:42.7674639Z TASK [container-engine/docker : Check if fedora coreos] ************************ +2025-11-24T09:37:42.8325152Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.8325855Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.8326373Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.8326714Z +2025-11-24T09:37:42.8327045Z TASK [container-engine/docker : Set is_ostree] ********************************* +2025-11-24T09:37:42.9003547Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:42.9004220Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:42.9004790Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:42.9005087Z +2025-11-24T09:37:42.9005421Z TASK [container-engine/docker : Gather os specific variables] ****************** +2025-11-24T09:37:43.0411779Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:37:43.0413281Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.0414414Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:37:43.0415436Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.0416380Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) +2025-11-24T09:37:43.0417352Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.0417661Z +2025-11-24T09:37:43.0418003Z TASK [container-engine/docker : Warn about Docker version on SUSE] ************* +2025-11-24T09:37:43.1168639Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.1169347Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.1170273Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.1170602Z +2025-11-24T09:37:43.1170939Z TASK [container-engine/docker : Gather DNS facts] ****************************** +2025-11-24T09:37:43.1906582Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.1907530Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.1908149Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.1908552Z +2025-11-24T09:37:43.1908960Z TASK [container-engine/docker : Remove legacy docker repo file] **************** +2025-11-24T09:37:43.2290936Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.2631661Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.2632584Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.2633191Z +2025-11-24T09:37:43.2633686Z TASK [container-engine/docker : Ensure old versions of Docker are not installed. | Debian] *** +2025-11-24T09:37:43.3382315Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.3383431Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.3384089Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.3384486Z +2025-11-24T09:37:43.3384921Z TASK [container-engine/docker : Ensure podman not installed. | RedHat] ********* +2025-11-24T09:37:43.4967337Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.5347779Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.5348535Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.5348864Z +2025-11-24T09:37:43.5349284Z TASK [container-engine/docker : Ensure old versions of Docker are not installed. | RedHat] *** +2025-11-24T09:37:43.6099576Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.6100465Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.6101059Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.6101432Z +2025-11-24T09:37:43.6101910Z TASK [container-engine/docker : Ensure docker-ce repository public key is installed] *** +2025-11-24T09:37:43.6566249Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:37:43.6567209Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:37:43.6965090Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.6966010Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.6966654Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:37:43.6967237Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.6967537Z +2025-11-24T09:37:43.6967866Z TASK [container-engine/docker : Remove the archived debian apt repository] ***** +2025-11-24T09:37:43.7681862Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.7682999Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.7683595Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.7683992Z +2025-11-24T09:37:43.7684414Z TASK [container-engine/docker : Ensure docker-ce repository is enabled] ******** +2025-11-24T09:37:43.8098204Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:37:43.8625294Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.8626041Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:37:43.8626575Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.8627119Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:37:43.8627668Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.8627975Z +2025-11-24T09:37:43.8628318Z TASK [container-engine/docker : Configure docker repository on Fedora] ********* +2025-11-24T09:37:43.9136455Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:43.9397124Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:43.9398021Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:43.9398421Z +2025-11-24T09:37:43.9399035Z TASK [container-engine/docker : Configure docker repository on RedHat/CentOS/OracleLinux/AlmaLinux/KylinLinux] *** +2025-11-24T09:37:44.0090488Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.0091351Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.0091965Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.0092341Z +2025-11-24T09:37:44.0092945Z TASK [container-engine/docker : Remove dpkg hold] ****************************** +2025-11-24T09:37:44.0255698Z skipping: [kubenode-super-marlin] => (item=containerd.io) +2025-11-24T09:37:44.0470011Z skipping: [kubenode-super-marlin] => (item=docker-ce) +2025-11-24T09:37:44.0471122Z skipping: [kubenode-super-marlin] => (item=docker-ce-cli) +2025-11-24T09:37:44.0935445Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.0936385Z skipping: [kubenode-renewed-asp] => (item=containerd.io) +2025-11-24T09:37:44.0937177Z skipping: [kubenode-renewed-asp] => (item=docker-ce) +2025-11-24T09:37:44.0937931Z skipping: [kubenode-teaching-gobbler] => (item=containerd.io) +2025-11-24T09:37:44.0938692Z skipping: [kubenode-renewed-asp] => (item=docker-ce-cli) +2025-11-24T09:37:44.0939727Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.0940365Z skipping: [kubenode-teaching-gobbler] => (item=docker-ce) +2025-11-24T09:37:44.0941118Z skipping: [kubenode-teaching-gobbler] => (item=docker-ce-cli) +2025-11-24T09:37:44.0941820Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.0942188Z +2025-11-24T09:37:44.0942603Z TASK [container-engine/docker : Ensure docker packages are installed] ********** +2025-11-24T09:37:44.1364965Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.1795009Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.1795707Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.1796042Z +2025-11-24T09:37:44.1796493Z TASK [container-engine/docker : Tell Debian hosts not to change the docker version with apt upgrade] *** +2025-11-24T09:37:44.2077897Z skipping: [kubenode-super-marlin] => (item=containerd.io) +2025-11-24T09:37:44.2332122Z skipping: [kubenode-super-marlin] => (item=docker-ce) +2025-11-24T09:37:44.2333145Z skipping: [kubenode-super-marlin] => (item=docker-ce-cli) +2025-11-24T09:37:44.2786885Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.2787987Z skipping: [kubenode-renewed-asp] => (item=containerd.io) +2025-11-24T09:37:44.2788775Z skipping: [kubenode-renewed-asp] => (item=docker-ce) +2025-11-24T09:37:44.2789525Z skipping: [kubenode-renewed-asp] => (item=docker-ce-cli) +2025-11-24T09:37:44.2790349Z skipping: [kubenode-teaching-gobbler] => (item=containerd.io) +2025-11-24T09:37:44.2791080Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.2791744Z skipping: [kubenode-teaching-gobbler] => (item=docker-ce) +2025-11-24T09:37:44.2792509Z skipping: [kubenode-teaching-gobbler] => (item=docker-ce-cli) +2025-11-24T09:37:44.2793441Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.2794116Z +2025-11-24T09:37:44.2794633Z TASK [container-engine/docker : Ensure service is started if docker packages are already present] *** +2025-11-24T09:37:44.3163982Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.4220026Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.4220923Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.4221316Z +2025-11-24T09:37:44.4221798Z TASK [container-engine/docker : Flush handlers so we can wait for docker to come up] *** +2025-11-24T09:37:44.4222826Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.4223186Z +2025-11-24T09:37:44.4223666Z TASK [container-engine/docker : Flush handlers so we can wait for docker to come up] *** +2025-11-24T09:37:44.4224482Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.4224821Z +2025-11-24T09:37:44.4225271Z TASK [container-engine/docker : Flush handlers so we can wait for docker to come up] *** +2025-11-24T09:37:44.4226077Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.4226445Z +2025-11-24T09:37:44.4226851Z TASK [container-engine/docker : Install docker plugin] ************************* +2025-11-24T09:37:44.4554802Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.4773274Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.4774004Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.4774318Z +2025-11-24T09:37:44.4774719Z TASK [container-engine/docker : Create docker service systemd directory if it doesn't exist] *** +2025-11-24T09:37:44.5144983Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.5394683Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.5395396Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.5395712Z +2025-11-24T09:37:44.5396452Z TASK [container-engine/docker : Write docker proxy drop-in] ******************** +2025-11-24T09:37:44.5991090Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.5992026Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.5992839Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.5993229Z +2025-11-24T09:37:44.5993645Z TASK [container-engine/docker : Get systemd version] *************************** +2025-11-24T09:37:44.6366809Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.6652209Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.6653645Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.6654046Z +2025-11-24T09:37:44.6654460Z TASK [container-engine/docker : Write docker.service systemd file] ************* +2025-11-24T09:37:44.7409327Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.7410034Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.7410535Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.7410841Z +2025-11-24T09:37:44.7411213Z TASK [container-engine/docker : Write docker options systemd drop-in] ********** +2025-11-24T09:37:44.8127737Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.8128574Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.8129167Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.8129561Z +2025-11-24T09:37:44.8129968Z TASK [container-engine/docker : Write docker dns systemd drop-in] ************** +2025-11-24T09:37:44.8771854Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.8772531Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.8773207Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.8773546Z +2025-11-24T09:37:44.8773911Z TASK [container-engine/docker : Copy docker orphan clean up script to the node] *** +2025-11-24T09:37:44.9488591Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:44.9489421Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:44.9490011Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:44.9490401Z +2025-11-24T09:37:44.9490797Z TASK [container-engine/docker : Write docker orphan clean up systemd drop-in] *** +2025-11-24T09:37:45.0820724Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:45.0821626Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:45.0822217Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:45.0822598Z +2025-11-24T09:37:45.0823190Z TASK [container-engine/docker : Flush handlers] ******************************** +2025-11-24T09:37:45.0824189Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:45.0824478Z +2025-11-24T09:37:45.0824800Z TASK [container-engine/docker : Flush handlers] ******************************** +2025-11-24T09:37:45.0825437Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:45.0825722Z +2025-11-24T09:37:45.0826044Z TASK [container-engine/docker : Flush handlers] ******************************** +2025-11-24T09:37:45.0826691Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:45.0826998Z +2025-11-24T09:37:45.0827339Z TASK [container-engine/docker : Ensure docker service is started and enabled] *** +2025-11-24T09:37:45.1242377Z skipping: [kubenode-super-marlin] => (item=docker) +2025-11-24T09:37:45.1799001Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:45.1799758Z skipping: [kubenode-renewed-asp] => (item=docker) +2025-11-24T09:37:45.1800358Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:45.1800897Z skipping: [kubenode-teaching-gobbler] => (item=docker) +2025-11-24T09:37:45.1801503Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:45.1801814Z +2025-11-24T09:37:45.1802155Z TASK [container-engine/cri-dockerd : Runc | Download cri-dockerd binary] ******* +2025-11-24T09:37:45.2193015Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:45.2561764Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:45.2562514Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:45.2563055Z +2025-11-24T09:37:45.2563433Z TASK [container-engine/cri-dockerd : Copy cri-dockerd binary from download dir] *** +2025-11-24T09:37:45.3194824Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:45.3195744Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:45.3196800Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:45.3197193Z +2025-11-24T09:37:45.3197577Z TASK [container-engine/cri-dockerd : Generate cri-dockerd systemd unit files] *** +2025-11-24T09:37:45.4701258Z skipping: [kubenode-super-marlin] => (item=cri-dockerd.service) +2025-11-24T09:37:45.4702354Z skipping: [kubenode-super-marlin] => (item=cri-dockerd.socket) +2025-11-24T09:37:45.4874237Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:45.8327196Z skipping: [kubenode-renewed-asp] => (item=cri-dockerd.service) +2025-11-24T09:37:45.8328360Z skipping: [kubenode-renewed-asp] => (item=cri-dockerd.socket) +2025-11-24T09:37:45.8328952Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:45.8329524Z skipping: [kubenode-teaching-gobbler] => (item=cri-dockerd.service) +2025-11-24T09:37:45.8330226Z skipping: [kubenode-teaching-gobbler] => (item=cri-dockerd.socket) +2025-11-24T09:37:45.8330823Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:45.8331121Z +2025-11-24T09:37:45.8331554Z TASK [container-engine/cri-dockerd : Flush handlers] *************************** +2025-11-24T09:37:45.8332163Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:45.8332439Z +2025-11-24T09:37:45.8332939Z TASK [container-engine/cri-dockerd : Flush handlers] *************************** +2025-11-24T09:37:45.8333598Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:45.8333876Z +2025-11-24T09:37:45.8334194Z TASK [container-engine/cri-dockerd : Flush handlers] *************************** +2025-11-24T09:37:45.8334810Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:45.8335108Z +2025-11-24T09:37:45.8335408Z PLAY [Add worker nodes to the etcd play if needed] ***************************** +2025-11-24T09:37:45.8335806Z +2025-11-24T09:37:45.8336133Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:37:45.9781211Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:37:45.9781994Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:37:45.9782960Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:37:45.9783574Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:45.9783853Z +2025-11-24T09:37:45.9784173Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:37:46.0739861Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.0740797Z +2025-11-24T09:37:46.0741218Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:37:46.1937627Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.1938544Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:46.1939152Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:46.1939522Z +2025-11-24T09:37:46.1939960Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:37:46.2603784Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.2604300Z +2025-11-24T09:37:46.2604692Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:37:46.3606810Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.3607591Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:46.3608118Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:46.3608415Z +2025-11-24T09:37:46.3608860Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:37:46.5248705Z [WARNING]: Could not match supplied host pattern, ignoring: +2025-11-24T09:37:46.5249712Z _kubespray_needs_etcd +2025-11-24T09:37:46.5948069Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.5949013Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:46.5949620Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:46.5950004Z +2025-11-24T09:37:46.5950338Z PLAY [Install etcd] ************************************************************ +2025-11-24T09:37:46.5950787Z +2025-11-24T09:37:46.5951210Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:37:46.7133887Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:37:46.7134703Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:37:46.7135436Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:37:46.7136057Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.7136343Z +2025-11-24T09:37:46.7136679Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:37:46.7703992Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.7704597Z +2025-11-24T09:37:46.7705008Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:37:46.8728549Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.8729386Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:46.8730004Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:46.8730391Z +2025-11-24T09:37:46.8730830Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:37:46.9259979Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:46.9260440Z +2025-11-24T09:37:46.9260779Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:37:47.0396328Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:47.0397201Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:47.0397821Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:47.0398190Z +2025-11-24T09:37:47.0398716Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:37:47.5339971Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:47.5340903Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:47.5341515Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:47.5341882Z +2025-11-24T09:37:47.5342265Z PLAY [Install Kubernetes nodes] ************************************************ +2025-11-24T09:37:47.5343025Z +2025-11-24T09:37:47.5343439Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:37:47.6706974Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:37:47.6708009Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:37:47.6708902Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:37:47.6709670Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:47.6710025Z +2025-11-24T09:37:47.6710805Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:37:47.7247450Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:47.7248068Z +2025-11-24T09:37:47.7248523Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:37:47.8257743Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:47.8258631Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:47.8259256Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:47.8259594Z +2025-11-24T09:37:47.8260037Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:37:47.8774471Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:47.8775066Z +2025-11-24T09:37:47.9767743Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:37:47.9768724Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:47.9769332Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:47.9769927Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:47.9770323Z +2025-11-24T09:37:47.9770839Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:37:48.2780164Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:48.2780868Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:48.2781385Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:48.2781701Z +2025-11-24T09:37:48.2782011Z PLAY [Install the control plane] *********************************************** +2025-11-24T09:37:48.2782425Z +2025-11-24T09:37:48.2787706Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:37:48.4001608Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:37:48.4002553Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:37:48.4003665Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:37:48.4004421Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:48.4004763Z +2025-11-24T09:37:48.4005184Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:37:48.4623266Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:48.4624006Z +2025-11-24T09:37:48.4624344Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:37:48.5632293Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:48.5633380Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:48.5634031Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:48.5634379Z +2025-11-24T09:37:48.5634825Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:37:48.6117538Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:48.6118138Z +2025-11-24T09:37:48.6118570Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:37:48.7505320Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:48.7506196Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:48.7506811Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:48.7507199Z +2025-11-24T09:37:48.7507738Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:37:49.1764288Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:49.1765012Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:49.1765620Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:49.1765951Z +2025-11-24T09:37:49.1766278Z PLAY [Invoke kubeadm and install a CNI] **************************************** +2025-11-24T09:37:49.1766709Z +2025-11-24T09:37:49.1767052Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:37:49.4412486Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:37:49.4413752Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:37:49.4414680Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:37:49.4415347Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:49.4415953Z +2025-11-24T09:37:49.4416295Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:37:49.7754694Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:49.7755187Z +2025-11-24T09:37:49.8770478Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:37:49.8771394Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:49.8771988Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:49.8772566Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:49.8773238Z +2025-11-24T09:37:49.8773610Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:37:49.9482210Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:49.9482849Z +2025-11-24T09:37:49.9483229Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:37:50.0830359Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:50.0831029Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:50.0831553Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:50.0831869Z +2025-11-24T09:37:50.0832318Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:37:50.1346570Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:50.2138545Z Still deploying... +2025-11-24T09:37:50.6722513Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:50.6723515Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:50.6723866Z +2025-11-24T09:37:50.6724340Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** +2025-11-24T09:37:50.7187837Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:50.9191689Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:50.9192359Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:50.9192930Z +2025-11-24T09:37:50.9193359Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** +2025-11-24T09:37:51.2891113Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:51.2892065Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:51.2895031Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:51.2895495Z +2025-11-24T09:37:51.2895895Z PLAY [Install Calico Route Reflector] ****************************************** +2025-11-24T09:37:51.2897832Z skipping: no hosts matched +2025-11-24T09:37:51.2898937Z +2025-11-24T09:37:51.2899371Z PLAY [Patch Kubernetes for Windows] ******************************************** +2025-11-24T09:37:51.2900666Z +2025-11-24T09:37:51.2901152Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:37:51.4224988Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:37:51.4226229Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:37:51.4227418Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:37:51.4228437Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:51.4228895Z +2025-11-24T09:37:51.4229430Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:37:51.5034635Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:51.5035168Z +2025-11-24T09:37:51.5035562Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:37:51.5540729Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:51.5541338Z +2025-11-24T09:37:51.5541832Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:37:51.6149046Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:51.6149680Z +2025-11-24T09:37:51.6150137Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:37:51.7048946Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:51.7049433Z +2025-11-24T09:37:51.7049874Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:37:51.9489417Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:51.9489953Z +2025-11-24T09:37:51.9490630Z PLAY [Install Kubernetes apps] ************************************************* +2025-11-24T09:37:51.9491070Z +2025-11-24T09:37:51.9491457Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:37:52.0806300Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:37:52.0807195Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:37:52.0807928Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:37:52.0808556Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:52.0808843Z +2025-11-24T09:37:52.0809204Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:37:52.1476781Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:52.1477244Z +2025-11-24T09:37:52.1477592Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:37:52.2629850Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:52.2630571Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:52.2631107Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:52.2631391Z +2025-11-24T09:37:52.2631763Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:37:52.3317013Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:52.3317528Z +2025-11-24T09:37:52.3317892Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:37:52.4507305Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:54.6359316Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:54.6360189Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:54.6360579Z +2025-11-24T09:37:54.6361548Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:37:54.6362435Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:54.6363135Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:54.6363616Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:54.6363913Z +2025-11-24T09:37:54.6364237Z PLAY [Apply resolv.conf changes now that cluster DNS is up] ******************** +2025-11-24T09:37:54.6364641Z +2025-11-24T09:37:54.6364962Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:37:54.7648311Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:37:54.7649182Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:37:54.7649912Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:37:54.7650539Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:54.7650829Z +2025-11-24T09:37:54.7651181Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:37:54.8387585Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:54.8388233Z +2025-11-24T09:37:54.8388649Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:37:54.9528406Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:54.9529121Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:54.9529644Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:54.9529932Z +2025-11-24T09:37:54.9530308Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:37:55.0040520Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:55.0041142Z +2025-11-24T09:37:55.0041567Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:37:55.3775751Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:55.3776607Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:55.3777230Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:55.3777608Z +2025-11-24T09:37:55.3778153Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:37:55.5110426Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:55.5111099Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:55.5111593Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:55.5112275Z +2025-11-24T09:37:55.5112819Z TASK [kubernetes/preinstall : Create kubernetes directories] ******************* +2025-11-24T09:37:55.5436009Z skipping: [kubenode-super-marlin] => (item=/etc/kubernetes) +2025-11-24T09:37:55.5437123Z skipping: [kubenode-super-marlin] => (item=/etc/kubernetes/manifests) +2025-11-24T09:37:55.5941128Z skipping: [kubenode-super-marlin] => (item=/usr/local/bin/kubernetes-scripts) +2025-11-24T09:37:55.5942183Z skipping: [kubenode-super-marlin] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) +2025-11-24T09:37:55.5943195Z skipping: [kubenode-renewed-asp] => (item=/etc/kubernetes) +2025-11-24T09:37:55.5943821Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:55.5944447Z skipping: [kubenode-renewed-asp] => (item=/etc/kubernetes/manifests) +2025-11-24T09:37:55.5945197Z skipping: [kubenode-renewed-asp] => (item=/usr/local/bin/kubernetes-scripts) +2025-11-24T09:37:55.5945916Z skipping: [kubenode-teaching-gobbler] => (item=/etc/kubernetes) +2025-11-24T09:37:55.5946708Z skipping: [kubenode-renewed-asp] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) +2025-11-24T09:37:55.5947413Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:55.5948017Z skipping: [kubenode-teaching-gobbler] => (item=/etc/kubernetes/manifests) +2025-11-24T09:37:55.5948801Z skipping: [kubenode-teaching-gobbler] => (item=/usr/local/bin/kubernetes-scripts) +2025-11-24T09:37:55.5949682Z skipping: [kubenode-teaching-gobbler] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) +2025-11-24T09:37:55.5950411Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:55.5950721Z +2025-11-24T09:37:55.5951433Z TASK [kubernetes/preinstall : Create other directories of root owner] ********** +2025-11-24T09:37:55.6358962Z skipping: [kubenode-super-marlin] => (item=/etc/kubernetes/ssl) +2025-11-24T09:37:55.6360034Z skipping: [kubenode-super-marlin] => (item=/usr/local/bin) +2025-11-24T09:37:55.6786998Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:55.6788055Z skipping: [kubenode-renewed-asp] => (item=/etc/kubernetes/ssl) +2025-11-24T09:37:55.6788921Z skipping: [kubenode-renewed-asp] => (item=/usr/local/bin) +2025-11-24T09:37:55.6789647Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:55.6790720Z skipping: [kubenode-teaching-gobbler] => (item=/etc/kubernetes/ssl) +2025-11-24T09:37:55.6791571Z skipping: [kubenode-teaching-gobbler] => (item=/usr/local/bin) +2025-11-24T09:37:55.6792255Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:55.6792562Z +2025-11-24T09:37:55.6793127Z TASK [kubernetes/preinstall : Create cni directories] ************************** +2025-11-24T09:37:55.6990278Z skipping: [kubenode-super-marlin] => (item=/etc/cni/net.d) +2025-11-24T09:37:55.7164261Z skipping: [kubenode-super-marlin] => (item=/opt/cni/bin) +2025-11-24T09:37:55.7534700Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:55.7535701Z skipping: [kubenode-renewed-asp] => (item=/etc/cni/net.d) +2025-11-24T09:37:55.7536505Z skipping: [kubenode-renewed-asp] => (item=/opt/cni/bin) +2025-11-24T09:37:55.7537222Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:55.7537924Z skipping: [kubenode-teaching-gobbler] => (item=/etc/cni/net.d) +2025-11-24T09:37:55.7538742Z skipping: [kubenode-teaching-gobbler] => (item=/opt/cni/bin) +2025-11-24T09:37:55.7539486Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:55.7539870Z +2025-11-24T09:37:55.7540291Z TASK [kubernetes/preinstall : Create calico cni directories] ******************* +2025-11-24T09:37:55.7881121Z skipping: [kubenode-super-marlin] => (item=/var/lib/calico) +2025-11-24T09:37:55.8140230Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:55.8141226Z skipping: [kubenode-renewed-asp] => (item=/var/lib/calico) +2025-11-24T09:37:55.8141966Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:55.8142855Z skipping: [kubenode-teaching-gobbler] => (item=/var/lib/calico) +2025-11-24T09:37:55.8143574Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:55.8143946Z +2025-11-24T09:37:55.8144392Z TASK [kubernetes/preinstall : Create temporary resolveconf cloud init file] **** +2025-11-24T09:37:55.8923945Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:55.8924834Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:55.8925433Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:55.8925832Z +2025-11-24T09:37:55.8926221Z TASK [kubernetes/preinstall : Add domain/search/nameservers/options to resolv.conf] *** +2025-11-24T09:37:56.2118097Z ok: [kubenode-super-marlin] +2025-11-24T09:37:56.2118731Z ok: [kubenode-renewed-asp] +2025-11-24T09:37:56.2119201Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:37:56.2119481Z +2025-11-24T09:37:56.2119877Z TASK [kubernetes/preinstall : Remove search/domain/nameserver options before block] *** +2025-11-24T09:37:57.0962408Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:37:57.0963631Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:37:57.0964399Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:37:57.0965146Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:37:57.0965926Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:37:57.0966682Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:37:57.0967405Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:37:57.0968116Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:37:57.0968832Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:37:57.0969532Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:37:57.0970626Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:37:57.0971353Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:37:57.0971762Z +2025-11-24T09:37:57.0972144Z TASK [kubernetes/preinstall : Remove search/domain/nameserver options after block] *** +2025-11-24T09:37:58.0233728Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:37:58.0234905Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:37:58.0236171Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'search\\s']) +2025-11-24T09:37:58.0236959Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:37:58.0237718Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:37:58.0238479Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'nameserver\\s']) +2025-11-24T09:37:58.0239196Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:37:58.0239913Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:37:58.0240618Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'domain\\s']) +2025-11-24T09:37:58.0241316Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:37:58.0242040Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:37:58.0242896Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'options\\s']) +2025-11-24T09:37:58.0243310Z +2025-11-24T09:37:58.0243690Z TASK [kubernetes/preinstall : Get temporary resolveconf cloud init file content] *** +2025-11-24T09:37:58.1352483Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.1353615Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.1354231Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.1354622Z +2025-11-24T09:37:58.1355077Z TASK [kubernetes/preinstall : Persist resolvconf cloud init file] ************** +2025-11-24T09:37:58.2253071Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.2253924Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.2254544Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.2254940Z +2025-11-24T09:37:58.2255382Z TASK [kubernetes/preinstall : Create systemd-resolved drop-in directory] ******* +2025-11-24T09:37:58.3202840Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.3203754Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.3204358Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.3204756Z +2025-11-24T09:37:58.3205192Z TASK [kubernetes/preinstall : Write Kubespray DNS settings to systemd-resolved] *** +2025-11-24T09:37:58.3653032Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.4055111Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.4055667Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.4055989Z +2025-11-24T09:37:58.4056374Z TASK [kubernetes/preinstall : NetworkManager | Ensure NetworkManager conf.d dir] *** +2025-11-24T09:37:58.4897641Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.4898220Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.4898714Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.4899030Z +2025-11-24T09:37:58.4899616Z TASK [kubernetes/preinstall : NetworkManager | Prevent NetworkManager from managing Calico interfaces (cali*/tunl*/vxlan.calico)] *** +2025-11-24T09:37:58.5300854Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.5601159Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.5601776Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.5602139Z +2025-11-24T09:37:58.5602976Z TASK [kubernetes/preinstall : NetworkManager | Prevent NetworkManager from managing K8S interfaces (kube-ipvs0/nodelocaldns)] *** +2025-11-24T09:37:58.6427115Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.6427797Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.6428301Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.6428611Z +2025-11-24T09:37:58.6429428Z TASK [kubernetes/preinstall : NetworkManager | Add nameservers to NM configuration] *** +2025-11-24T09:37:58.7241672Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.7242283Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.7243028Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.7243369Z +2025-11-24T09:37:58.7243798Z TASK [kubernetes/preinstall : Set default dns if remove_default_searchdomains is false] *** +2025-11-24T09:37:58.7638281Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.7949333Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.7950352Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.7950753Z +2025-11-24T09:37:58.7951236Z TASK [kubernetes/preinstall : NetworkManager | Add DNS search to NM configuration] *** +2025-11-24T09:37:58.8290222Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:58.8595754Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:58.8596351Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:58.8596687Z +2025-11-24T09:37:58.8597108Z TASK [kubernetes/preinstall : NetworkManager | Add DNS options to NM configuration] *** +2025-11-24T09:37:59.0467846Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.0468532Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.0469130Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.0469495Z +2025-11-24T09:37:59.0469933Z TASK [kubernetes/preinstall : Update package management cache (zypper) - SUSE] *** +2025-11-24T09:37:59.0814733Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.1063536Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.1064212Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.1064556Z +2025-11-24T09:37:59.1064918Z TASK [kubernetes/preinstall : Add Debian Backports apt repo] ******************* +2025-11-24T09:37:59.1807181Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.1807813Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.1808411Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.1808790Z +2025-11-24T09:37:59.1809323Z TASK [kubernetes/preinstall : Set libseccomp2 pin priority to apt_preferences on Debian buster] *** +2025-11-24T09:37:59.2173281Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.2440698Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.2441468Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.2441913Z +2025-11-24T09:37:59.2442383Z TASK [kubernetes/preinstall : Update package management cache (APT)] *********** +2025-11-24T09:37:59.3096830Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.3097539Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.3098147Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.3098550Z +2025-11-24T09:37:59.3098968Z TASK [kubernetes/preinstall : Remove legacy docker repo file] ****************** +2025-11-24T09:37:59.3464548Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.3715506Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.3716184Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.3716579Z +2025-11-24T09:37:59.3717022Z TASK [kubernetes/preinstall : Install epel-release on RHEL derivatives] ******** +2025-11-24T09:37:59.4068149Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.4425962Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.4426653Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.4427041Z +2025-11-24T09:37:59.4427459Z TASK [kubernetes/preinstall : Install packages requirements] ******************* +2025-11-24T09:37:59.4793048Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.5046506Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.5047192Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.5047607Z +2025-11-24T09:37:59.5048024Z TASK [kubernetes/preinstall : Confirm selinux deployed] ************************ +2025-11-24T09:37:59.5380551Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.5678674Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.5679341Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.5679736Z +2025-11-24T09:37:59.5680154Z TASK [kubernetes/preinstall : Set selinux policy] ****************************** +2025-11-24T09:37:59.6018906Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.6363823Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.6364488Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.6364881Z +2025-11-24T09:37:59.6365284Z TASK [kubernetes/preinstall : Disable IPv6 DNS lookup] ************************* +2025-11-24T09:37:59.6701958Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.7115910Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.7116494Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.7117160Z +2025-11-24T09:37:59.7117517Z TASK [kubernetes/preinstall : Clean previously used sysctl file locations] ***** +2025-11-24T09:37:59.7501869Z skipping: [kubenode-super-marlin] => (item=ipv4-ip_forward.conf) +2025-11-24T09:37:59.7503071Z skipping: [kubenode-super-marlin] => (item=bridge-nf-call.conf) +2025-11-24T09:37:59.7503923Z skipping: [kubenode-renewed-asp] => (item=ipv4-ip_forward.conf) +2025-11-24T09:37:59.7504785Z skipping: [kubenode-renewed-asp] => (item=bridge-nf-call.conf) +2025-11-24T09:37:59.7898570Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.7899264Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.7899885Z skipping: [kubenode-teaching-gobbler] => (item=ipv4-ip_forward.conf) +2025-11-24T09:37:59.7900633Z skipping: [kubenode-teaching-gobbler] => (item=bridge-nf-call.conf) +2025-11-24T09:37:59.7901277Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.7901593Z +2025-11-24T09:37:59.7901937Z TASK [kubernetes/preinstall : Stat sysctl file configuration] ****************** +2025-11-24T09:37:59.8243332Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.8618037Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.8618604Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.8618931Z +2025-11-24T09:37:59.8619303Z TASK [kubernetes/preinstall : Change sysctl file path to link source if linked] *** +2025-11-24T09:37:59.9332276Z skipping: [kubenode-super-marlin] +2025-11-24T09:37:59.9333108Z skipping: [kubenode-renewed-asp] +2025-11-24T09:37:59.9333646Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:37:59.9333967Z +2025-11-24T09:37:59.9334319Z TASK [kubernetes/preinstall : Make sure sysctl file path folder exists] ******** +2025-11-24T09:38:00.0028857Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.0029539Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.0030134Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.0030864Z +2025-11-24T09:38:00.0031275Z TASK [kubernetes/preinstall : Enable ip forwarding] **************************** +2025-11-24T09:38:00.0653882Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.0654621Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.0655154Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.0655478Z +2025-11-24T09:38:00.0655844Z TASK [kubernetes/preinstall : Enable ipv6 forwarding] ************************** +2025-11-24T09:38:00.0977605Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.1240333Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.1241014Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.1241410Z +2025-11-24T09:38:00.1241865Z TASK [kubernetes/preinstall : Check if we need to set fs.may_detach_mounts] **** +2025-11-24T09:38:00.1594457Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.1842970Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.1843649Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.1844020Z +2025-11-24T09:38:00.1844390Z TASK [kubernetes/preinstall : Set fs.may_detach_mounts if needed] ************** +2025-11-24T09:38:00.2155783Z Still deploying... +2025-11-24T09:38:00.2498567Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.2499164Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.2499671Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.2499987Z +2025-11-24T09:38:00.2500344Z TASK [kubernetes/preinstall : Ensure kubelet expected parameters are set] ****** +2025-11-24T09:38:00.2879681Z skipping: [kubenode-super-marlin] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) +2025-11-24T09:38:00.2881244Z skipping: [kubenode-super-marlin] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) +2025-11-24T09:38:00.2882311Z skipping: [kubenode-super-marlin] => (item={'name': 'kernel.panic', 'value': 10}) +2025-11-24T09:38:00.2883660Z skipping: [kubenode-super-marlin] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) +2025-11-24T09:38:00.2884714Z skipping: [kubenode-super-marlin] => (item={'name': 'vm.overcommit_memory', 'value': 1}) +2025-11-24T09:38:00.3435699Z skipping: [kubenode-super-marlin] => (item={'name': 'vm.panic_on_oom', 'value': 0}) +2025-11-24T09:38:00.3437095Z skipping: [kubenode-renewed-asp] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) +2025-11-24T09:38:00.3437922Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.3438721Z skipping: [kubenode-renewed-asp] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) +2025-11-24T09:38:00.3439771Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) +2025-11-24T09:38:00.3440634Z skipping: [kubenode-renewed-asp] => (item={'name': 'kernel.panic', 'value': 10}) +2025-11-24T09:38:00.3441489Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) +2025-11-24T09:38:00.3442357Z skipping: [kubenode-renewed-asp] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) +2025-11-24T09:38:00.3443424Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kernel.panic', 'value': 10}) +2025-11-24T09:38:00.3444250Z skipping: [kubenode-renewed-asp] => (item={'name': 'vm.overcommit_memory', 'value': 1}) +2025-11-24T09:38:00.3445094Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) +2025-11-24T09:38:00.3445954Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'vm.overcommit_memory', 'value': 1}) +2025-11-24T09:38:00.3446766Z skipping: [kubenode-renewed-asp] => (item={'name': 'vm.panic_on_oom', 'value': 0}) +2025-11-24T09:38:00.3447426Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.3448090Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'vm.panic_on_oom', 'value': 0}) +2025-11-24T09:38:00.3448786Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.3449092Z +2025-11-24T09:38:00.3449423Z TASK [kubernetes/preinstall : Check dummy module] ****************************** +2025-11-24T09:38:00.3863470Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.4294221Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.4294919Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.4295263Z +2025-11-24T09:38:00.4295660Z TASK [kubernetes/preinstall : Set additional sysctl variables] ***************** +2025-11-24T09:38:00.4715892Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.5001241Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.5002155Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.5002541Z +2025-11-24T09:38:00.5003314Z TASK [kubernetes/preinstall : Disable fapolicyd service] *********************** +2025-11-24T09:38:00.5358249Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.5656614Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.5657389Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.5657765Z +2025-11-24T09:38:00.5658171Z TASK [kubernetes/preinstall : Ensure NTP package] ****************************** +2025-11-24T09:38:00.5971534Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.6284408Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.6285281Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.6285711Z +2025-11-24T09:38:00.6286163Z TASK [kubernetes/preinstall : Disable systemd-timesyncd] *********************** +2025-11-24T09:38:00.6909402Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.6910235Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.6910838Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.6911224Z +2025-11-24T09:38:00.6911637Z TASK [kubernetes/preinstall : Set fact NTP settings] *************************** +2025-11-24T09:38:00.7597913Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.7599013Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.7599558Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.7599893Z +2025-11-24T09:38:00.7600264Z TASK [kubernetes/preinstall : Generate NTP configuration file.] **************** +2025-11-24T09:38:00.7940907Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:00.9480258Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:00.9481140Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:00.9481537Z +2025-11-24T09:38:00.9481969Z TASK [kubernetes/preinstall : Stop the NTP Deamon For Sync Immediately] ******** +2025-11-24T09:38:01.0226896Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:01.0227722Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:01.0228322Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:01.0228697Z +2025-11-24T09:38:01.0229103Z TASK [kubernetes/preinstall : Force Sync NTP Immediately] ********************** +2025-11-24T09:38:01.0910799Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:01.0911532Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:01.0912073Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:01.0912433Z +2025-11-24T09:38:01.0913106Z TASK [kubernetes/preinstall : Ensure NTP service is started and enabled] ******* +2025-11-24T09:38:01.1577475Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:01.1578244Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:01.1578811Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:01.1579144Z +2025-11-24T09:38:01.1579528Z TASK [kubernetes/preinstall : Ensure tzdata package] *************************** +2025-11-24T09:38:01.2309639Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:01.2310364Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:01.2310917Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:01.2311235Z +2025-11-24T09:38:01.2311570Z TASK [kubernetes/preinstall : Set timezone] ************************************ +2025-11-24T09:38:01.2599340Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:01.2912007Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:01.2913156Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:01.2913583Z +2025-11-24T09:38:01.2914085Z TASK [kubernetes/preinstall : Hosts | create hosts list from inventory] ******** +2025-11-24T09:38:01.5008076Z ok: [kubenode-super-marlin -> localhost] +2025-11-24T09:38:01.5008618Z +2025-11-24T09:38:01.5009005Z TASK [kubernetes/preinstall : Hosts | populate inventory into hosts file] ****** +2025-11-24T09:38:01.8050991Z ok: [kubenode-super-marlin] +2025-11-24T09:38:01.8051857Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:38:01.8052456Z ok: [kubenode-renewed-asp] +2025-11-24T09:38:01.8053013Z +2025-11-24T09:38:01.8053540Z TASK [kubernetes/preinstall : Hosts | populate kubernetes loadbalancer address into hosts file] *** +2025-11-24T09:38:01.9204151Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:01.9204876Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:01.9205387Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:01.9205701Z +2025-11-24T09:38:01.9206074Z TASK [kubernetes/preinstall : Hosts | Retrieve hosts file content] ************* +2025-11-24T09:38:02.2135910Z ok: [kubenode-super-marlin] +2025-11-24T09:38:02.2136559Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:38:02.2137041Z ok: [kubenode-renewed-asp] +2025-11-24T09:38:02.2137311Z +2025-11-24T09:38:02.2137914Z TASK [kubernetes/preinstall : Hosts | Extract existing entries for localhost from hosts file] *** +2025-11-24T09:38:02.5218974Z skipping: [kubenode-super-marlin] => (item=# Your system has configured 'manage_etc_hosts' as True.) +2025-11-24T09:38:02.5220161Z skipping: [kubenode-super-marlin] => (item=# As a result, if you wish for changes to this file to persist) +2025-11-24T09:38:02.5221107Z skipping: [kubenode-renewed-asp] => (item=# Your system has configured 'manage_etc_hosts' as True.) +2025-11-24T09:38:02.5222021Z skipping: [kubenode-renewed-asp] => (item=# As a result, if you wish for changes to this file to persist) +2025-11-24T09:38:02.5223522Z skipping: [kubenode-super-marlin] => (item=# then you will need to either) +2025-11-24T09:38:02.5224334Z skipping: [kubenode-renewed-asp] => (item=# then you will need to either) +2025-11-24T09:38:02.5225236Z skipping: [kubenode-super-marlin] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) +2025-11-24T09:38:02.5226312Z skipping: [kubenode-renewed-asp] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) +2025-11-24T09:38:02.5227316Z skipping: [kubenode-super-marlin] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) +2025-11-24T09:38:02.5228363Z skipping: [kubenode-renewed-asp] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) +2025-11-24T09:38:02.5229286Z skipping: [kubenode-teaching-gobbler] => (item=# Your system has configured 'manage_etc_hosts' as True.) +2025-11-24T09:38:02.5230203Z skipping: [kubenode-renewed-asp] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) +2025-11-24T09:38:02.5231100Z skipping: [kubenode-super-marlin] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) +2025-11-24T09:38:02.5231971Z skipping: [kubenode-teaching-gobbler] => (item=# As a result, if you wish for changes to this file to persist) +2025-11-24T09:38:02.5232809Z skipping: [kubenode-renewed-asp] => (item=#) +2025-11-24T09:38:02.5233330Z skipping: [kubenode-super-marlin] => (item=#) +2025-11-24T09:38:02.5234020Z skipping: [kubenode-renewed-asp] => (item=127.0.1.1 kubenode-renewed-asp kubenode-renewed-asp) +2025-11-24T09:38:02.5234802Z skipping: [kubenode-teaching-gobbler] => (item=# then you will need to either) +2025-11-24T09:38:02.5235599Z skipping: [kubenode-super-marlin] => (item=127.0.1.1 kubenode-super-marlin kubenode-super-marlin) +2025-11-24T09:38:02.5236515Z skipping: [kubenode-teaching-gobbler] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) +2025-11-24T09:38:02.5237347Z ok: [kubenode-renewed-asp] => (item=127.0.0.1 localhost localhost.localdomain) +2025-11-24T09:38:02.5237977Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:38:02.5238669Z skipping: [kubenode-teaching-gobbler] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) +2025-11-24T09:38:02.5239528Z skipping: [kubenode-renewed-asp] => (item=# The following lines are desirable for IPv6 capable hosts) +2025-11-24T09:38:02.5240297Z ok: [kubenode-super-marlin] => (item=127.0.0.1 localhost localhost.localdomain) +2025-11-24T09:38:02.5241214Z skipping: [kubenode-teaching-gobbler] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) +2025-11-24T09:38:02.5241903Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:38:02.5242431Z skipping: [kubenode-teaching-gobbler] => (item=#) +2025-11-24T09:38:02.5243271Z skipping: [kubenode-super-marlin] => (item=# The following lines are desirable for IPv6 capable hosts) +2025-11-24T09:38:02.5244153Z skipping: [kubenode-teaching-gobbler] => (item=127.0.1.1 kubenode-teaching-gobbler kubenode-teaching-gobbler) +2025-11-24T09:38:02.5245081Z ok: [kubenode-renewed-asp] => (item=::1 ip6-localhost ip6-loopback localhost6 localhost6.localdomain) +2025-11-24T09:38:02.5245811Z skipping: [kubenode-renewed-asp] => (item=ff02::1 ip6-allnodes) +2025-11-24T09:38:02.5246450Z skipping: [kubenode-renewed-asp] => (item=ff02::2 ip6-allrouters) +2025-11-24T09:38:02.5247200Z ok: [kubenode-super-marlin] => (item=::1 ip6-localhost ip6-loopback localhost6 localhost6.localdomain) +2025-11-24T09:38:02.5247997Z ok: [kubenode-teaching-gobbler] => (item=127.0.0.1 localhost localhost.localdomain) +2025-11-24T09:38:02.5248628Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:38:02.5249206Z skipping: [kubenode-super-marlin] => (item=ff02::1 ip6-allnodes) +2025-11-24T09:38:02.5249790Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:38:02.5250416Z skipping: [kubenode-renewed-asp] => (item=# Ansible inventory hosts BEGIN) +2025-11-24T09:38:02.5251098Z skipping: [kubenode-super-marlin] => (item=ff02::2 ip6-allrouters) +2025-11-24T09:38:02.5252077Z skipping: [kubenode-teaching-gobbler] => (item=# The following lines are desirable for IPv6 capable hosts) +2025-11-24T09:38:02.5253107Z skipping: [kubenode-renewed-asp] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) +2025-11-24T09:38:02.5253827Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:38:02.5254538Z skipping: [kubenode-renewed-asp] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) +2025-11-24T09:38:02.5255342Z skipping: [kubenode-super-marlin] => (item=# Ansible inventory hosts BEGIN) +2025-11-24T09:38:02.5256295Z skipping: [kubenode-renewed-asp] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) +2025-11-24T09:38:02.5257246Z skipping: [kubenode-super-marlin] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) +2025-11-24T09:38:02.5258146Z ok: [kubenode-teaching-gobbler] => (item=::1 ip6-localhost ip6-loopback localhost6 localhost6.localdomain) +2025-11-24T09:38:02.5258931Z skipping: [kubenode-renewed-asp] => (item=# Ansible inventory hosts END) +2025-11-24T09:38:02.5259727Z skipping: [kubenode-super-marlin] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) +2025-11-24T09:38:02.5260523Z skipping: [kubenode-teaching-gobbler] => (item=ff02::1 ip6-allnodes) +2025-11-24T09:38:02.5261365Z skipping: [kubenode-super-marlin] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) +2025-11-24T09:38:02.5262211Z skipping: [kubenode-teaching-gobbler] => (item=ff02::2 ip6-allrouters) +2025-11-24T09:38:02.5263007Z skipping: [kubenode-super-marlin] => (item=# Ansible inventory hosts END) +2025-11-24T09:38:02.5263619Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:38:02.5264247Z skipping: [kubenode-teaching-gobbler] => (item=# Ansible inventory hosts BEGIN) +2025-11-24T09:38:02.5265094Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) +2025-11-24T09:38:02.5266056Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) +2025-11-24T09:38:02.5267038Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) +2025-11-24T09:38:02.5267905Z skipping: [kubenode-teaching-gobbler] => (item=# Ansible inventory hosts END) +2025-11-24T09:38:02.5268408Z +2025-11-24T09:38:02.5268805Z TASK [kubernetes/preinstall : Hosts | Update target hosts file entries dict with required entries] *** +2025-11-24T09:38:02.6605784Z ok: [kubenode-super-marlin] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:38:02.6607147Z ok: [kubenode-super-marlin] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:38:02.6608292Z ok: [kubenode-renewed-asp] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:38:02.6609412Z ok: [kubenode-renewed-asp] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:38:02.6610550Z ok: [kubenode-teaching-gobbler] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:38:02.6611694Z ok: [kubenode-teaching-gobbler] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) +2025-11-24T09:38:02.6612402Z +2025-11-24T09:38:02.6612948Z TASK [kubernetes/preinstall : Hosts | Update (if necessary) hosts file] ******** +2025-11-24T09:38:03.1911352Z ok: [kubenode-super-marlin] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) +2025-11-24T09:38:03.1912390Z ok: [kubenode-renewed-asp] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) +2025-11-24T09:38:03.1914037Z ok: [kubenode-teaching-gobbler] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) +2025-11-24T09:38:03.1917064Z ok: [kubenode-super-marlin] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) +2025-11-24T09:38:03.1918257Z ok: [kubenode-teaching-gobbler] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) +2025-11-24T09:38:03.1919405Z ok: [kubenode-renewed-asp] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) +2025-11-24T09:38:03.1920164Z +2025-11-24T09:38:03.1920550Z TASK [kubernetes/preinstall : Update facts] ************************************ +2025-11-24T09:38:03.2473313Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:03.2880089Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:03.2880783Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:03.2881146Z +2025-11-24T09:38:03.2881578Z TASK [kubernetes/preinstall : Configure dhclient to supersede search/domain/nameservers] *** +2025-11-24T09:38:03.5993415Z ok: [kubenode-super-marlin] +2025-11-24T09:38:03.5994085Z ok: [kubenode-renewed-asp] +2025-11-24T09:38:03.5994557Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:38:03.5994840Z +2025-11-24T09:38:03.5995282Z TASK [kubernetes/preinstall : Configure dhclient hooks for resolv.conf (non-RH)] *** +2025-11-24T09:38:04.1252483Z ok: [kubenode-super-marlin] +2025-11-24T09:38:04.1253499Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.1254016Z ok: [kubenode-renewed-asp] +2025-11-24T09:38:04.1254326Z +2025-11-24T09:38:04.1254745Z TASK [kubernetes/preinstall : Configure dhclient hooks for resolv.conf (RH-only)] *** +2025-11-24T09:38:04.2229804Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.2230547Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.2231142Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.2231474Z +2025-11-24T09:38:04.2231910Z TASK [kubernetes/preinstall : Remove kubespray specific config from dhclient config] *** +2025-11-24T09:38:04.2685167Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.3048205Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.3048934Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.3049277Z +2025-11-24T09:38:04.3049659Z TASK [kubernetes/preinstall : Remove kubespray specific dhclient hook] ********* +2025-11-24T09:38:04.3728466Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.3729205Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.3729749Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.3730088Z +2025-11-24T09:38:04.3730490Z TASK [kubernetes/preinstall : Check if we are running inside a Azure VM] ******* +2025-11-24T09:38:04.4202883Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.4446430Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.4454175Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.4454613Z +2025-11-24T09:38:04.4455078Z TASK [kubernetes/preinstall : Install growpart] ******************************** +2025-11-24T09:38:04.5035727Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.5036738Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.5037399Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.5037786Z +2025-11-24T09:38:04.5038155Z TASK [kubernetes/preinstall : Gather mounts facts] ***************************** +2025-11-24T09:38:04.5413761Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.5670751Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.5671473Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.5671789Z +2025-11-24T09:38:04.5672128Z TASK [kubernetes/preinstall : Search root filesystem device] ******************* +2025-11-24T09:38:04.6238791Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.6239767Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.6240361Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.6240719Z +2025-11-24T09:38:04.6241113Z TASK [kubernetes/preinstall : Check if growpart needs to be run] *************** +2025-11-24T09:38:04.6867122Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.6868314Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.6868878Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.6869216Z +2025-11-24T09:38:04.6869573Z TASK [kubernetes/preinstall : Check fs type] *********************************** +2025-11-24T09:38:04.7468276Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.7469047Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.7469595Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.7469938Z +2025-11-24T09:38:04.7470304Z TASK [kubernetes/preinstall : Run growpart] ************************************ +2025-11-24T09:38:04.9341455Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:04.9342273Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:04.9343216Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:04.9343595Z +2025-11-24T09:38:05.8602617Z TASK [kubernetes/preinstall : Run xfs_growfs] ********************************** +2025-11-24T09:38:05.8603704Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:05.8604266Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:05.8604804Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:05.8605137Z +2025-11-24T09:38:05.8605432Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:38:05.8605842Z +2025-11-24T09:38:05.8606123Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:38:05.8606526Z +2025-11-24T09:38:05.8606856Z PLAY [Bringing kubeconfig in place] ******************************************** +2025-11-24T09:38:05.8607297Z +2025-11-24T09:38:05.8607583Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:38:05.8607984Z +2025-11-24T09:38:05.8608265Z PLAY [etcd] ******************************************************************** +2025-11-24T09:38:05.8608639Z +2025-11-24T09:38:05.8608902Z PLAY RECAP ********************************************************************* +2025-11-24T09:38:05.8609698Z adminhost : ok=3 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:38:05.8610689Z kubenode-renewed-asp : ok=164 changed=44 unreachable=0 failed=0 skipped=372 rescued=0 ignored=0 +2025-11-24T09:38:05.8611707Z kubenode-super-marlin : ok=189 changed=44 unreachable=0 failed=0 skipped=391 rescued=0 ignored=0 +2025-11-24T09:38:05.8613360Z kubenode-teaching-gobbler : ok=164 changed=44 unreachable=0 failed=0 skipped=354 rescued=0 ignored=0 +2025-11-24T09:38:05.8613943Z +2025-11-24T09:38:06.1602019Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/seed-offline-containerd.yml +2025-11-24T09:38:06.6584279Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:38:06.6585116Z -vvvv to see details +2025-11-24T09:38:06.6587768Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:38:06.6588706Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:38:06.7871440Z +2025-11-24T09:38:06.7872343Z PLAY [Fix containerd socker permission] **************************************** +2025-11-24T09:38:06.7873084Z +2025-11-24T09:38:06.7873395Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:38:08.1707847Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:38:08.1708594Z ok: [kubenode-super-marlin] +2025-11-24T09:38:08.1709070Z ok: [kubenode-renewed-asp] +2025-11-24T09:38:08.1709322Z +2025-11-24T09:38:08.1709661Z TASK [Ensure containerd socket has correct permissions for docker user] ******** +2025-11-24T09:38:08.3372198Z skipping: [kubenode-renewed-asp] +2025-11-24T09:38:08.3373073Z skipping: [kubenode-super-marlin] +2025-11-24T09:38:08.3373582Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:38:08.3373898Z +2025-11-24T09:38:08.3374202Z PLAY [Seed system containers] ************************************************** +2025-11-24T09:38:08.3374595Z +2025-11-24T09:38:08.3375276Z TASK [load containers] ********************************************************* +2025-11-24T09:38:08.9926610Z changed: [kubenode-super-marlin] +2025-11-24T09:38:08.9927413Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:38:08.9927935Z changed: [kubenode-renewed-asp] +2025-11-24T09:38:08.9928253Z +2025-11-24T09:38:08.9928560Z TASK [Waiting on async task load_containers] *********************************** +2025-11-24T09:38:10.2170163Z Still deploying... +2025-11-24T09:38:20.2186277Z Still deploying... +2025-11-24T09:38:30.2206040Z Still deploying... +2025-11-24T09:38:40.2227329Z Still deploying... +2025-11-24T09:38:50.2244769Z Still deploying... +2025-11-24T09:39:00.2265507Z Still deploying... +2025-11-24T09:39:10.2281238Z Still deploying... +2025-11-24T09:39:10.7332376Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_containers (60 retries left). +2025-11-24T09:39:10.7333796Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_containers (60 retries left). +2025-11-24T09:39:10.7334845Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_containers (60 retries left). +2025-11-24T09:39:10.7335628Z changed: [kubenode-super-marlin] +2025-11-24T09:39:10.7336155Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:39:10.7336693Z changed: [kubenode-renewed-asp] +2025-11-24T09:39:10.7336983Z +2025-11-24T09:39:10.7337311Z PLAY [Download helm containers] ************************************************ +2025-11-24T09:39:10.7337768Z +2025-11-24T09:39:10.7338075Z TASK [load helm containers] **************************************************** +2025-11-24T09:39:11.1002154Z changed: [kubenode-super-marlin] +2025-11-24T09:39:11.1003096Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:39:11.1003725Z changed: [kubenode-renewed-asp] +2025-11-24T09:39:11.1004053Z +2025-11-24T09:39:11.1004428Z TASK [Waiting on async task load_helm_containers] ****************************** +2025-11-24T09:39:20.2295643Z Still deploying... +2025-11-24T09:39:30.2312295Z Still deploying... +2025-11-24T09:39:40.2330556Z Still deploying... +2025-11-24T09:39:50.2341803Z Still deploying... +2025-11-24T09:40:00.2355112Z Still deploying... +2025-11-24T09:40:10.2367872Z Still deploying... +2025-11-24T09:40:20.2383562Z Still deploying... +2025-11-24T09:40:30.2399945Z Still deploying... +2025-11-24T09:40:40.2418918Z Still deploying... +2025-11-24T09:40:50.2438481Z Still deploying... +2025-11-24T09:41:00.2453712Z Still deploying... +2025-11-24T09:41:10.2473179Z Still deploying... +2025-11-24T09:41:20.2488400Z Still deploying... +2025-11-24T09:41:30.2508481Z Still deploying... +2025-11-24T09:41:40.2527746Z Still deploying... +2025-11-24T09:41:50.2547631Z Still deploying... +2025-11-24T09:42:00.2561971Z Still deploying... +2025-11-24T09:42:10.2576107Z Still deploying... +2025-11-24T09:42:20.2613639Z Still deploying... +2025-11-24T09:42:30.2613869Z Still deploying... +2025-11-24T09:42:40.2626526Z Still deploying... +2025-11-24T09:42:50.2641915Z Still deploying... +2025-11-24T09:43:00.2661723Z Still deploying... +2025-11-24T09:43:10.2675249Z Still deploying... +2025-11-24T09:43:20.2693672Z Still deploying... +2025-11-24T09:43:30.2708590Z Still deploying... +2025-11-24T09:43:40.2727401Z Still deploying... +2025-11-24T09:43:50.2745466Z Still deploying... +2025-11-24T09:44:00.2765606Z Still deploying... +2025-11-24T09:44:10.2781857Z Still deploying... +2025-11-24T09:44:19.3340926Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_helm_containers (60 retries left). +2025-11-24T09:44:19.3342059Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_helm_containers (60 retries left). +2025-11-24T09:44:19.3343370Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (60 retries left). +2025-11-24T09:44:19.3344365Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_helm_containers (59 retries left). +2025-11-24T09:44:19.3345351Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_helm_containers (59 retries left). +2025-11-24T09:44:19.3346816Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (59 retries left). +2025-11-24T09:44:19.3347774Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_helm_containers (58 retries left). +2025-11-24T09:44:19.3348712Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (58 retries left). +2025-11-24T09:44:19.3349680Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_helm_containers (58 retries left). +2025-11-24T09:44:19.3350653Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_helm_containers (57 retries left). +2025-11-24T09:44:19.3351761Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_helm_containers (57 retries left). +2025-11-24T09:44:19.3352863Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (57 retries left). +2025-11-24T09:44:19.3353558Z changed: [kubenode-super-marlin] +2025-11-24T09:44:19.3354026Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:44:19.3354728Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (56 retries left). +2025-11-24T09:44:19.3355418Z changed: [kubenode-renewed-asp] +2025-11-24T09:44:19.3355682Z +2025-11-24T09:44:19.3355922Z PLAY RECAP ********************************************************************* +2025-11-24T09:44:19.3356692Z kubenode-renewed-asp : ok=5 changed=4 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0 +2025-11-24T09:44:19.3357569Z kubenode-super-marlin : ok=5 changed=4 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0 +2025-11-24T09:44:19.3358460Z kubenode-teaching-gobbler : ok=5 changed=4 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0 +2025-11-24T09:44:19.3358956Z +2025-11-24T09:44:19.4253819Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/sync_time.yml -v +2025-11-24T09:44:19.9167203Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:44:19.9168810Z -vvvv to see details +2025-11-24T09:44:19.9169462Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:44:19.9170148Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:44:20.0437406Z Using /wire-server-deploy/ansible/ansible.cfg as config file +2025-11-24T09:44:20.0438418Z +2025-11-24T09:44:20.0438836Z PLAY [Configure NTP on Cassandra nodes] **************************************** +2025-11-24T09:44:20.0439368Z +2025-11-24T09:44:20.0439721Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:44:20.2800630Z Still deploying... +2025-11-24T09:44:23.2052069Z ok: [cassandra-tops-fowl] +2025-11-24T09:44:23.2052857Z ok: [cassandra-improved-teal] +2025-11-24T09:44:23.2053380Z ok: [cassandra-noted-manatee] +2025-11-24T09:44:23.2053660Z +2025-11-24T09:44:23.2053959Z TASK [Install NTP package] ***************************************************** +2025-11-24T09:44:30.2821716Z Still deploying... +2025-11-24T09:44:33.1853131Z changed: [cassandra-tops-fowl] => {"cache_update_time": 1763976929, "cache_updated": false, "changed": true, "stderr": "", "stderr_lines": [], "stdout": "Reading package lists...\nBuilding dependency tree...\nReading state information...\nThe following additional packages will be installed:\n libopts25\nSuggested packages:\n ntp-doc\nRecommended packages:\n sntp\nThe following packages will be REMOVED:\n systemd-timesyncd\nThe following NEW packages will be installed:\n libopts25 ntp\n0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.\nNeed to get 780 kB of archives.\nAfter this operation, 2017 kB of additional disk space will be used.\nGet:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]\nGet:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]\nFetched 780 kB in 0s (27.1 MB/s)\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34820 files and directories currently installed.)\r\nRemoving systemd-timesyncd (249.11-0ubuntu3.16) ...\r\nSelecting previously unselected package libopts25:amd64.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34806 files and directories currently installed.)\r\nPreparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...\r\nUnpacking libopts25:amd64 (1:5.18.16-4) ...\r\nSelecting previously unselected package ntp.\r\nPreparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...\r\nUnpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nSetting up libopts25:amd64 (1:5.18.16-4) ...\r\nSetting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nCreated symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.\r\nCreated symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.\r\nntp-systemd-netif.service is a disabled or a static unit, not starting it.\r\nProcessing triggers for libc-bin (2.35-0ubuntu3.10) ...\r\nProcessing triggers for man-db (2.10.2-1) ...\r\nProcessing triggers for dbus (1.12.20-2ubuntu4.1) ...\r\n", "stdout_lines": ["Reading package lists...", "Building dependency tree...", "Reading state information...", "The following additional packages will be installed:", " libopts25", "Suggested packages:", " ntp-doc", "Recommended packages:", " sntp", "The following packages will be REMOVED:", " systemd-timesyncd", "The following NEW packages will be installed:", " libopts25 ntp", "0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.", "Need to get 780 kB of archives.", "After this operation, 2017 kB of additional disk space will be used.", "Get:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]", "Get:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]", "Fetched 780 kB in 0s (27.1 MB/s)", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34820 files and directories currently installed.)", "Removing systemd-timesyncd (249.11-0ubuntu3.16) ...", "Selecting previously unselected package libopts25:amd64.", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34806 files and directories currently installed.)", "Preparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...", "Unpacking libopts25:amd64 (1:5.18.16-4) ...", "Selecting previously unselected package ntp.", "Preparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...", "Unpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Setting up libopts25:amd64 (1:5.18.16-4) ...", "Setting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Created symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.", "Created symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.", "ntp-systemd-netif.service is a disabled or a static unit, not starting it.", "Processing triggers for libc-bin (2.35-0ubuntu3.10) ...", "Processing triggers for man-db (2.10.2-1) ...", "Processing triggers for dbus (1.12.20-2ubuntu4.1) ..."]} +2025-11-24T09:44:33.1899284Z changed: [cassandra-improved-teal] => {"cache_update_time": 1763976929, "cache_updated": false, "changed": true, "stderr": "", "stderr_lines": [], "stdout": "Reading package lists...\nBuilding dependency tree...\nReading state information...\nThe following additional packages will be installed:\n libopts25\nSuggested packages:\n ntp-doc\nRecommended packages:\n sntp\nThe following packages will be REMOVED:\n systemd-timesyncd\nThe following NEW packages will be installed:\n libopts25 ntp\n0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.\nNeed to get 780 kB of archives.\nAfter this operation, 2017 kB of additional disk space will be used.\nGet:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]\nGet:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]\nFetched 780 kB in 0s (21.5 MB/s)\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34820 files and directories currently installed.)\r\nRemoving systemd-timesyncd (249.11-0ubuntu3.16) ...\r\nSelecting previously unselected package libopts25:amd64.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34806 files and directories currently installed.)\r\nPreparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...\r\nUnpacking libopts25:amd64 (1:5.18.16-4) ...\r\nSelecting previously unselected package ntp.\r\nPreparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...\r\nUnpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nSetting up libopts25:amd64 (1:5.18.16-4) ...\r\nSetting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nCreated symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.\r\nCreated symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.\r\nntp-systemd-netif.service is a disabled or a static unit, not starting it.\r\nProcessing triggers for libc-bin (2.35-0ubuntu3.10) ...\r\nProcessing triggers for man-db (2.10.2-1) ...\r\nProcessing triggers for dbus (1.12.20-2ubuntu4.1) ...\r\n", "stdout_lines": ["Reading package lists...", "Building dependency tree...", "Reading state information...", "The following additional packages will be installed:", " libopts25", "Suggested packages:", " ntp-doc", "Recommended packages:", " sntp", "The following packages will be REMOVED:", " systemd-timesyncd", "The following NEW packages will be installed:", " libopts25 ntp", "0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.", "Need to get 780 kB of archives.", "After this operation, 2017 kB of additional disk space will be used.", "Get:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]", "Get:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]", "Fetched 780 kB in 0s (21.5 MB/s)", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34820 files and directories currently installed.)", "Removing systemd-timesyncd (249.11-0ubuntu3.16) ...", "Selecting previously unselected package libopts25:amd64.", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34806 files and directories currently installed.)", "Preparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...", "Unpacking libopts25:amd64 (1:5.18.16-4) ...", "Selecting previously unselected package ntp.", "Preparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...", "Unpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Setting up libopts25:amd64 (1:5.18.16-4) ...", "Setting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Created symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.", "Created symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.", "ntp-systemd-netif.service is a disabled or a static unit, not starting it.", "Processing triggers for libc-bin (2.35-0ubuntu3.10) ...", "Processing triggers for man-db (2.10.2-1) ...", "Processing triggers for dbus (1.12.20-2ubuntu4.1) ..."]} +2025-11-24T09:44:34.6534530Z changed: [cassandra-noted-manatee] => {"cache_update_time": 1763976929, "cache_updated": false, "changed": true, "stderr": "", "stderr_lines": [], "stdout": "Reading package lists...\nBuilding dependency tree...\nReading state information...\nThe following additional packages will be installed:\n libopts25\nSuggested packages:\n ntp-doc\nRecommended packages:\n sntp\nThe following packages will be REMOVED:\n systemd-timesyncd\nThe following NEW packages will be installed:\n libopts25 ntp\n0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.\nNeed to get 780 kB of archives.\nAfter this operation, 2017 kB of additional disk space will be used.\nGet:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]\nGet:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]\nFetched 780 kB in 0s (23.8 MB/s)\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34820 files and directories currently installed.)\r\nRemoving systemd-timesyncd (249.11-0ubuntu3.16) ...\r\nSelecting previously unselected package libopts25:amd64.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34806 files and directories currently installed.)\r\nPreparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...\r\nUnpacking libopts25:amd64 (1:5.18.16-4) ...\r\nSelecting previously unselected package ntp.\r\nPreparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...\r\nUnpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nSetting up libopts25:amd64 (1:5.18.16-4) ...\r\nSetting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nCreated symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.\r\nCreated symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.\r\nntp-systemd-netif.service is a disabled or a static unit, not starting it.\r\nProcessing triggers for libc-bin (2.35-0ubuntu3.10) ...\r\nProcessing triggers for man-db (2.10.2-1) ...\r\nProcessing triggers for dbus (1.12.20-2ubuntu4.1) ...\r\n", "stdout_lines": ["Reading package lists...", "Building dependency tree...", "Reading state information...", "The following additional packages will be installed:", " libopts25", "Suggested packages:", " ntp-doc", "Recommended packages:", " sntp", "The following packages will be REMOVED:", " systemd-timesyncd", "The following NEW packages will be installed:", " libopts25 ntp", "0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.", "Need to get 780 kB of archives.", "After this operation, 2017 kB of additional disk space will be used.", "Get:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]", "Get:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]", "Fetched 780 kB in 0s (23.8 MB/s)", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34820 files and directories currently installed.)", "Removing systemd-timesyncd (249.11-0ubuntu3.16) ...", "Selecting previously unselected package libopts25:amd64.", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34806 files and directories currently installed.)", "Preparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...", "Unpacking libopts25:amd64 (1:5.18.16-4) ...", "Selecting previously unselected package ntp.", "Preparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...", "Unpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Setting up libopts25:amd64 (1:5.18.16-4) ...", "Setting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Created symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.", "Created symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.", "ntp-systemd-netif.service is a disabled or a static unit, not starting it.", "Processing triggers for libc-bin (2.35-0ubuntu3.10) ...", "Processing triggers for man-db (2.10.2-1) ...", "Processing triggers for dbus (1.12.20-2ubuntu4.1) ..."]} +2025-11-24T09:44:34.6552500Z +2025-11-24T09:44:34.6552890Z TASK [Configure NTP servers] *************************************************** +2025-11-24T09:44:35.1320896Z skipping: [cassandra-improved-teal] => {"changed": false, "false_condition": "inventory_hostname != authoritative_node", "skip_reason": "Conditional result was False"} +2025-11-24T09:44:35.1322337Z changed: [cassandra-tops-fowl] => {"backup": "", "changed": true, "msg": "line added"} +2025-11-24T09:44:35.1323585Z changed: [cassandra-noted-manatee] => {"backup": "", "changed": true, "msg": "line added"} +2025-11-24T09:44:35.1324130Z +2025-11-24T09:44:35.1324486Z TASK [Restart NTP service] ***************************************************** +2025-11-24T09:44:36.0842026Z changed: [cassandra-tops-fowl] => {"changed": true, "name": "ntp", "state": "started", "status": {"ActiveEnterTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ActiveEnterTimestampMonotonic": "2862609688", "ActiveExitTimestamp": "n/a", "ActiveExitTimestampMonotonic": "0", "ActiveState": "active", "After": "-.mount systemd-journald.socket systemd-tmpfiles-setup.service sysinit.target tmp.mount basic.target network.target system.slice", "AllowIsolate": "no", "AssertResult": "yes", "AssertTimestamp": "Mon 2025-11-24 09:44:28 UTC", "AssertTimestampMonotonic": "2862583901", "Before": "shutdown.target multi-user.target", "BlockIOAccounting": "no", "BlockIOWeight": "[not set]", "CPUAccounting": "yes", "CPUAffinityFromNUMA": "no", "CPUQuotaPerSecUSec": "infinity", "CPUQuotaPeriodUSec": "infinity", "CPUSchedulingPolicy": "0", "CPUSchedulingPriority": "0", "CPUSchedulingResetOnFork": "no", "CPUShares": "[not set]", "CPUUsageNSec": "31754000", "CPUWeight": "[not set]", "CacheDirectoryMode": "0755", "CanFreeze": "yes", "CanIsolate": "no", "CanReload": "no", "CanStart": "yes", "CanStop": "yes", "CapabilityBoundingSet": "cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap_ipc_owner cap_sys_module cap_sys_rawio cap_sys_chroot cap_sys_ptrace cap_sys_pacct cap_sys_admin cap_sys_boot cap_sys_nice cap_sys_resource cap_sys_time cap_sys_tty_config cap_mknod cap_lease cap_audit_write cap_audit_control cap_setfcap cap_mac_override cap_mac_admin cap_syslog cap_wake_alarm cap_block_suspend cap_audit_read cap_perfmon cap_bpf cap_checkpoint_restore", "CleanResult": "success", "CollectMode": "inactive", "ConditionResult": "yes", "ConditionTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ConditionTimestampMonotonic": "2862583899", "ConfigurationDirectoryMode": "0755", "Conflicts": "shutdown.target systemd-timesyncd.service", "ControlGroup": "/system.slice/ntp.service", "ControlPID": "0", "CoredumpFilter": "0x33", "DefaultDependencies": "yes", "DefaultMemoryLow": "0", "DefaultMemoryMin": "0", "Delegate": "no", "Description": "Network Time Service", "DevicePolicy": "auto", "Documentation": "\"man:ntpd(8)\"", "DynamicUser": "no", "ExecMainCode": "0", "ExecMainExitTimestamp": "n/a", "ExecMainExitTimestampMonotonic": "0", "ExecMainPID": "2856", "ExecMainStartTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ExecMainStartTimestampMonotonic": "2862609659", "ExecMainStatus": "0", "ExecStart": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; ignore_errors=no ; start_time=[Mon 2025-11-24 09:44:28 UTC] ; stop_time=[Mon 2025-11-24 09:44:28 UTC] ; pid=2850 ; code=exited ; status=0 }", "ExecStartEx": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; flags= ; start_time=[Mon 2025-11-24 09:44:28 UTC] ; stop_time=[Mon 2025-11-24 09:44:28 UTC] ; pid=2850 ; code=exited ; status=0 }", "FailureAction": "none", "FileDescriptorStoreMax": "0", "FinalKillSignal": "9", "FragmentPath": "/lib/systemd/system/ntp.service", "FreezerState": "running", "GID": "[not set]", "GuessMainPID": "yes", "IOAccounting": "no", "IOReadBytes": "18446744073709551615", "IOReadOperations": "18446744073709551615", "IOSchedulingClass": "2", "IOSchedulingPriority": "4", "IOWeight": "[not set]", "IOWriteBytes": "18446744073709551615", "IOWriteOperations": "18446744073709551615", "IPAccounting": "no", "IPEgressBytes": "[no data]", "IPEgressPackets": "[no data]", "IPIngressBytes": "[no data]", "IPIngressPackets": "[no data]", "Id": "ntp.service", "IgnoreOnIsolate": "no", "IgnoreSIGPIPE": "yes", "InactiveEnterTimestamp": "n/a", "InactiveEnterTimestampMonotonic": "0", "InactiveExitTimestamp": "Mon 2025-11-24 09:44:28 UTC", "InactiveExitTimestampMonotonic": "2862586088", "InvocationID": "d8b84695a4524a19a2b36099674a2473", "JobRunningTimeoutUSec": "infinity", "JobTimeoutAction": "none", "JobTimeoutUSec": "infinity", "KeyringMode": "private", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "infinity", "LimitASSoft": "infinity", "LimitCORE": "infinity", "LimitCORESoft": "0", "LimitCPU": "infinity", "LimitCPUSoft": "infinity", "LimitDATA": "infinity", "LimitDATASoft": "infinity", "LimitFSIZE": "infinity", "LimitFSIZESoft": "infinity", "LimitLOCKS": "infinity", "LimitLOCKSSoft": "infinity", "LimitMEMLOCK": "65536", "LimitMEMLOCKSoft": "65536", "LimitMSGQUEUE": "819200", "LimitMSGQUEUESoft": "819200", "LimitNICE": "0", "LimitNICESoft": "0", "LimitNOFILE": "524288", "LimitNOFILESoft": "1024", "LimitNPROC": "15108", "LimitNPROCSoft": "15108", "LimitRSS": "infinity", "LimitRSSSoft": "infinity", "LimitRTPRIO": "0", "LimitRTPRIOSoft": "0", "LimitRTTIME": "infinity", "LimitRTTIMESoft": "infinity", "LimitSIGPENDING": "15108", "LimitSIGPENDINGSoft": "15108", "LimitSTACK": "infinity", "LimitSTACKSoft": "8388608", "LoadState": "loaded", "LockPersonality": "no", "LogLevelMax": "-1", "LogRateLimitBurst": "0", "LogRateLimitIntervalUSec": "0", "LogsDirectoryMode": "0755", "MainPID": "2856", "ManagedOOMMemoryPressure": "auto", "ManagedOOMMemoryPressureLimit": "0", "ManagedOOMPreference": "none", "ManagedOOMSwap": "auto", "MemoryAccounting": "yes", "MemoryAvailable": "infinity", "MemoryCurrent": "1478656", "MemoryDenyWriteExecute": "no", "MemoryHigh": "infinity", "MemoryLimit": "infinity", "MemoryLow": "0", "MemoryMax": "infinity", "MemoryMin": "0", "MemorySwapMax": "infinity", "MountAPIVFS": "no", "NFileDescriptorStore": "0", "NRestarts": "0", "NUMAPolicy": "n/a", "Names": "ntp.service", "NeedDaemonReload": "no", "Nice": "0", "NoNewPrivileges": "no", "NonBlocking": "no", "NotifyAccess": "none", "OOMPolicy": "stop", "OOMScoreAdjust": "0", "OnFailureJobMode": "replace", "OnSuccessJobMode": "fail", "Perpetual": "no", "PrivateDevices": "no", "PrivateIPC": "no", "PrivateMounts": "no", "PrivateNetwork": "no", "PrivateTmp": "yes", "PrivateUsers": "no", "ProcSubset": "all", "ProtectClock": "no", "ProtectControlGroups": "no", "ProtectHome": "no", "ProtectHostname": "no", "ProtectKernelLogs": "no", "ProtectKernelModules": "no", "ProtectKernelTunables": "no", "ProtectProc": "default", "ProtectSystem": "no", "RefuseManualStart": "no", "RefuseManualStop": "no", "ReloadResult": "success", "RemainAfterExit": "no", "RemoveIPC": "no", "Requires": "sysinit.target -.mount system.slice", "RequiresMountsFor": "/var/tmp", "Restart": "no", "RestartKillSignal": "15", "RestartUSec": "100ms", "RestrictNamespaces": "no", "RestrictRealtime": "no", "RestrictSUIDSGID": "no", "Result": "success", "RootDirectoryStartOnly": "no", "RuntimeDirectoryMode": "0755", "RuntimeDirectoryPreserve": "no", "RuntimeMaxUSec": "infinity", "SameProcessGroup": "no", "SecureBits": "0", "SendSIGHUP": "no", "SendSIGKILL": "yes", "Slice": "system.slice", "StandardError": "inherit", "StandardInput": "null", "StandardOutput": "journal", "StartLimitAction": "none", "StartLimitBurst": "5", "StartLimitIntervalUSec": "10s", "StartupBlockIOWeight": "[not set]", "StartupCPUShares": "[not set]", "StartupCPUWeight": "[not set]", "StartupIOWeight": "[not set]", "StateChangeTimestamp": "Mon 2025-11-24 09:44:28 UTC", "StateChangeTimestampMonotonic": "2862609688", "StateDirectoryMode": "0755", "StatusErrno": "0", "StopWhenUnneeded": "no", "SubState": "running", "SuccessAction": "none", "SyslogFacility": "3", "SyslogLevel": "6", "SyslogLevelPrefix": "yes", "SyslogPriority": "30", "SystemCallErrorNumber": "2147483646", "TTYReset": "no", "TTYVHangup": "no", "TTYVTDisallocate": "no", "TasksAccounting": "yes", "TasksCurrent": "2", "TasksMax": "4532", "TimeoutAbortUSec": "1min 30s", "TimeoutCleanUSec": "infinity", "TimeoutStartFailureMode": "terminate", "TimeoutStartUSec": "1min 30s", "TimeoutStopFailureMode": "terminate", "TimeoutStopUSec": "1min 30s", "TimerSlackNSec": "50000", "Transient": "no", "Type": "forking", "UID": "[not set]", "UMask": "0022", "UnitFilePreset": "enabled", "UnitFileState": "enabled", "UtmpMode": "init", "WantedBy": "multi-user.target", "Wants": "tmp.mount", "WatchdogSignal": "6", "WatchdogTimestamp": "n/a", "WatchdogTimestampMonotonic": "0", "WatchdogUSec": "0"}} +2025-11-24T09:44:36.0892392Z changed: [cassandra-noted-manatee] => {"changed": true, "name": "ntp", "state": "started", "status": {"ActiveEnterTimestamp": "Mon 2025-11-24 09:44:29 UTC", "ActiveEnterTimestampMonotonic": "2800333131", "ActiveExitTimestamp": "n/a", "ActiveExitTimestampMonotonic": "0", "ActiveState": "active", "After": "systemd-journald.socket systemd-tmpfiles-setup.service network.target -.mount basic.target system.slice tmp.mount sysinit.target", "AllowIsolate": "no", "AssertResult": "yes", "AssertTimestamp": "Mon 2025-11-24 09:44:29 UTC", "AssertTimestampMonotonic": "2800286650", "Before": "shutdown.target multi-user.target", "BlockIOAccounting": "no", "BlockIOWeight": "[not set]", "CPUAccounting": "yes", "CPUAffinityFromNUMA": "no", "CPUQuotaPerSecUSec": "infinity", "CPUQuotaPeriodUSec": "infinity", "CPUSchedulingPolicy": "0", "CPUSchedulingPriority": "0", "CPUSchedulingResetOnFork": "no", "CPUShares": "[not set]", "CPUUsageNSec": "50887000", "CPUWeight": "[not set]", "CacheDirectoryMode": "0755", "CanFreeze": "yes", "CanIsolate": "no", "CanReload": "no", "CanStart": "yes", "CanStop": "yes", "CapabilityBoundingSet": "cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap_ipc_owner cap_sys_module cap_sys_rawio cap_sys_chroot cap_sys_ptrace cap_sys_pacct cap_sys_admin cap_sys_boot cap_sys_nice cap_sys_resource cap_sys_time cap_sys_tty_config cap_mknod cap_lease cap_audit_write cap_audit_control cap_setfcap cap_mac_override cap_mac_admin cap_syslog cap_wake_alarm cap_block_suspend cap_audit_read cap_perfmon cap_bpf cap_checkpoint_restore", "CleanResult": "success", "CollectMode": "inactive", "ConditionResult": "yes", "ConditionTimestamp": "Mon 2025-11-24 09:44:29 UTC", "ConditionTimestampMonotonic": "2800286630", "ConfigurationDirectoryMode": "0755", "Conflicts": "systemd-timesyncd.service shutdown.target", "ControlGroup": "/system.slice/ntp.service", "ControlPID": "0", "CoredumpFilter": "0x33", "DefaultDependencies": "yes", "DefaultMemoryLow": "0", "DefaultMemoryMin": "0", "Delegate": "no", "Description": "Network Time Service", "DevicePolicy": "auto", "Documentation": "\"man:ntpd(8)\"", "DynamicUser": "no", "ExecMainCode": "0", "ExecMainExitTimestamp": "n/a", "ExecMainExitTimestampMonotonic": "0", "ExecMainPID": "2882", "ExecMainStartTimestamp": "Mon 2025-11-24 09:44:29 UTC", "ExecMainStartTimestampMonotonic": "2800333099", "ExecMainStatus": "0", "ExecStart": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; ignore_errors=no ; start_time=[Mon 2025-11-24 09:44:29 UTC] ; stop_time=[Mon 2025-11-24 09:44:29 UTC] ; pid=2876 ; code=exited ; status=0 }", "ExecStartEx": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; flags= ; start_time=[Mon 2025-11-24 09:44:29 UTC] ; stop_time=[Mon 2025-11-24 09:44:29 UTC] ; pid=2876 ; code=exited ; status=0 }", "FailureAction": "none", "FileDescriptorStoreMax": "0", "FinalKillSignal": "9", "FragmentPath": "/lib/systemd/system/ntp.service", "FreezerState": "running", "GID": "[not set]", "GuessMainPID": "yes", "IOAccounting": "no", "IOReadBytes": "18446744073709551615", "IOReadOperations": "18446744073709551615", "IOSchedulingClass": "2", "IOSchedulingPriority": "4", "IOWeight": "[not set]", "IOWriteBytes": "18446744073709551615", "IOWriteOperations": "18446744073709551615", "IPAccounting": "no", "IPEgressBytes": "[no data]", "IPEgressPackets": "[no data]", "IPIngressBytes": "[no data]", "IPIngressPackets": "[no data]", "Id": "ntp.service", "IgnoreOnIsolate": "no", "IgnoreSIGPIPE": "yes", "InactiveEnterTimestamp": "n/a", "InactiveEnterTimestampMonotonic": "0", "InactiveExitTimestamp": "Mon 2025-11-24 09:44:29 UTC", "InactiveExitTimestampMonotonic": "2800291287", "InvocationID": "43da90e38b014162b1a38f4859fb9b92", "JobRunningTimeoutUSec": "infinity", "JobTimeoutAction": "none", "JobTimeoutUSec": "infinity", "KeyringMode": "private", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "infinity", "LimitASSoft": "infinity", "LimitCORE": "infinity", "LimitCORESoft": "0", "LimitCPU": "infinity", "LimitCPUSoft": "infinity", "LimitDATA": "infinity", "LimitDATASoft": "infinity", "LimitFSIZE": "infinity", "LimitFSIZESoft": "infinity", "LimitLOCKS": "infinity", "LimitLOCKSSoft": "infinity", "LimitMEMLOCK": "65536", "LimitMEMLOCKSoft": "65536", "LimitMSGQUEUE": "819200", "LimitMSGQUEUESoft": "819200", "LimitNICE": "0", "LimitNICESoft": "0", "LimitNOFILE": "524288", "LimitNOFILESoft": "1024", "LimitNPROC": "15108", "LimitNPROCSoft": "15108", "LimitRSS": "infinity", "LimitRSSSoft": "infinity", "LimitRTPRIO": "0", "LimitRTPRIOSoft": "0", "LimitRTTIME": "infinity", "LimitRTTIMESoft": "infinity", "LimitSIGPENDING": "15108", "LimitSIGPENDINGSoft": "15108", "LimitSTACK": "infinity", "LimitSTACKSoft": "8388608", "LoadState": "loaded", "LockPersonality": "no", "LogLevelMax": "-1", "LogRateLimitBurst": "0", "LogRateLimitIntervalUSec": "0", "LogsDirectoryMode": "0755", "MainPID": "2882", "ManagedOOMMemoryPressure": "auto", "ManagedOOMMemoryPressureLimit": "0", "ManagedOOMPreference": "none", "ManagedOOMSwap": "auto", "MemoryAccounting": "yes", "MemoryAvailable": "infinity", "MemoryCurrent": "1474560", "MemoryDenyWriteExecute": "no", "MemoryHigh": "infinity", "MemoryLimit": "infinity", "MemoryLow": "0", "MemoryMax": "infinity", "MemoryMin": "0", "MemorySwapMax": "infinity", "MountAPIVFS": "no", "NFileDescriptorStore": "0", "NRestarts": "0", "NUMAPolicy": "n/a", "Names": "ntp.service", "NeedDaemonReload": "no", "Nice": "0", "NoNewPrivileges": "no", "NonBlocking": "no", "NotifyAccess": "none", "OOMPolicy": "stop", "OOMScoreAdjust": "0", "OnFailureJobMode": "replace", "OnSuccessJobMode": "fail", "Perpetual": "no", "PrivateDevices": "no", "PrivateIPC": "no", "PrivateMounts": "no", "PrivateNetwork": "no", "PrivateTmp": "yes", "PrivateUsers": "no", "ProcSubset": "all", "ProtectClock": "no", "ProtectControlGroups": "no", "ProtectHome": "no", "ProtectHostname": "no", "ProtectKernelLogs": "no", "ProtectKernelModules": "no", "ProtectKernelTunables": "no", "ProtectProc": "default", "ProtectSystem": "no", "RefuseManualStart": "no", "RefuseManualStop": "no", "ReloadResult": "success", "RemainAfterExit": "no", "RemoveIPC": "no", "Requires": "system.slice -.mount sysinit.target", "RequiresMountsFor": "/var/tmp", "Restart": "no", "RestartKillSignal": "15", "RestartUSec": "100ms", "RestrictNamespaces": "no", "RestrictRealtime": "no", "RestrictSUIDSGID": "no", "Result": "success", "RootDirectoryStartOnly": "no", "RuntimeDirectoryMode": "0755", "RuntimeDirectoryPreserve": "no", "RuntimeMaxUSec": "infinity", "SameProcessGroup": "no", "SecureBits": "0", "SendSIGHUP": "no", "SendSIGKILL": "yes", "Slice": "system.slice", "StandardError": "inherit", "StandardInput": "null", "StandardOutput": "journal", "StartLimitAction": "none", "StartLimitBurst": "5", "StartLimitIntervalUSec": "10s", "StartupBlockIOWeight": "[not set]", "StartupCPUShares": "[not set]", "StartupCPUWeight": "[not set]", "StartupIOWeight": "[not set]", "StateChangeTimestamp": "Mon 2025-11-24 09:44:29 UTC", "StateChangeTimestampMonotonic": "2800333131", "StateDirectoryMode": "0755", "StatusErrno": "0", "StopWhenUnneeded": "no", "SubState": "running", "SuccessAction": "none", "SyslogFacility": "3", "SyslogLevel": "6", "SyslogLevelPrefix": "yes", "SyslogPriority": "30", "SystemCallErrorNumber": "2147483646", "TTYReset": "no", "TTYVHangup": "no", "TTYVTDisallocate": "no", "TasksAccounting": "yes", "TasksCurrent": "2", "TasksMax": "4532", "TimeoutAbortUSec": "1min 30s", "TimeoutCleanUSec": "infinity", "TimeoutStartFailureMode": "terminate", "TimeoutStartUSec": "1min 30s", "TimeoutStopFailureMode": "terminate", "TimeoutStopUSec": "1min 30s", "TimerSlackNSec": "50000", "Transient": "no", "Type": "forking", "UID": "[not set]", "UMask": "0022", "UnitFilePreset": "enabled", "UnitFileState": "enabled", "UtmpMode": "init", "WantedBy": "multi-user.target", "Wants": "tmp.mount", "WatchdogSignal": "6", "WatchdogTimestamp": "n/a", "WatchdogTimestampMonotonic": "0", "WatchdogUSec": "0"}} +2025-11-24T09:44:36.0939536Z changed: [cassandra-improved-teal] => {"changed": true, "name": "ntp", "state": "started", "status": {"ActiveEnterTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ActiveEnterTimestampMonotonic": "2815674768", "ActiveExitTimestamp": "n/a", "ActiveExitTimestampMonotonic": "0", "ActiveState": "active", "After": "network.target systemd-tmpfiles-setup.service systemd-journald.socket basic.target -.mount tmp.mount system.slice sysinit.target", "AllowIsolate": "no", "AssertResult": "yes", "AssertTimestamp": "Mon 2025-11-24 09:44:28 UTC", "AssertTimestampMonotonic": "2815643360", "Before": "multi-user.target shutdown.target", "BlockIOAccounting": "no", "BlockIOWeight": "[not set]", "CPUAccounting": "yes", "CPUAffinityFromNUMA": "no", "CPUQuotaPerSecUSec": "infinity", "CPUQuotaPeriodUSec": "infinity", "CPUSchedulingPolicy": "0", "CPUSchedulingPriority": "0", "CPUSchedulingResetOnFork": "no", "CPUShares": "[not set]", "CPUUsageNSec": "29871000", "CPUWeight": "[not set]", "CacheDirectoryMode": "0755", "CanFreeze": "yes", "CanIsolate": "no", "CanReload": "no", "CanStart": "yes", "CanStop": "yes", "CapabilityBoundingSet": "cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap_ipc_owner cap_sys_module cap_sys_rawio cap_sys_chroot cap_sys_ptrace cap_sys_pacct cap_sys_admin cap_sys_boot cap_sys_nice cap_sys_resource cap_sys_time cap_sys_tty_config cap_mknod cap_lease cap_audit_write cap_audit_control cap_setfcap cap_mac_override cap_mac_admin cap_syslog cap_wake_alarm cap_block_suspend cap_audit_read cap_perfmon cap_bpf cap_checkpoint_restore", "CleanResult": "success", "CollectMode": "inactive", "ConditionResult": "yes", "ConditionTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ConditionTimestampMonotonic": "2815643355", "ConfigurationDirectoryMode": "0755", "Conflicts": "shutdown.target systemd-timesyncd.service", "ControlGroup": "/system.slice/ntp.service", "ControlPID": "0", "CoredumpFilter": "0x33", "DefaultDependencies": "yes", "DefaultMemoryLow": "0", "DefaultMemoryMin": "0", "Delegate": "no", "Description": "Network Time Service", "DevicePolicy": "auto", "Documentation": "\"man:ntpd(8)\"", "DynamicUser": "no", "ExecMainCode": "0", "ExecMainExitTimestamp": "n/a", "ExecMainExitTimestampMonotonic": "0", "ExecMainPID": "2878", "ExecMainStartTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ExecMainStartTimestampMonotonic": "2815674738", "ExecMainStatus": "0", "ExecStart": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; ignore_errors=no ; start_time=[Mon 2025-11-24 09:44:28 UTC] ; stop_time=[Mon 2025-11-24 09:44:28 UTC] ; pid=2872 ; code=exited ; status=0 }", "ExecStartEx": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; flags= ; start_time=[Mon 2025-11-24 09:44:28 UTC] ; stop_time=[Mon 2025-11-24 09:44:28 UTC] ; pid=2872 ; code=exited ; status=0 }", "FailureAction": "none", "FileDescriptorStoreMax": "0", "FinalKillSignal": "9", "FragmentPath": "/lib/systemd/system/ntp.service", "FreezerState": "running", "GID": "[not set]", "GuessMainPID": "yes", "IOAccounting": "no", "IOReadBytes": "18446744073709551615", "IOReadOperations": "18446744073709551615", "IOSchedulingClass": "2", "IOSchedulingPriority": "4", "IOWeight": "[not set]", "IOWriteBytes": "18446744073709551615", "IOWriteOperations": "18446744073709551615", "IPAccounting": "no", "IPEgressBytes": "[no data]", "IPEgressPackets": "[no data]", "IPIngressBytes": "[no data]", "IPIngressPackets": "[no data]", "Id": "ntp.service", "IgnoreOnIsolate": "no", "IgnoreSIGPIPE": "yes", "InactiveEnterTimestamp": "n/a", "InactiveEnterTimestampMonotonic": "0", "InactiveExitTimestamp": "Mon 2025-11-24 09:44:28 UTC", "InactiveExitTimestampMonotonic": "2815645941", "InvocationID": "8b4272561fdd44e3a16e0a442fb56b25", "JobRunningTimeoutUSec": "infinity", "JobTimeoutAction": "none", "JobTimeoutUSec": "infinity", "KeyringMode": "private", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "infinity", "LimitASSoft": "infinity", "LimitCORE": "infinity", "LimitCORESoft": "0", "LimitCPU": "infinity", "LimitCPUSoft": "infinity", "LimitDATA": "infinity", "LimitDATASoft": "infinity", "LimitFSIZE": "infinity", "LimitFSIZESoft": "infinity", "LimitLOCKS": "infinity", "LimitLOCKSSoft": "infinity", "LimitMEMLOCK": "65536", "LimitMEMLOCKSoft": "65536", "LimitMSGQUEUE": "819200", "LimitMSGQUEUESoft": "819200", "LimitNICE": "0", "LimitNICESoft": "0", "LimitNOFILE": "524288", "LimitNOFILESoft": "1024", "LimitNPROC": "15108", "LimitNPROCSoft": "15108", "LimitRSS": "infinity", "LimitRSSSoft": "infinity", "LimitRTPRIO": "0", "LimitRTPRIOSoft": "0", "LimitRTTIME": "infinity", "LimitRTTIMESoft": "infinity", "LimitSIGPENDING": "15108", "LimitSIGPENDINGSoft": "15108", "LimitSTACK": "infinity", "LimitSTACKSoft": "8388608", "LoadState": "loaded", "LockPersonality": "no", "LogLevelMax": "-1", "LogRateLimitBurst": "0", "LogRateLimitIntervalUSec": "0", "LogsDirectoryMode": "0755", "MainPID": "2878", "ManagedOOMMemoryPressure": "auto", "ManagedOOMMemoryPressureLimit": "0", "ManagedOOMPreference": "none", "ManagedOOMSwap": "auto", "MemoryAccounting": "yes", "MemoryAvailable": "infinity", "MemoryCurrent": "1466368", "MemoryDenyWriteExecute": "no", "MemoryHigh": "infinity", "MemoryLimit": "infinity", "MemoryLow": "0", "MemoryMax": "infinity", "MemoryMin": "0", "MemorySwapMax": "infinity", "MountAPIVFS": "no", "NFileDescriptorStore": "0", "NRestarts": "0", "NUMAPolicy": "n/a", "Names": "ntp.service", "NeedDaemonReload": "no", "Nice": "0", "NoNewPrivileges": "no", "NonBlocking": "no", "NotifyAccess": "none", "OOMPolicy": "stop", "OOMScoreAdjust": "0", "OnFailureJobMode": "replace", "OnSuccessJobMode": "fail", "Perpetual": "no", "PrivateDevices": "no", "PrivateIPC": "no", "PrivateMounts": "no", "PrivateNetwork": "no", "PrivateTmp": "yes", "PrivateUsers": "no", "ProcSubset": "all", "ProtectClock": "no", "ProtectControlGroups": "no", "ProtectHome": "no", "ProtectHostname": "no", "ProtectKernelLogs": "no", "ProtectKernelModules": "no", "ProtectKernelTunables": "no", "ProtectProc": "default", "ProtectSystem": "no", "RefuseManualStart": "no", "RefuseManualStop": "no", "ReloadResult": "success", "RemainAfterExit": "no", "RemoveIPC": "no", "Requires": "sysinit.target system.slice -.mount", "RequiresMountsFor": "/var/tmp", "Restart": "no", "RestartKillSignal": "15", "RestartUSec": "100ms", "RestrictNamespaces": "no", "RestrictRealtime": "no", "RestrictSUIDSGID": "no", "Result": "success", "RootDirectoryStartOnly": "no", "RuntimeDirectoryMode": "0755", "RuntimeDirectoryPreserve": "no", "RuntimeMaxUSec": "infinity", "SameProcessGroup": "no", "SecureBits": "0", "SendSIGHUP": "no", "SendSIGKILL": "yes", "Slice": "system.slice", "StandardError": "inherit", "StandardInput": "null", "StandardOutput": "journal", "StartLimitAction": "none", "StartLimitBurst": "5", "StartLimitIntervalUSec": "10s", "StartupBlockIOWeight": "[not set]", "StartupCPUShares": "[not set]", "StartupCPUWeight": "[not set]", "StartupIOWeight": "[not set]", "StateChangeTimestamp": "Mon 2025-11-24 09:44:28 UTC", "StateChangeTimestampMonotonic": "2815674768", "StateDirectoryMode": "0755", "StatusErrno": "0", "StopWhenUnneeded": "no", "SubState": "running", "SuccessAction": "none", "SyslogFacility": "3", "SyslogLevel": "6", "SyslogLevelPrefix": "yes", "SyslogPriority": "30", "SystemCallErrorNumber": "2147483646", "TTYReset": "no", "TTYVHangup": "no", "TTYVTDisallocate": "no", "TasksAccounting": "yes", "TasksCurrent": "2", "TasksMax": "4532", "TimeoutAbortUSec": "1min 30s", "TimeoutCleanUSec": "infinity", "TimeoutStartFailureMode": "terminate", "TimeoutStartUSec": "1min 30s", "TimeoutStopFailureMode": "terminate", "TimeoutStopUSec": "1min 30s", "TimerSlackNSec": "50000", "Transient": "no", "Type": "forking", "UID": "[not set]", "UMask": "0022", "UnitFilePreset": "enabled", "UnitFileState": "enabled", "UtmpMode": "init", "WantedBy": "multi-user.target", "Wants": "tmp.mount", "WatchdogSignal": "6", "WatchdogTimestamp": "n/a", "WatchdogTimestampMonotonic": "0", "WatchdogUSec": "0"}} +2025-11-24T09:44:36.0963360Z +2025-11-24T09:44:36.0963642Z TASK [Print current date] ****************************************************** +2025-11-24T09:44:36.4994824Z changed: [cassandra-tops-fowl] => {"changed": true, "cmd": ["date"], "delta": "0:00:00.004813", "end": "2025-11-24 09:44:36.081508", "msg": "", "rc": 0, "start": "2025-11-24 09:44:36.076695", "stderr": "", "stderr_lines": [], "stdout": "Mon Nov 24 09:44:36 AM UTC 2025", "stdout_lines": ["Mon Nov 24 09:44:36 AM UTC 2025"]} +2025-11-24T09:44:36.4997116Z changed: [cassandra-improved-teal] => {"changed": true, "cmd": ["date"], "delta": "0:00:00.004899", "end": "2025-11-24 09:44:35.946641", "msg": "", "rc": 0, "start": "2025-11-24 09:44:35.941742", "stderr": "", "stderr_lines": [], "stdout": "Mon Nov 24 09:44:35 AM UTC 2025", "stdout_lines": ["Mon Nov 24 09:44:35 AM UTC 2025"]} +2025-11-24T09:44:36.4999244Z changed: [cassandra-noted-manatee] => {"changed": true, "cmd": ["date"], "delta": "0:00:00.009079", "end": "2025-11-24 09:44:36.142852", "msg": "", "rc": 0, "start": "2025-11-24 09:44:36.133773", "stderr": "", "stderr_lines": [], "stdout": "Mon Nov 24 09:44:36 AM UTC 2025", "stdout_lines": ["Mon Nov 24 09:44:36 AM UTC 2025"]} +2025-11-24T09:44:36.5000384Z +2025-11-24T09:44:36.5000694Z PLAY RECAP ********************************************************************* +2025-11-24T09:44:36.5001644Z cassandra-improved-teal : ok=4 changed=3 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0 +2025-11-24T09:44:36.5002971Z cassandra-noted-manatee : ok=5 changed=4 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:44:36.5004649Z cassandra-tops-fowl : ok=5 changed=4 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:44:36.5005203Z +2025-11-24T09:44:36.5979886Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/kubernetes.yml --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip +2025-11-24T09:44:37.0935425Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:44:37.0936231Z -vvvv to see details +2025-11-24T09:44:37.0942953Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:44:37.0944038Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:44:37.3403832Z [WARNING]: While constructing a mapping from /wire-server-deploy/ansible/roles- +2025-11-24T09:44:37.3404862Z external/kubespray/roles/bootstrap-os/tasks/main.yml, line 29, column 7, found +2025-11-24T09:44:37.3405629Z a duplicate dict key (paths). Using last defined value only. +2025-11-24T09:44:39.0284956Z +2025-11-24T09:44:39.0285726Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:44:39.0286228Z +2025-11-24T09:44:39.0286575Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:44:40.2839253Z Still deploying... +2025-11-24T09:44:41.6642882Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:41.6643425Z ok: [kubenode-super-marlin] +2025-11-24T09:44:41.6643901Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:41.6644200Z +2025-11-24T09:44:41.6644466Z TASK [set_fact] **************************************************************** +2025-11-24T09:44:41.8097836Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:41.8098437Z ok: [kubenode-super-marlin] +2025-11-24T09:44:41.8098938Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:41.8099231Z +2025-11-24T09:44:41.8099560Z PLAY [Check Ansible version] *************************************************** +2025-11-24T09:44:41.8100000Z +2025-11-24T09:44:41.8100341Z TASK [Check 2.16.4 <= Ansible version < 2.17.0] ******************************** +2025-11-24T09:44:41.8494905Z ok: [adminhost] => { +2025-11-24T09:44:41.8495553Z "changed": false, +2025-11-24T09:44:41.8496145Z "msg": "All assertions passed" +2025-11-24T09:44:41.8496771Z } +2025-11-24T09:44:41.8497041Z +2025-11-24T09:44:41.8497482Z TASK [Check that python netaddr is installed] ********************************** +2025-11-24T09:44:41.9671383Z ok: [adminhost] => { +2025-11-24T09:44:41.9671874Z "changed": false, +2025-11-24T09:44:41.9672330Z "msg": "All assertions passed" +2025-11-24T09:44:41.9672972Z } +2025-11-24T09:44:41.9673164Z +2025-11-24T09:44:41.9673478Z TASK [Check that jinja is not too old (install via pip)] *********************** +2025-11-24T09:44:42.1263023Z ok: [adminhost] => { +2025-11-24T09:44:42.1263532Z "changed": false, +2025-11-24T09:44:42.1263985Z "msg": "All assertions passed" +2025-11-24T09:44:42.1264453Z } +2025-11-24T09:44:42.1264655Z +2025-11-24T09:44:42.1265008Z PLAY [Add kube-master nodes to kube_control_plane] ***************************** +2025-11-24T09:44:42.1265447Z +2025-11-24T09:44:42.1265755Z TASK [Add nodes to kube_control_plane group] *********************************** +2025-11-24T09:44:42.2407735Z changed: [kubenode-super-marlin] +2025-11-24T09:44:42.2408432Z changed: [kubenode-renewed-asp] +2025-11-24T09:44:42.2409021Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:44:42.2409388Z +2025-11-24T09:44:42.2409761Z PLAY [Add kube-node nodes to kube_node] **************************************** +2025-11-24T09:44:42.2410262Z +2025-11-24T09:44:42.2410627Z TASK [Add nodes to kube_node group] ******************************************** +2025-11-24T09:44:42.3713499Z changed: [kubenode-super-marlin] +2025-11-24T09:44:42.3714405Z changed: [kubenode-renewed-asp] +2025-11-24T09:44:42.3714963Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:44:42.3715277Z +2025-11-24T09:44:42.3715603Z PLAY [Add k8s-cluster nodes to k8s_cluster] ************************************ +2025-11-24T09:44:42.3716469Z +2025-11-24T09:44:42.3716776Z TASK [Add nodes to k8s_cluster group] ****************************************** +2025-11-24T09:44:42.4604874Z [WARNING]: Could not match supplied host pattern, ignoring: calico-rr +2025-11-24T09:44:42.4606133Z [WARNING]: Could not match supplied host pattern, ignoring: no-floating +2025-11-24T09:44:42.4614658Z [WARNING]: Could not match supplied host pattern, ignoring: bastion +2025-11-24T09:44:42.4621941Z [WARNING]: Could not match supplied host pattern, ignoring: calico_rr +2025-11-24T09:44:42.4963579Z changed: [kubenode-renewed-asp] +2025-11-24T09:44:42.4964355Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:44:42.4965292Z changed: [kubenode-super-marlin] +2025-11-24T09:44:42.4965850Z +2025-11-24T09:44:42.4966422Z PLAY [Add calico-rr nodes to calico_rr] **************************************** +2025-11-24T09:44:42.4967181Z skipping: no hosts matched +2025-11-24T09:44:42.4967469Z +2025-11-24T09:44:42.4967810Z PLAY [Add no-floating nodes to no_floating] ************************************ +2025-11-24T09:44:42.4968432Z skipping: no hosts matched +2025-11-24T09:44:42.4968685Z +2025-11-24T09:44:42.4968986Z PLAY [Install bastion ssh config] ********************************************** +2025-11-24T09:44:42.4969580Z skipping: no hosts matched +2025-11-24T09:44:42.4969833Z +2025-11-24T09:44:42.4970134Z PLAY [Bootstrap hosts for Ansible] ********************************************* +2025-11-24T09:44:42.4970547Z +2025-11-24T09:44:42.4970879Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:44:42.5833514Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:44:42.5834602Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:44:42.5835484Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:44:42.5836202Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:42.5836538Z +2025-11-24T09:44:42.5836956Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:44:42.6258588Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:42.6259205Z +2025-11-24T09:44:42.6259653Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:44:42.7094841Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:42.7095541Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:42.7096424Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:42.7096738Z +2025-11-24T09:44:42.7097099Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:44:42.7513325Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:42.7513703Z +2025-11-24T09:44:42.7514071Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:44:42.8347581Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:42.8348150Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:42.8348663Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:42.8348948Z +2025-11-24T09:44:42.8349407Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:44:42.9836152Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:42.9836857Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:42.9837504Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:42.9837856Z +2025-11-24T09:44:42.9838205Z PLAY [Gather facts] ************************************************************ +2025-11-24T09:44:42.9838667Z +2025-11-24T09:44:42.9839010Z TASK [Gather minimal facts] **************************************************** +2025-11-24T09:44:43.4578140Z ok: [kubenode-super-marlin] +2025-11-24T09:44:43.4578678Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:43.4579144Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:43.4579415Z +2025-11-24T09:44:43.4579738Z TASK [Gather necessary facts (network)] **************************************** +2025-11-24T09:44:44.1440702Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:44.1441364Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:44.1442421Z ok: [kubenode-super-marlin] +2025-11-24T09:44:44.1442989Z +2025-11-24T09:44:44.1443384Z TASK [Gather necessary facts (hardware)] *************************************** +2025-11-24T09:44:45.2820025Z ok: [kubenode-super-marlin] +2025-11-24T09:44:45.2820574Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:45.2821058Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:45.2821338Z +2025-11-24T09:44:45.2821656Z PLAY [Prepare for etcd install] ************************************************ +2025-11-24T09:44:45.2822073Z +2025-11-24T09:44:45.2823083Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:44:45.4064106Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:44:45.4065209Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:44:45.4066127Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:44:45.4066888Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:45.4067245Z +2025-11-24T09:44:45.4067683Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:44:45.4779047Z ok: [kubenode-renewed-asp -> localhost] +2025-11-24T09:44:45.4779508Z +2025-11-24T09:44:45.4779926Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:44:45.5981670Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:45.5982354Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:45.5983170Z ok: [kubenode-super-marlin] +2025-11-24T09:44:45.5983506Z +2025-11-24T09:44:45.5983976Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:44:45.6552570Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:45.6553194Z +2025-11-24T09:44:45.6553609Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:44:45.7588955Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:45.7589644Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:45.7590278Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:45.7590653Z +2025-11-24T09:44:45.7591189Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:44:46.3618431Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:46.3619135Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:46.3619784Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:46.3620506Z +2025-11-24T09:44:46.3620835Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:44:46.4559981Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:46.4560635Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:46.4561215Z ok: [kubenode-super-marlin] +2025-11-24T09:44:46.4561548Z +2025-11-24T09:44:46.4561961Z TASK [download : Prep_download | On localhost, check if passwordless root is possible] *** +2025-11-24T09:44:46.5177880Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:46.5178326Z +2025-11-24T09:44:46.5178926Z TASK [download : Prep_download | On localhost, check if user has access to the container runtime without using sudo] *** +2025-11-24T09:44:46.5735090Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:46.5735550Z +2025-11-24T09:44:46.5735990Z TASK [download : Prep_download | Parse the outputs of the previous commands] *** +2025-11-24T09:44:46.6697925Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:46.6698535Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:46.6699055Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:46.6699359Z +2025-11-24T09:44:46.6699758Z TASK [download : Prep_download | Check that local user is in group or can become root] *** +2025-11-24T09:44:46.7574514Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:46.7575218Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:46.7575843Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:46.7576196Z +2025-11-24T09:44:46.7576590Z TASK [download : Prep_download | Register docker images info] ****************** +2025-11-24T09:44:49.7124055Z ok: [kubenode-super-marlin] +2025-11-24T09:44:49.7124717Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:49.7125730Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:49.7126092Z +2025-11-24T09:44:49.7126523Z TASK [download : Prep_download | Create staging directory on remote node] ****** +2025-11-24T09:44:50.2561369Z changed: [kubenode-super-marlin] +2025-11-24T09:44:50.2561956Z changed: [kubenode-renewed-asp] +2025-11-24T09:44:50.2562457Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:44:50.2563155Z +2025-11-24T09:44:50.2563566Z TASK [download : Prep_download | Create local cache for files and images on control node] *** +2025-11-24T09:44:50.2855773Z Still deploying... +2025-11-24T09:44:50.3390710Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:50.3391363Z +2025-11-24T09:44:50.3391858Z TASK [download : Download | Get kubeadm binary and list of required images] **** +2025-11-24T09:44:50.5036468Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/prep_kubeadm_images.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:44:50.5037663Z +2025-11-24T09:44:50.5038073Z TASK [download : Prep_kubeadm_images | Check kubeadm version matches kubernetes version] *** +2025-11-24T09:44:50.9747695Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:50.9748380Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:50.9748924Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:50.9749240Z +2025-11-24T09:44:50.9749578Z TASK [download : Prep_kubeadm_images | Download kubeadm binary] **************** +2025-11-24T09:44:51.4862386Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:44:51.4863818Z +2025-11-24T09:44:51.4864216Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:44:51.9456807Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:51.9457491Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:51.9457976Z ok: [kubenode-super-marlin] +2025-11-24T09:44:51.9458251Z +2025-11-24T09:44:51.9458616Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:44:52.7428240Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:44:52.7429215Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" +2025-11-24T09:44:52.7429733Z } +2025-11-24T09:44:52.7430136Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:44:52.7430977Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" +2025-11-24T09:44:52.7431477Z } +2025-11-24T09:44:52.7431871Z ok: [kubenode-super-marlin] => { +2025-11-24T09:44:52.7432363Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" +2025-11-24T09:44:52.7433129Z } +2025-11-24T09:44:52.7433333Z +2025-11-24T09:44:52.7433660Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:44:53.5548160Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:53.5548897Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:53.5549359Z ok: [kubenode-super-marlin] +2025-11-24T09:44:53.5549624Z +2025-11-24T09:44:53.5549969Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:44:54.9077834Z ok: [kubenode-renewed-asp] +2025-11-24T09:44:54.9078524Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:44:54.9079011Z ok: [kubenode-super-marlin] +2025-11-24T09:44:54.9079287Z +2025-11-24T09:44:54.9079627Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:44:54.9511365Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:54.9511854Z +2025-11-24T09:44:54.9512395Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:44:55.0040756Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:55.0041361Z +2025-11-24T09:44:55.0041765Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:44:59.3622080Z changed: [kubenode-super-marlin] +2025-11-24T09:44:59.3623260Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:44:59.3623817Z changed: [kubenode-renewed-asp] +2025-11-24T09:44:59.3624087Z +2025-11-24T09:44:59.3624882Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:44:59.4202879Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:59.4203787Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:59.4204422Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:59.4204783Z +2025-11-24T09:44:59.4205148Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:44:59.4497827Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:59.4689965Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:59.4691147Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:59.4691508Z +2025-11-24T09:44:59.4691883Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:44:59.5117647Z skipping: [kubenode-renewed-asp] +2025-11-24T09:44:59.5118545Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:44:59.5119187Z skipping: [kubenode-super-marlin] +2025-11-24T09:44:59.5119529Z +2025-11-24T09:44:59.5119932Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:44:59.5855417Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:44:59.5856513Z +2025-11-24T09:44:59.5856908Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:00.0237253Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:00.0237974Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:00.0238560Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:00.0238872Z +2025-11-24T09:45:00.0239226Z TASK [download : Prep_kubeadm_images | Create kubeadm config] ****************** +2025-11-24T09:45:00.2874913Z Still deploying... +2025-11-24T09:45:01.0837218Z changed: [kubenode-super-marlin] +2025-11-24T09:45:01.0837905Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:01.0838407Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:01.0838723Z +2025-11-24T09:45:01.0839159Z TASK [download : Prep_kubeadm_images | Copy kubeadm binary from download dir to system path] *** +2025-11-24T09:45:01.9745683Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:01.9746643Z changed: [kubenode-super-marlin] +2025-11-24T09:45:01.9747147Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:01.9747413Z +2025-11-24T09:45:01.9754669Z TASK [download : Prep_kubeadm_images | Set kubeadm binary permissions] ********* +2025-11-24T09:45:02.2602345Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:02.2603204Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:02.2603735Z ok: [kubenode-super-marlin] +2025-11-24T09:45:02.2604018Z +2025-11-24T09:45:02.2604384Z TASK [download : Prep_kubeadm_images | Generate list of required images] ******* +2025-11-24T09:45:02.5793196Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:02.5793642Z +2025-11-24T09:45:02.5794102Z TASK [download : Prep_kubeadm_images | Parse list of images] ******************* +2025-11-24T09:45:02.6783175Z ok: [kubenode-renewed-asp] => (item=registry.k8s.io/kube-apiserver:v1.29.10) +2025-11-24T09:45:02.6784288Z ok: [kubenode-renewed-asp] => (item=registry.k8s.io/kube-controller-manager:v1.29.10) +2025-11-24T09:45:02.6785269Z ok: [kubenode-renewed-asp] => (item=registry.k8s.io/kube-scheduler:v1.29.10) +2025-11-24T09:45:02.6786137Z ok: [kubenode-renewed-asp] => (item=registry.k8s.io/kube-proxy:v1.29.10) +2025-11-24T09:45:02.6786578Z +2025-11-24T09:45:02.6786965Z TASK [download : Prep_kubeadm_images | Convert list of images to dict for later use] *** +2025-11-24T09:45:02.7428599Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:02.7429024Z +2025-11-24T09:45:02.7429424Z TASK [download : Download | Download files / images] *************************** +2025-11-24T09:45:03.4012337Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'netcheck_server', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-server', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4014939Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'netcheck_agent', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-agent', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4016645Z skipping: [kubenode-super-marlin] => (item={'key': 'netcheck_server', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-server', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4018361Z skipping: [kubenode-super-marlin] => (item={'key': 'netcheck_agent', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-agent', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4020130Z skipping: [kubenode-renewed-asp] => (item={'key': 'netcheck_server', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-server', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4021773Z skipping: [kubenode-renewed-asp] => (item={'key': 'netcheck_agent', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-agent', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4024202Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'crio', 'value': {'file': True, 'enabled': False, 'version': 'v1.29.1', 'dest': '/tmp/releases/cri-o.amd64.v1.29.1tar.gz', 'sha256': '127ca9f57c2a3ad44dde2e64e0ec94169886245dffb74c12e68eedc80756c260', 'url': 'https://storage.googleapis.com/cri-o/artifacts/cri-o.amd64.v1.29.1.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4027380Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cri_dockerd', 'value': {'file': True, 'enabled': False, 'version': '0.3.11', 'dest': '/tmp/releases/cri-dockerd-0.3.11.amd64.tar.gz', 'sha256': 'b2475988f3b86d85c7835269121171e35c92454ad5f4cd6252183b0fccd74d63', 'url': 'https://github.com/Mirantis/cri-dockerd/releases/download/v0.3.11/cri-dockerd-0.3.11.amd64.tgz', 'unarchive': True, 'unarchive_extra_opts': ['--strip=1'], 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4030507Z skipping: [kubenode-super-marlin] => (item={'key': 'crio', 'value': {'file': True, 'enabled': False, 'version': 'v1.29.1', 'dest': '/tmp/releases/cri-o.amd64.v1.29.1tar.gz', 'sha256': '127ca9f57c2a3ad44dde2e64e0ec94169886245dffb74c12e68eedc80756c260', 'url': 'https://storage.googleapis.com/cri-o/artifacts/cri-o.amd64.v1.29.1.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4033478Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'crun', 'value': {'file': True, 'enabled': False, 'version': '1.14.4', 'dest': '/tmp/releases/crun-1.14.4-amd64', 'sha256': '4f170aaa10d2ef02560cfb60b67ddfa1a83b1b4f7018227e9cb23a6af3955ec1', 'url': 'https://github.com/containers/crun/releases/download/1.14.4/crun-1.14.4-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4036376Z skipping: [kubenode-super-marlin] => (item={'key': 'cri_dockerd', 'value': {'file': True, 'enabled': False, 'version': '0.3.11', 'dest': '/tmp/releases/cri-dockerd-0.3.11.amd64.tar.gz', 'sha256': 'b2475988f3b86d85c7835269121171e35c92454ad5f4cd6252183b0fccd74d63', 'url': 'https://github.com/Mirantis/cri-dockerd/releases/download/v0.3.11/cri-dockerd-0.3.11.amd64.tgz', 'unarchive': True, 'unarchive_extra_opts': ['--strip=1'], 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4039252Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'youki', 'value': {'file': True, 'enabled': False, 'version': '0.1.0', 'dest': '/tmp/releases/youki_0_1_0_linux.tar.gz', 'sha256': 'f00677e9674215b44f140f0c0f4b79b0001c72c073d2c5bb514b7a9dcb13bdbc', 'url': 'https://github.com/containers/youki/releases/download/v0.1.0/youki_0_1_0_linux.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4042096Z skipping: [kubenode-super-marlin] => (item={'key': 'crun', 'value': {'file': True, 'enabled': False, 'version': '1.14.4', 'dest': '/tmp/releases/crun-1.14.4-amd64', 'sha256': '4f170aaa10d2ef02560cfb60b67ddfa1a83b1b4f7018227e9cb23a6af3955ec1', 'url': 'https://github.com/containers/crun/releases/download/1.14.4/crun-1.14.4-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4044885Z skipping: [kubenode-super-marlin] => (item={'key': 'youki', 'value': {'file': True, 'enabled': False, 'version': '0.1.0', 'dest': '/tmp/releases/youki_0_1_0_linux.tar.gz', 'sha256': 'f00677e9674215b44f140f0c0f4b79b0001c72c073d2c5bb514b7a9dcb13bdbc', 'url': 'https://github.com/containers/youki/releases/download/v0.1.0/youki_0_1_0_linux.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4047822Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kata_containers', 'value': {'enabled': False, 'file': True, 'version': '3.1.3', 'dest': '/tmp/releases/kata-static-3.1.3-amd64.tar.xz', 'sha256': '266c906222c85b67867dea3c9bdb58c6da0b656be3a29f9e0bed227c939f3f26', 'url': 'https://github.com/kata-containers/kata-containers/releases/download/3.1.3/kata-static-3.1.3-x86_64.tar.xz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4050862Z skipping: [kubenode-super-marlin] => (item={'key': 'kata_containers', 'value': {'enabled': False, 'file': True, 'version': '3.1.3', 'dest': '/tmp/releases/kata-static-3.1.3-amd64.tar.xz', 'sha256': '266c906222c85b67867dea3c9bdb58c6da0b656be3a29f9e0bed227c939f3f26', 'url': 'https://github.com/kata-containers/kata-containers/releases/download/3.1.3/kata-static-3.1.3-x86_64.tar.xz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4053926Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'gvisor_runsc', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'sha256': '3b949f7fab2c7d3d75df09fe5f170b46951e62b8833dcc4abad0a4d6c12f41f3', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/runsc', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4056693Z skipping: [kubenode-renewed-asp] => (item={'key': 'crio', 'value': {'file': True, 'enabled': False, 'version': 'v1.29.1', 'dest': '/tmp/releases/cri-o.amd64.v1.29.1tar.gz', 'sha256': '127ca9f57c2a3ad44dde2e64e0ec94169886245dffb74c12e68eedc80756c260', 'url': 'https://storage.googleapis.com/cri-o/artifacts/cri-o.amd64.v1.29.1.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4059510Z skipping: [kubenode-super-marlin] => (item={'key': 'gvisor_runsc', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'sha256': '3b949f7fab2c7d3d75df09fe5f170b46951e62b8833dcc4abad0a4d6c12f41f3', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/runsc', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4062540Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'gvisor_containerd_shim', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'sha256': '11a1b482e0ed6c72ea6ca72692e1cb2d0794214d142be5389e30517a96b157dc', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/containerd-shim-runsc-v1', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4065938Z skipping: [kubenode-renewed-asp] => (item={'key': 'cri_dockerd', 'value': {'file': True, 'enabled': False, 'version': '0.3.11', 'dest': '/tmp/releases/cri-dockerd-0.3.11.amd64.tar.gz', 'sha256': 'b2475988f3b86d85c7835269121171e35c92454ad5f4cd6252183b0fccd74d63', 'url': 'https://github.com/Mirantis/cri-dockerd/releases/download/v0.3.11/cri-dockerd-0.3.11.amd64.tgz', 'unarchive': True, 'unarchive_extra_opts': ['--strip=1'], 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.4069097Z skipping: [kubenode-super-marlin] => (item={'key': 'gvisor_containerd_shim', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'sha256': '11a1b482e0ed6c72ea6ca72692e1cb2d0794214d142be5389e30517a96b157dc', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/containerd-shim-runsc-v1', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5857283Z skipping: [kubenode-renewed-asp] => (item={'key': 'crun', 'value': {'file': True, 'enabled': False, 'version': '1.14.4', 'dest': '/tmp/releases/crun-1.14.4-amd64', 'sha256': '4f170aaa10d2ef02560cfb60b67ddfa1a83b1b4f7018227e9cb23a6af3955ec1', 'url': 'https://github.com/containers/crun/releases/download/1.14.4/crun-1.14.4-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5861170Z skipping: [kubenode-renewed-asp] => (item={'key': 'youki', 'value': {'file': True, 'enabled': False, 'version': '0.1.0', 'dest': '/tmp/releases/youki_0_1_0_linux.tar.gz', 'sha256': 'f00677e9674215b44f140f0c0f4b79b0001c72c073d2c5bb514b7a9dcb13bdbc', 'url': 'https://github.com/containers/youki/releases/download/v0.1.0/youki_0_1_0_linux.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5864885Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'skopeo', 'value': {'file': True, 'enabled': False, 'version': 'v1.15.0', 'dest': '/tmp/releases/skopeo-v1.15.0-amd64', 'sha256': '3cdbcde0163abb4c942f62d0302479d5aa4d31c5970d712841cf5d5f76edc594', 'url': 'https://github.com/lework/skopeo-binary/releases/download/v1.15.0/skopeo-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.5868199Z skipping: [kubenode-super-marlin] => (item={'key': 'skopeo', 'value': {'file': True, 'enabled': False, 'version': 'v1.15.0', 'dest': '/tmp/releases/skopeo-v1.15.0-amd64', 'sha256': '3cdbcde0163abb4c942f62d0302479d5aa4d31c5970d712841cf5d5f76edc594', 'url': 'https://github.com/lework/skopeo-binary/releases/download/v1.15.0/skopeo-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.5870882Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/cilium', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5872443Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/cilium', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5874202Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_operator', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/operator', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5876418Z skipping: [kubenode-renewed-asp] => (item={'key': 'kata_containers', 'value': {'enabled': False, 'file': True, 'version': '3.1.3', 'dest': '/tmp/releases/kata-static-3.1.3-amd64.tar.xz', 'sha256': '266c906222c85b67867dea3c9bdb58c6da0b656be3a29f9e0bed227c939f3f26', 'url': 'https://github.com/kata-containers/kata-containers/releases/download/3.1.3/kata-static-3.1.3-x86_64.tar.xz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5878593Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_operator', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/operator', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5880221Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_relay', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-relay', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5881668Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_relay', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-relay', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5883289Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_certgen', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/certgen', 'tag': 'v0.1.8', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5884873Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_certgen', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/certgen', 'tag': 'v0.1.8', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5887038Z skipping: [kubenode-renewed-asp] => (item={'key': 'gvisor_runsc', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'sha256': '3b949f7fab2c7d3d75df09fe5f170b46951e62b8833dcc4abad0a4d6c12f41f3', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/runsc', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5890051Z skipping: [kubenode-renewed-asp] => (item={'key': 'gvisor_containerd_shim', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'sha256': '11a1b482e0ed6c72ea6ca72692e1cb2d0794214d142be5389e30517a96b157dc', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/containerd-shim-runsc-v1', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5893234Z skipping: [kubenode-renewed-asp] => (item={'key': 'skopeo', 'value': {'file': True, 'enabled': False, 'version': 'v1.15.0', 'dest': '/tmp/releases/skopeo-v1.15.0-amd64', 'sha256': '3cdbcde0163abb4c942f62d0302479d5aa4d31c5970d712841cf5d5f76edc594', 'url': 'https://github.com/lework/skopeo-binary/releases/download/v1.15.0/skopeo-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.5895285Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/cilium', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5896714Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_operator', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/operator', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5898108Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_relay', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-relay', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5899506Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_certgen', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/certgen', 'tag': 'v0.1.8', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5900871Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_ui', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5902298Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_ui_backend', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui-backend', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5903971Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_envoy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/envoyproxy/envoy', 'tag': 'v1.22.5', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5906256Z skipping: [kubenode-renewed-asp] => (item={'key': 'ciliumcli', 'value': {'enabled': False, 'file': True, 'version': 'v0.16.0', 'dest': '/tmp/releases/cilium-v0.16.0-amd64.tar.gz', 'sha256': 'da98675f961833d4ffd68b1046d907b228a7d394ded2abd70a50b20eaca171c4', 'url': 'https://github.com/cilium/cilium-cli/releases/download/v0.16.0/cilium-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5908426Z skipping: [kubenode-renewed-asp] => (item={'key': 'multus', 'value': {'enabled': False, 'container': True, 'repo': 'ghcr.io/k8snetworkplumbingwg/multus-cni', 'tag': 'v3.8', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5909917Z skipping: [kubenode-renewed-asp] => (item={'key': 'flannel', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel', 'tag': 'v0.22.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5911325Z skipping: [kubenode-renewed-asp] => (item={'key': 'flannel_init', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel-cni-plugin', 'tag': 'v1.1.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5912959Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_ui', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.5914394Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_ui', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8393000Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_ui_backend', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui-backend', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8394962Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_ui_backend', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui-backend', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8396957Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_envoy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/envoyproxy/envoy', 'tag': 'v1.22.5', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8399241Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_envoy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/envoyproxy/envoy', 'tag': 'v1.22.5', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8402159Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'ciliumcli', 'value': {'enabled': False, 'file': True, 'version': 'v0.16.0', 'dest': '/tmp/releases/cilium-v0.16.0-amd64.tar.gz', 'sha256': 'da98675f961833d4ffd68b1046d907b228a7d394ded2abd70a50b20eaca171c4', 'url': 'https://github.com/cilium/cilium-cli/releases/download/v0.16.0/cilium-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8405660Z skipping: [kubenode-super-marlin] => (item={'key': 'ciliumcli', 'value': {'enabled': False, 'file': True, 'version': 'v0.16.0', 'dest': '/tmp/releases/cilium-v0.16.0-amd64.tar.gz', 'sha256': 'da98675f961833d4ffd68b1046d907b228a7d394ded2abd70a50b20eaca171c4', 'url': 'https://github.com/cilium/cilium-cli/releases/download/v0.16.0/cilium-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8408207Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'multus', 'value': {'enabled': False, 'container': True, 'repo': 'ghcr.io/k8snetworkplumbingwg/multus-cni', 'tag': 'v3.8', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8409698Z skipping: [kubenode-super-marlin] => (item={'key': 'multus', 'value': {'enabled': False, 'container': True, 'repo': 'ghcr.io/k8snetworkplumbingwg/multus-cni', 'tag': 'v3.8', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8411607Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'flannel', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel', 'tag': 'v0.22.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8413203Z skipping: [kubenode-super-marlin] => (item={'key': 'flannel', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel', 'tag': 'v0.22.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8414696Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'flannel_init', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel-cni-plugin', 'tag': 'v1.1.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8416441Z skipping: [kubenode-super-marlin] => (item={'key': 'flannel_init', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel-cni-plugin', 'tag': 'v1.1.2', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8417862Z skipping: [kubenode-renewed-asp] => (item={'key': 'calico_typha', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/typha', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8419211Z skipping: [kubenode-renewed-asp] => (item={'key': 'calico_apiserver', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/apiserver', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8420608Z skipping: [kubenode-renewed-asp] => (item={'key': 'weave_kube', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-kube', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8422165Z skipping: [kubenode-renewed-asp] => (item={'key': 'weave_npc', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-npc', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8423638Z skipping: [kubenode-renewed-asp] => (item={'key': 'kube_ovn', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubeovn/kube-ovn', 'tag': 'v1.11.5', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8424983Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'calico_typha', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/typha', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8426512Z skipping: [kubenode-renewed-asp] => (item={'key': 'kube_router', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/cloudnativelabs/kube-router', 'tag': 'v2.0.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8427919Z skipping: [kubenode-super-marlin] => (item={'key': 'calico_typha', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/typha', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8429314Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'calico_apiserver', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/apiserver', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8430723Z skipping: [kubenode-super-marlin] => (item={'key': 'calico_apiserver', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/apiserver', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8432132Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'weave_kube', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-kube', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8433661Z skipping: [kubenode-super-marlin] => (item={'key': 'weave_kube', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-kube', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8435236Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'weave_npc', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-npc', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8436628Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kube_ovn', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubeovn/kube-ovn', 'tag': 'v1.11.5', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8437994Z skipping: [kubenode-super-marlin] => (item={'key': 'weave_npc', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-npc', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8439425Z skipping: [kubenode-super-marlin] => (item={'key': 'kube_ovn', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubeovn/kube-ovn', 'tag': 'v1.11.5', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8440842Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kube_router', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/cloudnativelabs/kube-router', 'tag': 'v2.0.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8442320Z skipping: [kubenode-super-marlin] => (item={'key': 'kube_router', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/cloudnativelabs/kube-router', 'tag': 'v2.0.0', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:03.8443833Z skipping: [kubenode-renewed-asp] => (item={'key': 'haproxy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/haproxy', 'tag': '2.8.2-alpine', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.8445203Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'haproxy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/haproxy', 'tag': '2.8.2-alpine', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.8446591Z skipping: [kubenode-super-marlin] => (item={'key': 'haproxy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/haproxy', 'tag': '2.8.2-alpine', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.8448591Z skipping: [kubenode-renewed-asp] => (item={'key': 'helm', 'value': {'enabled': False, 'file': True, 'version': 'v3.14.4', 'dest': '/tmp/releases/helm-v3.14.4/helm-v3.14.4-linux-amd64.tar.gz', 'sha256': 'a5844ef2c38ef6ddf3b5a8f7d91e7e0e8ebc39a38bb3fc8013d629c1ef29c259', 'url': 'https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.8451378Z skipping: [kubenode-renewed-asp] => (item={'key': 'krew', 'value': {'enabled': False, 'file': True, 'version': 'v0.4.4', 'dest': '/tmp/releases/krew-linux_amd64.tar.gz', 'sha256': 'e471396b0ed4f2be092b4854cc030dfcbb12b86197972e7bef0cb89ad9c72477', 'url': 'https://github.com/kubernetes-sigs/krew/releases/download/v0.4.4/krew-linux_amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.9452008Z skipping: [kubenode-renewed-asp] => (item={'key': 'registry', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/registry', 'tag': '2.8.1', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9454226Z skipping: [kubenode-renewed-asp] => (item={'key': 'metrics_server', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/metrics-server/metrics-server', 'tag': 'v0.7.2', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.9456327Z skipping: [kubenode-renewed-asp] => (item={'key': 'local_volume_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/local-volume-provisioner', 'tag': 'v2.5.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9458298Z skipping: [kubenode-renewed-asp] => (item={'key': 'cephfs_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/cephfs-provisioner', 'tag': 'v2.1.0-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9460580Z skipping: [kubenode-renewed-asp] => (item={'key': 'rbd_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/rbd-provisioner', 'tag': 'v2.1.1-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9462286Z skipping: [kubenode-renewed-asp] => (item={'key': 'local_path_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/rancher/local-path-provisioner', 'tag': 'v0.0.24', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9464731Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'helm', 'value': {'enabled': False, 'file': True, 'version': 'v3.14.4', 'dest': '/tmp/releases/helm-v3.14.4/helm-v3.14.4-linux-amd64.tar.gz', 'sha256': 'a5844ef2c38ef6ddf3b5a8f7d91e7e0e8ebc39a38bb3fc8013d629c1ef29c259', 'url': 'https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.9467164Z skipping: [kubenode-renewed-asp] => (item={'key': 'ingress_nginx_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/ingress-nginx/controller', 'tag': 'v1.12.1', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9469385Z skipping: [kubenode-super-marlin] => (item={'key': 'helm', 'value': {'enabled': False, 'file': True, 'version': 'v3.14.4', 'dest': '/tmp/releases/helm-v3.14.4/helm-v3.14.4-linux-amd64.tar.gz', 'sha256': 'a5844ef2c38ef6ddf3b5a8f7d91e7e0e8ebc39a38bb3fc8013d629c1ef29c259', 'url': 'https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.9472227Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'krew', 'value': {'enabled': False, 'file': True, 'version': 'v0.4.4', 'dest': '/tmp/releases/krew-linux_amd64.tar.gz', 'sha256': 'e471396b0ed4f2be092b4854cc030dfcbb12b86197972e7bef0cb89ad9c72477', 'url': 'https://github.com/kubernetes-sigs/krew/releases/download/v0.4.4/krew-linux_amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.9474619Z skipping: [kubenode-renewed-asp] => (item={'key': 'ingress_alb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-alb-ingress-controller', 'tag': 'v1.1.9', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9476901Z skipping: [kubenode-super-marlin] => (item={'key': 'krew', 'value': {'enabled': False, 'file': True, 'version': 'v0.4.4', 'dest': '/tmp/releases/krew-linux_amd64.tar.gz', 'sha256': 'e471396b0ed4f2be092b4854cc030dfcbb12b86197972e7bef0cb89ad9c72477', 'url': 'https://github.com/kubernetes-sigs/krew/releases/download/v0.4.4/krew-linux_amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.9479175Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'registry', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/registry', 'tag': '2.8.1', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9480722Z skipping: [kubenode-renewed-asp] => (item={'key': 'cert_manager_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-controller', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9482231Z skipping: [kubenode-super-marlin] => (item={'key': 'registry', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/registry', 'tag': '2.8.1', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9483852Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'metrics_server', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/metrics-server/metrics-server', 'tag': 'v0.7.2', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.9485541Z skipping: [kubenode-super-marlin] => (item={'key': 'metrics_server', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/metrics-server/metrics-server', 'tag': 'v0.7.2', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:03.9487288Z skipping: [kubenode-renewed-asp] => (item={'key': 'cert_manager_cainjector', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-cainjector', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9488995Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'local_volume_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/local-volume-provisioner', 'tag': 'v2.5.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9490701Z skipping: [kubenode-super-marlin] => (item={'key': 'local_volume_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/local-volume-provisioner', 'tag': 'v2.5.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9492421Z skipping: [kubenode-renewed-asp] => (item={'key': 'cert_manager_webhook', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-webhook', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9494166Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cephfs_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/cephfs-provisioner', 'tag': 'v2.1.0-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9495835Z skipping: [kubenode-super-marlin] => (item={'key': 'cephfs_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/cephfs-provisioner', 'tag': 'v2.1.0-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9497506Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'rbd_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/rbd-provisioner', 'tag': 'v2.1.1-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9499077Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_attacher', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-attacher', 'tag': 'v3.3.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9500643Z skipping: [kubenode-super-marlin] => (item={'key': 'rbd_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/rbd-provisioner', 'tag': 'v2.1.1-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9502335Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'local_path_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/rancher/local-path-provisioner', 'tag': 'v0.0.24', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9504095Z skipping: [kubenode-super-marlin] => (item={'key': 'local_path_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/rancher/local-path-provisioner', 'tag': 'v0.0.24', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9505715Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-provisioner', 'tag': 'v3.0.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9507347Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'ingress_nginx_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/ingress-nginx/controller', 'tag': 'v1.12.1', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9508940Z skipping: [kubenode-super-marlin] => (item={'key': 'ingress_nginx_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/ingress-nginx/controller', 'tag': 'v1.12.1', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:03.9510530Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'ingress_alb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-alb-ingress-controller', 'tag': 'v1.1.9', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0331078Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_snapshotter', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-snapshotter', 'tag': 'v5.0.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0333199Z skipping: [kubenode-super-marlin] => (item={'key': 'ingress_alb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-alb-ingress-controller', 'tag': 'v1.1.9', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0334901Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cert_manager_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-controller', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0336683Z skipping: [kubenode-renewed-asp] => (item={'key': 'snapshot_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/snapshot-controller', 'tag': 'v7.0.2', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0338300Z skipping: [kubenode-super-marlin] => (item={'key': 'cert_manager_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-controller', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0339920Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cert_manager_cainjector', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-cainjector', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0341538Z skipping: [kubenode-super-marlin] => (item={'key': 'cert_manager_cainjector', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-cainjector', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0343212Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cert_manager_webhook', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-webhook', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0344702Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_resizer', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-resizer', 'tag': 'v1.3.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0346170Z skipping: [kubenode-super-marlin] => (item={'key': 'cert_manager_webhook', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-webhook', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0347795Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_attacher', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-attacher', 'tag': 'v3.3.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0349362Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_node_driver_registrar', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-node-driver-registrar', 'tag': 'v2.4.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0350930Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_attacher', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-attacher', 'tag': 'v3.3.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0352442Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-provisioner', 'tag': 'v3.0.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0366479Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-provisioner', 'tag': 'v3.0.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0374746Z skipping: [kubenode-renewed-asp] => (item={'key': 'cinder_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/provider-os/cinder-csi-plugin', 'tag': 'v1.29.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0376505Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_snapshotter', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-snapshotter', 'tag': 'v5.0.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0380182Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_snapshotter', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-snapshotter', 'tag': 'v5.0.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0382054Z skipping: [kubenode-renewed-asp] => (item={'key': 'aws_ebs_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-ebs-csi-driver', 'tag': 'v0.5.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0386787Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'snapshot_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/snapshot-controller', 'tag': 'v7.0.2', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0388448Z skipping: [kubenode-super-marlin] => (item={'key': 'snapshot_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/snapshot-controller', 'tag': 'v7.0.2', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0389956Z skipping: [kubenode-renewed-asp] => (item={'key': 'dashboard', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/dashboard', 'tag': 'v2.7.0', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.0391435Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_resizer', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-resizer', 'tag': 'v1.3.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0392998Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_resizer', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-resizer', 'tag': 'v1.3.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0395107Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_node_driver_registrar', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-node-driver-registrar', 'tag': 'v2.4.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0397074Z skipping: [kubenode-renewed-asp] => (item={'key': 'dashboard_metrics_scrapper', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/metrics-scraper', 'tag': 'v1.0.8', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.0399237Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_node_driver_registrar', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-node-driver-registrar', 'tag': 'v2.4.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0401255Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cinder_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/provider-os/cinder-csi-plugin', 'tag': 'v1.29.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0404913Z skipping: [kubenode-renewed-asp] => (item={'key': 'metallb_speaker', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/speaker', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.0406448Z skipping: [kubenode-super-marlin] => (item={'key': 'cinder_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/provider-os/cinder-csi-plugin', 'tag': 'v1.29.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0408026Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'aws_ebs_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-ebs-csi-driver', 'tag': 'v0.5.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0409702Z skipping: [kubenode-renewed-asp] => (item={'key': 'metallb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/controller', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.0411211Z skipping: [kubenode-super-marlin] => (item={'key': 'aws_ebs_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-ebs-csi-driver', 'tag': 'v0.5.0', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.0412822Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'dashboard', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/dashboard', 'tag': 'v2.7.0', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.0414996Z skipping: [kubenode-renewed-asp] => (item={'key': 'yq', 'value': {'enabled': False, 'file': True, 'version': 'v4.42.1', 'dest': '/tmp/releases/yq-v4.42.1-amd64', 'sha256': '1a95960dddd426321354d58d2beac457717f7c49a9ec0806749a5a9e400eb45e', 'url': 'https://github.com/mikefarah/yq/releases/download/v4.42.1/yq_linux_amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3702287Z skipping: [kubenode-super-marlin] => (item={'key': 'dashboard', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/dashboard', 'tag': 'v2.7.0', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3704359Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'dashboard_metrics_scrapper', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/metrics-scraper', 'tag': 'v1.0.8', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3706112Z skipping: [kubenode-super-marlin] => (item={'key': 'dashboard_metrics_scrapper', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/metrics-scraper', 'tag': 'v1.0.8', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3707743Z skipping: [kubenode-renewed-asp] => (item={'key': 'kubeadm_kube-apiserver', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-apiserver', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3709216Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'metallb_speaker', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/speaker', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3710978Z skipping: [kubenode-super-marlin] => (item={'key': 'metallb_speaker', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/speaker', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3712490Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'metallb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/controller', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3714309Z skipping: [kubenode-super-marlin] => (item={'key': 'metallb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/controller', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3715850Z skipping: [kubenode-renewed-asp] => (item={'key': 'kubeadm_kube-controller-manager', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-controller-manager', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3718021Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'yq', 'value': {'enabled': False, 'file': True, 'version': 'v4.42.1', 'dest': '/tmp/releases/yq-v4.42.1-amd64', 'sha256': '1a95960dddd426321354d58d2beac457717f7c49a9ec0806749a5a9e400eb45e', 'url': 'https://github.com/mikefarah/yq/releases/download/v4.42.1/yq_linux_amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3720874Z skipping: [kubenode-super-marlin] => (item={'key': 'yq', 'value': {'enabled': False, 'file': True, 'version': 'v4.42.1', 'dest': '/tmp/releases/yq-v4.42.1-amd64', 'sha256': '1a95960dddd426321354d58d2beac457717f7c49a9ec0806749a5a9e400eb45e', 'url': 'https://github.com/mikefarah/yq/releases/download/v4.42.1/yq_linux_amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3723053Z skipping: [kubenode-renewed-asp] => (item={'key': 'kubeadm_kube-scheduler', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-scheduler', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3724525Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kubeadm_kube-apiserver', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-apiserver', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3726075Z skipping: [kubenode-super-marlin] => (item={'key': 'kubeadm_kube-apiserver', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-apiserver', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3727476Z skipping: [kubenode-renewed-asp] => (item={'key': 'kubeadm_kube-proxy', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-proxy', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3728935Z skipping: [kubenode-super-marlin] => (item={'key': 'kubeadm_kube-controller-manager', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-controller-manager', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3730511Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kubeadm_kube-controller-manager', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-controller-manager', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3732028Z skipping: [kubenode-super-marlin] => (item={'key': 'kubeadm_kube-scheduler', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-scheduler', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3733554Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kubeadm_kube-scheduler', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-scheduler', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3734948Z skipping: [kubenode-super-marlin] => (item={'key': 'kubeadm_kube-proxy', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-proxy', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3736393Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kubeadm_kube-proxy', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-proxy', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) +2025-11-24T09:45:04.3739084Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'etcd', 'value': {'container': False, 'file': True, 'enabled': True, 'version': 'v3.5.16', 'dest': '/tmp/releases/etcd-v3.5.16-linux-amd64.tar.gz', 'repo': 'quay.io/coreos/etcd', 'tag': 'v3.5.16', 'sha256': 'b414b27a5ad05f7cb01395c447c85d3227e3fb1c176e51757a283b817f645ccc', 'url': 'http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['etcd']}}) +2025-11-24T09:45:04.3743063Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'cni', 'value': {'enabled': True, 'file': True, 'version': 'v1.3.0', 'dest': '/tmp/releases/cni-plugins-linux-amd64-v1.3.0.tgz', 'sha256': '754a71ed60a4bd08726c3af705a7d55ee3df03122b12e389fdba4bea35d7dd7e', 'url': 'http://10.1.1.1:8080/binaries/cni-plugins-linux-amd64-v1.3.0.tgz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.3746860Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'kubeadm', 'value': {'enabled': True, 'file': True, 'version': 'v1.29.10', 'dest': '/tmp/releases/kubeadm-v1.29.10-amd64', 'sha256': '9098c908e0f3a601e8bef9b2cdb4a9777e18204595a6542be58b3928c7b51440', 'url': 'http://10.1.1.1:8080/binaries/kubeadm', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.3750312Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'kubelet', 'value': {'enabled': True, 'file': True, 'version': 'v1.29.10', 'dest': '/tmp/releases/kubelet-v1.29.10-amd64', 'sha256': '4cc094062cd1cff49ca551208635669ab86e3982d38e8d0a77ab833a941ff708', 'url': 'http://10.1.1.1:8080/binaries/kubelet', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.3754036Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'kubectl', 'value': {'enabled': True, 'file': True, 'version': 'v1.29.10', 'dest': '/tmp/releases/kubectl-v1.29.10-amd64', 'sha256': '24f2f09a635d36b2ce36eaebf191326e2b25097eec541a3e47fee6726ef06cef', 'url': 'http://10.1.1.1:8080/binaries/kubectl', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.3757637Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'crictl', 'value': {'file': True, 'enabled': True, 'version': 'v1.29.0', 'dest': '/tmp/releases/crictl-v1.29.0-linux-amd64.tar.gz', 'sha256': 'd16a1ffb3938f5a19d5c8f45d363bd091ef89c0bc4d44ad16b933eede32fdcbb', 'url': 'http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6188063Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'runc', 'value': {'file': True, 'enabled': True, 'version': 'v1.1.14', 'dest': '/tmp/releases/runc-v1.1.14.amd64', 'sha256': 'a83c0804ebc16826829e7925626c4793da89a9b225bbcc468f2b338ea9f8e8a8', 'url': 'http://10.1.1.1:8080/binaries/runc.amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6192215Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'containerd', 'value': {'enabled': True, 'file': True, 'version': '1.7.22', 'dest': '/tmp/releases/containerd-1.7.22-linux-amd64.tar.gz', 'sha256': 'f8b2d935d1f86003f4e0c1af3b9f0d2820bacabe6dc9f562785b74af24c5e468', 'url': 'http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6196466Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'nerdctl', 'value': {'file': True, 'enabled': True, 'version': '1.7.7', 'dest': '/tmp/releases/nerdctl-1.7.7-linux-amd64.tar.gz', 'sha256': '298bb95aee485b24d566115ef7e4e90951dd232447b05de5646a652a23db70a9', 'url': 'http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6200851Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calicoctl', 'value': {'enabled': True, 'file': True, 'version': 'v3.27.4', 'dest': '/tmp/releases/calicoctl-v3.27.4-amd64', 'sha256': '84f2bd29ef7b06e85a2caf0b6c6e0d3da5ab5264d46b360e6baaf49bbc3b957d', 'url': 'http://10.1.1.1:8080/binaries/calicoctl-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6204358Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_node', 'value': {'enabled': True, 'container': True, 'repo': 'quay.io/calico/node', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6207183Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_cni', 'value': {'enabled': True, 'container': True, 'repo': 'quay.io/calico/cni', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6209936Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_flexvol', 'value': {'enabled': True, 'container': True, 'repo': 'quay.io/calico/pod2daemon-flexvol', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6212945Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_policy', 'value': {'enabled': True, 'container': True, 'repo': 'quay.io/calico/kube-controllers', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6216339Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_crds', 'value': {'file': True, 'enabled': True, 'version': 'v3.27.4', 'dest': '/tmp/releases/calico-v3.27.4-kdd-crds/v3.27.4.tar.gz', 'sha256': '5f6ac510bd6bd8c14542afe91f7dbcf2a846dba02ae3152a3b07a1bfdea96078', 'url': 'http://10.1.1.1:8080/binaries/v3.27.4.tar.gz', 'unarchive': True, 'unarchive_extra_opts': ['--strip=3', '--wildcards', '*/libcalico-go/config/crd/'], 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.6219783Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'pod_infra', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/pause', 'tag': '3.9', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6222252Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'kube-vip', 'value': {'enabled': True, 'container': True, 'repo': 'ghcr.io/kube-vip/kube-vip', 'tag': 'v0.8.0', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.6224858Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'nginx', 'value': {'enabled': True, 'container': True, 'repo': 'docker.io/library/nginx', 'tag': '1.25.4-alpine', 'sha256': '', 'groups': ['kube_node']}}) +2025-11-24T09:45:04.6227336Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'coredns', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/coredns/coredns', 'tag': 'v1.11.4', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6230022Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'nodelocaldns', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/dns/k8s-dns-node-cache', 'tag': '1.22.28', 'sha256': '', 'groups': ['k8s_cluster']}}) +2025-11-24T09:45:04.6232863Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'dnsautoscaler', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/cpa/cluster-proportional-autoscaler', 'tag': 'v1.8.8', 'sha256': '', 'groups': ['kube_control_plane']}}) +2025-11-24T09:45:04.6234408Z +2025-11-24T09:45:04.6234718Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:04.6907040Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:04.6907592Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:04.6908100Z ok: [kubenode-super-marlin] +2025-11-24T09:45:04.6908375Z +2025-11-24T09:45:04.6908706Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:04.7531189Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:04.7531915Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" +2025-11-24T09:45:04.7532562Z } +2025-11-24T09:45:04.7533247Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:04.7533891Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" +2025-11-24T09:45:04.7534497Z } +2025-11-24T09:45:04.7534933Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:04.7535534Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" +2025-11-24T09:45:04.7536123Z } +2025-11-24T09:45:04.7536318Z +2025-11-24T09:45:04.7536645Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:04.8474349Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:04.8474926Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:04.8475423Z ok: [kubenode-super-marlin] +2025-11-24T09:45:04.8475676Z +2025-11-24T09:45:04.8475998Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:05.1260491Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:05.1261033Z ok: [kubenode-super-marlin] +2025-11-24T09:45:05.1261488Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:05.1262084Z +2025-11-24T09:45:05.1262407Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:05.1640584Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:05.1640999Z +2025-11-24T09:45:05.1641382Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:05.2058036Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:05.2058413Z +2025-11-24T09:45:05.2058752Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:05.7181311Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:05.7181985Z changed: [kubenode-super-marlin] +2025-11-24T09:45:05.7182511Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:05.7183078Z +2025-11-24T09:45:05.7183448Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:05.7435312Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:05.7635172Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:05.7635835Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:05.7636154Z +2025-11-24T09:45:05.7636562Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:05.8184264Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:05.8191306Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:05.8191936Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:05.8192262Z +2025-11-24T09:45:05.8192887Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:05.8695514Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:05.8696141Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:05.8697084Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:05.8697409Z +2025-11-24T09:45:05.8697744Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:05.9600521Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:05.9601536Z +2025-11-24T09:45:05.9602004Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:08.1807189Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:08.1807806Z changed: [kubenode-super-marlin] +2025-11-24T09:45:08.1808341Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:08.1808624Z +2025-11-24T09:45:08.1808957Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:08.2549436Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:08.2550054Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:08.2550548Z ok: [kubenode-super-marlin] +2025-11-24T09:45:08.2550819Z +2025-11-24T09:45:08.2551138Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:08.3263126Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:08.3263905Z "msg": "http://10.1.1.1:8080/binaries/cni-plugins-linux-amd64-v1.3.0.tgz" +2025-11-24T09:45:08.3264596Z } +2025-11-24T09:45:08.3265062Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:08.3265724Z "msg": "http://10.1.1.1:8080/binaries/cni-plugins-linux-amd64-v1.3.0.tgz" +2025-11-24T09:45:08.3266362Z } +2025-11-24T09:45:08.3266812Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:08.3267440Z "msg": "http://10.1.1.1:8080/binaries/cni-plugins-linux-amd64-v1.3.0.tgz" +2025-11-24T09:45:08.3268060Z } +2025-11-24T09:45:08.3268273Z +2025-11-24T09:45:08.3268625Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:08.4064672Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:08.4065362Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:08.4065971Z ok: [kubenode-super-marlin] +2025-11-24T09:45:08.4066342Z +2025-11-24T09:45:08.4066741Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:08.6669953Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:08.6670528Z ok: [kubenode-super-marlin] +2025-11-24T09:45:08.6671033Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:08.6671669Z +2025-11-24T09:45:08.6672028Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:08.7107358Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:08.7107773Z +2025-11-24T09:45:08.7108180Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:08.7588472Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:08.7588916Z +2025-11-24T09:45:08.7589338Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:09.3866552Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:09.3867241Z changed: [kubenode-super-marlin] +2025-11-24T09:45:09.3867730Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:09.3867995Z +2025-11-24T09:45:09.3868320Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:09.4275014Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:09.4602145Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:09.4603334Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:09.4603799Z +2025-11-24T09:45:09.4604276Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:09.4927167Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:09.5108088Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:09.5108799Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:09.5109169Z +2025-11-24T09:45:09.5109571Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:09.5616411Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:09.5617049Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:09.5618068Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:09.5618414Z +2025-11-24T09:45:09.5618767Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:09.6441255Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:09.6442289Z +2025-11-24T09:45:09.6442941Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:09.6951739Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:09.6952335Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:09.6953197Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:09.6953494Z +2025-11-24T09:45:09.6953827Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:09.7892130Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:09.7892956Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:09.7893514Z ok: [kubenode-super-marlin] +2025-11-24T09:45:09.7893803Z +2025-11-24T09:45:09.7894127Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:09.8714076Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:09.8714762Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" +2025-11-24T09:45:09.8715318Z } +2025-11-24T09:45:09.8715790Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:09.8716323Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" +2025-11-24T09:45:09.8716842Z } +2025-11-24T09:45:09.8717239Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:09.8717737Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" +2025-11-24T09:45:09.8718225Z } +2025-11-24T09:45:09.8718419Z +2025-11-24T09:45:09.8718744Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:09.9487025Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:09.9487625Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:09.9488134Z ok: [kubenode-super-marlin] +2025-11-24T09:45:09.9488411Z +2025-11-24T09:45:09.9488790Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:10.2025691Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:10.2026349Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:10.2026976Z ok: [kubenode-super-marlin] +2025-11-24T09:45:10.2027268Z +2025-11-24T09:45:10.2027625Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:10.2473961Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:10.2474399Z +2025-11-24T09:45:10.2474855Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:10.2847543Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:10.2847922Z +2025-11-24T09:45:10.2848252Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:10.2892282Z Still deploying... +2025-11-24T09:45:10.6973337Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:10.6973884Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:10.6974389Z ok: [kubenode-super-marlin] +2025-11-24T09:45:10.6974661Z +2025-11-24T09:45:10.6975000Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:10.7269383Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:10.7473418Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:10.7474029Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:10.7474352Z +2025-11-24T09:45:10.7474721Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:10.7755003Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:10.7943054Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:10.7943655Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:10.7943960Z +2025-11-24T09:45:10.7944270Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:10.8458350Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:10.8458906Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:10.8459807Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:10.8460103Z +2025-11-24T09:45:10.8460417Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:10.9289684Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:10.9290740Z +2025-11-24T09:45:10.9291121Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:10.9820942Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:10.9821933Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:10.9822466Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:10.9823014Z +2025-11-24T09:45:10.9823358Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:11.0433144Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:11.0433710Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:11.0434188Z ok: [kubenode-super-marlin] +2025-11-24T09:45:11.0434479Z +2025-11-24T09:45:11.0434817Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:11.1149125Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:11.1149851Z "msg": "http://10.1.1.1:8080/binaries/kubelet" +2025-11-24T09:45:11.1150463Z } +2025-11-24T09:45:11.1150943Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:11.1151588Z "msg": "http://10.1.1.1:8080/binaries/kubelet" +2025-11-24T09:45:11.1152172Z } +2025-11-24T09:45:11.1152938Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:11.1153572Z "msg": "http://10.1.1.1:8080/binaries/kubelet" +2025-11-24T09:45:11.1154193Z } +2025-11-24T09:45:11.1154398Z +2025-11-24T09:45:11.1154721Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:11.1874335Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:11.1874963Z ok: [kubenode-super-marlin] +2025-11-24T09:45:11.1875490Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:11.1875767Z +2025-11-24T09:45:11.1876127Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:11.4422291Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:11.4423285Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:11.4423855Z ok: [kubenode-super-marlin] +2025-11-24T09:45:11.4424166Z +2025-11-24T09:45:11.4424559Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:11.4718069Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:11.4718431Z +2025-11-24T09:45:11.4718836Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:11.5077542Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:11.5077956Z +2025-11-24T09:45:11.5078348Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:12.7622026Z changed: [kubenode-super-marlin] +2025-11-24T09:45:12.7622992Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:12.7623623Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:12.7623952Z +2025-11-24T09:45:12.7624375Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:12.8113619Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:12.8301592Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:12.8302252Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:12.8302547Z +2025-11-24T09:45:12.8303146Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:12.8936646Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:12.8937233Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:12.8937784Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:12.8938081Z +2025-11-24T09:45:12.8938398Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:12.9416067Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:12.9416752Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:12.9417303Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:12.9417599Z +2025-11-24T09:45:12.9418430Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:13.0289936Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:13.0290932Z +2025-11-24T09:45:13.0291289Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:13.0858069Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:13.0858658Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:13.0859569Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:13.0859869Z +2025-11-24T09:45:13.0860202Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:13.1486352Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:13.1486950Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:13.1487400Z ok: [kubenode-super-marlin] +2025-11-24T09:45:13.1487649Z +2025-11-24T09:45:13.1487992Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:13.2194182Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:13.2194952Z "msg": "http://10.1.1.1:8080/binaries/kubectl" +2025-11-24T09:45:13.2195494Z } +2025-11-24T09:45:13.2195906Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:13.2196442Z "msg": "http://10.1.1.1:8080/binaries/kubectl" +2025-11-24T09:45:13.2196962Z } +2025-11-24T09:45:13.2197360Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:13.2197859Z "msg": "http://10.1.1.1:8080/binaries/kubectl" +2025-11-24T09:45:13.2198353Z } +2025-11-24T09:45:13.2198551Z +2025-11-24T09:45:13.2198874Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:13.2891300Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:13.2892054Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:13.2892580Z ok: [kubenode-super-marlin] +2025-11-24T09:45:13.2893096Z +2025-11-24T09:45:13.2893467Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:13.5539536Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:13.5540276Z ok: [kubenode-super-marlin] +2025-11-24T09:45:13.5540737Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:13.5540992Z +2025-11-24T09:45:13.5541315Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:13.5817687Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:13.5818480Z +2025-11-24T09:45:13.5818865Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:13.6289993Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:13.6290532Z +2025-11-24T09:45:13.6290880Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:14.3318047Z changed: [kubenode-super-marlin] +2025-11-24T09:45:14.3318744Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:14.3319262Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:14.3319699Z +2025-11-24T09:45:14.3320069Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:14.3989335Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:14.3990103Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:14.3990709Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:14.3991027Z +2025-11-24T09:45:14.3991425Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:14.4506251Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:14.4506979Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:14.4507512Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:14.4507827Z +2025-11-24T09:45:14.4508151Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:14.4763343Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:14.5009051Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:14.5009777Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:14.5010088Z +2025-11-24T09:45:14.5010799Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:14.5898232Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:14.5899183Z +2025-11-24T09:45:14.5899521Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:14.6535007Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:14.6535850Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:14.6536394Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:14.6537127Z +2025-11-24T09:45:14.6537458Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:14.7221292Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:14.7221967Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:14.7222471Z ok: [kubenode-super-marlin] +2025-11-24T09:45:14.7222999Z +2025-11-24T09:45:15.0573781Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:15.0574630Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:15.0575282Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" +2025-11-24T09:45:15.0575959Z } +2025-11-24T09:45:15.0576388Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:15.0577130Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" +2025-11-24T09:45:15.0577757Z } +2025-11-24T09:45:15.0578178Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:15.0578785Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" +2025-11-24T09:45:15.0579397Z } +2025-11-24T09:45:15.0579610Z +2025-11-24T09:45:15.0579959Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:15.1374028Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:15.1374677Z ok: [kubenode-super-marlin] +2025-11-24T09:45:15.1375168Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:15.1375452Z +2025-11-24T09:45:15.1375790Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:15.3988336Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:15.3988977Z ok: [kubenode-super-marlin] +2025-11-24T09:45:15.3989462Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:15.3989746Z +2025-11-24T09:45:15.3990084Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:15.4285843Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:15.4286630Z +2025-11-24T09:45:15.4287038Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:15.4854204Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:15.4854644Z +2025-11-24T09:45:15.4854985Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:15.9245538Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:15.9246208Z ok: [kubenode-super-marlin] +2025-11-24T09:45:15.9246676Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:15.9246943Z +2025-11-24T09:45:15.9247292Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:15.9879761Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:15.9880826Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:15.9881473Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:15.9881828Z +2025-11-24T09:45:15.9882279Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:16.0533598Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:16.0534319Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:16.0534922Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:16.0535259Z +2025-11-24T09:45:16.0535608Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:16.1099823Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:16.1100556Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:16.1101128Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:16.1101445Z +2025-11-24T09:45:16.1101794Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:16.2030024Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:16.2031075Z +2025-11-24T09:45:16.2031438Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:18.4967546Z ok: [kubenode-super-marlin] +2025-11-24T09:45:18.4968236Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:18.4968724Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:18.4969004Z +2025-11-24T09:45:18.4969711Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:18.5946634Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:18.5947302Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:18.5947775Z ok: [kubenode-super-marlin] +2025-11-24T09:45:18.5948043Z +2025-11-24T09:45:18.5948370Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:18.6745743Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:18.6746530Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" +2025-11-24T09:45:18.6747059Z } +2025-11-24T09:45:18.6747458Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:18.6747998Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" +2025-11-24T09:45:18.6748498Z } +2025-11-24T09:45:18.6748883Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:18.6749383Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" +2025-11-24T09:45:18.6749869Z } +2025-11-24T09:45:18.6750059Z +2025-11-24T09:45:18.6750401Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:18.7544760Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:18.7545459Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:18.7545977Z ok: [kubenode-super-marlin] +2025-11-24T09:45:18.7546269Z +2025-11-24T09:45:18.7546629Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:19.0163261Z ok: [kubenode-super-marlin] +2025-11-24T09:45:19.0164009Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:19.0164502Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:19.0164781Z +2025-11-24T09:45:19.0165117Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:19.0555109Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:19.0555771Z +2025-11-24T09:45:19.0556267Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:19.1064792Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:19.1065279Z +2025-11-24T09:45:19.1065623Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:19.5553970Z ok: [kubenode-super-marlin] +2025-11-24T09:45:19.5554839Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:19.5555477Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:19.5555807Z +2025-11-24T09:45:19.5556209Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:19.6030235Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:19.6243308Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:19.6244153Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:19.6244454Z +2025-11-24T09:45:19.6244833Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:19.6593472Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:19.6823503Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:19.6824435Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:19.6824802Z +2025-11-24T09:45:19.6825126Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:19.7295400Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:19.7296166Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:19.7296732Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:19.7297048Z +2025-11-24T09:45:19.7297399Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:19.8207959Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:19.8209084Z +2025-11-24T09:45:19.8209488Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:19.8720997Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:19.8721747Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:19.8722309Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:19.8722605Z +2025-11-24T09:45:19.8723276Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:19.9439358Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:19.9440121Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:19.9440613Z ok: [kubenode-super-marlin] +2025-11-24T09:45:19.9440944Z +2025-11-24T09:45:19.9441284Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:20.0234186Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:20.0235113Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" +2025-11-24T09:45:20.0235788Z } +2025-11-24T09:45:20.0236229Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:20.0236894Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" +2025-11-24T09:45:20.0237521Z } +2025-11-24T09:45:20.0237950Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:20.0238581Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" +2025-11-24T09:45:20.0239200Z } +2025-11-24T09:45:20.0239411Z +2025-11-24T09:45:20.0239758Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:20.0948911Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:20.0949567Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:20.0950057Z ok: [kubenode-super-marlin] +2025-11-24T09:45:20.0950326Z +2025-11-24T09:45:20.0950709Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:20.2913011Z Still deploying... +2025-11-24T09:45:20.3417274Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:20.3417961Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:20.3418439Z ok: [kubenode-super-marlin] +2025-11-24T09:45:20.3418703Z +2025-11-24T09:45:20.3419046Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:20.3811902Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:20.3812854Z +2025-11-24T09:45:20.3813250Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:20.4333618Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:20.4334125Z +2025-11-24T09:45:20.4334490Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:20.8881353Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:20.8882038Z ok: [kubenode-super-marlin] +2025-11-24T09:45:20.8882553Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:20.8883053Z +2025-11-24T09:45:20.8883420Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:20.9479966Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:20.9480644Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:20.9481213Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:20.9481529Z +2025-11-24T09:45:20.9481932Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:20.9723247Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:20.9907584Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:20.9908374Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:20.9908700Z +2025-11-24T09:45:20.9909066Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:21.0348639Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:21.0349313Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:21.0349848Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:21.0350140Z +2025-11-24T09:45:21.0350467Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:21.1262387Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:21.1263559Z +2025-11-24T09:45:21.1263890Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:21.1813488Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:21.1814350Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:21.1814987Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:21.1815340Z +2025-11-24T09:45:21.1815729Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:21.2515251Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:21.2515962Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:21.2516435Z ok: [kubenode-super-marlin] +2025-11-24T09:45:21.2516700Z +2025-11-24T09:45:21.2517020Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:21.3437087Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:21.3438053Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" +2025-11-24T09:45:21.3438776Z } +2025-11-24T09:45:21.3439256Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:21.3439962Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" +2025-11-24T09:45:21.3440632Z } +2025-11-24T09:45:21.3441115Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:21.3441828Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" +2025-11-24T09:45:21.3442500Z } +2025-11-24T09:45:21.3442993Z +2025-11-24T09:45:21.3443396Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:21.4267451Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:21.4268399Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:21.4269014Z ok: [kubenode-super-marlin] +2025-11-24T09:45:21.4269343Z +2025-11-24T09:45:21.4269748Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:21.6841977Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:21.6843001Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:21.6843598Z ok: [kubenode-super-marlin] +2025-11-24T09:45:21.6843926Z +2025-11-24T09:45:21.6844321Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:21.7247655Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:21.7248190Z +2025-11-24T09:45:21.7248980Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:21.7721835Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:21.7722376Z +2025-11-24T09:45:21.7723121Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:22.1944444Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:22.1945156Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:22.1945666Z ok: [kubenode-super-marlin] +2025-11-24T09:45:22.1945956Z +2025-11-24T09:45:22.1946316Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:22.2449370Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:22.2450170Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:22.2450789Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:22.2451123Z +2025-11-24T09:45:22.2451547Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:22.3020354Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:22.3021098Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:22.3021668Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:22.3021981Z +2025-11-24T09:45:22.3022330Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:22.3297470Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:22.3576151Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:22.3576975Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:22.3577323Z +2025-11-24T09:45:22.3577697Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:22.4689577Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:22.4690453Z +2025-11-24T09:45:22.4690778Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:23.5117637Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:23.5118260Z ok: [kubenode-super-marlin] +2025-11-24T09:45:23.5118759Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:23.5119044Z +2025-11-24T09:45:23.5119399Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:23.6090113Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:23.6090833Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:23.6091473Z ok: [kubenode-super-marlin] +2025-11-24T09:45:23.6091825Z +2025-11-24T09:45:23.6092262Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:23.7016465Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:23.7017146Z "msg": "http://10.1.1.1:8080/binaries/calicoctl-linux-amd64" +2025-11-24T09:45:23.7017738Z } +2025-11-24T09:45:23.7018146Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:23.7018765Z "msg": "http://10.1.1.1:8080/binaries/calicoctl-linux-amd64" +2025-11-24T09:45:23.7019316Z } +2025-11-24T09:45:23.7019715Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:23.7020254Z "msg": "http://10.1.1.1:8080/binaries/calicoctl-linux-amd64" +2025-11-24T09:45:23.7020806Z } +2025-11-24T09:45:23.7021020Z +2025-11-24T09:45:23.7021342Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:23.7827242Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:23.7827811Z ok: [kubenode-super-marlin] +2025-11-24T09:45:23.7828321Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:23.7828619Z +2025-11-24T09:45:23.7828969Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:24.0143311Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:24.0143846Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:24.0144344Z ok: [kubenode-super-marlin] +2025-11-24T09:45:24.0144603Z +2025-11-24T09:45:24.0144926Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:24.0441686Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:24.0442092Z +2025-11-24T09:45:24.0442506Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:24.0825501Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:24.0825888Z +2025-11-24T09:45:24.0826241Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:24.9123620Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:24.9124477Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:24.9125015Z changed: [kubenode-super-marlin] +2025-11-24T09:45:24.9125307Z +2025-11-24T09:45:24.9125649Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:24.9745428Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:24.9746316Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:24.9746896Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:24.9747210Z +2025-11-24T09:45:24.9747597Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:25.0151135Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:25.0424844Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.0425601Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:25.0425922Z +2025-11-24T09:45:25.0426272Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:25.0990542Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:25.0991274Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.0991809Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:25.0992107Z +2025-11-24T09:45:25.0992432Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:25.1993483Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:25.1994496Z +2025-11-24T09:45:25.1994845Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:25.2581142Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:25.2581860Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.2582469Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:25.2583012Z +2025-11-24T09:45:25.2583366Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:45:25.3244468Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:25.3245164Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.3245667Z ok: [kubenode-super-marlin] +2025-11-24T09:45:25.3245939Z +2025-11-24T09:45:25.3246330Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:45:25.4069349Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:25.4070288Z "msg": "quay.io/calico/node" +2025-11-24T09:45:25.4070873Z } +2025-11-24T09:45:25.4071352Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:25.4071976Z "msg": "quay.io/calico/node" +2025-11-24T09:45:25.4072524Z } +2025-11-24T09:45:25.4073247Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:25.4073752Z "msg": "quay.io/calico/node" +2025-11-24T09:45:25.4074222Z } +2025-11-24T09:45:25.4074441Z +2025-11-24T09:45:25.4074852Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:45:25.4772583Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:25.4773701Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.4774299Z ok: [kubenode-super-marlin] +2025-11-24T09:45:25.4774629Z +2025-11-24T09:45:25.4775055Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:45:25.5499399Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:25.5500093Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.5500620Z ok: [kubenode-super-marlin] +2025-11-24T09:45:25.5500907Z +2025-11-24T09:45:25.5501294Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:45:25.6150040Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:25.6150712Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.6151234Z ok: [kubenode-super-marlin] +2025-11-24T09:45:25.6151523Z +2025-11-24T09:45:25.6151884Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:45:25.7079199Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:25.7080056Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.7080646Z ok: [kubenode-super-marlin] +2025-11-24T09:45:25.7080996Z +2025-11-24T09:45:25.7081387Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:45:25.7466793Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:25.7730818Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.7731616Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:25.7731943Z +2025-11-24T09:45:25.7732319Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:45:25.8470520Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:25.8471370Z ok: [kubenode-super-marlin] +2025-11-24T09:45:25.8471953Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.8472277Z +2025-11-24T09:45:25.8472900Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:45:25.8995618Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:25.8996389Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.8996960Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:25.8997278Z +2025-11-24T09:45:25.8997656Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:45:25.9338574Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:25.9561280Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:25.9562176Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:25.9562531Z +2025-11-24T09:45:25.9563300Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:45:26.0609752Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:26.0610366Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:26.0610879Z ok: [kubenode-super-marlin] +2025-11-24T09:45:26.0611164Z +2025-11-24T09:45:26.0611518Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:45:26.1153987Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:26.1154796Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:26.1155377Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:26.1155694Z +2025-11-24T09:45:26.1156063Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:45:26.2248538Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:26.2249518Z +2025-11-24T09:45:26.2249948Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:45:28.6225082Z ok: [kubenode-super-marlin] +2025-11-24T09:45:28.6225816Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:28.6226337Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:28.6226641Z +2025-11-24T09:45:28.6227104Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:45:28.7111218Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:28.7112122Z ok: [kubenode-super-marlin] +2025-11-24T09:45:28.7112968Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:28.7113316Z +2025-11-24T09:45:28.7113871Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:45:28.7582377Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:28.7839275Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:28.7840079Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:28.7840378Z +2025-11-24T09:45:28.7840660Z TASK [download : debug] ******************************************************** +2025-11-24T09:45:28.8800993Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:28.8801958Z "msg": "Pull quay.io/calico/node:v3.27.4 required is: False" +2025-11-24T09:45:28.8802909Z } +2025-11-24T09:45:28.8803410Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:28.8804109Z "msg": "Pull quay.io/calico/node:v3.27.4 required is: False" +2025-11-24T09:45:28.8804764Z } +2025-11-24T09:45:28.8805582Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:28.8806235Z "msg": "Pull quay.io/calico/node:v3.27.4 required is: False" +2025-11-24T09:45:28.8806858Z } +2025-11-24T09:45:28.8807096Z +2025-11-24T09:45:28.8807515Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:45:28.9437114Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:28.9438029Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:28.9438679Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:28.9438978Z +2025-11-24T09:45:28.9439329Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:45:28.9705037Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:28.9905144Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:28.9906052Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:28.9906516Z +2025-11-24T09:45:28.9907126Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:45:29.0455071Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:29.0455866Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:29.0456402Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:29.0456700Z +2025-11-24T09:45:29.0457041Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:45:29.1177197Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:29.1177867Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:29.1178378Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:29.1178666Z +2025-11-24T09:45:29.1179014Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:45:29.1680433Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:29.1680943Z +2025-11-24T09:45:29.1681374Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:45:29.2029846Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:29.2276118Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:29.2276843Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:29.2277221Z +2025-11-24T09:45:29.2277628Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:45:29.2821441Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:29.2822974Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:29.2823612Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:29.2823972Z +2025-11-24T09:45:29.2824422Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:45:29.4658878Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:29.4659721Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:29.4660356Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:29.4660737Z +2025-11-24T09:45:29.4661138Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:45:29.7125196Z ok: [kubenode-super-marlin] +2025-11-24T09:45:29.7125858Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:29.7126341Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:29.7126615Z +2025-11-24T09:45:29.7126966Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:45:29.7995287Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:29.7996151Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:29.7996768Z ok: [kubenode-super-marlin] +2025-11-24T09:45:29.7997092Z +2025-11-24T09:45:29.7997580Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:45:29.8705109Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:29.8705769Z "msg": "quay.io/calico/cni" +2025-11-24T09:45:29.8706227Z } +2025-11-24T09:45:29.8706638Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:29.8707201Z "msg": "quay.io/calico/cni" +2025-11-24T09:45:29.8707630Z } +2025-11-24T09:45:29.8708028Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:29.8708494Z "msg": "quay.io/calico/cni" +2025-11-24T09:45:29.8708920Z } +2025-11-24T09:45:29.8709123Z +2025-11-24T09:45:29.8709509Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:45:29.9455069Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:29.9455768Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:29.9456253Z ok: [kubenode-super-marlin] +2025-11-24T09:45:29.9456549Z +2025-11-24T09:45:29.9456897Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:45:30.0147296Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:30.0147997Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.0148481Z ok: [kubenode-super-marlin] +2025-11-24T09:45:30.0148750Z +2025-11-24T09:45:30.0149087Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:45:30.0835429Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:30.0836084Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.0836567Z ok: [kubenode-super-marlin] +2025-11-24T09:45:30.0836833Z +2025-11-24T09:45:30.0837171Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:45:30.1479283Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:30.1479978Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.1480466Z ok: [kubenode-super-marlin] +2025-11-24T09:45:30.1480734Z +2025-11-24T09:45:30.1481066Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:45:30.1733708Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:30.1947168Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.1947903Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:30.1948213Z +2025-11-24T09:45:30.1948583Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:45:30.2805884Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:30.2806941Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.2807449Z ok: [kubenode-super-marlin] +2025-11-24T09:45:30.2807723Z +2025-11-24T09:45:30.2808054Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:45:30.2922239Z Still deploying... +2025-11-24T09:45:30.3094779Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:30.3297361Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.3298101Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:30.3298391Z +2025-11-24T09:45:30.3298715Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:45:30.3855027Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:30.3855755Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.3856302Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:30.3856596Z +2025-11-24T09:45:30.3856930Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:45:30.4619348Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:30.4620041Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.4620514Z ok: [kubenode-super-marlin] +2025-11-24T09:45:30.4620776Z +2025-11-24T09:45:30.4621095Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:45:30.5080756Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:30.5081637Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:30.5082299Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:30.5082874Z +2025-11-24T09:45:30.5083293Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:45:30.6138994Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:30.6140008Z +2025-11-24T09:45:30.6140442Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:45:32.8627071Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:32.8627752Z ok: [kubenode-super-marlin] +2025-11-24T09:45:32.8628233Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:32.8628496Z +2025-11-24T09:45:32.8628928Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:45:32.9341277Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:32.9341954Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:32.9342985Z ok: [kubenode-super-marlin] +2025-11-24T09:45:32.9343268Z +2025-11-24T09:45:32.9343737Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:45:32.9675763Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:32.9913097Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:32.9913855Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:32.9914162Z +2025-11-24T09:45:32.9914452Z TASK [download : debug] ******************************************************** +2025-11-24T09:45:33.0636011Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:33.0636848Z "msg": "Pull quay.io/calico/cni:v3.27.4 required is: False" +2025-11-24T09:45:33.0637451Z } +2025-11-24T09:45:33.0637883Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:33.0638490Z "msg": "Pull quay.io/calico/cni:v3.27.4 required is: False" +2025-11-24T09:45:33.0639067Z } +2025-11-24T09:45:33.0639496Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:33.0640064Z "msg": "Pull quay.io/calico/cni:v3.27.4 required is: False" +2025-11-24T09:45:33.0640631Z } +2025-11-24T09:45:33.0640843Z +2025-11-24T09:45:33.0641199Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:45:33.1218113Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:33.1218836Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.1219372Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:33.1219671Z +2025-11-24T09:45:33.1220024Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:45:33.1693328Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:33.1694533Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.1695187Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:33.1695529Z +2025-11-24T09:45:33.1695986Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:45:33.2202956Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:33.2203807Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.2204443Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:33.2204785Z +2025-11-24T09:45:33.2205176Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:45:33.2845294Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:33.2846083Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.2846619Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:33.2846914Z +2025-11-24T09:45:33.2847245Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:45:33.3241585Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:33.3242216Z +2025-11-24T09:45:33.3242936Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:45:33.3830201Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:33.3831343Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.3832181Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:33.3832519Z +2025-11-24T09:45:33.3833034Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:45:33.4328531Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:33.4329468Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.4330127Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:33.4330478Z +2025-11-24T09:45:33.4330922Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:45:33.4783546Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:33.4784244Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.4784886Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:33.4785239Z +2025-11-24T09:45:33.4785650Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:45:33.7109254Z ok: [kubenode-super-marlin] +2025-11-24T09:45:33.7109920Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:33.7110475Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.7110793Z +2025-11-24T09:45:33.7111188Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:45:33.8154669Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:33.8155333Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:33.8155922Z ok: [kubenode-super-marlin] +2025-11-24T09:45:33.8156275Z +2025-11-24T09:45:33.8156779Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:45:33.9173646Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:33.9174357Z "msg": "quay.io/calico/pod2daemon-flexvol" +2025-11-24T09:45:33.9174985Z } +2025-11-24T09:45:33.9175491Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:33.9176132Z "msg": "quay.io/calico/pod2daemon-flexvol" +2025-11-24T09:45:33.9176777Z } +2025-11-24T09:45:33.9177269Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:33.9177885Z "msg": "quay.io/calico/pod2daemon-flexvol" +2025-11-24T09:45:33.9178493Z } +2025-11-24T09:45:33.9178742Z +2025-11-24T09:45:33.9179231Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:45:34.0196725Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:34.0197371Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.0197948Z ok: [kubenode-super-marlin] +2025-11-24T09:45:34.0198258Z +2025-11-24T09:45:34.0198688Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:45:34.1098824Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:34.1099379Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.1099852Z ok: [kubenode-super-marlin] +2025-11-24T09:45:34.1100116Z +2025-11-24T09:45:34.1100483Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:45:34.2055136Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:34.2055825Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.2056393Z ok: [kubenode-super-marlin] +2025-11-24T09:45:34.2056713Z +2025-11-24T09:45:34.2057131Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:45:34.2974726Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:34.2975311Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.2975810Z ok: [kubenode-super-marlin] +2025-11-24T09:45:34.2976089Z +2025-11-24T09:45:34.2976423Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:45:34.3335850Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:34.3571556Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.3572270Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:34.3572923Z +2025-11-24T09:45:34.3573329Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:45:34.4456240Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:34.4456813Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.4457327Z ok: [kubenode-super-marlin] +2025-11-24T09:45:34.4457596Z +2025-11-24T09:45:34.4457925Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:45:34.4855883Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:34.5085689Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.5086475Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:34.5086847Z +2025-11-24T09:45:34.5087263Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:45:34.5413013Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:34.5641547Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.5642151Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:34.5642453Z +2025-11-24T09:45:34.5643026Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:45:34.6515647Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.6516237Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:34.6516728Z ok: [kubenode-super-marlin] +2025-11-24T09:45:34.6516998Z +2025-11-24T09:45:34.6517328Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:45:34.6829528Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:34.7148482Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:34.7149214Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:34.7149925Z +2025-11-24T09:45:34.7150340Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:45:34.8281634Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:34.8283163Z +2025-11-24T09:45:34.8283684Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:45:37.0944701Z ok: [kubenode-super-marlin] +2025-11-24T09:45:37.0945250Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:37.0945727Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.0945996Z +2025-11-24T09:45:37.0946406Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:45:37.1769188Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:37.1769826Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.1770391Z ok: [kubenode-super-marlin] +2025-11-24T09:45:37.1770721Z +2025-11-24T09:45:37.1771269Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:45:37.2341484Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.2342097Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.2342864Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:37.2343180Z +2025-11-24T09:45:37.2343512Z TASK [download : debug] ******************************************************** +2025-11-24T09:45:37.3184302Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:37.3185045Z "msg": "Pull quay.io/calico/pod2daemon-flexvol:v3.27.4 required is: False" +2025-11-24T09:45:37.3186137Z } +2025-11-24T09:45:37.3186568Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:37.3187204Z "msg": "Pull quay.io/calico/pod2daemon-flexvol:v3.27.4 required is: False" +2025-11-24T09:45:37.3187817Z } +2025-11-24T09:45:37.3188222Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:37.3188825Z "msg": "Pull quay.io/calico/pod2daemon-flexvol:v3.27.4 required is: False" +2025-11-24T09:45:37.3189442Z } +2025-11-24T09:45:37.3195600Z +2025-11-24T09:45:37.3195988Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:45:37.3522574Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.3754799Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.3755412Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:37.3755720Z +2025-11-24T09:45:37.3756077Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:45:37.4023303Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.4246947Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.4247543Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:37.4247845Z +2025-11-24T09:45:37.4248353Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:45:37.4743319Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.4743907Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.4744441Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:37.4744737Z +2025-11-24T09:45:37.4745068Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:45:37.5466447Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.5467049Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.5467584Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:37.5467877Z +2025-11-24T09:45:37.5468217Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:45:37.5917728Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.5918102Z +2025-11-24T09:45:37.5918473Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:45:37.6277720Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.6583725Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.6584454Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:37.6584812Z +2025-11-24T09:45:37.6585219Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:45:37.6974025Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.7323276Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.7324069Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:37.7324433Z +2025-11-24T09:45:37.7324884Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:45:37.7834411Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:37.7835132Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:37.7835759Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:37.7836116Z +2025-11-24T09:45:37.7836540Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:45:38.0688501Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.0689079Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:38.0689583Z ok: [kubenode-super-marlin] +2025-11-24T09:45:38.0689867Z +2025-11-24T09:45:38.0690220Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:45:38.1748143Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:38.1748816Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.1749402Z ok: [kubenode-super-marlin] +2025-11-24T09:45:38.1749755Z +2025-11-24T09:45:38.1750236Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:45:38.2769070Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:38.2769654Z "msg": "quay.io/calico/kube-controllers" +2025-11-24T09:45:38.2770160Z } +2025-11-24T09:45:38.2770563Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:38.2771079Z "msg": "quay.io/calico/kube-controllers" +2025-11-24T09:45:38.2771556Z } +2025-11-24T09:45:38.2772354Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:38.2773047Z "msg": "quay.io/calico/kube-controllers" +2025-11-24T09:45:38.2773526Z } +2025-11-24T09:45:38.2773725Z +2025-11-24T09:45:38.2774108Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:45:38.3568545Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:38.3569208Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.3569837Z ok: [kubenode-super-marlin] +2025-11-24T09:45:38.3570149Z +2025-11-24T09:45:38.3570552Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:45:38.4263239Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:38.4263914Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.4264488Z ok: [kubenode-super-marlin] +2025-11-24T09:45:38.4264806Z +2025-11-24T09:45:38.4265195Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:45:38.4977548Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:38.4978119Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.4978710Z ok: [kubenode-super-marlin] +2025-11-24T09:45:38.4979037Z +2025-11-24T09:45:38.4979434Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:45:38.5768363Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:38.5768911Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.5769478Z ok: [kubenode-super-marlin] +2025-11-24T09:45:38.5769817Z +2025-11-24T09:45:38.5770207Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:45:38.6278328Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:38.6278911Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.6279435Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:38.6279723Z +2025-11-24T09:45:38.6280051Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:45:38.6959437Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:38.6960078Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.6960684Z ok: [kubenode-super-marlin] +2025-11-24T09:45:38.6961002Z +2025-11-24T09:45:38.6961392Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:45:38.7197584Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:38.7431629Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.7432327Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:38.7433263Z +2025-11-24T09:45:38.7433671Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:45:38.7751670Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:38.7980246Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.7980838Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:38.7981142Z +2025-11-24T09:45:38.7981484Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:45:38.8834272Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:38.8834820Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.8835297Z ok: [kubenode-super-marlin] +2025-11-24T09:45:38.8835617Z +2025-11-24T09:45:38.8835951Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:45:38.9431405Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:38.9432111Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:38.9432968Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:38.9433339Z +2025-11-24T09:45:38.9433769Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:45:39.0506973Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:39.0508176Z +2025-11-24T09:45:39.0508610Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:45:40.2937969Z Still deploying... +2025-11-24T09:45:41.2906758Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:41.2907444Z ok: [kubenode-super-marlin] +2025-11-24T09:45:41.2908460Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.2908804Z +2025-11-24T09:45:41.2909310Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:45:41.3863624Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:41.3864172Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.3864650Z ok: [kubenode-super-marlin] +2025-11-24T09:45:41.3864937Z +2025-11-24T09:45:41.3865400Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:45:41.4440548Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.4441173Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.4441726Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:41.4442042Z +2025-11-24T09:45:41.4442347Z TASK [download : debug] ******************************************************** +2025-11-24T09:45:41.5122809Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:41.5123526Z "msg": "Pull quay.io/calico/kube-controllers:v3.27.4 required is: False" +2025-11-24T09:45:41.5124138Z } +2025-11-24T09:45:41.5124543Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:41.5125299Z "msg": "Pull quay.io/calico/kube-controllers:v3.27.4 required is: False" +2025-11-24T09:45:41.5125977Z } +2025-11-24T09:45:41.5126455Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:41.5127141Z "msg": "Pull quay.io/calico/kube-controllers:v3.27.4 required is: False" +2025-11-24T09:45:41.5127808Z } +2025-11-24T09:45:41.5128040Z +2025-11-24T09:45:41.5128424Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:45:41.5609124Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.5609810Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.5610428Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:41.5610794Z +2025-11-24T09:45:41.5611210Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:45:41.5899104Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.6142127Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.6142986Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:41.6143289Z +2025-11-24T09:45:41.6143688Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:45:41.6382033Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.6571810Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.6573186Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:41.6573542Z +2025-11-24T09:45:41.6573954Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:45:41.7259740Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.7260471Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.7261129Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:41.7261500Z +2025-11-24T09:45:41.7261924Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:45:41.7589936Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.7590364Z +2025-11-24T09:45:41.7590798Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:45:41.7863254Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.8105316Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.8105931Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:41.8106230Z +2025-11-24T09:45:41.8106571Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:45:41.8410335Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.8639870Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.8640627Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:41.8641006Z +2025-11-24T09:45:41.8641387Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:45:41.8945617Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:41.9247820Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:41.9248481Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:41.9248808Z +2025-11-24T09:45:41.9249604Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:45:42.1518438Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:42.1519125Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:42.1519851Z ok: [kubenode-super-marlin] +2025-11-24T09:45:42.1520193Z +2025-11-24T09:45:42.1520595Z TASK [download : Prep_download | Set a few facts] ****************************** +2025-11-24T09:45:42.2469926Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:42.2470586Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:42.2471171Z ok: [kubenode-super-marlin] +2025-11-24T09:45:42.2471860Z +2025-11-24T09:45:42.2472279Z TASK [download : Download_file | Show url of file to dowload] ****************** +2025-11-24T09:45:42.3244466Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:42.3245104Z "msg": "http://10.1.1.1:8080/binaries/v3.27.4.tar.gz" +2025-11-24T09:45:42.3245678Z } +2025-11-24T09:45:42.3246113Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:42.3246683Z "msg": "http://10.1.1.1:8080/binaries/v3.27.4.tar.gz" +2025-11-24T09:45:42.3247269Z } +2025-11-24T09:45:42.3247701Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:42.3248238Z "msg": "http://10.1.1.1:8080/binaries/v3.27.4.tar.gz" +2025-11-24T09:45:42.3248794Z } +2025-11-24T09:45:42.3249006Z +2025-11-24T09:45:42.3249355Z TASK [download : Download_file | Set pathname of cached file] ****************** +2025-11-24T09:45:42.4095988Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:42.4096634Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:42.4097201Z ok: [kubenode-super-marlin] +2025-11-24T09:45:42.4097518Z +2025-11-24T09:45:42.4097933Z TASK [download : Download_file | Create dest directory on node] **************** +2025-11-24T09:45:42.7964892Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:42.7965547Z changed: [kubenode-super-marlin] +2025-11-24T09:45:42.7966133Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:42.7966500Z +2025-11-24T09:45:42.7966893Z TASK [download : Download_file | Create local cache directory] ***************** +2025-11-24T09:45:42.8380623Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:42.8381071Z +2025-11-24T09:45:42.8381509Z TASK [download : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:45:42.8773785Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:42.8774228Z +2025-11-24T09:45:42.8774637Z TASK [download : Download_file | Download item] ******************************** +2025-11-24T09:45:43.3220208Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:43.3220866Z changed: [kubenode-super-marlin] +2025-11-24T09:45:43.3221453Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:43.3221852Z +2025-11-24T09:45:43.3222255Z TASK [download : Download_file | Copy file back to ansible host file cache] **** +2025-11-24T09:45:43.3551219Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:43.3798361Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:43.3799090Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:43.3799472Z +2025-11-24T09:45:43.3799876Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:45:43.4412511Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:43.4413412Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:43.4413981Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:43.4414297Z +2025-11-24T09:45:43.4414644Z TASK [download : Download_file | Set mode and owner] *************************** +2025-11-24T09:45:43.5029972Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:43.5030559Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:43.5031110Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:43.5031426Z +2025-11-24T09:45:43.5031763Z TASK [download : Download_file | Extract file archives] ************************ +2025-11-24T09:45:43.5898836Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:43.5899772Z +2025-11-24T09:45:43.5900459Z TASK [download : Extract_file | Unpacking archive] ***************************** +2025-11-24T09:45:44.7635547Z changed: [kubenode-super-marlin] +2025-11-24T09:45:44.7636236Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:45:44.7636851Z changed: [kubenode-renewed-asp] +2025-11-24T09:45:44.7637185Z +2025-11-24T09:45:44.7637569Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:45:44.8231975Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:44.8232877Z ok: [kubenode-super-marlin] +2025-11-24T09:45:44.8233480Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:44.8233817Z +2025-11-24T09:45:44.8234640Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:45:44.8928047Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:44.8928718Z "msg": "registry.k8s.io/pause" +2025-11-24T09:45:44.8929292Z } +2025-11-24T09:45:44.8929768Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:44.8930332Z "msg": "registry.k8s.io/pause" +2025-11-24T09:45:44.8930871Z } +2025-11-24T09:45:44.8931367Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:44.8931969Z "msg": "registry.k8s.io/pause" +2025-11-24T09:45:44.8932518Z } +2025-11-24T09:45:44.8933063Z +2025-11-24T09:45:44.8933530Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:45:45.0179664Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:45.0180274Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.0180884Z ok: [kubenode-super-marlin] +2025-11-24T09:45:45.0181205Z +2025-11-24T09:45:45.0181618Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:45:45.1008960Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:45.1009504Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.1009981Z ok: [kubenode-super-marlin] +2025-11-24T09:45:45.1010246Z +2025-11-24T09:45:45.1010582Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:45:45.1774073Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:45.1774617Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.1775112Z ok: [kubenode-super-marlin] +2025-11-24T09:45:45.1775387Z +2025-11-24T09:45:45.1775720Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:45:45.2378936Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:45.2379609Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.2380198Z ok: [kubenode-super-marlin] +2025-11-24T09:45:45.2380886Z +2025-11-24T09:45:45.2381296Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:45:45.2992083Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:45.2992896Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.2993426Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:45.2993721Z +2025-11-24T09:45:45.2994049Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:45:45.3646534Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:45.3647171Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.3647738Z ok: [kubenode-super-marlin] +2025-11-24T09:45:45.3648049Z +2025-11-24T09:45:45.3648459Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:45:45.4117206Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:45.4117786Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.4118311Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:45.4118610Z +2025-11-24T09:45:45.4118970Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:45:45.4364154Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:45.4593742Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.4594458Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:45.4594810Z +2025-11-24T09:45:45.4595205Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:45:45.5451471Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:45.5452022Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.5452499Z ok: [kubenode-super-marlin] +2025-11-24T09:45:45.5453065Z +2025-11-24T09:45:45.5453843Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:45:45.5793244Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:45.6017539Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:45.6018126Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:45.6018417Z +2025-11-24T09:45:45.6024807Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:45:45.7099454Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:45.7100992Z +2025-11-24T09:45:45.7101498Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:45:48.0220085Z ok: [kubenode-super-marlin] +2025-11-24T09:45:48.0220651Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.0221136Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:48.0221408Z +2025-11-24T09:45:48.0221864Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:45:48.0948414Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:48.0948964Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.0949454Z ok: [kubenode-super-marlin] +2025-11-24T09:45:48.0949730Z +2025-11-24T09:45:48.0950201Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:45:48.1475993Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.1476592Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.1477160Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:48.1477463Z +2025-11-24T09:45:48.1477753Z TASK [download : debug] ******************************************************** +2025-11-24T09:45:48.2263710Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:48.2264436Z "msg": "Pull registry.k8s.io/pause:3.9 required is: False" +2025-11-24T09:45:48.2265119Z } +2025-11-24T09:45:48.2265608Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:48.2266305Z "msg": "Pull registry.k8s.io/pause:3.9 required is: False" +2025-11-24T09:45:48.2266942Z } +2025-11-24T09:45:48.2267414Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:48.2268029Z "msg": "Pull registry.k8s.io/pause:3.9 required is: False" +2025-11-24T09:45:48.2268654Z } +2025-11-24T09:45:48.2268883Z +2025-11-24T09:45:48.2269276Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:45:48.2942000Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.2942593Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.2943404Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:48.2943699Z +2025-11-24T09:45:48.2944052Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:45:48.3211849Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.3459507Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.3460204Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:48.3460560Z +2025-11-24T09:45:48.3461058Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:45:48.3728703Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.3949002Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.3949739Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:48.3950091Z +2025-11-24T09:45:48.3950485Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:45:48.4540991Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.4541885Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.4542450Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:48.4543007Z +2025-11-24T09:45:48.4543350Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:45:48.4907877Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.4908303Z +2025-11-24T09:45:48.4908714Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:45:48.5238935Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.5522587Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.5523541Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:48.5523900Z +2025-11-24T09:45:48.5524331Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:45:48.5798218Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.6039563Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.6040275Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:48.6040630Z +2025-11-24T09:45:48.6041084Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:45:48.6607384Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:48.6608071Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.6608697Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:48.6609044Z +2025-11-24T09:45:48.6609441Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:45:48.9299445Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:48.9300049Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:48.9300545Z ok: [kubenode-super-marlin] +2025-11-24T09:45:48.9300827Z +2025-11-24T09:45:48.9301173Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:45:49.0282039Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:49.0282879Z ok: [kubenode-super-marlin] +2025-11-24T09:45:49.0283497Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.0283836Z +2025-11-24T09:45:49.0284304Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:45:49.1059914Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:49.1060568Z "msg": "ghcr.io/kube-vip/kube-vip" +2025-11-24T09:45:49.1061160Z } +2025-11-24T09:45:49.1061643Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:49.1062248Z "msg": "ghcr.io/kube-vip/kube-vip" +2025-11-24T09:45:49.1063113Z } +2025-11-24T09:45:49.1063592Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:49.1064179Z "msg": "ghcr.io/kube-vip/kube-vip" +2025-11-24T09:45:49.1064763Z } +2025-11-24T09:45:49.1065004Z +2025-11-24T09:45:49.1065456Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:45:49.1817147Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:49.1817802Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.1818357Z ok: [kubenode-super-marlin] +2025-11-24T09:45:49.1818934Z +2025-11-24T09:45:49.1819269Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:45:49.2770989Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:49.2771662Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.2772225Z ok: [kubenode-super-marlin] +2025-11-24T09:45:49.2772545Z +2025-11-24T09:45:49.2773238Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:45:49.3587418Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:49.3587977Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.3588451Z ok: [kubenode-super-marlin] +2025-11-24T09:45:49.3588721Z +2025-11-24T09:45:49.3589084Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:45:49.4377455Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:49.4378116Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.4378690Z ok: [kubenode-super-marlin] +2025-11-24T09:45:49.4379002Z +2025-11-24T09:45:49.4379389Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:45:49.4785915Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:49.4959551Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.4960144Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:49.4960466Z +2025-11-24T09:45:49.4960796Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:45:49.5592364Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:49.5593304Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.5593882Z ok: [kubenode-super-marlin] +2025-11-24T09:45:49.5594200Z +2025-11-24T09:45:49.5594986Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:45:49.5885538Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:49.6069987Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.6070543Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:49.6070845Z +2025-11-24T09:45:49.6071200Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:45:49.6361379Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:49.6580049Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.6580729Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:49.6581441Z +2025-11-24T09:45:49.6581842Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:45:49.7303855Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:49.7304385Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.7304843Z ok: [kubenode-super-marlin] +2025-11-24T09:45:49.7305103Z +2025-11-24T09:45:49.7305424Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:45:49.7629135Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:49.7846401Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:49.7847017Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:49.7847332Z +2025-11-24T09:45:49.7847727Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:45:49.8949563Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:49.8950541Z +2025-11-24T09:45:49.8950979Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:45:50.2954223Z Still deploying... +2025-11-24T09:45:52.3007406Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.3008053Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:52.3008593Z ok: [kubenode-super-marlin] +2025-11-24T09:45:52.3008910Z +2025-11-24T09:45:52.3009444Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:45:52.3905637Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:52.3906273Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.3906836Z ok: [kubenode-super-marlin] +2025-11-24T09:45:52.3907146Z +2025-11-24T09:45:52.3907684Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:45:52.4537764Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.4538349Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.4538880Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:52.4539212Z +2025-11-24T09:45:52.4539495Z TASK [download : debug] ******************************************************** +2025-11-24T09:45:52.5256368Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:52.5257006Z "msg": "Pull ghcr.io/kube-vip/kube-vip:v0.8.0 required is: False" +2025-11-24T09:45:52.5257576Z } +2025-11-24T09:45:52.5257963Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:52.5258553Z "msg": "Pull ghcr.io/kube-vip/kube-vip:v0.8.0 required is: False" +2025-11-24T09:45:52.5259088Z } +2025-11-24T09:45:52.5259464Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:52.5259999Z "msg": "Pull ghcr.io/kube-vip/kube-vip:v0.8.0 required is: False" +2025-11-24T09:45:52.5260526Z } +2025-11-24T09:45:52.5260729Z +2025-11-24T09:45:52.5261064Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:45:52.5601629Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.5885451Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.5886109Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:52.5886431Z +2025-11-24T09:45:52.5886806Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:45:52.6426473Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.6427179Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.6427814Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:52.6428161Z +2025-11-24T09:45:52.6429052Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:45:52.6921837Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.6922410Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.6923227Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:52.6923528Z +2025-11-24T09:45:52.6923866Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:45:52.7766800Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.7767380Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.7768216Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:52.7768509Z +2025-11-24T09:45:52.7768842Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:45:52.8115297Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.8115733Z +2025-11-24T09:45:52.8116080Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:45:52.8617398Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.8618114Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.8618746Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:52.8619093Z +2025-11-24T09:45:52.8619491Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:45:52.9146489Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.9147193Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.9147842Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:52.9148232Z +2025-11-24T09:45:52.9148647Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:45:52.9610102Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:52.9610713Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:52.9611286Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:52.9611599Z +2025-11-24T09:45:52.9611957Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:45:53.2174395Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.2175054Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:53.2175654Z ok: [kubenode-super-marlin] +2025-11-24T09:45:53.2175966Z +2025-11-24T09:45:53.2176354Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:45:53.2787116Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:53.2787717Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.2788217Z ok: [kubenode-super-marlin] +2025-11-24T09:45:53.2788870Z +2025-11-24T09:45:53.2789297Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:45:53.3524823Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:53.3525521Z "msg": "docker.io/library/nginx" +2025-11-24T09:45:53.3526098Z } +2025-11-24T09:45:53.3526590Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:53.3527193Z "msg": "docker.io/library/nginx" +2025-11-24T09:45:53.3527742Z } +2025-11-24T09:45:53.3528209Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:53.3528776Z "msg": "docker.io/library/nginx" +2025-11-24T09:45:53.3529324Z } +2025-11-24T09:45:53.3529579Z +2025-11-24T09:45:53.3530052Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:45:53.4281130Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:53.4281816Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.4282416Z ok: [kubenode-super-marlin] +2025-11-24T09:45:53.4283042Z +2025-11-24T09:45:53.4283505Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:45:53.4983302Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:53.4984032Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.4984533Z ok: [kubenode-super-marlin] +2025-11-24T09:45:53.4984802Z +2025-11-24T09:45:53.4985137Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:45:53.5610581Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:53.5611125Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.5611584Z ok: [kubenode-super-marlin] +2025-11-24T09:45:53.5611838Z +2025-11-24T09:45:53.5612544Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:45:53.6287917Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:53.6288502Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.6288989Z ok: [kubenode-super-marlin] +2025-11-24T09:45:53.6289261Z +2025-11-24T09:45:53.6289593Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:45:53.6790313Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:53.6791029Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.6791690Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:53.6792403Z +2025-11-24T09:45:53.6792997Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:45:53.7460701Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:53.7461283Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.7461778Z ok: [kubenode-super-marlin] +2025-11-24T09:45:53.7462041Z +2025-11-24T09:45:53.7462366Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:45:53.7721688Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:53.7938641Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.7939238Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:53.7939542Z +2025-11-24T09:45:53.7939873Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:45:53.8269459Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:53.8536604Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.8537205Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:53.8537506Z +2025-11-24T09:45:53.8537866Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:45:53.9220162Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:53.9220748Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.9221252Z ok: [kubenode-super-marlin] +2025-11-24T09:45:53.9221539Z +2025-11-24T09:45:53.9221905Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:45:53.9518828Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:53.9801185Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:53.9801788Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:53.9802093Z +2025-11-24T09:45:53.9802445Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:45:54.0916364Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:54.0917632Z +2025-11-24T09:45:54.0918066Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:45:56.5254177Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:56.5254754Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:56.5255231Z ok: [kubenode-super-marlin] +2025-11-24T09:45:56.5255508Z +2025-11-24T09:45:56.5255937Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:45:56.6341231Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:56.6341881Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:56.6342448Z ok: [kubenode-super-marlin] +2025-11-24T09:45:56.6343022Z +2025-11-24T09:45:56.6343573Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:45:56.6898547Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:56.6899263Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:56.6899884Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:56.6900223Z +2025-11-24T09:45:56.6900553Z TASK [download : debug] ******************************************************** +2025-11-24T09:45:56.8984247Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:56.8985064Z "msg": "Pull docker.io/library/nginx:1.25.4-alpine required is: False" +2025-11-24T09:45:56.8985821Z } +2025-11-24T09:45:56.8986329Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:56.8987102Z "msg": "Pull docker.io/library/nginx:1.25.4-alpine required is: False" +2025-11-24T09:45:56.8987809Z } +2025-11-24T09:45:56.8988753Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:56.8989474Z "msg": "Pull docker.io/library/nginx:1.25.4-alpine required is: False" +2025-11-24T09:45:56.8990182Z } +2025-11-24T09:45:56.8990425Z +2025-11-24T09:45:56.8990844Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:45:56.9516766Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:56.9517367Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:56.9523819Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:56.9524529Z +2025-11-24T09:45:56.9524905Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:45:56.9813422Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:57.0003116Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.0003783Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:57.0004106Z +2025-11-24T09:45:57.0004545Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:45:57.0509368Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:57.0510075Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.0510735Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:57.0511111Z +2025-11-24T09:45:57.0511523Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:45:57.1162934Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:57.1163659Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.1164317Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:57.1164681Z +2025-11-24T09:45:57.1165126Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:45:57.1494458Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:57.1494875Z +2025-11-24T09:45:57.1495289Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:45:57.1824750Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:57.2091000Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.2091644Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:57.2091956Z +2025-11-24T09:45:57.2092409Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:45:57.2573001Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:57.2573721Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.2574359Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:57.2575063Z +2025-11-24T09:45:57.2575524Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:45:57.3038056Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:57.3038686Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.3039217Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:57.3039512Z +2025-11-24T09:45:57.3039850Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:45:57.5562399Z ok: [kubenode-super-marlin] +2025-11-24T09:45:57.5563181Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.5563671Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:57.5563964Z +2025-11-24T09:45:57.5564322Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:45:57.6300969Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:57.6301506Z ok: [kubenode-super-marlin] +2025-11-24T09:45:57.6301977Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.6302252Z +2025-11-24T09:45:57.6302885Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:45:57.6891678Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:45:57.6892263Z "msg": "registry.k8s.io/coredns/coredns" +2025-11-24T09:45:57.6893040Z } +2025-11-24T09:45:57.6893459Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:45:57.6893975Z "msg": "registry.k8s.io/coredns/coredns" +2025-11-24T09:45:57.6894462Z } +2025-11-24T09:45:57.6894866Z ok: [kubenode-super-marlin] => { +2025-11-24T09:45:57.6895357Z "msg": "registry.k8s.io/coredns/coredns" +2025-11-24T09:45:57.6895836Z } +2025-11-24T09:45:57.6896039Z +2025-11-24T09:45:57.6896840Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:45:57.7731656Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:57.7732317Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.7733192Z ok: [kubenode-super-marlin] +2025-11-24T09:45:57.7733513Z +2025-11-24T09:45:57.7733923Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:45:57.8610605Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:57.8611169Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.8611654Z ok: [kubenode-super-marlin] +2025-11-24T09:45:57.8612295Z +2025-11-24T09:45:57.8612880Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:45:57.9527662Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:57.9528218Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:57.9528695Z ok: [kubenode-super-marlin] +2025-11-24T09:45:57.9528974Z +2025-11-24T09:45:57.9529312Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:45:58.0140500Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:58.0141060Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:58.0141542Z ok: [kubenode-super-marlin] +2025-11-24T09:45:58.0141813Z +2025-11-24T09:45:58.0142144Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:45:58.0623583Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:58.0624248Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:58.0624808Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:58.0625120Z +2025-11-24T09:45:58.0625485Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:45:58.1639395Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:58.1640051Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:58.1640616Z ok: [kubenode-super-marlin] +2025-11-24T09:45:58.1640942Z +2025-11-24T09:45:58.1641325Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:45:58.2021293Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:58.2022028Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:58.2022963Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:58.2023326Z +2025-11-24T09:45:58.2023722Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:45:58.2542103Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:58.2543469Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:58.2544104Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:58.2544457Z +2025-11-24T09:45:58.2544853Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:45:58.3260147Z ok: [kubenode-renewed-asp] +2025-11-24T09:45:58.3260720Z ok: [kubenode-super-marlin] +2025-11-24T09:45:58.3261218Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:45:58.3261599Z +2025-11-24T09:45:58.3261952Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:45:58.3569973Z skipping: [kubenode-renewed-asp] +2025-11-24T09:45:58.3887404Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:45:58.3887995Z skipping: [kubenode-super-marlin] +2025-11-24T09:45:58.3888286Z +2025-11-24T09:45:58.3888619Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:45:58.4878896Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:45:58.4879877Z +2025-11-24T09:45:58.4880306Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:46:00.2971793Z Still deploying... +2025-11-24T09:46:00.6665016Z ok: [kubenode-super-marlin] +2025-11-24T09:46:00.6665570Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:00.6666048Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:00.6666317Z +2025-11-24T09:46:00.6666747Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:46:00.7459672Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:00.7460262Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:00.7460767Z ok: [kubenode-super-marlin] +2025-11-24T09:46:00.7461050Z +2025-11-24T09:46:00.7461549Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:46:00.7818201Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:00.8110109Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:00.8110845Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:00.8111209Z +2025-11-24T09:46:00.8111952Z TASK [download : debug] ******************************************************** +2025-11-24T09:46:00.8810631Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:46:00.8811401Z "msg": "Pull registry.k8s.io/coredns/coredns:v1.11.4 required is: False" +2025-11-24T09:46:00.8812017Z } +2025-11-24T09:46:00.8812424Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:46:00.8813348Z "msg": "Pull registry.k8s.io/coredns/coredns:v1.11.4 required is: False" +2025-11-24T09:46:00.8813973Z } +2025-11-24T09:46:00.8814368Z ok: [kubenode-super-marlin] => { +2025-11-24T09:46:00.8814950Z "msg": "Pull registry.k8s.io/coredns/coredns:v1.11.4 required is: False" +2025-11-24T09:46:00.8815530Z } +2025-11-24T09:46:00.8815733Z +2025-11-24T09:46:00.8816068Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:46:00.9430924Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:00.9431611Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:00.9432226Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:00.9432596Z +2025-11-24T09:46:00.9433350Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:46:00.9976103Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:00.9976806Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:00.9977432Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:00.9977791Z +2025-11-24T09:46:00.9978292Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:46:01.0538976Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:01.0539671Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.0540298Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:01.0540654Z +2025-11-24T09:46:01.0541044Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:46:01.1289203Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:01.1289805Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.1290335Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:01.1290691Z +2025-11-24T09:46:01.1291047Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:46:01.1729865Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:01.1730259Z +2025-11-24T09:46:01.1730602Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:46:01.2145061Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:01.2335784Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.2336519Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:01.2336887Z +2025-11-24T09:46:01.2337301Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:46:01.2913523Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:01.2914109Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.2914641Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:01.2914955Z +2025-11-24T09:46:01.2915331Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:46:01.3461148Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:01.3461850Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.3462484Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:01.3463103Z +2025-11-24T09:46:01.3463504Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:46:01.5911375Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:01.5911961Z ok: [kubenode-super-marlin] +2025-11-24T09:46:01.5913103Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.5913435Z +2025-11-24T09:46:01.5913789Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:46:01.6919507Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:01.6920171Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.6920752Z ok: [kubenode-super-marlin] +2025-11-24T09:46:01.6921077Z +2025-11-24T09:46:01.6921574Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:46:01.7941699Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:46:01.7942942Z "msg": "registry.k8s.io/dns/k8s-dns-node-cache" +2025-11-24T09:46:01.7943491Z } +2025-11-24T09:46:01.7943901Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:46:01.7944439Z "msg": "registry.k8s.io/dns/k8s-dns-node-cache" +2025-11-24T09:46:01.7944949Z } +2025-11-24T09:46:01.7945345Z ok: [kubenode-super-marlin] => { +2025-11-24T09:46:01.7945841Z "msg": "registry.k8s.io/dns/k8s-dns-node-cache" +2025-11-24T09:46:01.7946344Z } +2025-11-24T09:46:01.7946582Z +2025-11-24T09:46:01.7946979Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:46:01.8736012Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:01.8736670Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.8737259Z ok: [kubenode-super-marlin] +2025-11-24T09:46:01.8737592Z +2025-11-24T09:46:01.8738014Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:46:01.9569542Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:01.9570105Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:01.9570606Z ok: [kubenode-super-marlin] +2025-11-24T09:46:01.9570901Z +2025-11-24T09:46:01.9571237Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:46:02.0395786Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:02.0396398Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:02.0396914Z ok: [kubenode-super-marlin] +2025-11-24T09:46:02.0397204Z +2025-11-24T09:46:02.0397583Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:46:02.1129413Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:02.1130003Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:02.1130508Z ok: [kubenode-super-marlin] +2025-11-24T09:46:02.1130818Z +2025-11-24T09:46:02.1131254Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:46:02.1645281Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:02.1645994Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:02.1646636Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:02.1647009Z +2025-11-24T09:46:02.1647398Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:46:02.2549191Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:02.2549849Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:02.2550451Z ok: [kubenode-super-marlin] +2025-11-24T09:46:02.2550769Z +2025-11-24T09:46:02.2551159Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:46:02.2902830Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:02.4870910Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:02.4871651Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:02.4872001Z +2025-11-24T09:46:02.4872392Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:46:02.4873469Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:02.4874070Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:02.4874701Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:02.4875048Z +2025-11-24T09:46:02.4875450Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:46:02.4876195Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:02.4876745Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:02.4877279Z ok: [kubenode-super-marlin] +2025-11-24T09:46:02.4877592Z +2025-11-24T09:46:02.4877987Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:46:02.5775431Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:02.5776536Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:02.5777215Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:02.5777568Z +2025-11-24T09:46:02.5777970Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:46:02.6638505Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:46:02.6639639Z +2025-11-24T09:46:02.6640132Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:46:04.8314816Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:04.8315447Z ok: [kubenode-super-marlin] +2025-11-24T09:46:04.8315946Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:04.8316225Z +2025-11-24T09:46:04.8316686Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:46:04.9427979Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:04.9428670Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:04.9429243Z ok: [kubenode-super-marlin] +2025-11-24T09:46:04.9429564Z +2025-11-24T09:46:04.9430107Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:46:04.9851085Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.0129727Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.0130350Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:05.0130651Z +2025-11-24T09:46:05.0130963Z TASK [download : debug] ******************************************************** +2025-11-24T09:46:05.0965610Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:46:05.0966540Z "msg": "Pull registry.k8s.io/dns/k8s-dns-node-cache:1.22.28 required is: False" +2025-11-24T09:46:05.0967261Z } +2025-11-24T09:46:05.0967695Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:46:05.0968375Z "msg": "Pull registry.k8s.io/dns/k8s-dns-node-cache:1.22.28 required is: False" +2025-11-24T09:46:05.0969054Z } +2025-11-24T09:46:05.0969483Z ok: [kubenode-super-marlin] => { +2025-11-24T09:46:05.0970125Z "msg": "Pull registry.k8s.io/dns/k8s-dns-node-cache:1.22.28 required is: False" +2025-11-24T09:46:05.0970766Z } +2025-11-24T09:46:05.0970980Z +2025-11-24T09:46:05.0971337Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:46:05.1455023Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.1455656Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.1456220Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:05.1456551Z +2025-11-24T09:46:05.1456924Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:46:05.1731482Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.1945601Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.1946304Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:05.1946626Z +2025-11-24T09:46:05.1947074Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:46:05.2255333Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.2468182Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.2468881Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:05.2469241Z +2025-11-24T09:46:05.2469660Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:46:05.3045183Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.3045807Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.3046364Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:05.3046704Z +2025-11-24T09:46:05.3047061Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:46:05.3466399Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.3466832Z +2025-11-24T09:46:05.3467259Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:46:05.4020253Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.4020959Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.4022014Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:05.4022440Z +2025-11-24T09:46:05.4023249Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:46:05.4319263Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.4624222Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.4624856Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:05.4625197Z +2025-11-24T09:46:05.4625599Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:46:05.5125908Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:05.5126583Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.5133706Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:05.5134047Z +2025-11-24T09:46:05.5134446Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:46:05.7497527Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:05.7498131Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.7498678Z ok: [kubenode-super-marlin] +2025-11-24T09:46:05.7498970Z +2025-11-24T09:46:05.7499324Z TASK [download : Set default values for flag variables] ************************ +2025-11-24T09:46:05.8420585Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:05.8421321Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:05.8421893Z ok: [kubenode-super-marlin] +2025-11-24T09:46:05.8422247Z +2025-11-24T09:46:05.8423000Z TASK [download : Set_container_facts | Display the name of the image being processed] *** +2025-11-24T09:46:05.9306202Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:46:05.9306943Z "msg": "registry.k8s.io/cpa/cluster-proportional-autoscaler" +2025-11-24T09:46:05.9307584Z } +2025-11-24T09:46:05.9308020Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:46:05.9308664Z "msg": "registry.k8s.io/cpa/cluster-proportional-autoscaler" +2025-11-24T09:46:05.9309281Z } +2025-11-24T09:46:05.9309713Z ok: [kubenode-super-marlin] => { +2025-11-24T09:46:05.9310305Z "msg": "registry.k8s.io/cpa/cluster-proportional-autoscaler" +2025-11-24T09:46:05.9310921Z } +2025-11-24T09:46:05.9311173Z +2025-11-24T09:46:05.9311585Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** +2025-11-24T09:46:06.0066992Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:06.0067583Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.0068092Z ok: [kubenode-super-marlin] +2025-11-24T09:46:06.0068687Z +2025-11-24T09:46:06.0069066Z TASK [download : Set_container_facts | Define by what name to pull the image] *** +2025-11-24T09:46:06.0723725Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:06.0724523Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.0725239Z ok: [kubenode-super-marlin] +2025-11-24T09:46:06.0725636Z +2025-11-24T09:46:06.0726181Z TASK [download : Set_container_facts | Define file name of image] ************** +2025-11-24T09:46:06.1356521Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:06.1357116Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.1357634Z ok: [kubenode-super-marlin] +2025-11-24T09:46:06.1357916Z +2025-11-24T09:46:06.1358297Z TASK [download : Set_container_facts | Define path of image] ******************* +2025-11-24T09:46:06.2189114Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:06.2189652Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.2190158Z ok: [kubenode-super-marlin] +2025-11-24T09:46:06.2190420Z +2025-11-24T09:46:06.2190759Z TASK [download : Set image save/load command for docker] *********************** +2025-11-24T09:46:06.2705589Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:06.2706339Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.2706933Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:06.2707256Z +2025-11-24T09:46:06.2707609Z TASK [download : Set image save/load command for containerd] ******************* +2025-11-24T09:46:06.3412925Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:06.3413536Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.3414052Z ok: [kubenode-super-marlin] +2025-11-24T09:46:06.3414337Z +2025-11-24T09:46:06.3415091Z TASK [download : Set image save/load command for crio] ************************* +2025-11-24T09:46:06.3776424Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:06.4084059Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.4084741Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:06.4085061Z +2025-11-24T09:46:06.4085417Z TASK [download : Set image save/load command for docker on localhost] ********** +2025-11-24T09:46:06.4386519Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:06.4666704Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.4667305Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:06.4667969Z +2025-11-24T09:46:06.4668315Z TASK [download : Set image save/load command for containerd on localhost] ****** +2025-11-24T09:46:06.5587321Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:06.5587921Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.5588447Z ok: [kubenode-super-marlin] +2025-11-24T09:46:06.5588727Z +2025-11-24T09:46:06.5589089Z TASK [download : Set image save/load command for crio on localhost] ************ +2025-11-24T09:46:06.6232113Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:06.6232997Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:06.6233587Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:06.6233905Z +2025-11-24T09:46:06.6234268Z TASK [download : Download_container | Prepare container download] ************** +2025-11-24T09:46:06.7235211Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:46:06.7236214Z +2025-11-24T09:46:06.7236651Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** +2025-11-24T09:46:08.9207542Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:08.9208127Z ok: [kubenode-super-marlin] +2025-11-24T09:46:08.9208650Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:08.9208977Z +2025-11-24T09:46:08.9209526Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** +2025-11-24T09:46:09.0048021Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.0048709Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:09.0049232Z ok: [kubenode-super-marlin] +2025-11-24T09:46:09.0049514Z +2025-11-24T09:46:09.0050011Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** +2025-11-24T09:46:09.0564002Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.0564595Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.0565109Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:09.0565411Z +2025-11-24T09:46:09.0565677Z TASK [download : debug] ******************************************************** +2025-11-24T09:46:09.1224873Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:46:09.1225797Z "msg": "Pull registry.k8s.io/cpa/cluster-proportional-autoscaler:v1.8.8 required is: False" +2025-11-24T09:46:09.1226623Z } +2025-11-24T09:46:09.1227109Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:46:09.1227992Z "msg": "Pull registry.k8s.io/cpa/cluster-proportional-autoscaler:v1.8.8 required is: False" +2025-11-24T09:46:09.1228802Z } +2025-11-24T09:46:09.1229280Z ok: [kubenode-super-marlin] => { +2025-11-24T09:46:09.1230077Z "msg": "Pull registry.k8s.io/cpa/cluster-proportional-autoscaler:v1.8.8 required is: False" +2025-11-24T09:46:09.1230858Z } +2025-11-24T09:46:09.1231096Z +2025-11-24T09:46:09.1231501Z TASK [download : Download_container | Determine if image is in cache] ********** +2025-11-24T09:46:09.1764931Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.1765558Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.1766143Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:09.1766450Z +2025-11-24T09:46:09.1766826Z TASK [download : Download_container | Set fact indicating if image is in cache] *** +2025-11-24T09:46:09.2199532Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.2418541Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.2419180Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:09.2419509Z +2025-11-24T09:46:09.2420276Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** +2025-11-24T09:46:09.2705795Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.3039217Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.3039855Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:09.3040179Z +2025-11-24T09:46:09.3040540Z TASK [download : Download_container | Download image if required] ************** +2025-11-24T09:46:09.6465114Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.6465744Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.6466704Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:09.6467022Z +2025-11-24T09:46:09.6467380Z TASK [download : Download_container | Save and compress image] ***************** +2025-11-24T09:46:09.6833202Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.6833665Z +2025-11-24T09:46:09.6834084Z TASK [download : Download_container | Copy image to ansible host cache] ******** +2025-11-24T09:46:09.7119279Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.7350155Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.7351021Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:09.7351452Z +2025-11-24T09:46:09.7351933Z TASK [download : Download_container | Upload image to node if it is cached] **** +2025-11-24T09:46:09.7858857Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.7859511Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.7860079Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:09.7860401Z +2025-11-24T09:46:09.7860814Z TASK [download : Download_container | Load image into the local container registry] *** +2025-11-24T09:46:09.8439620Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:09.8440261Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:09.8440869Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:09.8441197Z +2025-11-24T09:46:09.8441575Z TASK [download : Download_container | Remove container image from cache] ******* +2025-11-24T09:46:10.2125346Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:10.2126026Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:10.2126585Z ok: [kubenode-super-marlin] +2025-11-24T09:46:10.2126886Z +2025-11-24T09:46:10.2127266Z PLAY [Add worker nodes to the etcd play if needed] ***************************** +2025-11-24T09:46:10.2127765Z +2025-11-24T09:46:10.2128156Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:46:10.2988176Z Still deploying... +2025-11-24T09:46:10.3218633Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:46:10.3219506Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:46:10.3220332Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:46:10.3221042Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:10.3221354Z +2025-11-24T09:46:10.3221712Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:46:10.3847362Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:10.3847814Z +2025-11-24T09:46:10.3848258Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:46:10.4587134Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:10.4587769Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:10.4588316Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:10.4588663Z +2025-11-24T09:46:10.4589067Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:46:10.5117289Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:10.5117673Z +2025-11-24T09:46:10.5118038Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:46:10.5863030Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:10.5863701Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:10.5864272Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:10.5864614Z +2025-11-24T09:46:10.5865091Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:46:10.6593295Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:10.6594084Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:10.6594705Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:10.6595097Z +2025-11-24T09:46:10.6595495Z TASK [Check if nodes needs etcd client certs (depends on network_plugin)] ****** +2025-11-24T09:46:10.7644460Z [WARNING]: Could not match supplied host pattern, ignoring: +2025-11-24T09:46:10.7645147Z _kubespray_needs_etcd +2025-11-24T09:46:10.8126998Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:10.8127650Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:10.8128585Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:10.8128946Z +2025-11-24T09:46:10.8129334Z PLAY [Install etcd] ************************************************************ +2025-11-24T09:46:10.8129779Z +2025-11-24T09:46:10.8130167Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:46:10.8786034Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:46:10.8786912Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:46:10.8787691Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:46:10.8788351Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:10.8788655Z +2025-11-24T09:46:10.8789016Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:46:10.9118348Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:10.9118775Z +2025-11-24T09:46:10.9119178Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:46:10.9740015Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:10.9740662Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:10.9741235Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:10.9741586Z +2025-11-24T09:46:10.9742010Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:46:11.0023558Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:11.0023983Z +2025-11-24T09:46:11.0539570Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:46:11.0540357Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:11.0540895Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:11.0541429Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:11.0541763Z +2025-11-24T09:46:11.0542231Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:46:11.1194958Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:11.1195571Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:11.1196124Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:11.1196453Z +2025-11-24T09:46:11.1196792Z TASK [adduser : User | Create User Group] ************************************** +2025-11-24T09:46:11.6516902Z changed: [kubenode-super-marlin] +2025-11-24T09:46:11.6517552Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:11.6518140Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:11.6518459Z +2025-11-24T09:46:11.6518831Z TASK [adduser : User | Create User] ******************************************** +2025-11-24T09:46:12.2485978Z changed: [kubenode-super-marlin] +2025-11-24T09:46:12.2486675Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:12.2487292Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:12.2487614Z +2025-11-24T09:46:12.2488013Z TASK [adduser : User | Create User Group] ************************************** +2025-11-24T09:46:12.5203419Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:12.5204106Z ok: [kubenode-super-marlin] +2025-11-24T09:46:12.5204629Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:12.5204912Z +2025-11-24T09:46:12.5205265Z TASK [adduser : User | Create User] ******************************************** +2025-11-24T09:46:12.8615181Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:12.8615781Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:12.8616266Z ok: [kubenode-super-marlin] +2025-11-24T09:46:12.8616538Z +2025-11-24T09:46:12.8617277Z TASK [etcd : Check etcd certs] ************************************************* +2025-11-24T09:46:12.9441807Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/check_certs.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:46:12.9442959Z +2025-11-24T09:46:12.9443358Z TASK [etcd : Check_certs | Register certs that have already been generated on first etcd node] *** +2025-11-24T09:46:13.4034124Z [WARNING]: Skipped '/etc/ssl/etcd/ssl' path due to this access issue: +2025-11-24T09:46:13.4034850Z '/etc/ssl/etcd/ssl' is not a directory +2025-11-24T09:46:13.4215666Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:13.4216076Z +2025-11-24T09:46:13.4216575Z TASK [etcd : Check_certs | Set default value for 'sync_certs', 'gen_certs' and 'etcd_secret_changed' to false] *** +2025-11-24T09:46:13.5080416Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:13.5081006Z ok: [kubenode-super-marlin] +2025-11-24T09:46:13.5081524Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:13.5081829Z +2025-11-24T09:46:13.5082235Z TASK [etcd : Check certs | Register ca and etcd admin/member certs on etcd hosts] *** +2025-11-24T09:46:14.5856926Z ok: [kubenode-super-marlin] => (item=ca.pem) +2025-11-24T09:46:14.5857726Z ok: [kubenode-teaching-gobbler] => (item=ca.pem) +2025-11-24T09:46:14.5858282Z ok: [kubenode-renewed-asp] => (item=ca.pem) +2025-11-24T09:46:14.5858941Z ok: [kubenode-teaching-gobbler] => (item=member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:14.5859697Z ok: [kubenode-super-marlin] => (item=member-kubenode-super-marlin.pem) +2025-11-24T09:46:14.5860381Z ok: [kubenode-renewed-asp] => (item=member-kubenode-renewed-asp.pem) +2025-11-24T09:46:14.5861124Z ok: [kubenode-teaching-gobbler] => (item=member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:14.5861864Z ok: [kubenode-super-marlin] => (item=member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:14.5862562Z ok: [kubenode-renewed-asp] => (item=member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:14.5863610Z ok: [kubenode-teaching-gobbler] => (item=admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:14.5864358Z ok: [kubenode-super-marlin] => (item=admin-kubenode-super-marlin.pem) +2025-11-24T09:46:14.5865036Z ok: [kubenode-renewed-asp] => (item=admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:14.5865743Z ok: [kubenode-teaching-gobbler] => (item=admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:14.5866471Z ok: [kubenode-super-marlin] => (item=admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:14.5867505Z ok: [kubenode-renewed-asp] => (item=admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:14.5867925Z +2025-11-24T09:46:14.5868269Z TASK [etcd : Check certs | Register ca and etcd node certs on kubernetes hosts] *** +2025-11-24T09:46:15.2452267Z ok: [kubenode-renewed-asp] => (item=ca.pem) +2025-11-24T09:46:15.2453792Z ok: [kubenode-super-marlin] => (item=ca.pem) +2025-11-24T09:46:15.2454747Z ok: [kubenode-teaching-gobbler] => (item=ca.pem) +2025-11-24T09:46:15.2455385Z ok: [kubenode-super-marlin] => (item=node-kubenode-super-marlin.pem) +2025-11-24T09:46:15.2456112Z ok: [kubenode-renewed-asp] => (item=node-kubenode-renewed-asp.pem) +2025-11-24T09:46:15.2456833Z ok: [kubenode-teaching-gobbler] => (item=node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:15.2457561Z ok: [kubenode-super-marlin] => (item=node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:15.2458286Z ok: [kubenode-teaching-gobbler] => (item=node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:15.2459016Z ok: [kubenode-renewed-asp] => (item=node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:15.2459414Z +2025-11-24T09:46:15.2459831Z TASK [etcd : Check_certs | Set 'gen_certs' to true if expected certificates are not on the first etcd node(1/2)] *** +2025-11-24T09:46:15.5573861Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca.pem) +2025-11-24T09:46:15.5574731Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:15.5575597Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:15.5576864Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) +2025-11-24T09:46:15.5577730Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:15.5578573Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) +2025-11-24T09:46:15.5579744Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:15.5580622Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) +2025-11-24T09:46:15.5581999Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:15.5583651Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:15.5584489Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:15.5585306Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:15.5586133Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:15.5586933Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:15.5587711Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:15.5588484Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:15.5589246Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:15.5590051Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:15.5590841Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:15.5591288Z +2025-11-24T09:46:15.5591703Z TASK [etcd : Check_certs | Set 'gen_certs' to true if expected certificates are not on the first etcd node(2/2)] *** +2025-11-24T09:46:15.6977932Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca.pem) +2025-11-24T09:46:15.6978881Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:15.6979825Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:15.6981141Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) +2025-11-24T09:46:15.6982071Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:15.6983327Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) +2025-11-24T09:46:15.6984239Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:15.6991708Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) +2025-11-24T09:46:15.6992908Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:15.6993910Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:15.6994836Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:15.6995759Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:15.6996679Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:15.6997561Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:15.6998409Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:15.6999251Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:15.7000392Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:15.7001277Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:15.7002222Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:15.7003072Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:15.7003617Z +2025-11-24T09:46:15.7004087Z TASK [etcd : Check_certs | Set 'gen_*_certs' groups to track which nodes needs to have certs generated on first etcd node] *** +2025-11-24T09:46:15.7787462Z changed: [kubenode-renewed-asp] => (item={'node_type': 'master', 'certs': ['/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem', '/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem', '/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem', '/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem']}) +2025-11-24T09:46:15.7789558Z changed: [kubenode-renewed-asp] => (item={'node_type': 'node', 'certs': ['/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem', '/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem']}) +2025-11-24T09:46:15.7791485Z changed: [kubenode-super-marlin] => (item={'node_type': 'master', 'certs': ['/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem', '/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem', '/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem', '/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem']}) +2025-11-24T09:46:15.7793716Z changed: [kubenode-super-marlin] => (item={'node_type': 'node', 'certs': ['/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem', '/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem']}) +2025-11-24T09:46:15.7795723Z changed: [kubenode-teaching-gobbler] => (item={'node_type': 'master', 'certs': ['/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem', '/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem', '/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem', '/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem']}) +2025-11-24T09:46:15.7797809Z changed: [kubenode-teaching-gobbler] => (item={'node_type': 'node', 'certs': ['/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem', '/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem']}) +2025-11-24T09:46:15.7798616Z +2025-11-24T09:46:15.7799155Z TASK [etcd : Check_certs | Set 'etcd_member_requires_sync' to true if ca or member/admin cert and key don't exist on etcd member or checksum doesn't match] *** +2025-11-24T09:46:15.8958833Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:15.8959501Z ok: [kubenode-super-marlin] +2025-11-24T09:46:15.8960058Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:15.8960400Z +2025-11-24T09:46:15.8961071Z TASK [etcd : Check_certs | Set 'kubernetes_host_requires_sync' to true if ca or node cert and key don't exist on kubernetes host or checksum doesn't match] *** +2025-11-24T09:46:15.9428293Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:15.9428957Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:15.9429544Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:15.9429897Z +2025-11-24T09:46:15.9430282Z TASK [etcd : Check_certs | Set 'sync_certs' to true] *************************** +2025-11-24T09:46:16.0078120Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:16.0078787Z ok: [kubenode-super-marlin] +2025-11-24T09:46:16.0079352Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:16.0079673Z +2025-11-24T09:46:16.0080034Z TASK [etcd : Generate etcd certs] ********************************************** +2025-11-24T09:46:16.0974716Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/gen_certs_script.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:46:16.0975841Z +2025-11-24T09:46:16.0976196Z TASK [etcd : Gen_certs | create etcd cert dir] ********************************* +2025-11-24T09:46:16.3329744Z changed: [kubenode-super-marlin] +2025-11-24T09:46:16.3330364Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:16.3330846Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:16.3331155Z +2025-11-24T09:46:16.6092174Z TASK [etcd : Gen_certs | create etcd script dir (on kubenode-renewed-asp)] ***** +2025-11-24T09:46:16.6093228Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:16.6093519Z +2025-11-24T09:46:16.6093832Z TASK [etcd : Gen_certs | write openssl config] ********************************* +2025-11-24T09:46:17.1617326Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:17.1617685Z +2025-11-24T09:46:17.1618034Z TASK [etcd : Gen_certs | copy certs generation script] ************************* +2025-11-24T09:46:17.6771337Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:17.6771683Z +2025-11-24T09:46:17.6772451Z TASK [etcd : Gen_certs | run cert generation script for etcd and kube control plane nodes] *** +2025-11-24T09:46:20.3005223Z Still deploying... +2025-11-24T09:46:21.1285848Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:21.1286285Z +2025-11-24T09:46:21.1286700Z TASK [etcd : Gen_certs | run cert generation script for all clients] *********** +2025-11-24T09:46:21.1917279Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:21.1917665Z +2025-11-24T09:46:21.1918181Z TASK [etcd : Gen_certs | Gather etcd member/admin and kube_control_plane client certs from first etcd node] *** +2025-11-24T09:46:25.5550886Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca.pem) +2025-11-24T09:46:25.5551991Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca-key.pem) +2025-11-24T09:46:25.5553164Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5554167Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5555137Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5556093Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5557045Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5557999Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5558973Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5559929Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5560904Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5562117Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5563154Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5564035Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5564885Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5565706Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5566518Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5567337Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5568171Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5569026Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5569736Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:25.5570377Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/ca.pem) +2025-11-24T09:46:25.5571261Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/ca.pem) +2025-11-24T09:46:25.5572140Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/ca-key.pem) +2025-11-24T09:46:25.5573304Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/ca-key.pem) +2025-11-24T09:46:25.5574218Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5575173Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5576143Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5577219Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5578175Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5579125Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5580102Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5581098Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5582057Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5583103Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5584070Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5585044Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5586010Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5586964Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5587928Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5589034Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5590011Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5591004Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5592022Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5593144Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5594156Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5595141Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5596123Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5597158Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5598149Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5599246Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:25.5600209Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5601191Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:25.5602149Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5603324Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:25.5604498Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5605472Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:25.5606446Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5607415Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:25.5608388Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5609390Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:25.5609953Z +2025-11-24T09:46:25.5610348Z TASK [etcd : Gen_certs | Write etcd member/admin and kube_control_plane client certs to other etcd nodes] *** +2025-11-24T09:46:30.3021799Z Still deploying... +2025-11-24T09:46:34.8243688Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca.pem) +2025-11-24T09:46:34.8244753Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca-key.pem) +2025-11-24T09:46:34.8245622Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8246534Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8247429Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8248629Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8249539Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8250433Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8251322Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8252223Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8253361Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8254347Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8255268Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8256189Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8257054Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8257885Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8258713Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8259536Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8260543Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8261410Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8262091Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:34.8262756Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/ca.pem) +2025-11-24T09:46:34.8263439Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/ca.pem) +2025-11-24T09:46:34.8264112Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/ca-key.pem) +2025-11-24T09:46:34.8264906Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/ca-key.pem) +2025-11-24T09:46:34.8265683Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8266510Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8267539Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8268392Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8269211Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8270031Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8270865Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8271719Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8272569Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8273521Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8274356Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8275214Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8276068Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8276897Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8277829Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8278688Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8279540Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8280391Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8281260Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8282115Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8283089Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8283987Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8284868Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8285716Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8286576Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8287445Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8288276Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:34.8289222Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8290066Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:34.8290921Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8291748Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8292566Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8293579Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:34.8294438Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8295291Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:34.8296173Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:34.8296669Z +2025-11-24T09:46:34.8296972Z TASK [etcd : Gen_certs | Gather node certs from first etcd node] *************** +2025-11-24T09:46:34.8672054Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:34.8673410Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:35.0220761Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:35.0222009Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:35.0223466Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:35.0224550Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:35.0225647Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:35.0226485Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:35.0227317Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:35.0228423Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:35.0229640Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:35.0230606Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:35.0231561Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:35.0232512Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:35.0233563Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:35.0234504Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:35.0235461Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:35.0236171Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:35.0236877Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:35.0237812Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:35.0238560Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:35.0238861Z +2025-11-24T09:46:35.0239178Z TASK [etcd : Gen_certs | Write node certs to other etcd nodes] ***************** +2025-11-24T09:46:35.0403688Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:35.0405402Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:35.1355625Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:35.1356680Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:35.1357611Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:35.1358536Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:35.1359591Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:35.1360270Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:35.1361156Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:35.1362061Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) +2025-11-24T09:46:35.1363265Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:35.1364241Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:35.1365191Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) +2025-11-24T09:46:35.1366116Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:35.1367035Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) +2025-11-24T09:46:35.1367969Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:35.1368703Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:35.1369447Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) +2025-11-24T09:46:35.1370422Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) +2025-11-24T09:46:35.1371359Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) +2025-11-24T09:46:35.1372094Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:35.1372392Z +2025-11-24T09:46:35.1372790Z TASK [etcd : Gen_certs | Generate etcd certs] ********************************** +2025-11-24T09:46:35.1808131Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:35.1809009Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:35.1809634Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:35.1810038Z +2025-11-24T09:46:35.1810432Z TASK [etcd : Gen_certs | Generate etcd certs on nodes if needed] *************** +2025-11-24T09:46:35.2405394Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:35.2406255Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:35.2406871Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:35.2407280Z +2025-11-24T09:46:35.2407706Z TASK [etcd : Gen_certs | check certificate permissions] ************************ +2025-11-24T09:46:35.4775421Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:35.4776315Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:35.4776946Z changed: [kubenode-super-marlin] +2025-11-24T09:46:35.4777237Z +2025-11-24T09:46:35.4777530Z TASK [etcd : Trust etcd CA] **************************************************** +2025-11-24T09:46:35.6114931Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/upd_ca_trust.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:46:35.6115863Z +2025-11-24T09:46:35.6116194Z TASK [etcd : Gen_certs | target ca-certificate store file] ********************* +2025-11-24T09:46:35.6807220Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:35.6807969Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:35.6808535Z ok: [kubenode-super-marlin] +2025-11-24T09:46:35.6808862Z +2025-11-24T09:46:35.6809232Z TASK [etcd : Gen_certs | add CA to trusted CA dir] ***************************** +2025-11-24T09:46:35.9711958Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:35.9712569Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:35.9713396Z changed: [kubenode-super-marlin] +2025-11-24T09:46:35.9713675Z +2025-11-24T09:46:35.9714004Z TASK [etcd : Gen_certs | update ca-certificates (Debian/Ubuntu/SUSE/Flatcar)] *** +2025-11-24T09:46:37.3009579Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:37.3010289Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:37.3010800Z changed: [kubenode-super-marlin] +2025-11-24T09:46:37.3011081Z +2025-11-24T09:46:37.3011438Z TASK [etcd : Gen_certs | update ca-certificates (RedHat)] ********************** +2025-11-24T09:46:37.3555328Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:37.3556032Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:37.3562133Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:37.3562486Z +2025-11-24T09:46:37.3563205Z TASK [etcd : Gen_certs | update ca-certificates (ClearLinux)] ****************** +2025-11-24T09:46:37.4059719Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:37.4060657Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:37.4061284Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:37.4061675Z +2025-11-24T09:46:37.4062044Z TASK [etcd : Trust etcd CA on nodes if needed] ********************************* +2025-11-24T09:46:37.4607303Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:37.4608212Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:37.4608822Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:37.4609197Z +2025-11-24T09:46:37.4609571Z TASK [etcd : Gen_certs | Get etcd certificate serials] ************************* +2025-11-24T09:46:37.5103485Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:37.5104373Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:37.5104886Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:37.5105198Z +2025-11-24T09:46:37.5105500Z TASK [etcd : Set etcd_client_cert_serial] ************************************** +2025-11-24T09:46:37.5728421Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:37.5729360Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:37.5730025Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:37.5730406Z +2025-11-24T09:46:37.5730830Z TASK [etcdctl_etcdutl : Copy etcdctl and etcdutl binary from docker container] *** +2025-11-24T09:46:37.6306588Z skipping: [kubenode-renewed-asp] => (item=etcdctl) +2025-11-24T09:46:37.6307713Z skipping: [kubenode-renewed-asp] => (item=etcdutl) +2025-11-24T09:46:37.6308353Z skipping: [kubenode-super-marlin] => (item=etcdctl) +2025-11-24T09:46:37.6308963Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:37.6309539Z skipping: [kubenode-super-marlin] => (item=etcdutl) +2025-11-24T09:46:37.6310138Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:37.6310721Z skipping: [kubenode-teaching-gobbler] => (item=etcdctl) +2025-11-24T09:46:37.6311386Z skipping: [kubenode-teaching-gobbler] => (item=etcdutl) +2025-11-24T09:46:37.6311996Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:37.6312325Z +2025-11-24T09:46:37.6312978Z TASK [etcdctl_etcdutl : Download etcd binary] ********************************** +2025-11-24T09:46:37.8585309Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcdctl_etcdutl/tasks/../../download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:46:37.8586408Z +2025-11-24T09:46:37.8586775Z TASK [etcdctl_etcdutl : Prep_download | Set a few facts] *********************** +2025-11-24T09:46:38.3300561Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:38.3301421Z ok: [kubenode-super-marlin] +2025-11-24T09:46:38.3302029Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:38.3302370Z +2025-11-24T09:46:38.3303205Z TASK [etcdctl_etcdutl : Download_file | Show url of file to dowload] *********** +2025-11-24T09:46:39.1705608Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:46:39.1706576Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" +2025-11-24T09:46:39.1707177Z } +2025-11-24T09:46:39.1707584Z ok: [kubenode-super-marlin] => { +2025-11-24T09:46:39.1708641Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" +2025-11-24T09:46:39.1709246Z } +2025-11-24T09:46:39.1709652Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:46:39.1710255Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" +2025-11-24T09:46:39.1710846Z } +2025-11-24T09:46:39.1711049Z +2025-11-24T09:46:39.1711558Z TASK [etcdctl_etcdutl : Download_file | Set pathname of cached file] *********** +2025-11-24T09:46:40.0213109Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:40.0213908Z ok: [kubenode-super-marlin] +2025-11-24T09:46:40.0214885Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:40.0215214Z +2025-11-24T09:46:40.0215602Z TASK [etcdctl_etcdutl : Download_file | Create dest directory on node] ********* +2025-11-24T09:46:40.3033478Z Still deploying... +2025-11-24T09:46:41.3746459Z ok: [kubenode-super-marlin] +2025-11-24T09:46:41.3747122Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:41.3747643Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:41.3747941Z +2025-11-24T09:46:41.3748324Z TASK [etcdctl_etcdutl : Download_file | Create local cache directory] ********** +2025-11-24T09:46:41.4011208Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:41.4011691Z +2025-11-24T09:46:41.4339974Z TASK [etcdctl_etcdutl : Download_file | Create cache directory on download_delegate host] *** +2025-11-24T09:46:41.4340725Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:41.4341043Z +2025-11-24T09:46:41.4341368Z TASK [etcdctl_etcdutl : Download_file | Download item] ************************* +2025-11-24T09:46:45.4671998Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:45.4672983Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:45.4673502Z ok: [kubenode-super-marlin] +2025-11-24T09:46:45.4673778Z +2025-11-24T09:46:45.4674152Z TASK [etcdctl_etcdutl : Download_file | Copy file back to ansible host file cache] *** +2025-11-24T09:46:45.5346441Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:45.5347332Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:45.5347869Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:45.5348181Z +2025-11-24T09:46:45.5348583Z TASK [etcdctl_etcdutl : Download_file | Copy file from cache to nodes, if it is available] *** +2025-11-24T09:46:45.5957018Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:45.5957672Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:45.5958184Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:45.5958937Z +2025-11-24T09:46:45.5959269Z TASK [etcdctl_etcdutl : Download_file | Set mode and owner] ******************** +2025-11-24T09:46:45.6464903Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:45.6465803Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:45.6466427Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:45.6466805Z +2025-11-24T09:46:45.6467205Z TASK [etcdctl_etcdutl : Download_file | Extract file archives] ***************** +2025-11-24T09:46:45.7271673Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:46:45.7273069Z +2025-11-24T09:46:45.7273476Z TASK [etcdctl_etcdutl : Extract_file | Unpacking archive] ********************** +2025-11-24T09:46:49.4001235Z ok: [kubenode-super-marlin] +2025-11-24T09:46:49.4002094Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:46:49.4002940Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:49.4003274Z +2025-11-24T09:46:49.4003669Z TASK [etcdctl_etcdutl : Copy etcd binary] ************************************** +2025-11-24T09:46:50.3043649Z Still deploying... +2025-11-24T09:46:51.6408939Z changed: [kubenode-super-marlin] +2025-11-24T09:46:51.6409667Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:51.6410242Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:51.6410533Z +2025-11-24T09:46:51.6410895Z TASK [etcdctl_etcdutl : Copy etcdctl and etcdutl binary from download dir] ***** +2025-11-24T09:46:52.3510191Z changed: [kubenode-super-marlin] => (item=etcdctl) +2025-11-24T09:46:52.3510921Z changed: [kubenode-renewed-asp] => (item=etcdctl) +2025-11-24T09:46:52.3511924Z changed: [kubenode-teaching-gobbler] => (item=etcdctl) +2025-11-24T09:46:52.3512509Z changed: [kubenode-super-marlin] => (item=etcdutl) +2025-11-24T09:46:52.3513358Z changed: [kubenode-renewed-asp] => (item=etcdutl) +2025-11-24T09:46:52.3513904Z changed: [kubenode-teaching-gobbler] => (item=etcdutl) +2025-11-24T09:46:52.3514256Z +2025-11-24T09:46:52.3514574Z TASK [etcdctl_etcdutl : Create etcdctl wrapper script] ************************* +2025-11-24T09:46:52.9168116Z changed: [kubenode-super-marlin] +2025-11-24T09:46:52.9168828Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:52.9169687Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:52.9170019Z +2025-11-24T09:46:52.9170328Z TASK [etcd : Install etcd] ***************************************************** +2025-11-24T09:46:53.0295683Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/install_host.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:46:53.0296644Z +2025-11-24T09:46:53.0296992Z TASK [etcd : Get currently-deployed etcd version] ****************************** +2025-11-24T09:46:53.3170921Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": "/usr/local/bin/etcd --version", "msg": "[Errno 2] No such file or directory: b'/usr/local/bin/etcd'", "rc": 2, "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": []} +2025-11-24T09:46:53.3172182Z ...ignoring +2025-11-24T09:46:53.3173502Z fatal: [kubenode-renewed-asp]: FAILED! => {"changed": false, "cmd": "/usr/local/bin/etcd --version", "msg": "[Errno 2] No such file or directory: b'/usr/local/bin/etcd'", "rc": 2, "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": []} +2025-11-24T09:46:53.3174625Z ...ignoring +2025-11-24T09:46:53.3175675Z fatal: [kubenode-teaching-gobbler]: FAILED! => {"changed": false, "cmd": "/usr/local/bin/etcd --version", "msg": "[Errno 2] No such file or directory: b'/usr/local/bin/etcd'", "rc": 2, "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": []} +2025-11-24T09:46:53.3176772Z ...ignoring +2025-11-24T09:46:53.3176987Z +2025-11-24T09:46:53.3177292Z TASK [etcd : Restart etcd if necessary] **************************************** +2025-11-24T09:46:53.5613488Z changed: [kubenode-super-marlin] +2025-11-24T09:46:53.5614247Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:46:53.5614766Z changed: [kubenode-renewed-asp] +2025-11-24T09:46:53.5615318Z +2025-11-24T09:46:53.5615661Z TASK [etcd : Restart etcd-events if necessary] ********************************* +2025-11-24T09:46:53.6241432Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:53.6242349Z skipping: [kubenode-super-marlin] +2025-11-24T09:46:53.6243273Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:46:53.6243650Z +2025-11-24T09:46:53.6244024Z TASK [etcd : Install | Copy etcd binary from download dir] ********************* +2025-11-24T09:46:54.0442915Z changed: [kubenode-renewed-asp] => (item=etcd) +2025-11-24T09:46:54.0443977Z changed: [kubenode-super-marlin] => (item=etcd) +2025-11-24T09:46:54.0444707Z changed: [kubenode-teaching-gobbler] => (item=etcd) +2025-11-24T09:46:54.0445145Z +2025-11-24T09:46:54.0445455Z TASK [etcd : Configure etcd] *************************************************** +2025-11-24T09:46:54.2063416Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/configure.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:46:54.2064391Z +2025-11-24T09:46:54.2064733Z TASK [etcd : Configure | Check if etcd cluster is healthy] ********************* +2025-11-24T09:46:59.5490311Z ok: [kubenode-renewed-asp] +2025-11-24T09:46:59.5490916Z +2025-11-24T09:46:59.5491327Z TASK [etcd : Configure | Check if etcd-events cluster is healthy] ************** +2025-11-24T09:46:59.5832495Z skipping: [kubenode-renewed-asp] +2025-11-24T09:46:59.5833254Z +2025-11-24T09:46:59.5833616Z TASK [etcd : Configure | Refresh etcd config] ********************************** +2025-11-24T09:46:59.6745159Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/refresh_config.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:46:59.6746358Z +2025-11-24T09:46:59.6746762Z TASK [etcd : Refresh config | Create etcd config file] ************************* +2025-11-24T09:47:00.2730876Z changed: [kubenode-super-marlin] +2025-11-24T09:47:00.2731802Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:00.2732375Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:00.2733025Z +2025-11-24T09:47:00.2733386Z TASK [etcd : Refresh config | Create etcd-events config file] ****************** +2025-11-24T09:47:00.3058036Z Still deploying... +2025-11-24T09:47:00.3351350Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:00.3352041Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:00.3352559Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:00.3353189Z +2025-11-24T09:47:00.3353527Z TASK [etcd : Configure | Copy etcd.service systemd file] *********************** +2025-11-24T09:47:00.8446079Z changed: [kubenode-super-marlin] +2025-11-24T09:47:00.8446884Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:00.8447500Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:00.8447825Z +2025-11-24T09:47:00.8448216Z TASK [etcd : Configure | Copy etcd-events.service systemd file] **************** +2025-11-24T09:47:00.9099837Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:00.9100471Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:00.9101002Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:00.9101318Z +2025-11-24T09:47:02.0142410Z TASK [etcd : Configure | reload systemd] *************************************** +2025-11-24T09:47:02.0143491Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:02.0144055Z ok: [kubenode-super-marlin] +2025-11-24T09:47:02.0144706Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:02.0145003Z +2025-11-24T09:47:02.0145361Z TASK [etcd : Configure | Ensure etcd is running] ******************************* +2025-11-24T09:47:03.5275583Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:03.5276185Z changed: [kubenode-super-marlin] +2025-11-24T09:47:03.5276756Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:03.5277091Z +2025-11-24T09:47:03.5277435Z TASK [etcd : Configure | Ensure etcd-events is running] ************************ +2025-11-24T09:47:03.5807043Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:03.5807752Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:03.5808370Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:03.5809224Z +2025-11-24T09:47:03.5809722Z TASK [etcd : Configure | Wait for etcd cluster to be healthy] ****************** +2025-11-24T09:47:03.9311955Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:03.9312349Z +2025-11-24T09:47:03.9313061Z TASK [etcd : Configure | Wait for etcd-events cluster to be healthy] *********** +2025-11-24T09:47:03.9703711Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:03.9704114Z +2025-11-24T09:47:03.9704455Z TASK [etcd : Configure | Check if member is in etcd cluster] ******************* +2025-11-24T09:47:04.3262178Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:04.3263183Z ok: [kubenode-super-marlin] +2025-11-24T09:47:04.3263791Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:04.3264140Z +2025-11-24T09:47:04.3264545Z TASK [etcd : Configure | Check if member is in etcd-events cluster] ************ +2025-11-24T09:47:04.3727553Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:04.3913438Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:04.3914074Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:04.3914392Z +2025-11-24T09:47:04.3914713Z TASK [etcd : Configure | Join member(s) to etcd cluster one at a time] ********* +2025-11-24T09:47:04.4647912Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:47:04.4648743Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:47:04.4649517Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:47:04.4650272Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:47:04.4651041Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:04.4652210Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:04.4653152Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:04.4653950Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) +2025-11-24T09:47:04.4654618Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:04.4655263Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) +2025-11-24T09:47:04.4656070Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:04.4656903Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:04.4657222Z +2025-11-24T09:47:04.4657573Z TASK [etcd : Configure | Join member(s) to etcd-events cluster one at a time] *** +2025-11-24T09:47:04.4873275Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:47:04.4874204Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:47:04.5170180Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:04.5171060Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:47:04.5171728Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:04.5172406Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:47:04.5173486Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) +2025-11-24T09:47:04.5174295Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) +2025-11-24T09:47:04.5175074Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:04.5175747Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:04.5176405Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:04.5177095Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:04.5177419Z +2025-11-24T09:47:04.5177753Z TASK [etcd : Refresh etcd config] ********************************************** +2025-11-24T09:47:04.6453317Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/refresh_config.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:47:04.6454392Z +2025-11-24T09:47:04.6454767Z TASK [etcd : Refresh config | Create etcd config file] ************************* +2025-11-24T09:47:05.1912199Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:05.1913373Z changed: [kubenode-super-marlin] +2025-11-24T09:47:05.1914304Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:05.1914584Z +2025-11-24T09:47:05.1914905Z TASK [etcd : Refresh config | Create etcd-events config file] ****************** +2025-11-24T09:47:05.2365326Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:05.2652098Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:05.2653060Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:05.2653419Z +2025-11-24T09:47:05.2653762Z TASK [etcd : Restart etcd if certs changed] ************************************ +2025-11-24T09:47:05.3271256Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:05.3272137Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:05.3273079Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:05.3273472Z +2025-11-24T09:47:05.3273871Z TASK [etcd : Restart etcd-events if certs changed] ***************************** +2025-11-24T09:47:05.3620780Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:05.3899711Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:05.3900431Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:05.3900754Z +2025-11-24T09:47:05.3901083Z TASK [etcd : Refresh etcd config again for idempotency] ************************ +2025-11-24T09:47:05.5122610Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/refresh_config.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler +2025-11-24T09:47:05.5124118Z +2025-11-24T09:47:05.5124535Z TASK [etcd : Refresh config | Create etcd config file] ************************* +2025-11-24T09:47:06.0287373Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:06.0288093Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:06.0289056Z ok: [kubenode-super-marlin] +2025-11-24T09:47:06.0289359Z +2025-11-24T09:47:06.0289709Z TASK [etcd : Refresh config | Create etcd-events config file] ****************** +2025-11-24T09:47:06.1285058Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:06.1285807Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:06.1286367Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:06.1286723Z +2025-11-24T09:47:06.1287071Z RUNNING HANDLER [etcd : Refresh Time Fact] ************************************* +2025-11-24T09:47:07.2698551Z ok: [kubenode-super-marlin] +2025-11-24T09:47:07.2699577Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:07.2700109Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:07.2700408Z +2025-11-24T09:47:07.2700750Z RUNNING HANDLER [etcd : Set Backup Directory] ********************************** +2025-11-24T09:47:07.3435543Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:07.3436344Z ok: [kubenode-super-marlin] +2025-11-24T09:47:07.3436902Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:07.3437221Z +2025-11-24T09:47:07.3437617Z RUNNING HANDLER [etcd : Create Backup Directory] ******************************* +2025-11-24T09:47:07.6189270Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:07.6189961Z changed: [kubenode-super-marlin] +2025-11-24T09:47:07.6190526Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:07.6190898Z +2025-11-24T09:47:07.6191261Z RUNNING HANDLER [etcd : Stat etcd v2 data directory] *************************** +2025-11-24T09:47:07.8830073Z ok: [kubenode-super-marlin] +2025-11-24T09:47:07.8830792Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:07.8831359Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:07.8831672Z +2025-11-24T09:47:07.8832046Z RUNNING HANDLER [etcd : Backup etcd v2 data] *********************************** +2025-11-24T09:47:08.1736764Z changed: [kubenode-super-marlin] +2025-11-24T09:47:08.1737465Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:08.1743976Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:08.1744398Z +2025-11-24T09:47:08.1744782Z RUNNING HANDLER [etcd : Backup etcd v3 data] *********************************** +2025-11-24T09:47:08.5265861Z changed: [kubenode-super-marlin] +2025-11-24T09:47:08.5266796Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:08.5267332Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:08.5267670Z +2025-11-24T09:47:08.5268014Z RUNNING HANDLER [etcd : Etcd | reload systemd] ********************************* +2025-11-24T09:47:09.2132295Z ok: [kubenode-super-marlin] +2025-11-24T09:47:09.2133438Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:09.2134024Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:09.2134370Z +2025-11-24T09:47:09.2134738Z RUNNING HANDLER [etcd : Reload etcd] ******************************************* +2025-11-24T09:47:10.3070760Z Still deploying... +2025-11-24T09:47:20.3089345Z Still deploying... +2025-11-24T09:47:29.6508067Z changed: [kubenode-super-marlin] +2025-11-24T09:47:29.6510253Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:29.6511270Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:29.6511826Z +2025-11-24T09:47:29.6512512Z RUNNING HANDLER [etcd : Wait for etcd up] ************************************** +2025-11-24T09:47:30.3109043Z Still deploying... +2025-11-24T09:47:30.3136675Z ok: [kubenode-super-marlin] +2025-11-24T09:47:30.3137642Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:30.3138312Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:30.3138670Z +2025-11-24T09:47:30.3139044Z RUNNING HANDLER [etcd : Find old etcd backups] ********************************* +2025-11-24T09:47:30.3452896Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.3686010Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:30.3686712Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:30.3687110Z +2025-11-24T09:47:30.3687513Z RUNNING HANDLER [etcd : Remove old etcd backups] ******************************* +2025-11-24T09:47:30.4277863Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.4278870Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:30.4279478Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:30.4279851Z +2025-11-24T09:47:30.4280676Z RUNNING HANDLER [etcd : Set etcd_secret_changed] ******************************* +2025-11-24T09:47:30.5478119Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:30.6234448Z +2025-11-24T09:47:30.6235265Z PLAY [Install Kubernetes nodes] ************************************************ +2025-11-24T09:47:30.6235829Z +2025-11-24T09:47:30.6236270Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:47:30.6237150Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:47:30.6238400Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:30.6239231Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:47:30.6239940Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.6240274Z +2025-11-24T09:47:30.6240666Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:47:30.6491885Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.6492270Z +2025-11-24T09:47:30.6492902Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:47:30.6977043Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.6977677Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:30.6978211Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:30.6978503Z +2025-11-24T09:47:30.6978898Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:47:30.7380173Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.7380618Z +2025-11-24T09:47:30.7381065Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:47:30.7918242Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.7919302Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:30.7919950Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:30.7920307Z +2025-11-24T09:47:30.7920826Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:47:30.8580267Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:30.8580911Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.8581411Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:30.8581711Z +2025-11-24T09:47:30.8582047Z TASK [kubernetes/node : Look up docker cgroup driver] ************************** +2025-11-24T09:47:30.8828680Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.9057209Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:30.9057869Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:30.9058178Z +2025-11-24T09:47:30.9058548Z TASK [kubernetes/node : Set kubelet_cgroup_driver_detected fact for docker] **** +2025-11-24T09:47:30.9500223Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:30.9500927Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:30.9501544Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:30.9501891Z +2025-11-24T09:47:30.9502282Z TASK [kubernetes/node : Look up crio cgroup driver] **************************** +2025-11-24T09:47:30.9784136Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:31.0024982Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.0025707Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:31.0026065Z +2025-11-24T09:47:31.0026468Z TASK [kubernetes/node : Set kubelet_cgroup_driver_detected fact for crio] ****** +2025-11-24T09:47:31.0390418Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:31.0620440Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.0621059Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:31.0621364Z +2025-11-24T09:47:31.0621715Z TASK [kubernetes/node : Set kubelet_cgroup_driver_detected fact for containerd] *** +2025-11-24T09:47:31.1308890Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:31.1309443Z ok: [kubenode-super-marlin] +2025-11-24T09:47:31.1309933Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.1310209Z +2025-11-24T09:47:31.1310544Z TASK [kubernetes/node : Set kubelet_cgroup_driver] ***************************** +2025-11-24T09:47:31.2084308Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:31.2085231Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.2085703Z ok: [kubenode-super-marlin] +2025-11-24T09:47:31.2085956Z +2025-11-24T09:47:31.2086282Z TASK [kubernetes/node : Set kubelet_cgroups options when cgroupfs is used] ***** +2025-11-24T09:47:31.2541940Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:31.2542840Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.2543429Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:31.2543745Z +2025-11-24T09:47:31.2544139Z TASK [kubernetes/node : Set kubelet_config_extra_args options when cgroupfs is used] *** +2025-11-24T09:47:31.2822364Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:31.3037811Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.3038514Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:31.3038870Z +2025-11-24T09:47:31.3039262Z TASK [kubernetes/node : Os specific vars] ************************************** +2025-11-24T09:47:31.3737302Z ok: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-22.yml) +2025-11-24T09:47:31.3738845Z ok: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-22.yml) +2025-11-24T09:47:31.3740303Z ok: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-22.yml) +2025-11-24T09:47:31.3741123Z +2025-11-24T09:47:31.3741550Z TASK [kubernetes/node : Pre-upgrade | check if kubelet container exists] ******* +2025-11-24T09:47:31.7938162Z ok: [kubenode-super-marlin] +2025-11-24T09:47:31.7938826Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:31.7939381Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.7939705Z +2025-11-24T09:47:31.7940110Z TASK [kubernetes/node : Pre-upgrade | copy /var/lib/cni from kubelet] ********** +2025-11-24T09:47:31.8433522Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:31.8434104Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.8434629Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:31.8434936Z +2025-11-24T09:47:31.8435391Z TASK [kubernetes/node : Pre-upgrade | ensure kubelet container service is stopped if using host deployment] *** +2025-11-24T09:47:31.8761127Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:31.8971174Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.8971752Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:31.8972398Z +2025-11-24T09:47:31.8973039Z TASK [kubernetes/node : Pre-upgrade | ensure kubelet container is removed if using host deployment] *** +2025-11-24T09:47:31.9421250Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:31.9421944Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:31.9422567Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:31.9423147Z +2025-11-24T09:47:31.9423544Z TASK [kubernetes/node : Ensure /var/lib/cni exists] **************************** +2025-11-24T09:47:32.2242475Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:32.2243544Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:32.2244148Z changed: [kubenode-super-marlin] +2025-11-24T09:47:32.2244484Z +2025-11-24T09:47:32.2244886Z TASK [kubernetes/node : Install | Copy kubeadm binary from download dir] ******* +2025-11-24T09:47:32.2892461Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:32.2893323Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:32.2893877Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:32.2894188Z +2025-11-24T09:47:32.2894523Z TASK [kubernetes/node : Install | Copy kubelet binary from download dir] ******* +2025-11-24T09:47:33.3745440Z changed: [kubenode-super-marlin] +2025-11-24T09:47:33.3746143Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.3746749Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:33.3747078Z +2025-11-24T09:47:33.3747487Z TASK [kubernetes/node : Haproxy | Cleanup potentially deployed haproxy] ******** +2025-11-24T09:47:33.4131410Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.4357652Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.4358266Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.4358995Z +2025-11-24T09:47:33.4359358Z TASK [kubernetes/node : Nginx-proxy | Make nginx directory] ******************** +2025-11-24T09:47:33.4860386Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.4860961Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.4861507Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.4861799Z +2025-11-24T09:47:33.4862163Z TASK [kubernetes/node : Nginx-proxy | Write nginx-proxy configuration] ********* +2025-11-24T09:47:33.5287256Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.5287844Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.5288752Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.5289047Z +2025-11-24T09:47:33.5289394Z TASK [kubernetes/node : Nginx-proxy | Get checksum from config] **************** +2025-11-24T09:47:33.5848729Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.5849384Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.5850019Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.5850364Z +2025-11-24T09:47:33.5850783Z TASK [kubernetes/node : Nginx-proxy | Write static pod] ************************ +2025-11-24T09:47:33.6307493Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.6308225Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.6308879Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.6309237Z +2025-11-24T09:47:33.6309670Z TASK [kubernetes/node : Haproxy | Cleanup potentially deployed nginx-proxy] **** +2025-11-24T09:47:33.6863485Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.6864098Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.6864651Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.6864946Z +2025-11-24T09:47:33.6865280Z TASK [kubernetes/node : Haproxy | Make haproxy directory] ********************** +2025-11-24T09:47:33.7373787Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.7374475Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.7375076Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.7375456Z +2025-11-24T09:47:33.7375878Z TASK [kubernetes/node : Haproxy | Write haproxy configuration] ***************** +2025-11-24T09:47:33.7645052Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.7905034Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.7905736Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.7906091Z +2025-11-24T09:47:33.7906479Z TASK [kubernetes/node : Haproxy | Get checksum from config] ******************** +2025-11-24T09:47:33.8407387Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.8408120Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.8408770Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.8409148Z +2025-11-24T09:47:33.8409564Z TASK [kubernetes/node : Haproxy | Write static pod] **************************** +2025-11-24T09:47:33.8918286Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:33.8918856Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:33.8919401Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:33.8919693Z +2025-11-24T09:47:33.8920050Z TASK [kubernetes/node : Ensure nodePort range is reserved] ********************* +2025-11-24T09:47:35.3537620Z changed: [kubenode-super-marlin] +2025-11-24T09:47:35.3538311Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:35.3538893Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:35.3539282Z +2025-11-24T09:47:35.3539684Z TASK [kubernetes/node : Verify if br_netfilter module exists] ****************** +2025-11-24T09:47:35.6242068Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:35.6243045Z ok: [kubenode-super-marlin] +2025-11-24T09:47:35.6243633Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:35.6244012Z +2025-11-24T09:47:35.6244450Z TASK [kubernetes/node : Verify br_netfilter module path exists] **************** +2025-11-24T09:47:36.0787897Z ok: [kubenode-renewed-asp] => (item=/etc/modules-load.d) +2025-11-24T09:47:36.0788784Z ok: [kubenode-teaching-gobbler] => (item=/etc/modules-load.d) +2025-11-24T09:47:36.0789575Z ok: [kubenode-super-marlin] => (item=/etc/modules-load.d) +2025-11-24T09:47:36.0790285Z ok: [kubenode-teaching-gobbler] => (item=/etc/modprobe.d) +2025-11-24T09:47:36.0791421Z ok: [kubenode-super-marlin] => (item=/etc/modprobe.d) +2025-11-24T09:47:36.0792172Z ok: [kubenode-renewed-asp] => (item=/etc/modprobe.d) +2025-11-24T09:47:36.0792579Z +2025-11-24T09:47:36.0793227Z TASK [kubernetes/node : Enable br_netfilter module] **************************** +2025-11-24T09:47:36.5842124Z changed: [kubenode-super-marlin] +2025-11-24T09:47:36.5843133Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:36.5843726Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:36.5844026Z +2025-11-24T09:47:36.5844654Z TASK [kubernetes/node : Persist br_netfilter module] *************************** +2025-11-24T09:47:37.1129759Z changed: [kubenode-super-marlin] +2025-11-24T09:47:37.1130361Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:37.1130842Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:37.1131168Z +2025-11-24T09:47:37.1131518Z TASK [kubernetes/node : Check if bridge-nf-call-iptables key exists] *********** +2025-11-24T09:47:37.3401488Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:37.3402178Z ok: [kubenode-super-marlin] +2025-11-24T09:47:37.3403034Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:37.3403371Z +2025-11-24T09:47:37.3403772Z TASK [kubernetes/node : Enable bridge-nf-call tables] ************************** +2025-11-24T09:47:39.0107552Z changed: [kubenode-renewed-asp] => (item=net.bridge.bridge-nf-call-iptables) +2025-11-24T09:47:39.0108663Z changed: [kubenode-teaching-gobbler] => (item=net.bridge.bridge-nf-call-iptables) +2025-11-24T09:47:39.0109696Z changed: [kubenode-super-marlin] => (item=net.bridge.bridge-nf-call-iptables) +2025-11-24T09:47:39.0110710Z changed: [kubenode-super-marlin] => (item=net.bridge.bridge-nf-call-arptables) +2025-11-24T09:47:39.0111683Z changed: [kubenode-renewed-asp] => (item=net.bridge.bridge-nf-call-arptables) +2025-11-24T09:47:39.0112838Z changed: [kubenode-renewed-asp] => (item=net.bridge.bridge-nf-call-ip6tables) +2025-11-24T09:47:39.0113848Z changed: [kubenode-super-marlin] => (item=net.bridge.bridge-nf-call-ip6tables) +2025-11-24T09:47:39.0114840Z changed: [kubenode-teaching-gobbler] => (item=net.bridge.bridge-nf-call-arptables) +2025-11-24T09:47:39.0115850Z changed: [kubenode-teaching-gobbler] => (item=net.bridge.bridge-nf-call-ip6tables) +2025-11-24T09:47:39.0116425Z +2025-11-24T09:47:39.0116828Z TASK [kubernetes/node : Modprobe Kernel Module for IPVS] *********************** +2025-11-24T09:47:40.3124238Z Still deploying... +2025-11-24T09:47:40.3448469Z changed: [kubenode-super-marlin] => (item=ip_vs) +2025-11-24T09:47:40.3449142Z changed: [kubenode-teaching-gobbler] => (item=ip_vs) +2025-11-24T09:47:40.3449772Z changed: [kubenode-renewed-asp] => (item=ip_vs) +2025-11-24T09:47:40.3450349Z changed: [kubenode-renewed-asp] => (item=ip_vs_rr) +2025-11-24T09:47:40.3450914Z changed: [kubenode-super-marlin] => (item=ip_vs_rr) +2025-11-24T09:47:40.3451494Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_rr) +2025-11-24T09:47:40.3452084Z changed: [kubenode-renewed-asp] => (item=ip_vs_wrr) +2025-11-24T09:47:40.3452897Z changed: [kubenode-super-marlin] => (item=ip_vs_wrr) +2025-11-24T09:47:40.3453513Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_wrr) +2025-11-24T09:47:40.3454111Z changed: [kubenode-renewed-asp] => (item=ip_vs_sh) +2025-11-24T09:47:40.3454687Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_sh) +2025-11-24T09:47:40.3455264Z changed: [kubenode-super-marlin] => (item=ip_vs_sh) +2025-11-24T09:47:40.3455855Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_wlc) +2025-11-24T09:47:40.3456453Z changed: [kubenode-renewed-asp] => (item=ip_vs_wlc) +2025-11-24T09:47:40.3457017Z changed: [kubenode-super-marlin] => (item=ip_vs_wlc) +2025-11-24T09:47:40.3457603Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_lc) +2025-11-24T09:47:40.3458182Z changed: [kubenode-renewed-asp] => (item=ip_vs_lc) +2025-11-24T09:47:40.3458737Z changed: [kubenode-super-marlin] => (item=ip_vs_lc) +2025-11-24T09:47:40.3459068Z +2025-11-24T09:47:40.3459395Z TASK [kubernetes/node : Modprobe conntrack module] ***************************** +2025-11-24T09:47:40.6050120Z changed: [kubenode-renewed-asp] => (item=nf_conntrack) +2025-11-24T09:47:40.6052927Z fatal: [kubenode-renewed-asp]: FAILED! => {"msg": "The conditional check '(modprobe_conntrack_module|default({'rc': 1})).rc != 0' failed. The error was: error while evaluating conditional ((modprobe_conntrack_module|default({'rc': 1})).rc != 0): 'dict object' has no attribute 'rc'. 'dict object' has no attribute 'rc'\n\nThe error appears to be in '/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml': line 126, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- name: Modprobe conntrack module\n ^ here\n"} +2025-11-24T09:47:40.6055633Z ...ignoring +2025-11-24T09:47:40.6056103Z changed: [kubenode-super-marlin] => (item=nf_conntrack) +2025-11-24T09:47:40.6056734Z changed: [kubenode-teaching-gobbler] => (item=nf_conntrack) +2025-11-24T09:47:40.6059221Z fatal: [kubenode-super-marlin]: FAILED! => {"msg": "The conditional check '(modprobe_conntrack_module|default({'rc': 1})).rc != 0' failed. The error was: error while evaluating conditional ((modprobe_conntrack_module|default({'rc': 1})).rc != 0): 'dict object' has no attribute 'rc'. 'dict object' has no attribute 'rc'\n\nThe error appears to be in '/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml': line 126, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- name: Modprobe conntrack module\n ^ here\n"} +2025-11-24T09:47:40.6061416Z ...ignoring +2025-11-24T09:47:40.6063667Z fatal: [kubenode-teaching-gobbler]: FAILED! => {"msg": "The conditional check '(modprobe_conntrack_module|default({'rc': 1})).rc != 0' failed. The error was: error while evaluating conditional ((modprobe_conntrack_module|default({'rc': 1})).rc != 0): 'dict object' has no attribute 'rc'. 'dict object' has no attribute 'rc'\n\nThe error appears to be in '/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml': line 126, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- name: Modprobe conntrack module\n ^ here\n"} +2025-11-24T09:47:40.6065836Z ...ignoring +2025-11-24T09:47:40.6066036Z +2025-11-24T09:47:40.6066354Z TASK [kubernetes/node : Check cloud provider credentials] ********************** +2025-11-24T09:47:40.6588192Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:40.6588767Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:40.6589309Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:40.6589601Z +2025-11-24T09:47:40.6589941Z TASK [kubernetes/node : Test if openstack_cacert is a base64 string] *********** +2025-11-24T09:47:40.7173587Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:40.7174241Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:40.7174808Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:40.7175168Z +2025-11-24T09:47:40.7175542Z TASK [kubernetes/node : Write cacert file] ************************************* +2025-11-24T09:47:40.7712009Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:40.7712884Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:40.7713445Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:40.7713740Z +2025-11-24T09:47:40.7714066Z TASK [kubernetes/node : Write cloud-config] ************************************ +2025-11-24T09:47:40.8219210Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:40.8219905Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:40.8220535Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:40.8220919Z +2025-11-24T09:47:40.8221320Z TASK [kubernetes/node : Set kubelet api version to v1beta1] ******************** +2025-11-24T09:47:40.8844884Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:40.8845534Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:40.8853459Z ok: [kubenode-super-marlin] +2025-11-24T09:47:40.8853882Z +2025-11-24T09:47:40.8854248Z TASK [kubernetes/node : Write kubelet environment config file (kubeadm)] ******* +2025-11-24T09:47:41.4414991Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:41.4415743Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:41.4416347Z changed: [kubenode-super-marlin] +2025-11-24T09:47:41.4416704Z +2025-11-24T09:47:41.4417120Z TASK [kubernetes/node : Write kubelet config file] ***************************** +2025-11-24T09:47:42.0604067Z changed: [kubenode-super-marlin] +2025-11-24T09:47:42.0604762Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:42.0605294Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:42.0605622Z +2025-11-24T09:47:42.0606350Z TASK [kubernetes/node : Write kubelet systemd init file] *********************** +2025-11-24T09:47:42.6581120Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:42.6581820Z changed: [kubenode-super-marlin] +2025-11-24T09:47:42.6582307Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:42.6582603Z +2025-11-24T09:47:42.6583258Z TASK [kubernetes/node : Flush_handlers and reload-systemd] ********************* +2025-11-24T09:47:42.6583700Z +2025-11-24T09:47:42.6584051Z TASK [kubernetes/node : Flush_handlers and reload-systemd] ********************* +2025-11-24T09:47:42.6584463Z +2025-11-24T09:47:42.6584765Z TASK [kubernetes/node : Flush_handlers and reload-systemd] ********************* +2025-11-24T09:47:42.6585161Z +2025-11-24T09:47:42.6585465Z RUNNING HANDLER [kubernetes/node : Kubelet | reload systemd] ******************* +2025-11-24T09:47:43.3451790Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:43.3452877Z ok: [kubenode-super-marlin] +2025-11-24T09:47:43.3453482Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:43.3453833Z +2025-11-24T09:47:43.3454244Z RUNNING HANDLER [kubernetes/node : Kubelet | restart kubelet] ****************** +2025-11-24T09:47:43.7496411Z changed: [kubenode-super-marlin] +2025-11-24T09:47:43.7497127Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:43.7497682Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:43.7498005Z +2025-11-24T09:47:43.7498345Z TASK [kubernetes/node : Enable kubelet] **************************************** +2025-11-24T09:47:44.5025461Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:44.5026084Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:44.5026599Z changed: [kubenode-super-marlin] +2025-11-24T09:47:44.5026901Z +2025-11-24T09:47:44.5027260Z RUNNING HANDLER [kubernetes/node : Kubelet | restart kubelet] ****************** +2025-11-24T09:47:44.9644978Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:44.9645640Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:44.9646299Z changed: [kubenode-super-marlin] +2025-11-24T09:47:44.9646637Z +2025-11-24T09:47:44.9647032Z PLAY [Install the control plane] *********************************************** +2025-11-24T09:47:44.9647516Z +2025-11-24T09:47:44.9647911Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:47:45.0663647Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:47:45.0664417Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:45.0665146Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:47:45.0665738Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.0666011Z +2025-11-24T09:47:45.0666332Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:47:45.1162928Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.1163400Z +2025-11-24T09:47:45.1163813Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:47:45.1603170Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.1994123Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:45.1994869Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:45.1995293Z +2025-11-24T09:47:45.1995742Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:47:45.2315123Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.2315644Z +2025-11-24T09:47:45.2316041Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:47:45.2982957Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.2983749Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:45.2984390Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:45.2984767Z +2025-11-24T09:47:45.2985295Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:47:45.3824993Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.3825894Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:45.3826499Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:45.3827218Z +2025-11-24T09:47:45.3827759Z TASK [kubernetes/tokens : Check_tokens | check if the tokens have already been generated on first master] *** +2025-11-24T09:47:45.4208707Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.4209171Z +2025-11-24T09:47:45.4209624Z TASK [kubernetes/tokens : Check_tokens | Set default value for 'sync_tokens' and 'gen_tokens' to false] *** +2025-11-24T09:47:45.4718572Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.4719330Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:45.4719850Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:45.4720170Z +2025-11-24T09:47:45.4720554Z TASK [kubernetes/tokens : Check_tokens | Set 'sync_tokens' and 'gen_tokens' to true] *** +2025-11-24T09:47:45.4922204Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.4923098Z +2025-11-24T09:47:45.4923581Z TASK [kubernetes/tokens : Check tokens | check if a cert already exists] ******* +2025-11-24T09:47:45.5439524Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.5440442Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:45.5441111Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:45.5441488Z +2025-11-24T09:47:45.5441881Z TASK [kubernetes/tokens : Check_tokens | Set 'sync_tokens' to true] ************ +2025-11-24T09:47:45.6892255Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.6892937Z +2025-11-24T09:47:45.6893341Z TASK [kubernetes/tokens : Make sure the tokens directory exits] **************** +2025-11-24T09:47:45.7423581Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.7424190Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:45.7424718Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:45.7425133Z +2025-11-24T09:47:45.7425546Z TASK [kubernetes/tokens : Gen_tokens | copy tokens generation script] ********** +2025-11-24T09:47:45.7861249Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.7862006Z +2025-11-24T09:47:45.7862360Z TASK [kubernetes/tokens : Gen_tokens | generate tokens for master components] *** +2025-11-24T09:47:45.8363068Z skipping: [kubenode-super-marlin] => (item=['system:kubectl', 'kubenode-super-marlin']) +2025-11-24T09:47:45.8364173Z skipping: [kubenode-super-marlin] => (item=['system:kubectl', 'kubenode-renewed-asp']) +2025-11-24T09:47:45.8365178Z skipping: [kubenode-super-marlin] => (item=['system:kubectl', 'kubenode-teaching-gobbler']) +2025-11-24T09:47:45.8365974Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.8366329Z +2025-11-24T09:47:45.8366760Z TASK [kubernetes/tokens : Gen_tokens | generate tokens for node components] **** +2025-11-24T09:47:45.8901631Z skipping: [kubenode-super-marlin] => (item=['system:kubelet', 'kubenode-super-marlin']) +2025-11-24T09:47:45.8903074Z skipping: [kubenode-super-marlin] => (item=['system:kubelet', 'kubenode-renewed-asp']) +2025-11-24T09:47:45.8904100Z skipping: [kubenode-super-marlin] => (item=['system:kubelet', 'kubenode-teaching-gobbler']) +2025-11-24T09:47:45.8904926Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.8905284Z +2025-11-24T09:47:45.8905682Z TASK [kubernetes/tokens : Gen_tokens | Get list of tokens from first master] *** +2025-11-24T09:47:45.9249004Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.9249509Z +2025-11-24T09:47:45.9249874Z TASK [kubernetes/tokens : Gen_tokens | Gather tokens] ************************** +2025-11-24T09:47:45.9607620Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:45.9608234Z +2025-11-24T09:47:45.9608648Z TASK [kubernetes/tokens : Gen_tokens | Copy tokens on masters] ***************** +2025-11-24T09:47:45.9910011Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:46.0276318Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:46.0277015Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:46.0277347Z +2025-11-24T09:47:46.0277660Z TASK [adduser : User | Create User Group] ************************************** +2025-11-24T09:47:46.0556550Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:46.0767290Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:46.0768208Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:46.0768608Z +2025-11-24T09:47:46.0769304Z TASK [adduser : User | Create User] ******************************************** +2025-11-24T09:47:46.0989853Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:46.1440128Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:46.1440825Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:46.1441147Z +2025-11-24T09:47:46.1441582Z TASK [kubernetes/control-plane : Pre-upgrade | Delete master manifests if etcd secrets changed] *** +2025-11-24T09:47:46.1755357Z skipping: [kubenode-super-marlin] => (item=kube-apiserver) +2025-11-24T09:47:46.1756237Z skipping: [kubenode-super-marlin] => (item=kube-controller-manager) +2025-11-24T09:47:46.1756942Z skipping: [kubenode-super-marlin] => (item=kube-scheduler) +2025-11-24T09:47:46.8187459Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:46.8188262Z skipping: [kubenode-teaching-gobbler] => (item=kube-apiserver) +2025-11-24T09:47:46.8189076Z skipping: [kubenode-teaching-gobbler] => (item=kube-controller-manager) +2025-11-24T09:47:46.8189828Z skipping: [kubenode-teaching-gobbler] => (item=kube-scheduler) +2025-11-24T09:47:46.8190483Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:46.8191052Z ok: [kubenode-renewed-asp] => (item=kube-apiserver) +2025-11-24T09:47:46.8191689Z ok: [kubenode-renewed-asp] => (item=kube-controller-manager) +2025-11-24T09:47:46.8192336Z ok: [kubenode-renewed-asp] => (item=kube-scheduler) +2025-11-24T09:47:46.8192923Z +2025-11-24T09:47:46.8193356Z TASK [kubernetes/control-plane : Pre-upgrade | Delete master containers forcefully] *** +2025-11-24T09:47:46.8383449Z skipping: [kubenode-super-marlin] => (item=kube-apiserver) +2025-11-24T09:47:46.8569369Z skipping: [kubenode-super-marlin] => (item=kube-controller-manager) +2025-11-24T09:47:46.8571169Z skipping: [kubenode-super-marlin] => (item=kube-scheduler) +2025-11-24T09:47:46.8998626Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:46.8999777Z skipping: [kubenode-renewed-asp] => (item=kube-apiserver) +2025-11-24T09:47:46.9000621Z skipping: [kubenode-renewed-asp] => (item=kube-controller-manager) +2025-11-24T09:47:46.9001442Z skipping: [kubenode-renewed-asp] => (item=kube-scheduler) +2025-11-24T09:47:46.9002121Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:46.9003190Z skipping: [kubenode-teaching-gobbler] => (item=kube-apiserver) +2025-11-24T09:47:46.9004340Z skipping: [kubenode-teaching-gobbler] => (item=kube-controller-manager) +2025-11-24T09:47:46.9005188Z skipping: [kubenode-teaching-gobbler] => (item=kube-scheduler) +2025-11-24T09:47:46.9005919Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:46.9006305Z +2025-11-24T09:47:46.9006652Z TASK [kubernetes/control-plane : Create webhook token auth config] ************* +2025-11-24T09:47:46.9731756Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:46.9732451Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:46.9733362Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:46.9733768Z +2025-11-24T09:47:46.9734184Z TASK [kubernetes/control-plane : Create webhook authorization config] ********** +2025-11-24T09:47:46.9968848Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:47.0191975Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:47.0192954Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:47.0193356Z +2025-11-24T09:47:47.0193775Z TASK [kubernetes/control-plane : Create kube-scheduler config] ***************** +2025-11-24T09:47:47.5656508Z changed: [kubenode-super-marlin] +2025-11-24T09:47:47.5657185Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:47.5658210Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:47.5658613Z +2025-11-24T09:47:47.5659113Z TASK [kubernetes/control-plane : Check if secret for encrypting data at rest already exist] *** +2025-11-24T09:47:47.6030614Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:47.6306471Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:47.6307139Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:47.6307550Z +2025-11-24T09:47:47.6307972Z TASK [kubernetes/control-plane : Slurp secrets_encryption file if it exists] *** +2025-11-24T09:47:47.6612339Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:47.6880388Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:47.6880969Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:47.6881309Z +2025-11-24T09:47:47.6881737Z TASK [kubernetes/control-plane : Base 64 Decode slurped secrets_encryption.yaml file] *** +2025-11-24T09:47:47.7437577Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:47.7438263Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:47.7438901Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:47.7439282Z +2025-11-24T09:47:47.7439758Z TASK [kubernetes/control-plane : Extract secret value from secrets_encryption.yaml] *** +2025-11-24T09:47:47.7970354Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:47.7971088Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:47.7972128Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:47.7972967Z +2025-11-24T09:47:47.7973413Z TASK [kubernetes/control-plane : Set kube_encrypt_token across master nodes] *** +2025-11-24T09:47:47.8227702Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:47:47.8750817Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:47:47.8751634Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:47:47.8752434Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:47.8753388Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:47.8754030Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:47:47.8754786Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:47.8755575Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) +2025-11-24T09:47:47.8756249Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:47.8756887Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) +2025-11-24T09:47:47.8758016Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:47.8758714Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:47.8759046Z +2025-11-24T09:47:47.8759451Z TASK [kubernetes/control-plane : Write secrets for encrypting secret data at rest] *** +2025-11-24T09:47:47.9203798Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:47.9204490Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:47.9205108Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:47.9205499Z +2025-11-24T09:47:47.9205997Z TASK [kubernetes/control-plane : Install | Copy kubectl binary from download dir] *** +2025-11-24T09:47:48.7693778Z changed: [kubenode-super-marlin] +2025-11-24T09:47:48.7694458Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:48.7695071Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:48.7695396Z +2025-11-24T09:47:48.7695817Z TASK [kubernetes/control-plane : Install kubectl bash completion] ************** +2025-11-24T09:47:49.1306321Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:49.1307058Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:49.1307648Z changed: [kubenode-super-marlin] +2025-11-24T09:47:49.1308002Z +2025-11-24T09:47:49.1308468Z TASK [kubernetes/control-plane : Set kubectl bash completion file permissions] *** +2025-11-24T09:47:49.4043473Z changed: [kubenode-super-marlin] +2025-11-24T09:47:49.4044043Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:49.4044526Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:49.4044832Z +2025-11-24T09:47:49.4045184Z TASK [kubernetes/control-plane : Set bash alias for kubectl] ******************* +2025-11-24T09:47:49.4625954Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:49.4626720Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:49.4627326Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:49.4627705Z +2025-11-24T09:47:49.4628229Z TASK [kubernetes/control-plane : Check which kube-control nodes are already members of the cluster] *** +2025-11-24T09:47:49.7896248Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/kubectl", "get", "nodes", "--selector=node-role.kubernetes.io/control-plane", "-o", "json"], "delta": "0:00:00.059800", "end": "2025-11-24 09:47:48.650806", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:47:48.591006", "stderr": "E1124 09:47:48.643420 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.643754 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.645306 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.645584 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.646945 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nThe connection to the server localhost:8080 was refused - did you specify the right host or port?", "stderr_lines": ["E1124 09:47:48.643420 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.643754 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.645306 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.645584 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.646945 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "The connection to the server localhost:8080 was refused - did you specify the right host or port?"], "stdout": "", "stdout_lines": []} +2025-11-24T09:47:49.7904910Z ...ignoring +2025-11-24T09:47:49.7913088Z fatal: [kubenode-teaching-gobbler]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/kubectl", "get", "nodes", "--selector=node-role.kubernetes.io/control-plane", "-o", "json"], "delta": "0:00:00.060437", "end": "2025-11-24 09:47:49.048594", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:47:48.988157", "stderr": "E1124 09:47:49.041843 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:49.042159 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:49.043564 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:49.043843 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:49.045153 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nThe connection to the server localhost:8080 was refused - did you specify the right host or port?", "stderr_lines": ["E1124 09:47:49.041843 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:49.042159 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:49.043564 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:49.043843 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:49.045153 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "The connection to the server localhost:8080 was refused - did you specify the right host or port?"], "stdout": "", "stdout_lines": []} +2025-11-24T09:47:49.7921076Z ...ignoring +2025-11-24T09:47:49.7928288Z fatal: [kubenode-renewed-asp]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/kubectl", "get", "nodes", "--selector=node-role.kubernetes.io/control-plane", "-o", "json"], "delta": "0:00:00.070339", "end": "2025-11-24 09:47:48.503469", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:47:48.433130", "stderr": "E1124 09:47:48.495017 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.495477 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.497064 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.497506 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.499128 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nThe connection to the server localhost:8080 was refused - did you specify the right host or port?", "stderr_lines": ["E1124 09:47:48.495017 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.495477 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.497064 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.497506 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.499128 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "The connection to the server localhost:8080 was refused - did you specify the right host or port?"], "stdout": "", "stdout_lines": []} +2025-11-24T09:47:49.7935798Z ...ignoring +2025-11-24T09:47:49.7936009Z +2025-11-24T09:47:49.7937014Z TASK [kubernetes/control-plane : Set fact joined_control_planes] *************** +2025-11-24T09:47:49.8418145Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:47:49.8419201Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:47:49.8420115Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:49.8420883Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:49.8421256Z +2025-11-24T09:47:49.8422030Z TASK [kubernetes/control-plane : Set fact first_kube_control_plane] ************ +2025-11-24T09:47:49.9044030Z ok: [kubenode-super-marlin] +2025-11-24T09:47:49.9045158Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:49.9045795Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:49.9046120Z +2025-11-24T09:47:49.9046558Z TASK [kubernetes/control-plane : Install OIDC certificate] ********************* +2025-11-24T09:47:49.9560858Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:49.9561801Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:49.9562392Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:49.9563094Z +2025-11-24T09:47:49.9563549Z TASK [kubernetes/control-plane : Kubeadm | Check if kubeadm has already run] *** +2025-11-24T09:47:50.2159386Z ok: [kubenode-super-marlin] +2025-11-24T09:47:50.2160345Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:50.2160973Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.2161344Z +2025-11-24T09:47:50.2161830Z TASK [kubernetes/control-plane : Backup old certs and keys] ******************** +2025-11-24T09:47:50.2488395Z skipping: [kubenode-super-marlin] => (item=apiserver.crt) +2025-11-24T09:47:50.2489441Z skipping: [kubenode-super-marlin] => (item=apiserver.key) +2025-11-24T09:47:50.2490124Z skipping: [kubenode-renewed-asp] => (item=apiserver.crt) +2025-11-24T09:47:50.2490876Z skipping: [kubenode-super-marlin] => (item=apiserver-kubelet-client.crt) +2025-11-24T09:47:50.2834406Z skipping: [kubenode-renewed-asp] => (item=apiserver.key) +2025-11-24T09:47:50.2835583Z skipping: [kubenode-super-marlin] => (item=apiserver-kubelet-client.key) +2025-11-24T09:47:50.2836677Z skipping: [kubenode-renewed-asp] => (item=apiserver-kubelet-client.crt) +2025-11-24T09:47:50.2837688Z skipping: [kubenode-renewed-asp] => (item=apiserver-kubelet-client.key) +2025-11-24T09:47:50.2838666Z skipping: [kubenode-super-marlin] => (item=front-proxy-client.crt) +2025-11-24T09:47:50.2839624Z skipping: [kubenode-renewed-asp] => (item=front-proxy-client.crt) +2025-11-24T09:47:50.2840778Z skipping: [kubenode-renewed-asp] => (item=front-proxy-client.key) +2025-11-24T09:47:50.2841423Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:50.2842052Z skipping: [kubenode-super-marlin] => (item=front-proxy-client.key) +2025-11-24T09:47:50.2843021Z skipping: [kubenode-teaching-gobbler] => (item=apiserver.crt) +2025-11-24T09:47:50.2843679Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:50.2844264Z skipping: [kubenode-teaching-gobbler] => (item=apiserver.key) +2025-11-24T09:47:50.2845049Z skipping: [kubenode-teaching-gobbler] => (item=apiserver-kubelet-client.crt) +2025-11-24T09:47:50.2845905Z skipping: [kubenode-teaching-gobbler] => (item=apiserver-kubelet-client.key) +2025-11-24T09:47:50.2846730Z skipping: [kubenode-teaching-gobbler] => (item=front-proxy-client.crt) +2025-11-24T09:47:50.2847506Z skipping: [kubenode-teaching-gobbler] => (item=front-proxy-client.key) +2025-11-24T09:47:50.2848187Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.2848517Z +2025-11-24T09:47:50.2848872Z TASK [kubernetes/control-plane : Backup old confs] ***************************** +2025-11-24T09:47:50.3133152Z skipping: [kubenode-super-marlin] => (item=admin.conf) +2025-11-24T09:47:50.3134132Z skipping: [kubenode-super-marlin] => (item=controller-manager.conf) +2025-11-24T09:47:50.3134880Z skipping: [kubenode-super-marlin] => (item=kubelet.conf) +2025-11-24T09:47:50.3135593Z skipping: [kubenode-super-marlin] => (item=scheduler.conf) +2025-11-24T09:47:50.3136260Z skipping: [kubenode-renewed-asp] => (item=admin.conf) +2025-11-24T09:47:50.3136965Z skipping: [kubenode-renewed-asp] => (item=controller-manager.conf) +2025-11-24T09:47:50.3140978Z Still deploying... +2025-11-24T09:47:50.3487530Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:50.3488511Z skipping: [kubenode-renewed-asp] => (item=kubelet.conf) +2025-11-24T09:47:50.3489282Z skipping: [kubenode-renewed-asp] => (item=scheduler.conf) +2025-11-24T09:47:50.3489969Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:50.3490629Z skipping: [kubenode-teaching-gobbler] => (item=admin.conf) +2025-11-24T09:47:50.3497661Z skipping: [kubenode-teaching-gobbler] => (item=controller-manager.conf) +2025-11-24T09:47:50.3498830Z skipping: [kubenode-teaching-gobbler] => (item=kubelet.conf) +2025-11-24T09:47:50.3499569Z skipping: [kubenode-teaching-gobbler] => (item=scheduler.conf) +2025-11-24T09:47:50.3500228Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.3500562Z +2025-11-24T09:47:50.3500933Z TASK [kubernetes/control-plane : Kubeadm | aggregate all SANs] ***************** +2025-11-24T09:47:50.5838178Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.5838854Z ok: [kubenode-super-marlin] +2025-11-24T09:47:50.5839425Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:50.5839742Z +2025-11-24T09:47:50.5840172Z TASK [kubernetes/control-plane : Create audit-policy directory] **************** +2025-11-24T09:47:50.6354778Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:50.6808704Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:50.6809297Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.6809630Z +2025-11-24T09:47:50.6809984Z TASK [kubernetes/control-plane : Write api audit policy yaml] ****************** +2025-11-24T09:47:50.6810658Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:50.6811155Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:50.6811654Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.6811973Z +2025-11-24T09:47:50.6812324Z TASK [kubernetes/control-plane : Write api audit webhook config yaml] ********** +2025-11-24T09:47:50.7306718Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:50.7307439Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:50.7308122Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.7308510Z +2025-11-24T09:47:50.7308884Z TASK [kubernetes/control-plane : Create apiserver tracing config directory] **** +2025-11-24T09:47:50.7756091Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:50.7756797Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:50.7757397Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.7758151Z +2025-11-24T09:47:50.7758577Z TASK [kubernetes/control-plane : Write apiserver tracing config yaml] ********** +2025-11-24T09:47:50.8003682Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:50.8264897Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:50.8265596Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.8265923Z +2025-11-24T09:47:50.8266272Z TASK [kubernetes/control-plane : Set kubeadm_config_api_fqdn define] *********** +2025-11-24T09:47:50.8750337Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:50.8751224Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:50.8751921Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.8752341Z +2025-11-24T09:47:50.8753082Z TASK [kubernetes/control-plane : Set kubeadm api version to v1beta3] *********** +2025-11-24T09:47:50.9366055Z ok: [kubenode-super-marlin] +2025-11-24T09:47:50.9366678Z ok: [kubenode-renewed-asp] +2025-11-24T09:47:50.9367187Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:47:50.9367510Z +2025-11-24T09:47:50.9367902Z TASK [kubernetes/control-plane : Kubeadm | Create kubeadm config] ************** +2025-11-24T09:47:51.6715342Z changed: [kubenode-super-marlin] +2025-11-24T09:47:51.6716098Z changed: [kubenode-renewed-asp] +2025-11-24T09:47:51.6716595Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:47:51.6716909Z +2025-11-24T09:47:51.6717374Z TASK [kubernetes/control-plane : Kubeadm | Create directory to store admission control configurations] *** +2025-11-24T09:47:51.7273798Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:51.7274484Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:51.7274993Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:51.7275740Z +2025-11-24T09:47:51.7276117Z TASK [kubernetes/control-plane : Kubeadm | Push admission control config file] *** +2025-11-24T09:47:51.7832163Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:51.7833410Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:51.7834059Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:51.7834454Z +2025-11-24T09:47:51.7834893Z TASK [kubernetes/control-plane : Kubeadm | Push admission control config files] *** +2025-11-24T09:47:51.8107632Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:51.8279641Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:51.8280430Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:51.8280753Z +2025-11-24T09:47:51.8281138Z TASK [kubernetes/control-plane : Kubeadm | Configure default cluster podnodeslector] *** +2025-11-24T09:47:51.8910423Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:51.8911131Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:51.8911640Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:51.8911981Z +2025-11-24T09:47:51.8912330Z TASK [kubernetes/control-plane : Kubeadm | Check apiserver.crt SAN IPs] ******** +2025-11-24T09:47:52.0211903Z skipping: [kubenode-super-marlin] => (item=10.233.0.1) +2025-11-24T09:47:52.0213032Z skipping: [kubenode-super-marlin] => (item=127.0.0.1) +2025-11-24T09:47:52.0213779Z skipping: [kubenode-super-marlin] => (item=10.1.1.8) +2025-11-24T09:47:52.0214491Z skipping: [kubenode-super-marlin] => (item=10.1.1.4) +2025-11-24T09:47:52.0215178Z skipping: [kubenode-super-marlin] => (item=10.1.1.9) +2025-11-24T09:47:52.0215902Z skipping: [kubenode-super-marlin] => (item=192.168.122.100) +2025-11-24T09:47:52.0216597Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:52.0217257Z skipping: [kubenode-renewed-asp] => (item=10.233.0.1) +2025-11-24T09:47:52.0217974Z skipping: [kubenode-renewed-asp] => (item=127.0.0.1) +2025-11-24T09:47:52.0218682Z skipping: [kubenode-teaching-gobbler] => (item=10.233.0.1) +2025-11-24T09:47:52.0219416Z skipping: [kubenode-renewed-asp] => (item=10.1.1.8) +2025-11-24T09:47:52.0220130Z skipping: [kubenode-teaching-gobbler] => (item=127.0.0.1) +2025-11-24T09:47:52.0220833Z skipping: [kubenode-renewed-asp] => (item=10.1.1.4) +2025-11-24T09:47:52.0221520Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.8) +2025-11-24T09:47:52.0222216Z skipping: [kubenode-renewed-asp] => (item=10.1.1.9) +2025-11-24T09:47:52.0223257Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.4) +2025-11-24T09:47:52.0223838Z skipping: [kubenode-renewed-asp] => (item=192.168.122.100) +2025-11-24T09:47:52.0224409Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.9) +2025-11-24T09:47:52.0224938Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:52.0225464Z skipping: [kubenode-teaching-gobbler] => (item=192.168.122.100) +2025-11-24T09:47:52.0226025Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:52.0226323Z +2025-11-24T09:47:52.0226656Z TASK [kubernetes/control-plane : Kubeadm | Check apiserver.crt SAN hosts] ****** +2025-11-24T09:47:52.1568582Z skipping: [kubenode-super-marlin] => (item=localhost) +2025-11-24T09:47:52.1569384Z skipping: [kubenode-super-marlin] => (item=kubernetes) +2025-11-24T09:47:52.1570075Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:52.1570789Z skipping: [kubenode-teaching-gobbler] => (item=localhost) +2025-11-24T09:47:52.1571518Z skipping: [kubenode-super-marlin] => (item=lb-apiserver.kubernetes.local) +2025-11-24T09:47:52.1572227Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes) +2025-11-24T09:47:52.1573155Z skipping: [kubenode-super-marlin] => (item=kubernetes.default.svc) +2025-11-24T09:47:52.1573912Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:52.1574618Z skipping: [kubenode-super-marlin] => (item=kubernetes.default) +2025-11-24T09:47:52.1575254Z skipping: [kubenode-renewed-asp] => (item=localhost) +2025-11-24T09:47:52.1575941Z skipping: [kubenode-teaching-gobbler] => (item=lb-apiserver.kubernetes.local) +2025-11-24T09:47:52.1577123Z skipping: [kubenode-super-marlin] => (item=kubernetes.default.svc.cluster.local) +2025-11-24T09:47:52.1577831Z skipping: [kubenode-renewed-asp] => (item=kubernetes) +2025-11-24T09:47:52.1578502Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes.default.svc) +2025-11-24T09:47:52.1579208Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:47:52.1579915Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes.default) +2025-11-24T09:47:52.1580643Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:47:52.1581523Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes.default.svc.cluster.local) +2025-11-24T09:47:52.1582331Z skipping: [kubenode-renewed-asp] => (item=lb-apiserver.kubernetes.local) +2025-11-24T09:47:52.1583161Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:47:52.1583773Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:52.1584364Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) +2025-11-24T09:47:52.1585079Z skipping: [kubenode-renewed-asp] => (item=kubernetes.default.svc) +2025-11-24T09:47:52.1585758Z skipping: [kubenode-renewed-asp] => (item=kubernetes.default) +2025-11-24T09:47:52.1586445Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) +2025-11-24T09:47:52.1587032Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:52.1587644Z skipping: [kubenode-renewed-asp] => (item=kubernetes.default.svc.cluster.local) +2025-11-24T09:47:52.1588325Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:47:52.1588970Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:47:52.1589542Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:52.1589811Z +2025-11-24T09:47:52.1590143Z TASK [kubernetes/control-plane : Kubeadm | regenerate apiserver cert 1/2] ****** +2025-11-24T09:47:52.1875435Z skipping: [kubenode-super-marlin] => (item=apiserver.crt) +2025-11-24T09:47:52.1876341Z skipping: [kubenode-super-marlin] => (item=apiserver.key) +2025-11-24T09:47:52.1877006Z skipping: [kubenode-renewed-asp] => (item=apiserver.crt) +2025-11-24T09:47:52.1877641Z skipping: [kubenode-renewed-asp] => (item=apiserver.key) +2025-11-24T09:47:52.2105471Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:52.2106291Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:52.2106899Z skipping: [kubenode-teaching-gobbler] => (item=apiserver.crt) +2025-11-24T09:47:52.2107948Z skipping: [kubenode-teaching-gobbler] => (item=apiserver.key) +2025-11-24T09:47:52.2108621Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:52.2108955Z +2025-11-24T09:47:52.2109324Z TASK [kubernetes/control-plane : Kubeadm | regenerate apiserver cert 2/2] ****** +2025-11-24T09:47:52.2337747Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:52.2531652Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:52.2532604Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:52.2533295Z +2025-11-24T09:47:52.2533835Z TASK [kubernetes/control-plane : Kubeadm | Create directory to store kubeadm patches] *** +2025-11-24T09:47:52.3116545Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:52.3117319Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:52.3117990Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:52.3118322Z +2025-11-24T09:47:52.3118737Z TASK [kubernetes/control-plane : Kubeadm | Copy kubeadm patches from inventory files] *** +2025-11-24T09:47:52.3629924Z skipping: [kubenode-super-marlin] +2025-11-24T09:47:52.3630665Z skipping: [kubenode-renewed-asp] +2025-11-24T09:47:52.3631174Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:47:52.3631505Z +2025-11-24T09:47:52.3631849Z TASK [kubernetes/control-plane : Kubeadm | Initialize first master] ************ +2025-11-24T09:48:00.3159627Z Still deploying... +2025-11-24T09:48:01.6278678Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:01.6279268Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:01.6279796Z changed: [kubenode-super-marlin] +2025-11-24T09:48:01.6280079Z +2025-11-24T09:48:01.6280856Z TASK [kubernetes/control-plane : Set kubeadm certificate key] ****************** +2025-11-24T09:48:01.8208034Z skipping: [kubenode-renewed-asp] => (item=[init] Using Kubernetes version: v1.29.10) +2025-11-24T09:48:01.8209022Z skipping: [kubenode-super-marlin] => (item=[init] Using Kubernetes version: v1.29.10) +2025-11-24T09:48:01.8209915Z skipping: [kubenode-renewed-asp] => (item=[preflight] Running pre-flight checks) +2025-11-24T09:48:01.8210797Z skipping: [kubenode-super-marlin] => (item=[preflight] Running pre-flight checks) +2025-11-24T09:48:01.8211784Z skipping: [kubenode-renewed-asp] => (item=[preflight] Pulling images required for setting up a Kubernetes cluster) +2025-11-24T09:48:01.8213539Z skipping: [kubenode-super-marlin] => (item=[preflight] Pulling images required for setting up a Kubernetes cluster) +2025-11-24T09:48:01.8214731Z skipping: [kubenode-renewed-asp] => (item=[preflight] This might take a minute or two, depending on the speed of your internet connection) +2025-11-24T09:48:01.8215975Z skipping: [kubenode-super-marlin] => (item=[preflight] This might take a minute or two, depending on the speed of your internet connection) +2025-11-24T09:48:01.8217099Z skipping: [kubenode-teaching-gobbler] => (item=[init] Using Kubernetes version: v1.29.10) +2025-11-24T09:48:01.8218187Z skipping: [kubenode-renewed-asp] => (item=[preflight] You can also perform this action in beforehand using 'kubeadm config images pull') +2025-11-24T09:48:01.8219295Z skipping: [kubenode-super-marlin] => (item=[preflight] You can also perform this action in beforehand using 'kubeadm config images pull') +2025-11-24T09:48:01.8220254Z skipping: [kubenode-renewed-asp] => (item=[certs] Using certificateDir folder "/etc/kubernetes/ssl") +2025-11-24T09:48:01.8221071Z skipping: [kubenode-teaching-gobbler] => (item=[preflight] Running pre-flight checks) +2025-11-24T09:48:01.8221891Z skipping: [kubenode-super-marlin] => (item=[certs] Using certificateDir folder "/etc/kubernetes/ssl") +2025-11-24T09:48:01.8222813Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "ca" certificate and key) +2025-11-24T09:48:01.8223694Z skipping: [kubenode-teaching-gobbler] => (item=[preflight] Pulling images required for setting up a Kubernetes cluster) +2025-11-24T09:48:01.8224595Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "apiserver" certificate and key) +2025-11-24T09:48:01.8225380Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "ca" certificate and key) +2025-11-24T09:48:01.8226462Z skipping: [kubenode-teaching-gobbler] => (item=[preflight] This might take a minute or two, depending on the speed of your internet connection) +2025-11-24T09:48:01.8228344Z skipping: [kubenode-renewed-asp] => (item=[certs] apiserver serving cert is signed for DNS names [kubenode-renewed-asp kubenode-super-marlin kubenode-teaching-gobbler kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local lb-apiserver.kubernetes.local localhost] and IPs [10.233.0.1 10.1.1.8 127.0.0.1 10.1.1.4 10.1.1.9 192.168.122.100]) +2025-11-24T09:48:01.8230226Z skipping: [kubenode-teaching-gobbler] => (item=[preflight] You can also perform this action in beforehand using 'kubeadm config images pull') +2025-11-24T09:48:01.8231189Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "apiserver" certificate and key) +2025-11-24T09:48:01.8232043Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Using certificateDir folder "/etc/kubernetes/ssl") +2025-11-24T09:48:01.8233047Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "apiserver-kubelet-client" certificate and key) +2025-11-24T09:48:01.8234811Z skipping: [kubenode-super-marlin] => (item=[certs] apiserver serving cert is signed for DNS names [kubenode-renewed-asp kubenode-super-marlin kubenode-teaching-gobbler kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local lb-apiserver.kubernetes.local localhost] and IPs [10.233.0.1 10.1.1.8 127.0.0.1 10.1.1.4 10.1.1.9 192.168.122.100]) +2025-11-24T09:48:01.8236679Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "ca" certificate and key) +2025-11-24T09:48:01.8237504Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "front-proxy-ca" certificate and key) +2025-11-24T09:48:01.8238387Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "apiserver-kubelet-client" certificate and key) +2025-11-24T09:48:01.8239257Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "apiserver" certificate and key) +2025-11-24T09:48:01.8240114Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "front-proxy-client" certificate and key) +2025-11-24T09:48:01.8241037Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "front-proxy-ca" certificate and key) +2025-11-24T09:48:01.8241937Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping etcd/ca certificate authority generation) +2025-11-24T09:48:01.8243864Z skipping: [kubenode-teaching-gobbler] => (item=[certs] apiserver serving cert is signed for DNS names [kubenode-renewed-asp kubenode-super-marlin kubenode-teaching-gobbler kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local lb-apiserver.kubernetes.local localhost] and IPs [10.233.0.1 10.1.1.8 127.0.0.1 10.1.1.4 10.1.1.9 192.168.122.100]) +2025-11-24T09:48:01.8245618Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "front-proxy-client" certificate and key) +2025-11-24T09:48:01.8246522Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping etcd/server certificate generation) +2025-11-24T09:48:01.8247475Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "apiserver-kubelet-client" certificate and key) +2025-11-24T09:48:01.8248432Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping etcd/ca certificate authority generation) +2025-11-24T09:48:01.8249370Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping etcd/peer certificate generation) +2025-11-24T09:48:01.8250262Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "front-proxy-ca" certificate and key) +2025-11-24T09:48:01.8251164Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping etcd/server certificate generation) +2025-11-24T09:48:01.8252123Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping etcd/healthcheck-client certificate generation) +2025-11-24T09:48:01.8253241Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "front-proxy-client" certificate and key) +2025-11-24T09:48:01.8254146Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping etcd/peer certificate generation) +2025-11-24T09:48:01.8255103Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping etcd/ca certificate authority generation) +2025-11-24T09:48:01.8256087Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping apiserver-etcd-client certificate generation) +2025-11-24T09:48:01.8257075Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping etcd/healthcheck-client certificate generation) +2025-11-24T09:48:01.8257954Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "sa" key and public key) +2025-11-24T09:48:01.8258815Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping etcd/server certificate generation) +2025-11-24T09:48:01.8259790Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping apiserver-etcd-client certificate generation) +2025-11-24T09:48:01.8260700Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Using kubeconfig folder "/etc/kubernetes") +2025-11-24T09:48:01.8261581Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping etcd/peer certificate generation) +2025-11-24T09:48:01.8262440Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "sa" key and public key) +2025-11-24T09:48:01.8263457Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "admin.conf" kubeconfig file) +2025-11-24T09:48:01.8264405Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping etcd/healthcheck-client certificate generation) +2025-11-24T09:48:01.8265352Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Using kubeconfig folder "/etc/kubernetes") +2025-11-24T09:48:01.8266163Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "admin.conf" kubeconfig file) +2025-11-24T09:48:01.8267083Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping apiserver-etcd-client certificate generation) +2025-11-24T09:48:01.8268099Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "super-admin.conf" kubeconfig file) +2025-11-24T09:48:01.8268917Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "sa" key and public key) +2025-11-24T09:48:01.8269778Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "super-admin.conf" kubeconfig file) +2025-11-24T09:48:01.8270609Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "kubelet.conf" kubeconfig file) +2025-11-24T09:48:01.8271444Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Using kubeconfig folder "/etc/kubernetes") +2025-11-24T09:48:01.8272283Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "kubelet.conf" kubeconfig file) +2025-11-24T09:48:01.8273233Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "controller-manager.conf" kubeconfig file) +2025-11-24T09:48:01.8274087Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "admin.conf" kubeconfig file) +2025-11-24T09:48:01.8274913Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "scheduler.conf" kubeconfig file) +2025-11-24T09:48:01.8275758Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "controller-manager.conf" kubeconfig file) +2025-11-24T09:48:01.8276649Z skipping: [kubenode-renewed-asp] => (item=[control-plane] Using manifest folder "/etc/kubernetes/manifests") +2025-11-24T09:48:01.9373385Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "scheduler.conf" kubeconfig file) +2025-11-24T09:48:01.9374815Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "super-admin.conf" kubeconfig file) +2025-11-24T09:48:01.9376350Z skipping: [kubenode-renewed-asp] => (item=[control-plane] Creating static Pod manifest for "kube-apiserver") +2025-11-24T09:48:01.9377714Z skipping: [kubenode-super-marlin] => (item=[control-plane] Using manifest folder "/etc/kubernetes/manifests") +2025-11-24T09:48:01.9378744Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "kubelet.conf" kubeconfig file) +2025-11-24T09:48:01.9379821Z skipping: [kubenode-renewed-asp] => (item=[control-plane] Creating static Pod manifest for "kube-controller-manager") +2025-11-24T09:48:01.9380939Z skipping: [kubenode-super-marlin] => (item=[control-plane] Creating static Pod manifest for "kube-apiserver") +2025-11-24T09:48:01.9382012Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "controller-manager.conf" kubeconfig file) +2025-11-24T09:48:01.9383400Z skipping: [kubenode-super-marlin] => (item=[control-plane] Creating static Pod manifest for "kube-controller-manager") +2025-11-24T09:48:01.9384525Z skipping: [kubenode-renewed-asp] => (item=[control-plane] Creating static Pod manifest for "kube-scheduler") +2025-11-24T09:48:01.9385569Z skipping: [kubenode-super-marlin] => (item=[control-plane] Creating static Pod manifest for "kube-scheduler") +2025-11-24T09:48:01.9386583Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "scheduler.conf" kubeconfig file) +2025-11-24T09:48:01.9387750Z skipping: [kubenode-renewed-asp] => (item=[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env") +2025-11-24T09:48:01.9389111Z skipping: [kubenode-super-marlin] => (item=[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env") +2025-11-24T09:48:01.9390515Z skipping: [kubenode-teaching-gobbler] => (item=[control-plane] Using manifest folder "/etc/kubernetes/manifests") +2025-11-24T09:48:01.9391626Z skipping: [kubenode-renewed-asp] => (item=[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml") +2025-11-24T09:48:01.9392868Z skipping: [kubenode-super-marlin] => (item=[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml") +2025-11-24T09:48:01.9393884Z skipping: [kubenode-teaching-gobbler] => (item=[control-plane] Creating static Pod manifest for "kube-apiserver") +2025-11-24T09:48:01.9394825Z skipping: [kubenode-renewed-asp] => (item=[kubelet-start] Starting the kubelet) +2025-11-24T09:48:01.9395555Z skipping: [kubenode-super-marlin] => (item=[kubelet-start] Starting the kubelet) +2025-11-24T09:48:01.9396434Z skipping: [kubenode-teaching-gobbler] => (item=[control-plane] Creating static Pod manifest for "kube-controller-manager") +2025-11-24T09:48:01.9397678Z skipping: [kubenode-super-marlin] => (item=[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 5m0s) +2025-11-24T09:48:01.9398880Z skipping: [kubenode-teaching-gobbler] => (item=[control-plane] Creating static Pod manifest for "kube-scheduler") +2025-11-24T09:48:01.9400064Z skipping: [kubenode-renewed-asp] => (item=[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 5m0s) +2025-11-24T09:48:01.9401260Z skipping: [kubenode-super-marlin] => (item=[apiclient] All control plane components are healthy after 5.008133 seconds) +2025-11-24T09:48:01.9402340Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env") +2025-11-24T09:48:01.9403586Z skipping: [kubenode-renewed-asp] => (item=[apiclient] All control plane components are healthy after 5.008133 seconds) +2025-11-24T09:48:01.9404647Z skipping: [kubenode-super-marlin] => (item=[upload-config] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace) +2025-11-24T09:48:01.9405775Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml") +2025-11-24T09:48:01.9406878Z skipping: [kubenode-renewed-asp] => (item=[upload-config] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace) +2025-11-24T09:48:01.9407942Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet-start] Starting the kubelet) +2025-11-24T09:48:01.9408977Z skipping: [kubenode-super-marlin] => (item=[kubelet] Creating a ConfigMap "kubelet-config" in namespace kube-system with the configuration for the kubelets in the cluster) +2025-11-24T09:48:01.9410267Z skipping: [kubenode-renewed-asp] => (item=[kubelet] Creating a ConfigMap "kubelet-config" in namespace kube-system with the configuration for the kubelets in the cluster) +2025-11-24T09:48:01.9411457Z skipping: [kubenode-super-marlin] => (item=[upload-certs] Storing the certificates in Secret "kubeadm-certs" in the "kube-system" Namespace) +2025-11-24T09:48:01.9412536Z skipping: [kubenode-renewed-asp] => (item=[upload-certs] Storing the certificates in Secret "kubeadm-certs" in the "kube-system" Namespace) +2025-11-24T09:48:01.9413995Z skipping: [kubenode-teaching-gobbler] => (item=[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 5m0s) +2025-11-24T09:48:01.9415108Z skipping: [kubenode-super-marlin] => (item=[upload-certs] Using certificate key:) +2025-11-24T09:48:01.9415843Z skipping: [kubenode-renewed-asp] => (item=[upload-certs] Using certificate key:) +2025-11-24T09:48:01.9416713Z skipping: [kubenode-teaching-gobbler] => (item=[apiclient] All control plane components are healthy after 5.008133 seconds) +2025-11-24T09:48:01.9417833Z skipping: [kubenode-super-marlin] => (item=cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) +2025-11-24T09:48:01.9418771Z skipping: [kubenode-renewed-asp] => (item=cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) +2025-11-24T09:48:01.9419837Z skipping: [kubenode-teaching-gobbler] => (item=[upload-config] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace) +2025-11-24T09:48:01.9421336Z skipping: [kubenode-super-marlin] => (item=[mark-control-plane] Marking the node kubenode-super-marlin as control-plane by adding the labels: [node-role.kubernetes.io/control-plane node.kubernetes.io/exclude-from-external-load-balancers]) +2025-11-24T09:48:01.9423214Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet] Creating a ConfigMap "kubelet-config" in namespace kube-system with the configuration for the kubelets in the cluster) +2025-11-24T09:48:01.9424772Z skipping: [kubenode-renewed-asp] => (item=[mark-control-plane] Marking the node kubenode-super-marlin as control-plane by adding the labels: [node-role.kubernetes.io/control-plane node.kubernetes.io/exclude-from-external-load-balancers]) +2025-11-24T09:48:01.9426070Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Using token: lj8vy0.p2b7f9q286brlf0y) +2025-11-24T09:48:01.9427065Z skipping: [kubenode-teaching-gobbler] => (item=[upload-certs] Storing the certificates in Secret "kubeadm-certs" in the "kube-system" Namespace) +2025-11-24T09:48:01.9428050Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Using token: lj8vy0.p2b7f9q286brlf0y) +2025-11-24T09:48:01.9428981Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC Roles) +2025-11-24T09:48:01.9429882Z skipping: [kubenode-teaching-gobbler] => (item=[upload-certs] Using certificate key:) +2025-11-24T09:48:01.9436997Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC Roles) +2025-11-24T09:48:01.9438100Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to get nodes) +2025-11-24T09:48:01.9439144Z skipping: [kubenode-teaching-gobbler] => (item=cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) +2025-11-24T09:48:01.9440185Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to get nodes) +2025-11-24T09:48:01.9441770Z skipping: [kubenode-teaching-gobbler] => (item=[mark-control-plane] Marking the node kubenode-super-marlin as control-plane by adding the labels: [node-role.kubernetes.io/control-plane node.kubernetes.io/exclude-from-external-load-balancers]) +2025-11-24T09:48:01.9443564Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials) +2025-11-24T09:48:01.9444939Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials) +2025-11-24T09:48:01.9446075Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Using token: lj8vy0.p2b7f9q286brlf0y) +2025-11-24T09:48:01.9447185Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token) +2025-11-24T09:48:01.9448388Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC Roles) +2025-11-24T09:48:01.9449585Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token) +2025-11-24T09:48:02.1160965Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configured RBAC rules to allow certificate rotation for all node client certificates in the cluster) +2025-11-24T09:48:02.1163782Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to get nodes) +2025-11-24T09:48:02.1165421Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configured RBAC rules to allow certificate rotation for all node client certificates in the cluster) +2025-11-24T09:48:02.1166782Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespace) +2025-11-24T09:48:02.1167997Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespace) +2025-11-24T09:48:02.1169528Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials) +2025-11-24T09:48:02.1171087Z skipping: [kubenode-super-marlin] => (item=[kubelet-finalize] Updating "/etc/kubernetes/kubelet.conf" to point to a rotatable kubelet client certificate and key) +2025-11-24T09:48:02.1172540Z skipping: [kubenode-renewed-asp] => (item=[kubelet-finalize] Updating "/etc/kubernetes/kubelet.conf" to point to a rotatable kubelet client certificate and key) +2025-11-24T09:48:02.1174225Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token) +2025-11-24T09:48:02.1175319Z skipping: [kubenode-super-marlin] => (item=[addons] Applied essential addon: kube-proxy) +2025-11-24T09:48:02.1176098Z skipping: [kubenode-renewed-asp] => (item=[addons] Applied essential addon: kube-proxy) +2025-11-24T09:48:02.1177166Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configured RBAC rules to allow certificate rotation for all node client certificates in the cluster) +2025-11-24T09:48:02.1178079Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1178597Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1179416Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespace) +2025-11-24T09:48:02.1180409Z skipping: [kubenode-super-marlin] => (item=Your Kubernetes control-plane has initialized successfully!) +2025-11-24T09:48:02.1181298Z skipping: [kubenode-renewed-asp] => (item=Your Kubernetes control-plane has initialized successfully!) +2025-11-24T09:48:02.1182489Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet-finalize] Updating "/etc/kubernetes/kubelet.conf" to point to a rotatable kubelet client certificate and key) +2025-11-24T09:48:02.1183684Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1184369Z skipping: [kubenode-teaching-gobbler] => (item=[addons] Applied essential addon: kube-proxy) +2025-11-24T09:48:02.1185040Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1185785Z skipping: [kubenode-renewed-asp] => (item=To start using your cluster, you need to run the following as a regular user:) +2025-11-24T09:48:02.1186538Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1187288Z skipping: [kubenode-super-marlin] => (item=To start using your cluster, you need to run the following as a regular user:) +2025-11-24T09:48:02.1188023Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1188738Z skipping: [kubenode-teaching-gobbler] => (item=Your Kubernetes control-plane has initialized successfully!) +2025-11-24T09:48:02.1189457Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1189972Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1190572Z skipping: [kubenode-renewed-asp] => (item= mkdir -p $HOME/.kube) +2025-11-24T09:48:02.1191237Z skipping: [kubenode-super-marlin] => (item= mkdir -p $HOME/.kube) +2025-11-24T09:48:02.1192073Z skipping: [kubenode-teaching-gobbler] => (item=To start using your cluster, you need to run the following as a regular user:) +2025-11-24T09:48:02.1193366Z skipping: [kubenode-renewed-asp] => (item= sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config) +2025-11-24T09:48:02.1194238Z skipping: [kubenode-super-marlin] => (item= sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config) +2025-11-24T09:48:02.1194926Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1195599Z skipping: [kubenode-renewed-asp] => (item= sudo chown $(id -u):$(id -g) $HOME/.kube/config) +2025-11-24T09:48:02.1196393Z skipping: [kubenode-super-marlin] => (item= sudo chown $(id -u):$(id -g) $HOME/.kube/config) +2025-11-24T09:48:02.1197125Z skipping: [kubenode-teaching-gobbler] => (item= mkdir -p $HOME/.kube) +2025-11-24T09:48:02.1197803Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1198310Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1199004Z skipping: [kubenode-teaching-gobbler] => (item= sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config) +2025-11-24T09:48:02.1199861Z skipping: [kubenode-super-marlin] => (item=Alternatively, if you are the root user, you can run:) +2025-11-24T09:48:02.1200701Z skipping: [kubenode-renewed-asp] => (item=Alternatively, if you are the root user, you can run:) +2025-11-24T09:48:02.1201368Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1202034Z skipping: [kubenode-teaching-gobbler] => (item= sudo chown $(id -u):$(id -g) $HOME/.kube/config) +2025-11-24T09:48:02.1202906Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1203591Z skipping: [kubenode-super-marlin] => (item= export KUBECONFIG=/etc/kubernetes/admin.conf) +2025-11-24T09:48:02.1204263Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1204932Z skipping: [kubenode-renewed-asp] => (item= export KUBECONFIG=/etc/kubernetes/admin.conf) +2025-11-24T09:48:02.1205569Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1206258Z skipping: [kubenode-teaching-gobbler] => (item=Alternatively, if you are the root user, you can run:) +2025-11-24T09:48:02.1207111Z skipping: [kubenode-super-marlin] => (item=You should now deploy a pod network to the cluster.) +2025-11-24T09:48:02.1207782Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1208297Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1209034Z skipping: [kubenode-super-marlin] => (item=Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:) +2025-11-24T09:48:02.1210017Z skipping: [kubenode-renewed-asp] => (item=You should now deploy a pod network to the cluster.) +2025-11-24T09:48:02.1210902Z skipping: [kubenode-super-marlin] => (item= https://kubernetes.io/docs/concepts/cluster-administration/addons/) +2025-11-24T09:48:02.1211786Z skipping: [kubenode-teaching-gobbler] => (item= export KUBECONFIG=/etc/kubernetes/admin.conf) +2025-11-24T09:48:02.1212833Z skipping: [kubenode-renewed-asp] => (item=Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:) +2025-11-24T09:48:02.1213586Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1214111Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1214970Z skipping: [kubenode-super-marlin] => (item=You can now join any number of the control-plane node running the following command on each as root:) +2025-11-24T09:48:02.1216014Z skipping: [kubenode-renewed-asp] => (item= https://kubernetes.io/docs/concepts/cluster-administration/addons/) +2025-11-24T09:48:02.1216904Z skipping: [kubenode-teaching-gobbler] => (item=You should now deploy a pod network to the cluster.) +2025-11-24T09:48:02.1217586Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1218092Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1218841Z skipping: [kubenode-teaching-gobbler] => (item=Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:) +2025-11-24T09:48:02.1219778Z skipping: [kubenode-super-marlin] => (item= kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) +2025-11-24T09:48:02.1220901Z skipping: [kubenode-renewed-asp] => (item=You can now join any number of the control-plane node running the following command on each as root:) +2025-11-24T09:48:02.1221950Z skipping: [kubenode-teaching-gobbler] => (item= https://kubernetes.io/docs/concepts/cluster-administration/addons/) +2025-11-24T09:48:02.1223280Z skipping: [kubenode-super-marlin] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 \) +2025-11-24T09:48:02.1224168Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1224686Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1225484Z skipping: [kubenode-renewed-asp] => (item= kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) +2025-11-24T09:48:02.1226488Z skipping: [kubenode-teaching-gobbler] => (item=You can now join any number of the control-plane node running the following command on each as root:) +2025-11-24T09:48:02.1227656Z skipping: [kubenode-renewed-asp] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 \) +2025-11-24T09:48:02.1228810Z ok: [kubenode-super-marlin] => (item= --control-plane --certificate-key cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) +2025-11-24T09:48:02.1229619Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1230140Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1230940Z skipping: [kubenode-super-marlin] => (item=Please note that the certificate-key gives access to cluster sensitive data, keep it secret!) +2025-11-24T09:48:02.1232207Z skipping: [kubenode-super-marlin] => (item=As a safeguard, uploaded-certs will be deleted in two hours; If necessary, you can use) +2025-11-24T09:48:02.1233392Z skipping: [kubenode-teaching-gobbler] => (item= kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) +2025-11-24T09:48:02.1234353Z skipping: [kubenode-super-marlin] => (item="kubeadm init phase upload-certs --upload-certs" to reload certs afterward.) +2025-11-24T09:48:02.1235100Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1235916Z ok: [kubenode-renewed-asp] => (item= --control-plane --certificate-key cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) +2025-11-24T09:48:02.1751116Z skipping: [kubenode-teaching-gobbler] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 \) +2025-11-24T09:48:02.1753381Z skipping: [kubenode-super-marlin] => (item=Then you can join any number of worker nodes by running the following on each as root:) +2025-11-24T09:48:02.1754397Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1754999Z skipping: [kubenode-super-marlin] => (item=) +2025-11-24T09:48:02.1755859Z skipping: [kubenode-renewed-asp] => (item=Please note that the certificate-key gives access to cluster sensitive data, keep it secret!) +2025-11-24T09:48:02.1756914Z skipping: [kubenode-super-marlin] => (item=kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) +2025-11-24T09:48:02.1757939Z skipping: [kubenode-renewed-asp] => (item=As a safeguard, uploaded-certs will be deleted in two hours; If necessary, you can use) +2025-11-24T09:48:02.1759153Z skipping: [kubenode-super-marlin] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 ) +2025-11-24T09:48:02.1760338Z skipping: [kubenode-renewed-asp] => (item="kubeadm init phase upload-certs --upload-certs" to reload certs afterward.) +2025-11-24T09:48:02.1761142Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1762033Z ok: [kubenode-teaching-gobbler] => (item= --control-plane --certificate-key cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) +2025-11-24T09:48:02.1763327Z skipping: [kubenode-renewed-asp] => (item=Then you can join any number of worker nodes by running the following on each as root:) +2025-11-24T09:48:02.1764152Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1764708Z skipping: [kubenode-renewed-asp] => (item=) +2025-11-24T09:48:02.1765734Z skipping: [kubenode-teaching-gobbler] => (item=Please note that the certificate-key gives access to cluster sensitive data, keep it secret!) +2025-11-24T09:48:02.1766743Z skipping: [kubenode-renewed-asp] => (item=kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) +2025-11-24T09:48:02.1767733Z skipping: [kubenode-teaching-gobbler] => (item=As a safeguard, uploaded-certs will be deleted in two hours; If necessary, you can use) +2025-11-24T09:48:02.1768883Z skipping: [kubenode-renewed-asp] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 ) +2025-11-24T09:48:02.1770092Z skipping: [kubenode-teaching-gobbler] => (item="kubeadm init phase upload-certs --upload-certs" to reload certs afterward.) +2025-11-24T09:48:02.1770862Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1771644Z skipping: [kubenode-teaching-gobbler] => (item=Then you can join any number of worker nodes by running the following on each as root:) +2025-11-24T09:48:02.1772421Z skipping: [kubenode-teaching-gobbler] => (item=) +2025-11-24T09:48:02.1773250Z skipping: [kubenode-teaching-gobbler] => (item=kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) +2025-11-24T09:48:02.1774324Z skipping: [kubenode-teaching-gobbler] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 ) +2025-11-24T09:48:02.1775010Z +2025-11-24T09:48:02.1775458Z TASK [kubernetes/control-plane : Create hardcoded kubeadm token for joining nodes with 24h expiration (if defined)] *** +2025-11-24T09:48:02.2265981Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:02.2266697Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:02.2267318Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:02.2267705Z +2025-11-24T09:48:02.2268144Z TASK [kubernetes/control-plane : Remove binding to anonymous user] ************* +2025-11-24T09:48:02.2539035Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:02.2743437Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:02.2744013Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:02.2744343Z +2025-11-24T09:48:02.2744817Z TASK [kubernetes/control-plane : Create kubeadm token for joining nodes with 24h expiration (default)] *** +2025-11-24T09:48:02.5605913Z ok: [kubenode-teaching-gobbler -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:48:02.5606807Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:48:02.5607759Z ok: [kubenode-super-marlin] +2025-11-24T09:48:02.5608084Z +2025-11-24T09:48:02.5608483Z TASK [kubernetes/control-plane : Set kubeadm_token] **************************** +2025-11-24T09:48:02.6487909Z ok: [kubenode-super-marlin] +2025-11-24T09:48:02.6488484Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:02.6488981Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:02.6489274Z +2025-11-24T09:48:02.6489646Z TASK [kubernetes/control-plane : Kubeadm | Join other masters] ***************** +2025-11-24T09:48:02.7557598Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-secondary.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:48:02.7558695Z +2025-11-24T09:48:02.7559072Z TASK [kubernetes/control-plane : Set kubeadm_discovery_address] **************** +2025-11-24T09:48:02.8505896Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:02.8506553Z ok: [kubenode-super-marlin] +2025-11-24T09:48:02.8507143Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:02.8507477Z +2025-11-24T09:48:02.8507874Z TASK [kubernetes/control-plane : Upload certificates so they are fresh and not expired] *** +2025-11-24T09:48:03.1439362Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:03.1440094Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:03.1440718Z changed: [kubenode-super-marlin] +2025-11-24T09:48:03.1441057Z +2025-11-24T09:48:03.1441481Z TASK [kubernetes/control-plane : Parse certificate key if not set] ************* +2025-11-24T09:48:03.2369814Z ok: [kubenode-super-marlin] +2025-11-24T09:48:03.2370223Z +2025-11-24T09:48:03.2371040Z TASK [kubernetes/control-plane : Create kubeadm ControlPlane config] *********** +2025-11-24T09:48:03.8305657Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:03.8306327Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:03.8306927Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:03.8307288Z +2025-11-24T09:48:03.8307707Z TASK [kubernetes/control-plane : Wait for k8s apiserver] *********************** +2025-11-24T09:48:04.3015585Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:04.3016277Z ok: [kubenode-super-marlin] +2025-11-24T09:48:04.3017255Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:04.3017577Z +2025-11-24T09:48:04.3017997Z TASK [kubernetes/control-plane : Check already run] **************************** +2025-11-24T09:48:04.3787597Z ok: [kubenode-super-marlin] => { +2025-11-24T09:48:04.3788243Z "msg": false +2025-11-24T09:48:04.3788661Z } +2025-11-24T09:48:04.3789040Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:48:04.3789486Z "msg": false +2025-11-24T09:48:04.3789889Z } +2025-11-24T09:48:04.3790304Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:48:04.3790773Z "msg": false +2025-11-24T09:48:04.3791167Z } +2025-11-24T09:48:04.3791359Z +2025-11-24T09:48:04.3791696Z TASK [kubernetes/control-plane : Reset cert directory] ************************* +2025-11-24T09:48:04.4039856Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:04.6691488Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:04.6692206Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:04.6692511Z +2025-11-24T09:48:04.6693111Z TASK [kubernetes/control-plane : Get kubeconfig for join discovery process] **** +2025-11-24T09:48:04.7085540Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:04.7086057Z +2025-11-24T09:48:04.7086454Z TASK [kubernetes/control-plane : Copy discovery kubeconfig] ******************** +2025-11-24T09:48:04.7468535Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:04.7675232Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:04.7675999Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:04.7676404Z +2025-11-24T09:48:04.7676840Z TASK [kubernetes/control-plane : Joining control plane node to the cluster.] *** +2025-11-24T09:48:10.3177945Z Still deploying... +2025-11-24T09:48:14.9546653Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:19.0237522Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:19.0238399Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:19.0239187Z +2025-11-24T09:48:19.0239630Z TASK [kubernetes/control-plane : Kubeadm | upgrade kubernetes cluster] ********* +2025-11-24T09:48:19.0707550Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:19.0938342Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:19.0939078Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:19.0939410Z +2025-11-24T09:48:19.0939795Z TASK [kubernetes/control-plane : Kubeadm | Remove taint for master with node role] *** +2025-11-24T09:48:19.4778135Z changed: [kubenode-super-marlin] => (item=node-role.kubernetes.io/control-plane:NoSchedule-) +2025-11-24T09:48:19.4779359Z changed: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => (item=node-role.kubernetes.io/control-plane:NoSchedule-) +2025-11-24T09:48:19.4780579Z changed: [kubenode-teaching-gobbler -> kubenode-super-marlin(10.1.1.8)] => (item=node-role.kubernetes.io/control-plane:NoSchedule-) +2025-11-24T09:48:19.4781249Z +2025-11-24T09:48:19.4781621Z TASK [kubernetes/control-plane : Include kubeadm etcd extra tasks] ************* +2025-11-24T09:48:19.5352100Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:19.5353081Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:19.5353637Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:19.5353996Z +2025-11-24T09:48:19.5354416Z TASK [kubernetes/control-plane : Include kubeadm secondary server apiserver fixes] *** +2025-11-24T09:48:19.6420188Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-fix-apiserver.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:48:19.6421325Z +2025-11-24T09:48:19.6422176Z TASK [kubernetes/control-plane : Update server field in component kubeconfigs] *** +2025-11-24T09:48:20.3198744Z Still deploying... +2025-11-24T09:48:20.8635823Z changed: [kubenode-teaching-gobbler] => (item=admin.conf) +2025-11-24T09:48:20.8636628Z changed: [kubenode-super-marlin] => (item=admin.conf) +2025-11-24T09:48:20.8637270Z changed: [kubenode-renewed-asp] => (item=admin.conf) +2025-11-24T09:48:20.8638038Z changed: [kubenode-teaching-gobbler] => (item=controller-manager.conf) +2025-11-24T09:48:20.8638876Z changed: [kubenode-super-marlin] => (item=controller-manager.conf) +2025-11-24T09:48:20.8640095Z changed: [kubenode-renewed-asp] => (item=controller-manager.conf) +2025-11-24T09:48:20.8640868Z changed: [kubenode-teaching-gobbler] => (item=kubelet.conf) +2025-11-24T09:48:20.8641587Z changed: [kubenode-super-marlin] => (item=kubelet.conf) +2025-11-24T09:48:20.8642279Z changed: [kubenode-renewed-asp] => (item=kubelet.conf) +2025-11-24T09:48:20.8643271Z changed: [kubenode-super-marlin] => (item=scheduler.conf) +2025-11-24T09:48:20.8644024Z changed: [kubenode-teaching-gobbler] => (item=scheduler.conf) +2025-11-24T09:48:20.8644756Z changed: [kubenode-renewed-asp] => (item=scheduler.conf) +2025-11-24T09:48:20.8645178Z +2025-11-24T09:48:20.8645586Z TASK [kubernetes/control-plane : Include kubelet client cert rotation fixes] *** +2025-11-24T09:48:21.1060431Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubelet-fix-client-cert-rotation.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler +2025-11-24T09:48:21.1061631Z +2025-11-24T09:48:21.1062029Z TASK [kubernetes/control-plane : Fixup kubelet client cert rotation 1/2] ******* +2025-11-24T09:48:21.4098847Z ok: [kubenode-super-marlin] +2025-11-24T09:48:21.4099597Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:21.4100105Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:21.4100396Z +2025-11-24T09:48:21.4100783Z TASK [kubernetes/control-plane : Fixup kubelet client cert rotation 2/2] ******* +2025-11-24T09:48:21.6677454Z ok: [kubenode-super-marlin] +2025-11-24T09:48:21.6678111Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:21.6678578Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:21.6678851Z +2025-11-24T09:48:22.1924730Z TASK [kubernetes/control-plane : Install script to renew K8S control plane certificates] *** +2025-11-24T09:48:22.1925655Z changed: [kubenode-super-marlin] +2025-11-24T09:48:22.1926547Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:22.1927127Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:22.1927439Z +2025-11-24T09:48:22.1927872Z TASK [kubernetes/control-plane : Renew K8S control plane certificates monthly 1/2] *** +2025-11-24T09:48:22.2355019Z skipping: [kubenode-super-marlin] => (item=k8s-certs-renew.service) +2025-11-24T09:48:22.2356095Z skipping: [kubenode-super-marlin] => (item=k8s-certs-renew.timer) +2025-11-24T09:48:22.2356977Z skipping: [kubenode-renewed-asp] => (item=k8s-certs-renew.service) +2025-11-24T09:48:22.2357849Z skipping: [kubenode-renewed-asp] => (item=k8s-certs-renew.timer) +2025-11-24T09:48:22.2612977Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:22.2613897Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:22.2614728Z skipping: [kubenode-teaching-gobbler] => (item=k8s-certs-renew.service) +2025-11-24T09:48:22.2615596Z skipping: [kubenode-teaching-gobbler] => (item=k8s-certs-renew.timer) +2025-11-24T09:48:22.2616332Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:22.2616698Z +2025-11-24T09:48:22.2617133Z TASK [kubernetes/control-plane : Renew K8S control plane certificates monthly 2/2] *** +2025-11-24T09:48:22.3290110Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:22.3290886Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:22.3291428Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:22.3291761Z +2025-11-24T09:48:22.3292129Z TASK [kubernetes/client : Set external kube-apiserver endpoint] **************** +2025-11-24T09:48:22.4104837Z ok: [kubenode-super-marlin] +2025-11-24T09:48:22.4105560Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:22.4106476Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:22.4106772Z +2025-11-24T09:48:22.4107180Z TASK [kubernetes/client : Create kube config dir for current/ansible become user] *** +2025-11-24T09:48:22.6809079Z changed: [kubenode-super-marlin] +2025-11-24T09:48:22.6809880Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:22.6816781Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:22.6817201Z +2025-11-24T09:48:22.6817633Z TASK [kubernetes/client : Copy admin kubeconfig to current/ansible become user home] *** +2025-11-24T09:48:22.9888352Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:22.9889457Z changed: [kubenode-super-marlin] +2025-11-24T09:48:22.9889991Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:22.9890289Z +2025-11-24T09:48:22.9890646Z TASK [kubernetes/client : Create kube artifacts dir] *************************** +2025-11-24T09:48:23.3719814Z changed: [kubenode-super-marlin -> localhost] +2025-11-24T09:48:23.3720483Z +2025-11-24T09:48:23.3720926Z TASK [kubernetes/client : Wait for k8s apiserver] ****************************** +2025-11-24T09:48:23.6279847Z ok: [kubenode-super-marlin] +2025-11-24T09:48:23.6280577Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:23.6281097Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:23.6281388Z +2025-11-24T09:48:23.6281764Z TASK [kubernetes/client : Get admin kubeconfig from remote host] *************** +2025-11-24T09:48:23.8513612Z ok: [kubenode-super-marlin] +2025-11-24T09:48:23.8514127Z +2025-11-24T09:48:23.8514483Z TASK [kubernetes/client : Convert kubeconfig to YAML] ************************** +2025-11-24T09:48:23.9371990Z ok: [kubenode-super-marlin] +2025-11-24T09:48:23.9372909Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:23.9373441Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:23.9373740Z +2025-11-24T09:48:23.9374112Z TASK [kubernetes/client : Override username in kubeconfig] ********************* +2025-11-24T09:48:24.0247418Z ok: [kubenode-super-marlin] +2025-11-24T09:48:24.0248126Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:24.0248638Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:24.0248963Z +2025-11-24T09:48:24.0249333Z TASK [kubernetes/client : Write admin kubeconfig on ansible host] ************** +2025-11-24T09:48:24.5272294Z changed: [kubenode-super-marlin -> localhost] +2025-11-24T09:48:24.5273097Z +2025-11-24T09:48:24.5273501Z TASK [kubernetes/client : Copy kubectl binary to ansible host] ***************** +2025-11-24T09:48:24.5554033Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:24.5554512Z +2025-11-24T09:48:24.5554895Z TASK [kubernetes/client : Create helper script kubectl.sh on ansible host] ***** +2025-11-24T09:48:24.6137628Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:24.6138115Z +2025-11-24T09:48:24.6138539Z TASK [kubernetes-apps/cluster_roles : Kubernetes Apps | Wait for kube-apiserver] *** +2025-11-24T09:48:25.0244407Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:25.0245086Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:25.0245650Z ok: [kubenode-super-marlin] +2025-11-24T09:48:25.0245935Z +2025-11-24T09:48:25.0246433Z TASK [kubernetes-apps/cluster_roles : Kubernetes Apps | Add ClusterRoleBinding to admit nodes] *** +2025-11-24T09:48:25.4658321Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:25.4658961Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:25.4659466Z changed: [kubenode-super-marlin] +2025-11-24T09:48:25.4659743Z +2025-11-24T09:48:25.4660223Z TASK [kubernetes-apps/cluster_roles : Apply workaround to allow all nodes with cert O=system:nodes to register] *** +2025-11-24T09:48:26.0970505Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:26.0971360Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:26.0972065Z ok: [kubenode-super-marlin] +2025-11-24T09:48:26.0972419Z +2025-11-24T09:48:26.0973145Z TASK [kubernetes-apps/cluster_roles : Kubernetes Apps | Remove old webhook ClusterRole] *** +2025-11-24T09:48:26.3911135Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:26.3911956Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:26.3912529Z ok: [kubenode-super-marlin] +2025-11-24T09:48:26.3913116Z +2025-11-24T09:48:26.3914031Z TASK [kubernetes-apps/cluster_roles : Kubernetes Apps | Remove old webhook ClusterRoleBinding] *** +2025-11-24T09:48:26.7072091Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:26.7073305Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:26.7073995Z ok: [kubenode-super-marlin] +2025-11-24T09:48:26.7074328Z +2025-11-24T09:48:26.7074752Z TASK [kubernetes-apps/cluster_roles : Configure Oracle Cloud provider] ********* +2025-11-24T09:48:26.7753543Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:26.7754354Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:26.7755194Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:26.7755509Z +2025-11-24T09:48:26.7755930Z TASK [kubernetes-apps/cluster_roles : PriorityClass | Copy k8s-cluster-critical-pc.yml file] *** +2025-11-24T09:48:27.3091969Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:27.3093036Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:27.3093880Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:27.3094401Z +2025-11-24T09:48:27.3095052Z TASK [kubernetes-apps/cluster_roles : PriorityClass | Create k8s-cluster-critical] *** +2025-11-24T09:48:27.7674493Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:27.7675270Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:27.7675781Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:27.7676058Z +2025-11-24T09:48:27.7676420Z RUNNING HANDLER [kubernetes/control-plane : Master | reload systemd] *********** +2025-11-24T09:48:28.4830151Z ok: [kubenode-super-marlin] +2025-11-24T09:48:28.4830767Z +2025-11-24T09:48:28.4831215Z RUNNING HANDLER [kubernetes/control-plane : Master | reload kubelet] *********** +2025-11-24T09:48:28.9583002Z changed: [kubenode-super-marlin] +2025-11-24T09:48:28.9583813Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:28.9584347Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:28.9584671Z +2025-11-24T09:48:28.9585113Z RUNNING HANDLER [kubernetes/control-plane : Master | Remove scheduler container docker] *** +2025-11-24T09:48:29.0015786Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:29.0276120Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:29.0277039Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:29.0277453Z +2025-11-24T09:48:29.0278010Z RUNNING HANDLER [kubernetes/control-plane : Master | Remove scheduler container containerd/crio] *** +2025-11-24T09:48:29.5514727Z changed: [kubenode-super-marlin] +2025-11-24T09:48:29.5515821Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:29.5516370Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:29.5516664Z +2025-11-24T09:48:29.5517137Z RUNNING HANDLER [kubernetes/control-plane : Master | Remove controller manager container docker] *** +2025-11-24T09:48:29.5889509Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:29.6115872Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:29.6116637Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:29.6117003Z +2025-11-24T09:48:29.6117480Z RUNNING HANDLER [kubernetes/control-plane : Master | Remove controller manager container containerd/crio] *** +2025-11-24T09:48:30.2154520Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:30.2155428Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:30.2156002Z changed: [kubenode-super-marlin] +2025-11-24T09:48:30.2156342Z +2025-11-24T09:48:30.2156777Z RUNNING HANDLER [kubernetes/control-plane : Master | wait for kube-scheduler] *** +2025-11-24T09:48:30.3216135Z Still deploying... +2025-11-24T09:48:31.9561903Z FAILED - RETRYING: [kubenode-super-marlin]: Master | wait for kube-scheduler (60 retries left). +2025-11-24T09:48:31.9563423Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Master | wait for kube-scheduler (60 retries left). +2025-11-24T09:48:31.9564570Z FAILED - RETRYING: [kubenode-renewed-asp]: Master | wait for kube-scheduler (60 retries left). +2025-11-24T09:48:31.9565391Z ok: [kubenode-super-marlin] +2025-11-24T09:48:31.9565952Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:31.9566508Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:31.9566827Z +2025-11-24T09:48:31.9567820Z RUNNING HANDLER [kubernetes/control-plane : Master | wait for kube-controller-manager] *** +2025-11-24T09:48:32.3482885Z ok: [kubenode-super-marlin] +2025-11-24T09:48:32.3483581Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:32.3484068Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:32.3484337Z +2025-11-24T09:48:32.3484775Z RUNNING HANDLER [kubernetes/control-plane : Master | wait for the apiserver to be running] *** +2025-11-24T09:48:32.7962179Z ok: [kubenode-super-marlin] +2025-11-24T09:48:32.7963035Z +2025-11-24T09:48:32.7963463Z PLAY [Invoke kubeadm and install a CNI] **************************************** +2025-11-24T09:48:32.7964356Z +2025-11-24T09:48:32.7964783Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:48:32.9070435Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:48:32.9071503Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:48:32.9072373Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:48:32.9073341Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:32.9073709Z +2025-11-24T09:48:32.9074114Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:48:32.9470220Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:32.9470726Z +2025-11-24T09:48:32.9471080Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:48:33.0085760Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:33.0086648Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:33.0087258Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:33.0087617Z +2025-11-24T09:48:33.0087991Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:48:33.0375305Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:33.0375927Z +2025-11-24T09:48:33.0376405Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:48:33.0991068Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:33.0991967Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:33.0992610Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:33.0993187Z +2025-11-24T09:48:33.0993703Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:48:33.1728457Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:33.3054982Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:33.3056329Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:33.3056661Z +2025-11-24T09:48:33.3057012Z TASK [kubernetes/kubeadm : Set kubeadm_discovery_address] ********************** +2025-11-24T09:48:33.3057675Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:33.3058139Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:33.3058604Z ok: [kubenode-super-marlin] +2025-11-24T09:48:33.3058865Z +2025-11-24T09:48:33.3059198Z TASK [kubernetes/kubeadm : Check if kubelet.conf exists] *********************** +2025-11-24T09:48:33.5539808Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:33.5540687Z ok: [kubenode-super-marlin] +2025-11-24T09:48:33.5541284Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:33.5541614Z +2025-11-24T09:48:33.5542017Z TASK [kubernetes/kubeadm : Check if kubeadm CA cert is accessible] ************* +2025-11-24T09:48:33.7997564Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:48:33.7998114Z +2025-11-24T09:48:33.7998451Z TASK [kubernetes/kubeadm : Calculate kubeadm CA cert hash] ********************* +2025-11-24T09:48:34.0287787Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:48:34.0288504Z +2025-11-24T09:48:34.0289042Z TASK [kubernetes/kubeadm : Create kubeadm token for joining nodes with 24h expiration (default)] *** +2025-11-24T09:48:34.1138057Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.1138719Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.1139242Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.1139540Z +2025-11-24T09:48:34.1139883Z TASK [kubernetes/kubeadm : Set kubeadm_token to generated token] *************** +2025-11-24T09:48:34.1894529Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.1895146Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.1895674Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.1895972Z +2025-11-24T09:48:34.1896310Z TASK [kubernetes/kubeadm : Set kubeadm api version to v1beta3] ***************** +2025-11-24T09:48:34.2829885Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:34.2830793Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.2831357Z ok: [kubenode-super-marlin] +2025-11-24T09:48:34.2831620Z +2025-11-24T09:48:34.2831975Z TASK [kubernetes/kubeadm : Get kubeconfig for join discovery process] ********** +2025-11-24T09:48:34.3386051Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.3386569Z +2025-11-24T09:48:34.3386947Z TASK [kubernetes/kubeadm : Copy discovery kubeconfig] ************************** +2025-11-24T09:48:34.4035590Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.4036181Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.4036699Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.4036996Z +2025-11-24T09:48:34.4037358Z TASK [kubernetes/kubeadm : Create kubeadm client config] *********************** +2025-11-24T09:48:34.4557920Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.4559000Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.4560054Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.4560662Z +2025-11-24T09:48:34.4561256Z TASK [kubernetes/kubeadm : Kubeadm | Create directory to store kubeadm patches] *** +2025-11-24T09:48:34.5112206Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.5113074Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.5113661Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.5113970Z +2025-11-24T09:48:34.5114351Z TASK [kubernetes/kubeadm : Kubeadm | Copy kubeadm patches from inventory files] *** +2025-11-24T09:48:34.5804962Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.5805609Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.5806169Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.5806485Z +2025-11-24T09:48:34.5806857Z TASK [kubernetes/kubeadm : Join to cluster] ************************************ +2025-11-24T09:48:34.6300337Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.6300919Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.6301444Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.6301736Z +2025-11-24T09:48:34.6302072Z TASK [kubernetes/kubeadm : Display kubeadm join stderr if any] ***************** +2025-11-24T09:48:34.6828973Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.6829550Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.6830091Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.6830390Z +2025-11-24T09:48:34.6830739Z TASK [kubernetes/kubeadm : Update server field in kubelet kubeconfig] ********** +2025-11-24T09:48:34.7624809Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.7625386Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.7625912Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.7626202Z +2025-11-24T09:48:34.7626627Z TASK [kubernetes/kubeadm : Update server field in kubelet kubeconfig - external lb] *** +2025-11-24T09:48:34.7998842Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:34.8302073Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:34.8302894Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:34.8303294Z +2025-11-24T09:48:34.8303659Z TASK [kubernetes/kubeadm : Update server field in kube-proxy kubeconfig] ******* +2025-11-24T09:48:35.2470336Z changed: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:48:35.2470897Z +2025-11-24T09:48:35.2471388Z TASK [kubernetes/kubeadm : Update server field in kube-proxy kubeconfig - external lb] *** +2025-11-24T09:48:35.3153098Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:35.3153544Z +2025-11-24T09:48:35.3153981Z TASK [kubernetes/kubeadm : Set ca.crt file permission] ************************* +2025-11-24T09:48:35.5607620Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:35.5608186Z ok: [kubenode-super-marlin] +2025-11-24T09:48:35.5608661Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:35.5609329Z +2025-11-24T09:48:35.5609789Z TASK [kubernetes/kubeadm : Restart all kube-proxy pods to ensure that they load the new configmap] *** +2025-11-24T09:48:35.9630805Z changed: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:48:35.9631319Z +2025-11-24T09:48:35.9631770Z TASK [kubernetes/kubeadm : Extract etcd certs from control plane if using etcd kubeadm mode] *** +2025-11-24T09:48:36.0037651Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:36.0451066Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:36.0452006Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:36.0452307Z +2025-11-24T09:48:36.0452882Z TASK [kubernetes/node-label : Kubernetes Apps | Wait for kube-apiserver] ******* +2025-11-24T09:48:36.0734737Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:36.4709945Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:36.4710652Z ok: [kubenode-super-marlin] +2025-11-24T09:48:36.4710978Z +2025-11-24T09:48:36.4711413Z TASK [kubernetes/node-label : Set role node label to empty list] *************** +2025-11-24T09:48:36.5471874Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:36.5472423Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:36.5473132Z ok: [kubenode-super-marlin] +2025-11-24T09:48:36.5473404Z +2025-11-24T09:48:36.5473741Z TASK [kubernetes/node-label : Node label for nvidia GPU nodes] ***************** +2025-11-24T09:48:36.5902262Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:36.6374708Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:36.6375306Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:36.6375694Z +2025-11-24T09:48:36.6376120Z TASK [kubernetes/node-label : Set inventory node label to empty list] ********** +2025-11-24T09:48:36.7303742Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:36.7304316Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:36.7304812Z ok: [kubenode-super-marlin] +2025-11-24T09:48:36.7305101Z +2025-11-24T09:48:36.7305475Z TASK [kubernetes/node-label : Populate inventory node label] ******************* +2025-11-24T09:48:36.7988215Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:36.7988796Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:36.7989295Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:36.7989577Z +2025-11-24T09:48:36.7989889Z TASK [kubernetes/node-label : debug] ******************************************* +2025-11-24T09:48:36.8796905Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:48:36.8797946Z "role_node_labels": [] +2025-11-24T09:48:36.8798469Z } +2025-11-24T09:48:36.8798959Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:48:36.8799559Z "role_node_labels": [] +2025-11-24T09:48:36.8800076Z } +2025-11-24T09:48:36.8800459Z ok: [kubenode-super-marlin] => { +2025-11-24T09:48:36.8800902Z "role_node_labels": [] +2025-11-24T09:48:36.8801301Z } +2025-11-24T09:48:36.8801492Z +2025-11-24T09:48:36.8801797Z TASK [kubernetes/node-label : debug] ******************************************* +2025-11-24T09:48:36.9638885Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:48:36.9639457Z "inventory_node_labels": [] +2025-11-24T09:48:36.9639958Z } +2025-11-24T09:48:36.9640432Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:48:36.9640962Z "inventory_node_labels": [] +2025-11-24T09:48:36.9641432Z } +2025-11-24T09:48:36.9641856Z ok: [kubenode-super-marlin] => { +2025-11-24T09:48:36.9642343Z "inventory_node_labels": [] +2025-11-24T09:48:36.9643092Z } +2025-11-24T09:48:36.9643337Z +2025-11-24T09:48:36.9643673Z TASK [kubernetes/node-label : Set label to node] ******************************* +2025-11-24T09:48:37.0210360Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:37.0211070Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:37.0211773Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:37.0212127Z +2025-11-24T09:48:37.0212552Z TASK [kubernetes/node-taint : Set role and inventory node taint to empty list] *** +2025-11-24T09:48:37.0811875Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:37.0812398Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:37.0813082Z ok: [kubenode-super-marlin] +2025-11-24T09:48:37.0813354Z +2025-11-24T09:48:37.0814010Z TASK [kubernetes/node-taint : Node taint for nvidia GPU nodes] ***************** +2025-11-24T09:48:37.1117476Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:37.1368011Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:37.1375855Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:37.1376318Z +2025-11-24T09:48:37.1376680Z TASK [kubernetes/node-taint : Populate inventory node taint] ******************* +2025-11-24T09:48:37.1661824Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:37.1884113Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:37.1885100Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:37.1885427Z +2025-11-24T09:48:37.1885756Z TASK [kubernetes/node-taint : debug] ******************************************* +2025-11-24T09:48:37.2467413Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:48:37.2468084Z "role_node_taints": [] +2025-11-24T09:48:37.2468615Z } +2025-11-24T09:48:37.2469109Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:48:37.2469722Z "role_node_taints": [] +2025-11-24T09:48:37.2470233Z } +2025-11-24T09:48:37.2470708Z ok: [kubenode-super-marlin] => { +2025-11-24T09:48:37.2471262Z "role_node_taints": [] +2025-11-24T09:48:37.2471768Z } +2025-11-24T09:48:37.2472003Z +2025-11-24T09:48:37.2472390Z TASK [kubernetes/node-taint : debug] ******************************************* +2025-11-24T09:48:37.3044556Z ok: [kubenode-renewed-asp] => { +2025-11-24T09:48:37.3045229Z "inventory_node_taints": [] +2025-11-24T09:48:37.3045789Z } +2025-11-24T09:48:37.3046332Z ok: [kubenode-teaching-gobbler] => { +2025-11-24T09:48:37.3046978Z "inventory_node_taints": [] +2025-11-24T09:48:37.3047514Z } +2025-11-24T09:48:37.3048015Z ok: [kubenode-super-marlin] => { +2025-11-24T09:48:37.3048534Z "inventory_node_taints": [] +2025-11-24T09:48:37.3048978Z } +2025-11-24T09:48:37.3049173Z +2025-11-24T09:48:37.3878854Z TASK [kubernetes/node-taint : Set taint to node] ******************************* +2025-11-24T09:48:37.3879709Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:37.3880271Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:37.3880793Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:37.3881085Z +2025-11-24T09:48:37.3881413Z TASK [network_plugin/cni : CNI | make sure /opt/cni/bin exists] **************** +2025-11-24T09:48:37.6547071Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:37.6547633Z ok: [kubenode-super-marlin] +2025-11-24T09:48:37.6548417Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:37.6548693Z +2025-11-24T09:48:37.6549009Z TASK [network_plugin/cni : CNI | Copy cni plugins] ***************************** +2025-11-24T09:48:40.3230561Z Still deploying... +2025-11-24T09:48:41.0946526Z changed: [kubenode-super-marlin] +2025-11-24T09:48:41.0947225Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:41.0947711Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.0948013Z +2025-11-24T09:48:41.0948398Z TASK [network_plugin/cilium : Cilium | Check Cilium encryption `cilium_ipsec_key` for ipsec] *** +2025-11-24T09:48:41.1453222Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.1454203Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.1454837Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.1455198Z +2025-11-24T09:48:41.1455767Z TASK [network_plugin/cilium : Stop if `cilium_ipsec_enabled` is defined and `cilium_encryption_type` is not `ipsec`] *** +2025-11-24T09:48:41.1980233Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.1981170Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.1981806Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.1982162Z +2025-11-24T09:48:41.1982869Z TASK [network_plugin/cilium : Stop if kernel version is too low for Cilium Wireguard encryption] *** +2025-11-24T09:48:41.2530558Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.2531298Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.2531835Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.2532126Z +2025-11-24T09:48:41.2532502Z TASK [network_plugin/cilium : Stop if bad Cilium identity allocation mode] ***** +2025-11-24T09:48:41.3110614Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.3111247Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.3111807Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.3112113Z +2025-11-24T09:48:41.3112474Z TASK [network_plugin/cilium : Stop if bad Cilium Cluster ID] ******************* +2025-11-24T09:48:41.3622127Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.3623304Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.3623941Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.3624297Z +2025-11-24T09:48:41.3624701Z TASK [network_plugin/cilium : Stop if bad encryption type] ********************* +2025-11-24T09:48:41.4113877Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.4114747Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.4115394Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.4115768Z +2025-11-24T09:48:41.4116113Z TASK [network_plugin/cilium : Stop if cilium_version is < v1.10.0] ************* +2025-11-24T09:48:41.4639252Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.4640201Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.4640842Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.4641202Z +2025-11-24T09:48:41.4641756Z TASK [network_plugin/cilium : Set `cilium_encryption_type` to "ipsec" and if `cilium_ipsec_enabled` is true] *** +2025-11-24T09:48:41.5217198Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.5218125Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.5218807Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.5219172Z +2025-11-24T09:48:41.5219578Z TASK [network_plugin/cilium : Cilium install] ********************************** +2025-11-24T09:48:41.5712971Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.5713755Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.5714321Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.5714634Z +2025-11-24T09:48:41.5714976Z TASK [network_plugin/cilium : Cilium apply] ************************************ +2025-11-24T09:48:41.6574634Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:41.6575485Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.6576062Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:41.6576379Z +2025-11-24T09:48:41.6576731Z TASK [network_plugin/calico : Slurp CNI config] ******************************** +2025-11-24T09:48:41.9114553Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:41.9115438Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:41.9116419Z ok: [kubenode-super-marlin] +2025-11-24T09:48:41.9116748Z +2025-11-24T09:48:41.9117210Z TASK [network_plugin/calico : Set fact calico_cni_config from slurped CNI config] *** +2025-11-24T09:48:41.9965570Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:42.0656481Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:42.0657202Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:42.0657498Z +2025-11-24T09:48:42.0657832Z TASK [network_plugin/calico : Set fact calico_datastore to etcd if needed] ***** +2025-11-24T09:48:42.0658585Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:42.0659205Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:42.0659858Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:42.0660196Z +2025-11-24T09:48:42.0660576Z TASK [network_plugin/calico : Calico | Get kubelet hostname] ******************* +2025-11-24T09:48:42.1570144Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:42.1570900Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:42.1571483Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:42.1571797Z +2025-11-24T09:48:42.1572154Z TASK [network_plugin/calico : Calico | Gather os specific variables] *********** +2025-11-24T09:48:42.2699585Z ok: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/calico/vars/../vars/debian.yml) +2025-11-24T09:48:42.2701182Z ok: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/calico/vars/../vars/debian.yml) +2025-11-24T09:48:42.2703288Z ok: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/calico/vars/../vars/debian.yml) +2025-11-24T09:48:42.2704016Z +2025-11-24T09:48:42.2704363Z TASK [network_plugin/calico : Calico | Add wireguard yum repo] ***************** +2025-11-24T09:48:42.3068485Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:42.3320338Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:42.3321281Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:42.3321670Z +2025-11-24T09:48:42.3322070Z TASK [network_plugin/calico : Calico install] ********************************** +2025-11-24T09:48:42.4446906Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/install.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin +2025-11-24T09:48:42.4448260Z +2025-11-24T09:48:42.4448615Z TASK [network_plugin/calico : Calico | Install Wireguard packages] ************* +2025-11-24T09:48:42.4947674Z skipping: [kubenode-renewed-asp] => (item=wireguard) +2025-11-24T09:48:42.4948674Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:42.4949375Z skipping: [kubenode-teaching-gobbler] => (item=wireguard) +2025-11-24T09:48:42.4950092Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:42.4950753Z skipping: [kubenode-super-marlin] => (item=wireguard) +2025-11-24T09:48:42.4951415Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:42.4951754Z +2025-11-24T09:48:42.4952174Z TASK [network_plugin/calico : Calico | Copy calicoctl binary from download dir] *** +2025-11-24T09:48:43.3862935Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:43.3863835Z changed: [kubenode-super-marlin] +2025-11-24T09:48:43.3864461Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:43.3864797Z +2025-11-24T09:48:43.3865199Z TASK [network_plugin/calico : Calico | Create calico certs directory] ********** +2025-11-24T09:48:43.4426863Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:43.4427620Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:43.4428184Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:43.4428495Z +2025-11-24T09:48:43.4428893Z TASK [network_plugin/calico : Calico | Link etcd certificates for calico-node] *** +2025-11-24T09:48:43.4766074Z skipping: [kubenode-renewed-asp] => (item={'s': 'ca.pem', 'd': 'ca_cert.crt'}) +2025-11-24T09:48:43.5146193Z skipping: [kubenode-renewed-asp] => (item={'s': 'node-kubenode-renewed-asp.pem', 'd': 'cert.crt'}) +2025-11-24T09:48:43.5147241Z skipping: [kubenode-renewed-asp] => (item={'s': 'node-kubenode-renewed-asp-key.pem', 'd': 'key.pem'}) +2025-11-24T09:48:43.5148442Z skipping: [kubenode-teaching-gobbler] => (item={'s': 'ca.pem', 'd': 'ca_cert.crt'}) +2025-11-24T09:48:43.5149121Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:43.5149860Z skipping: [kubenode-teaching-gobbler] => (item={'s': 'node-kubenode-teaching-gobbler.pem', 'd': 'cert.crt'}) +2025-11-24T09:48:43.5150909Z skipping: [kubenode-teaching-gobbler] => (item={'s': 'node-kubenode-teaching-gobbler-key.pem', 'd': 'key.pem'}) +2025-11-24T09:48:43.5151692Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:43.5152345Z skipping: [kubenode-super-marlin] => (item={'s': 'ca.pem', 'd': 'ca_cert.crt'}) +2025-11-24T09:48:43.5153419Z skipping: [kubenode-super-marlin] => (item={'s': 'node-kubenode-super-marlin.pem', 'd': 'cert.crt'}) +2025-11-24T09:48:43.5154343Z skipping: [kubenode-super-marlin] => (item={'s': 'node-kubenode-super-marlin-key.pem', 'd': 'key.pem'}) +2025-11-24T09:48:43.5155068Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:43.5155355Z +2025-11-24T09:48:43.5155686Z TASK [network_plugin/calico : Calico | Generate typha certs] ******************* +2025-11-24T09:48:43.5505867Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:43.5714646Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:43.5715512Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:43.5717869Z +2025-11-24T09:48:43.5718356Z TASK [network_plugin/calico : Calico | Generate apiserver certs] *************** +2025-11-24T09:48:43.6237308Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:43.6238055Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:43.6239085Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:43.6239452Z +2025-11-24T09:48:43.6239859Z TASK [network_plugin/calico : Calico | Install calicoctl wrapper script] ******* +2025-11-24T09:48:44.1670328Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:44.1671233Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:44.1671817Z changed: [kubenode-super-marlin] +2025-11-24T09:48:44.1672169Z +2025-11-24T09:48:44.1672560Z TASK [network_plugin/calico : Calico | wait for etcd] ************************** +2025-11-24T09:48:44.2055670Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:44.2056605Z +2025-11-24T09:48:44.2057153Z TASK [network_plugin/calico : Calico | Check if calico network pool has already been configured] *** +2025-11-24T09:48:44.2447766Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:44.5029890Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:44.5030655Z ok: [kubenode-super-marlin] +2025-11-24T09:48:44.5030935Z +2025-11-24T09:48:44.5031406Z TASK [network_plugin/calico : Calico | Ensure that calico_pool_cidr is within kube_pods_subnet when defined] *** +2025-11-24T09:48:44.5387467Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:44.5664224Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:44.5665133Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:44.5665502Z +2025-11-24T09:48:44.5666028Z TASK [network_plugin/calico : Calico | Check if calico IPv6 network pool has already been configured] *** +2025-11-24T09:48:44.6184849Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:44.6185740Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:44.6186596Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:44.6187055Z +2025-11-24T09:48:44.6187739Z TASK [network_plugin/calico : Calico | Ensure that calico_pool_cidr_ipv6 is within kube_pods_subnet_ipv6 when defined] *** +2025-11-24T09:48:44.6942556Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:44.6943503Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:44.6944039Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:44.6944327Z +2025-11-24T09:48:44.6944688Z TASK [network_plugin/calico : Calico | Check if extra directory is needed] ***** +2025-11-24T09:48:44.9623426Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:44.9624111Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:44.9624587Z ok: [kubenode-super-marlin] +2025-11-24T09:48:44.9624851Z +2025-11-24T09:48:44.9625197Z TASK [network_plugin/calico : Calico | Set kdd path when calico < v3.22.3] ***** +2025-11-24T09:48:45.0275252Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:45.0276138Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:45.0276791Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:45.0277136Z +2025-11-24T09:48:45.0277532Z TASK [network_plugin/calico : Calico | Set kdd path when calico > v3.22.2] ***** +2025-11-24T09:48:45.1180973Z ok: [kubenode-renewed-asp] +2025-11-24T09:48:45.1181820Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:48:45.1182394Z ok: [kubenode-super-marlin] +2025-11-24T09:48:45.1182996Z +2025-11-24T09:48:45.1183438Z TASK [network_plugin/calico : Calico | Create calico manifests for kdd] ******** +2025-11-24T09:48:45.6424484Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:48:45.6425365Z changed: [kubenode-super-marlin] +2025-11-24T09:48:45.6425860Z changed: [kubenode-renewed-asp] +2025-11-24T09:48:45.6426135Z +2025-11-24T09:48:45.6426519Z TASK [network_plugin/calico : Calico | Create Calico Kubernetes datastore resources] *** +2025-11-24T09:48:46.5198597Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:46.5199500Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:46.5200118Z ok: [kubenode-super-marlin] +2025-11-24T09:48:46.5200460Z +2025-11-24T09:48:46.5200868Z TASK [network_plugin/calico : Calico | Get existing FelixConfiguration] ******** +2025-11-24T09:48:46.8445953Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:46.8446845Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:46.8449877Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/calicoctl.sh", "get", "felixconfig", "default", "-o", "json"], "delta": "0:00:00.081596", "end": "2025-11-24 09:48:45.764314", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:48:45.682718", "stderr": "resource does not exist: FelixConfiguration(default) with error: felixconfigurations.crd.projectcalico.org \"default\" not found", "stderr_lines": ["resource does not exist: FelixConfiguration(default) with error: felixconfigurations.crd.projectcalico.org \"default\" not found"], "stdout": "null", "stdout_lines": ["null"]} +2025-11-24T09:48:46.8452215Z ...ignoring +2025-11-24T09:48:46.8452438Z +2025-11-24T09:48:46.8453198Z TASK [network_plugin/calico : Calico | Set kubespray FelixConfiguration] ******* +2025-11-24T09:48:46.8885658Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:46.9350790Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:46.9351751Z ok: [kubenode-super-marlin] +2025-11-24T09:48:46.9352084Z +2025-11-24T09:48:46.9352491Z TASK [network_plugin/calico : Calico | Process FelixConfiguration] ************* +2025-11-24T09:48:47.0053586Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:47.0054329Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:47.0054889Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:47.0055182Z +2025-11-24T09:48:47.0055530Z TASK [network_plugin/calico : Calico | Configure calico FelixConfiguration] **** +2025-11-24T09:48:49.2992257Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:49.2993491Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:49.2994182Z ok: [kubenode-super-marlin] +2025-11-24T09:48:49.2994545Z +2025-11-24T09:48:49.2994941Z TASK [network_plugin/calico : Calico | Get existing calico network pool] ******* +2025-11-24T09:48:49.3456307Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:49.6560407Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:49.6563159Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/calicoctl.sh", "get", "ippool", "default-pool", "-o", "json"], "delta": "0:00:00.105930", "end": "2025-11-24 09:48:48.582159", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:48:48.476229", "stderr": "resource does not exist: IPPool(default-pool) with error: ippools.crd.projectcalico.org \"default-pool\" not found", "stderr_lines": ["resource does not exist: IPPool(default-pool) with error: ippools.crd.projectcalico.org \"default-pool\" not found"], "stdout": "null", "stdout_lines": ["null"]} +2025-11-24T09:48:49.6565651Z ...ignoring +2025-11-24T09:48:49.6565913Z +2025-11-24T09:48:49.6566250Z TASK [network_plugin/calico : Calico | Set kubespray calico network pool] ****** +2025-11-24T09:48:49.7005352Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:49.7408495Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:49.7409442Z ok: [kubenode-super-marlin] +2025-11-24T09:48:49.7409769Z +2025-11-24T09:48:49.7410214Z TASK [network_plugin/calico : Calico | Get current calico network pool blocksize] *** +2025-11-24T09:48:49.8105764Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:49.8106610Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:49.8107261Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:49.8107622Z +2025-11-24T09:48:49.8108029Z TASK [network_plugin/calico : Calico | Merge calico network pool] ************** +2025-11-24T09:48:49.8744506Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:49.8745387Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:49.8746020Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:49.8746405Z +2025-11-24T09:48:49.8746809Z TASK [network_plugin/calico : Calico | Configure calico network pool] ********** +2025-11-24T09:48:49.9019613Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.1894459Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.1895365Z ok: [kubenode-super-marlin] +2025-11-24T09:48:50.1895702Z +2025-11-24T09:48:50.1896108Z TASK [network_plugin/calico : Calico | Get existing calico ipv6 network pool] *** +2025-11-24T09:48:50.2323330Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.2555657Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.2556652Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:50.2557485Z +2025-11-24T09:48:50.2557952Z TASK [network_plugin/calico : Calico | Set kubespray calico network pool] ****** +2025-11-24T09:48:50.3107243Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.3107955Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.3108481Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:50.3108776Z +2025-11-24T09:48:50.3109203Z TASK [network_plugin/calico : Calico | Get current calico ipv6 network pool blocksize] *** +2025-11-24T09:48:50.3246439Z Still deploying... +2025-11-24T09:48:50.3386994Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.3600771Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.3601781Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:50.3602145Z +2025-11-24T09:48:50.3602545Z TASK [network_plugin/calico : Calico | Merge calico ipv6 network pool] ********* +2025-11-24T09:48:50.3865330Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.4134518Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.4135475Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:50.4135844Z +2025-11-24T09:48:50.4136251Z TASK [network_plugin/calico : Calico | Configure calico ipv6 network pool] ***** +2025-11-24T09:48:50.4453568Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.4722226Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.4723208Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:50.4723531Z +2025-11-24T09:48:50.4723938Z TASK [network_plugin/calico : Populate Service External IPs] ******************* +2025-11-24T09:48:50.4968792Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.4969291Z +2025-11-24T09:48:50.4969648Z TASK [network_plugin/calico : Populate Service LoadBalancer IPs] *************** +2025-11-24T09:48:50.5219949Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.5220533Z +2025-11-24T09:48:50.5220917Z TASK [network_plugin/calico : Determine nodeToNodeMesh needed state] *********** +2025-11-24T09:48:50.5598426Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.5598890Z +2025-11-24T09:48:50.5599240Z TASK [network_plugin/calico : Calico | Get existing BGP Configuration] ********* +2025-11-24T09:48:50.8173102Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.8174024Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.8176752Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/calicoctl.sh", "get", "bgpconfig", "default", "-o", "json"], "delta": "0:00:00.043176", "end": "2025-11-24 09:48:49.754619", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:48:49.711443", "stderr": "resource does not exist: BGPConfiguration(default) with error: bgpconfigurations.crd.projectcalico.org \"default\" not found", "stderr_lines": ["resource does not exist: BGPConfiguration(default) with error: bgpconfigurations.crd.projectcalico.org \"default\" not found"], "stdout": "null", "stdout_lines": ["null"]} +2025-11-24T09:48:50.8179910Z ...ignoring +2025-11-24T09:48:50.8180180Z +2025-11-24T09:48:50.8180594Z TASK [network_plugin/calico : Calico | Set kubespray BGP Configuration] ******** +2025-11-24T09:48:50.8465334Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.8977025Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.8977899Z ok: [kubenode-super-marlin] +2025-11-24T09:48:50.8978242Z +2025-11-24T09:48:50.8978651Z TASK [network_plugin/calico : Calico | Process BGP Configuration] ************** +2025-11-24T09:48:50.9285208Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:50.9578435Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:50.9579216Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:50.9579555Z +2025-11-24T09:48:50.9579925Z TASK [network_plugin/calico : Calico | Set up BGP Configuration] *************** +2025-11-24T09:48:53.2582575Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:53.2583443Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:53.2583976Z ok: [kubenode-super-marlin] +2025-11-24T09:48:53.2584251Z +2025-11-24T09:48:53.2584591Z TASK [network_plugin/calico : Calico | Create calico manifests] **************** +2025-11-24T09:48:56.3249242Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico-config', 'file': 'calico-config.yml', 'type': 'cm'}) +2025-11-24T09:48:56.3250325Z changed: [kubenode-renewed-asp] => (item={'name': 'calico-config', 'file': 'calico-config.yml', 'type': 'cm'}) +2025-11-24T09:48:56.3251251Z changed: [kubenode-super-marlin] => (item={'name': 'calico-config', 'file': 'calico-config.yml', 'type': 'cm'}) +2025-11-24T09:48:56.3252158Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico-node', 'file': 'calico-node.yml', 'type': 'ds'}) +2025-11-24T09:48:56.3253351Z changed: [kubenode-renewed-asp] => (item={'name': 'calico-node', 'file': 'calico-node.yml', 'type': 'ds'}) +2025-11-24T09:48:56.3254344Z changed: [kubenode-super-marlin] => (item={'name': 'calico-node', 'file': 'calico-node.yml', 'type': 'ds'}) +2025-11-24T09:48:56.3255204Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-node-sa.yml', 'type': 'sa'}) +2025-11-24T09:48:56.3256059Z changed: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-node-sa.yml', 'type': 'sa'}) +2025-11-24T09:48:56.3256873Z changed: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-node-sa.yml', 'type': 'sa'}) +2025-11-24T09:48:56.3257721Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-cr.yml', 'type': 'clusterrole'}) +2025-11-24T09:48:56.3258580Z changed: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-cr.yml', 'type': 'clusterrole'}) +2025-11-24T09:48:56.3259412Z changed: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-cr.yml', 'type': 'clusterrole'}) +2025-11-24T09:48:56.3260300Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-crb.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:48:56.3261212Z changed: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-crb.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:48:56.3262100Z changed: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-crb.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:48:56.3263240Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kubernetes-services-endpoint', 'file': 'kubernetes-services-endpoint.yml', 'type': 'cm'}) +2025-11-24T09:48:56.3264345Z changed: [kubenode-super-marlin] => (item={'name': 'kubernetes-services-endpoint', 'file': 'kubernetes-services-endpoint.yml', 'type': 'cm'}) +2025-11-24T09:48:56.3265529Z changed: [kubenode-renewed-asp] => (item={'name': 'kubernetes-services-endpoint', 'file': 'kubernetes-services-endpoint.yml', 'type': 'cm'}) +2025-11-24T09:48:56.3266116Z +2025-11-24T09:48:56.3266431Z TASK [network_plugin/calico : Calico | Create calico manifests for typha] ****** +2025-11-24T09:48:56.3627488Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-typha.yml', 'type': 'typha'}) +2025-11-24T09:48:56.3957973Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:56.3959208Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-typha.yml', 'type': 'typha'}) +2025-11-24T09:48:56.3960176Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:56.3961100Z skipping: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-typha.yml', 'type': 'typha'}) +2025-11-24T09:48:56.3962004Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:56.3962366Z +2025-11-24T09:48:56.3963056Z TASK [network_plugin/calico : Calico | get calico apiserver caBundle] ********** +2025-11-24T09:48:56.4471723Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:56.4472582Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:56.4473532Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:56.4473897Z +2025-11-24T09:48:56.4474322Z TASK [network_plugin/calico : Calico | set calico apiserver caBundle fact] ***** +2025-11-24T09:48:56.5000323Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:56.5001239Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:56.5001899Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:56.5002274Z +2025-11-24T09:48:56.5003380Z TASK [network_plugin/calico : Calico | Create calico manifests for apiserver] *** +2025-11-24T09:48:56.5300047Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-apiserver.yml', 'type': 'calico-apiserver'}) +2025-11-24T09:48:56.5574623Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:56.5575481Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-apiserver.yml', 'type': 'calico-apiserver'}) +2025-11-24T09:48:56.5576307Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:56.5577082Z skipping: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-apiserver.yml', 'type': 'calico-apiserver'}) +2025-11-24T09:48:56.5578200Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:56.5578492Z +2025-11-24T09:48:56.5578818Z TASK [network_plugin/calico : Start Calico resources] ************************** +2025-11-24T09:48:58.8569006Z skipping: [kubenode-renewed-asp] => (item=calico-config.yml) +2025-11-24T09:48:58.8569793Z skipping: [kubenode-teaching-gobbler] => (item=calico-config.yml) +2025-11-24T09:48:58.8570554Z skipping: [kubenode-renewed-asp] => (item=calico-node.yml) +2025-11-24T09:48:58.8571241Z skipping: [kubenode-teaching-gobbler] => (item=calico-node.yml) +2025-11-24T09:48:58.8571912Z skipping: [kubenode-renewed-asp] => (item=calico-node-sa.yml) +2025-11-24T09:48:58.8572613Z skipping: [kubenode-teaching-gobbler] => (item=calico-node-sa.yml) +2025-11-24T09:48:58.8573591Z skipping: [kubenode-teaching-gobbler] => (item=calico-cr.yml) +2025-11-24T09:48:58.8574262Z skipping: [kubenode-renewed-asp] => (item=calico-cr.yml) +2025-11-24T09:48:58.8574914Z skipping: [kubenode-teaching-gobbler] => (item=calico-crb.yml) +2025-11-24T09:48:58.8575583Z skipping: [kubenode-renewed-asp] => (item=calico-crb.yml) +2025-11-24T09:48:58.8576313Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes-services-endpoint.yml) +2025-11-24T09:48:58.8577133Z skipping: [kubenode-renewed-asp] => (item=kubernetes-services-endpoint.yml) +2025-11-24T09:48:58.8577893Z skipping: [kubenode-teaching-gobbler] => (item=calico-typha.yml) +2025-11-24T09:48:58.8578561Z skipping: [kubenode-renewed-asp] => (item=calico-typha.yml) +2025-11-24T09:48:58.8579152Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:58.8579675Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:58.8580203Z ok: [kubenode-super-marlin] => (item=calico-config.yml) +2025-11-24T09:48:58.8580790Z ok: [kubenode-super-marlin] => (item=calico-node.yml) +2025-11-24T09:48:58.8581737Z ok: [kubenode-super-marlin] => (item=calico-node-sa.yml) +2025-11-24T09:48:58.8582326Z ok: [kubenode-super-marlin] => (item=calico-cr.yml) +2025-11-24T09:48:58.8583018Z ok: [kubenode-super-marlin] => (item=calico-crb.yml) +2025-11-24T09:48:58.8583670Z ok: [kubenode-super-marlin] => (item=kubernetes-services-endpoint.yml) +2025-11-24T09:48:58.8584364Z skipping: [kubenode-super-marlin] => (item=calico-typha.yml) +2025-11-24T09:48:58.8584761Z +2025-11-24T09:48:58.8585092Z TASK [network_plugin/calico : Start Calico apiserver resources] **************** +2025-11-24T09:48:58.8998533Z skipping: [kubenode-renewed-asp] => (item=calico-apiserver.yml) +2025-11-24T09:48:58.9440472Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:58.9441304Z skipping: [kubenode-teaching-gobbler] => (item=calico-apiserver.yml) +2025-11-24T09:48:58.9442112Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:58.9443092Z skipping: [kubenode-super-marlin] => (item=calico-apiserver.yml) +2025-11-24T09:48:58.9443872Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:58.9444221Z +2025-11-24T09:48:58.9444612Z TASK [network_plugin/calico : Wait for calico kubeconfig to be created] ******** +2025-11-24T09:48:58.9936753Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:58.9937332Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:58.9937860Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:58.9938213Z +2025-11-24T09:48:58.9938553Z TASK [network_plugin/calico : Calico | Create Calico ipam manifests] *********** +2025-11-24T09:48:59.4970126Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-ipamconfig.yml', 'type': 'ipam'}) +2025-11-24T09:48:59.4971401Z changed: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-ipamconfig.yml', 'type': 'ipam'}) +2025-11-24T09:48:59.4972486Z changed: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-ipamconfig.yml', 'type': 'ipam'}) +2025-11-24T09:48:59.4973388Z +2025-11-24T09:48:59.4973789Z TASK [network_plugin/calico : Calico | Create ipamconfig resources] ************ +2025-11-24T09:48:59.8546647Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:59.8547216Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:59.8548049Z ok: [kubenode-super-marlin] +2025-11-24T09:48:59.8548315Z +2025-11-24T09:48:59.8548646Z TASK [network_plugin/calico : Calico | Peer with Calico Route Reflector] ******* +2025-11-24T09:48:59.9067129Z skipping: [kubenode-renewed-asp] +2025-11-24T09:48:59.9429727Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:48:59.9430326Z skipping: [kubenode-super-marlin] +2025-11-24T09:48:59.9430615Z +2025-11-24T09:48:59.9430962Z TASK [network_plugin/calico : Calico | Peer with the router] ******************* +2025-11-24T09:49:00.0208211Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.0208828Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.0209359Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.0209654Z +2025-11-24T09:49:00.0210116Z TASK [network_plugin/flannel : Flannel | Stop if kernel version is too low for Flannel Wireguard encryption] *** +2025-11-24T09:49:00.0484094Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.0675134Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.0675907Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.0676283Z +2025-11-24T09:49:00.0676704Z TASK [network_plugin/flannel : Flannel | Create Flannel manifests] ************* +2025-11-24T09:49:00.0855931Z skipping: [kubenode-renewed-asp] => (item={'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}) +2025-11-24T09:49:00.0857114Z skipping: [kubenode-renewed-asp] => (item={'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}) +2025-11-24T09:49:00.0985674Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.1454313Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}) +2025-11-24T09:49:00.1455729Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}) +2025-11-24T09:49:00.1457128Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.1458110Z skipping: [kubenode-super-marlin] => (item={'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}) +2025-11-24T09:49:00.1459256Z skipping: [kubenode-super-marlin] => (item={'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}) +2025-11-24T09:49:00.1460026Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.1460341Z +2025-11-24T09:49:00.1460694Z TASK [network_plugin/weave : Weave | Create manifest] ************************** +2025-11-24T09:49:00.1707884Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.1880380Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.1881101Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.1881495Z +2025-11-24T09:49:00.1881933Z TASK [network_plugin/weave : Weave | Fix nodePort for Weave] ******************* +2025-11-24T09:49:00.3258712Z Still deploying... +2025-11-24T09:49:00.3701947Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.3703056Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.3703629Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.3703948Z +2025-11-24T09:49:00.3704314Z TASK [network_plugin/macvlan : Macvlan | Retrieve Pod Cidr] ******************** +2025-11-24T09:49:00.4343438Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.4344130Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.4344657Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.4344949Z +2025-11-24T09:49:00.4345285Z TASK [network_plugin/macvlan : Macvlan | set node_pod_cidr] ******************** +2025-11-24T09:49:00.4616093Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.4818809Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.4819644Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.4820032Z +2025-11-24T09:49:00.4820554Z TASK [network_plugin/macvlan : Macvlan | Retrieve default gateway network interface] *** +2025-11-24T09:49:00.5073867Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.5304391Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.5305312Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.5305685Z +2025-11-24T09:49:00.5306074Z TASK [network_plugin/macvlan : Macvlan | set node_default_gateway_interface] *** +2025-11-24T09:49:00.5645326Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.5846912Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.5847895Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.5848256Z +2025-11-24T09:49:00.5848729Z TASK [network_plugin/macvlan : Macvlan | Install network gateway interface on debian] *** +2025-11-24T09:49:00.6118007Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.6351755Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.6352954Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.6353324Z +2025-11-24T09:49:00.6656859Z TASK [network_plugin/macvlan : Macvlan | Install macvlan script on centos] ***** +2025-11-24T09:49:00.6658022Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-local) +2025-11-24T09:49:00.6659344Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-macvlan) +2025-11-24T09:49:00.6956918Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-macvlan) +2025-11-24T09:49:00.6958559Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-local) +2025-11-24T09:49:00.6960143Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-local) +2025-11-24T09:49:00.6961121Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.6962077Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-macvlan) +2025-11-24T09:49:00.6964083Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-local) +2025-11-24T09:49:00.6965446Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-macvlan) +2025-11-24T09:49:00.6966851Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-macvlan) +2025-11-24T09:49:00.6968262Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-macvlan) +2025-11-24T09:49:00.6969639Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-local) +2025-11-24T09:49:00.6970459Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.6971304Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-local) +2025-11-24T09:49:00.6972174Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.6972469Z +2025-11-24T09:49:00.6972900Z TASK [network_plugin/macvlan : Macvlan | Install post-up script on centos] ***** +2025-11-24T09:49:00.7449929Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.7450837Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.7451469Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.7451859Z +2025-11-24T09:49:00.7452328Z TASK [network_plugin/macvlan : Macvlan | Install network gateway interface on centos] *** +2025-11-24T09:49:00.7607062Z skipping: [kubenode-renewed-asp] => (item={'src': 'centos-network-macvlan.cfg', 'dst': 'ifcfg-mac0'}) +2025-11-24T09:49:00.7608260Z skipping: [kubenode-renewed-asp] => (item={'src': 'centos-routes-macvlan.cfg', 'dst': 'route-mac0'}) +2025-11-24T09:49:00.7873585Z skipping: [kubenode-renewed-asp] => (item={'src': 'centos-postup-macvlan.cfg', 'dst': 'post-up-mac0'}) +2025-11-24T09:49:00.7874658Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'centos-network-macvlan.cfg', 'dst': 'ifcfg-mac0'}) +2025-11-24T09:49:00.8289032Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.8290501Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'centos-routes-macvlan.cfg', 'dst': 'route-mac0'}) +2025-11-24T09:49:00.8291673Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'centos-postup-macvlan.cfg', 'dst': 'post-up-mac0'}) +2025-11-24T09:49:00.8292457Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.8293424Z skipping: [kubenode-super-marlin] => (item={'src': 'centos-network-macvlan.cfg', 'dst': 'ifcfg-mac0'}) +2025-11-24T09:49:00.8294344Z skipping: [kubenode-super-marlin] => (item={'src': 'centos-routes-macvlan.cfg', 'dst': 'route-mac0'}) +2025-11-24T09:49:00.8295260Z skipping: [kubenode-super-marlin] => (item={'src': 'centos-postup-macvlan.cfg', 'dst': 'post-up-mac0'}) +2025-11-24T09:49:00.8295972Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.8296268Z +2025-11-24T09:49:00.8296691Z TASK [network_plugin/macvlan : Macvlan | Install service nat via gateway on Flatcar Container Linux] *** +2025-11-24T09:49:00.8849572Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.8850293Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.8850813Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.8851109Z +2025-11-24T09:49:00.8851560Z TASK [network_plugin/macvlan : Macvlan | Enable service nat via gateway on Flatcar Container Linux] *** +2025-11-24T09:49:00.9150289Z skipping: [kubenode-renewed-asp] => (item=systemctl daemon-reload) +2025-11-24T09:49:00.9151478Z skipping: [kubenode-renewed-asp] => (item=systemctl enable enable_nat_ouside.service) +2025-11-24T09:49:00.9429320Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:00.9430361Z skipping: [kubenode-teaching-gobbler] => (item=systemctl daemon-reload) +2025-11-24T09:49:00.9431401Z skipping: [kubenode-teaching-gobbler] => (item=systemctl enable enable_nat_ouside.service) +2025-11-24T09:49:00.9432861Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:00.9433677Z skipping: [kubenode-super-marlin] => (item=systemctl daemon-reload) +2025-11-24T09:49:00.9434496Z skipping: [kubenode-super-marlin] => (item=systemctl enable enable_nat_ouside.service) +2025-11-24T09:49:00.9435186Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:00.9435478Z +2025-11-24T09:49:00.9435925Z TASK [network_plugin/macvlan : Macvlan | Install network gateway interface on Flatcar Container Linux] *** +2025-11-24T09:49:00.9600597Z skipping: [kubenode-renewed-asp] => (item={'src': 'coreos-device-macvlan.cfg', 'dst': 'macvlan.netdev'}) +2025-11-24T09:49:00.9775321Z skipping: [kubenode-renewed-asp] => (item={'src': 'coreos-interface-macvlan.cfg', 'dst': 'output.network'}) +2025-11-24T09:49:00.9776640Z skipping: [kubenode-renewed-asp] => (item={'src': 'coreos-network-macvlan.cfg', 'dst': 'macvlan.network'}) +2025-11-24T09:49:01.0079690Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.0080687Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'coreos-device-macvlan.cfg', 'dst': 'macvlan.netdev'}) +2025-11-24T09:49:01.0081811Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'coreos-interface-macvlan.cfg', 'dst': 'output.network'}) +2025-11-24T09:49:01.0083180Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'coreos-network-macvlan.cfg', 'dst': 'macvlan.network'}) +2025-11-24T09:49:01.0083998Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.0084768Z skipping: [kubenode-super-marlin] => (item={'src': 'coreos-device-macvlan.cfg', 'dst': 'macvlan.netdev'}) +2025-11-24T09:49:01.0086136Z skipping: [kubenode-super-marlin] => (item={'src': 'coreos-interface-macvlan.cfg', 'dst': 'output.network'}) +2025-11-24T09:49:01.0087157Z skipping: [kubenode-super-marlin] => (item={'src': 'coreos-network-macvlan.cfg', 'dst': 'macvlan.network'}) +2025-11-24T09:49:01.0087921Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.0088231Z +2025-11-24T09:49:01.0088589Z TASK [network_plugin/macvlan : Macvlan | Install cni definition for Macvlan] *** +2025-11-24T09:49:01.0572045Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.0573138Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.0573776Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.0574465Z +2025-11-24T09:49:01.0574909Z TASK [network_plugin/macvlan : Macvlan | Install loopback definition for Macvlan] *** +2025-11-24T09:49:01.0866217Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.1045449Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.1046370Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.1046770Z +2025-11-24T09:49:01.1047228Z TASK [network_plugin/macvlan : Enable net.ipv4.conf.all.arp_notify in sysctl] *** +2025-11-24T09:49:01.1319262Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.1662030Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.1663070Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.1663446Z +2025-11-24T09:49:01.1663818Z TASK [network_plugin/kube-ovn : Kube-OVN | Label ovn-db node] ****************** +2025-11-24T09:49:01.2026646Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:49:01.2027623Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:49:01.2028545Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:01.2029359Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) +2025-11-24T09:49:01.2030103Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) +2025-11-24T09:49:01.2030861Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:01.2330191Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.2330930Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.2331687Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:49:01.2332523Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:49:01.2333730Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:01.2334859Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.2335207Z +2025-11-24T09:49:01.2335598Z TASK [network_plugin/kube-ovn : Kube-OVN | Create Kube-OVN manifests] ********** +2025-11-24T09:49:01.3188903Z skipping: [kubenode-renewed-asp] => (item={'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}) +2025-11-24T09:49:01.3189947Z skipping: [kubenode-renewed-asp] => (item={'name': 'ovn', 'file': 'cni-ovn.yml'}) +2025-11-24T09:49:01.3190872Z skipping: [kubenode-renewed-asp] => (item={'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}) +2025-11-24T09:49:01.3191860Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}) +2025-11-24T09:49:01.3192851Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.3193594Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'ovn', 'file': 'cni-ovn.yml'}) +2025-11-24T09:49:01.3194549Z skipping: [kubenode-super-marlin] => (item={'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}) +2025-11-24T09:49:01.3195539Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}) +2025-11-24T09:49:01.3196433Z skipping: [kubenode-super-marlin] => (item={'name': 'ovn', 'file': 'cni-ovn.yml'}) +2025-11-24T09:49:01.3197163Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.3197902Z skipping: [kubenode-super-marlin] => (item={'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}) +2025-11-24T09:49:01.3198637Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.3198946Z +2025-11-24T09:49:01.3199356Z TASK [network_plugin/kube-router : Kube-router | Add annotations on kube_control_plane] *** +2025-11-24T09:49:01.3579432Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.3860109Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.3867471Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.3867854Z +2025-11-24T09:49:01.3868237Z TASK [network_plugin/kube-router : Kube-router | Add annotations on kube_node] *** +2025-11-24T09:49:01.4317833Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.4588958Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.4589563Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.4589862Z +2025-11-24T09:49:01.4590240Z TASK [network_plugin/kube-router : Kube-router | Add common annotations on all servers] *** +2025-11-24T09:49:01.5129664Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.5130302Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.5130867Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.5131178Z +2025-11-24T09:49:01.5131549Z TASK [network_plugin/kube-router : Kube-router | Create config directory] ****** +2025-11-24T09:49:01.5713050Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.5713697Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.5714228Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.5714534Z +2025-11-24T09:49:01.5714886Z TASK [network_plugin/kube-router : Kube-router | Create kubeconfig] ************ +2025-11-24T09:49:01.6218303Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.6219100Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.6219637Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.6219937Z +2025-11-24T09:49:01.6220279Z TASK [network_plugin/kube-router : Kube-router | Slurp cni config] ************* +2025-11-24T09:49:01.6803665Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.6804354Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.6804887Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.6805192Z +2025-11-24T09:49:01.6805548Z TASK [network_plugin/kube-router : Kube-router | Set cni_config variable] ****** +2025-11-24T09:49:01.7241871Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.7242609Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.7243414Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.7243718Z +2025-11-24T09:49:01.7244079Z TASK [network_plugin/kube-router : Kube-router | Set host_subnet variable] ***** +2025-11-24T09:49:01.7770933Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.7771652Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.7772524Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.7773092Z +2025-11-24T09:49:01.7773442Z TASK [network_plugin/kube-router : Kube-router | Create cni config] ************ +2025-11-24T09:49:01.8283066Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.8283786Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.8284312Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.8284605Z +2025-11-24T09:49:01.8284959Z TASK [network_plugin/kube-router : Kube-router | Delete old configuration] ***** +2025-11-24T09:49:01.8872206Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.8873489Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:01.8874152Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:01.8874517Z +2025-11-24T09:49:01.8874943Z TASK [network_plugin/kube-router : Kube-router | Create manifest] ************** +2025-11-24T09:49:01.9499816Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:01.9500434Z +2025-11-24T09:49:01.9500869Z TASK [kubernetes-apps/helm : Helm | Gather os specific variables] ************** +2025-11-24T09:49:02.0124820Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:02.0126017Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.0127087Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:02.0128630Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:02.0130165Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.0130776Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.0131148Z +2025-11-24T09:49:02.0131545Z TASK [kubernetes-apps/helm : Helm | Install PyYaml] **************************** +2025-11-24T09:49:02.0456030Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.0677601Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.0678301Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.0678599Z +2025-11-24T09:49:02.0678940Z TASK [kubernetes-apps/helm : Helm | Install PyYaml [flatcar]] ****************** +2025-11-24T09:49:02.1000498Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.1193240Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.1194191Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.1194564Z +2025-11-24T09:49:02.1194979Z TASK [kubernetes-apps/helm : Helm | Download helm] ***************************** +2025-11-24T09:49:02.1488532Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.1743422Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.1744175Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.1744475Z +2025-11-24T09:49:02.1744817Z TASK [kubernetes-apps/helm : Helm | Copy helm binary from download dir] ******** +2025-11-24T09:49:02.2201074Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.2201824Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.2202407Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.2202976Z +2025-11-24T09:49:02.2203348Z TASK [kubernetes-apps/helm : Helm | Get helm completion] *********************** +2025-11-24T09:49:02.2715197Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.2716146Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.2716816Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.2717182Z +2025-11-24T09:49:02.2717601Z TASK [kubernetes-apps/helm : Helm | Install helm completion] ******************* +2025-11-24T09:49:02.3077450Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.3427917Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.3428716Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.3429030Z +2025-11-24T09:49:02.3429498Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** +2025-11-24T09:49:02.3693574Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.3957440Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.3958611Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.3958970Z +2025-11-24T09:49:02.3959346Z TASK [helm-apps : Add Helm repositories] *************************************** +2025-11-24T09:49:02.4579666Z skipping: [kubenode-renewed-asp] => (item={'name': '', 'url': ''}) +2025-11-24T09:49:02.4580610Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.4581353Z skipping: [kubenode-teaching-gobbler] => (item={'name': '', 'url': ''}) +2025-11-24T09:49:02.4582125Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.4583070Z skipping: [kubenode-super-marlin] => (item={'name': '', 'url': ''}) +2025-11-24T09:49:02.4583763Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.4584073Z +2025-11-24T09:49:02.4584411Z TASK [helm-apps : Update Helm repositories] ************************************ +2025-11-24T09:49:02.5164864Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.5165527Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.5166090Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.5166422Z +2025-11-24T09:49:02.5166768Z TASK [helm-apps : Install Helm Applications] *********************************** +2025-11-24T09:49:02.5549245Z skipping: [kubenode-renewed-asp] => (item={'name': '', 'namespace': 'kube-system', 'chart_ref': '', 'chart_version': '', 'wait': True, 'values': {}}) +2025-11-24T09:49:02.6023626Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.6024633Z skipping: [kubenode-teaching-gobbler] => (item={'name': '', 'namespace': 'kube-system', 'chart_ref': '', 'chart_version': '', 'wait': True, 'values': {}}) +2025-11-24T09:49:02.6025571Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.6026901Z skipping: [kubenode-super-marlin] => (item={'name': '', 'namespace': 'kube-system', 'chart_ref': '', 'chart_version': '', 'wait': True, 'values': {}}) +2025-11-24T09:49:02.6027859Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.6028219Z +2025-11-24T09:49:02.6028627Z TASK [network_plugin/custom_cni : Custom CNI | Check Custom CNI Manifests] ***** +2025-11-24T09:49:02.6580529Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.6581319Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.6581879Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.6582505Z +2025-11-24T09:49:02.6583101Z TASK [network_plugin/custom_cni : Custom CNI | Copy Custom manifests] ********** +2025-11-24T09:49:02.6833835Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.6834479Z +2025-11-24T09:49:02.6834895Z TASK [network_plugin/custom_cni : Custom CNI | Start Resources] **************** +2025-11-24T09:49:02.7519833Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.7520494Z +2025-11-24T09:49:02.7520950Z TASK [kubernetes-apps/helm : Helm | Gather os specific variables] ************** +2025-11-24T09:49:02.8285751Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:02.8286922Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.8288052Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:02.8289228Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.8290255Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:02.8291230Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.8291534Z +2025-11-24T09:49:02.8291890Z TASK [kubernetes-apps/helm : Helm | Install PyYaml] **************************** +2025-11-24T09:49:02.8797936Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.8798640Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.8799303Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.8799660Z +2025-11-24T09:49:02.8800066Z TASK [kubernetes-apps/helm : Helm | Install PyYaml [flatcar]] ****************** +2025-11-24T09:49:02.9324467Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.9325168Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.9326149Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.9326501Z +2025-11-24T09:49:02.9326888Z TASK [kubernetes-apps/helm : Helm | Download helm] ***************************** +2025-11-24T09:49:02.9835700Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:02.9836299Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:02.9836829Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:02.9837122Z +2025-11-24T09:49:02.9837466Z TASK [kubernetes-apps/helm : Helm | Copy helm binary from download dir] ******** +2025-11-24T09:49:03.0225267Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:03.0441649Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:03.0442384Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.0443073Z +2025-11-24T09:49:03.0443531Z TASK [kubernetes-apps/helm : Helm | Get helm completion] *********************** +2025-11-24T09:49:03.0705891Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:03.0929324Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:03.0929977Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.0930290Z +2025-11-24T09:49:03.0930670Z TASK [kubernetes-apps/helm : Helm | Install helm completion] ******************* +2025-11-24T09:49:03.1200279Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:03.1702999Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:03.1703709Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.1704039Z +2025-11-24T09:49:03.1704508Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** +2025-11-24T09:49:03.2041079Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:03.2291945Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:03.2295229Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.2296384Z +2025-11-24T09:49:03.2297515Z TASK [helm-apps : Add Helm repositories] *************************************** +2025-11-24T09:49:03.2570057Z skipping: [kubenode-renewed-asp] => (item={'name': 'kubelet-csr-approver', 'url': 'https://postfinance.github.io/kubelet-csr-approver'}) +2025-11-24T09:49:03.2571489Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kubelet-csr-approver', 'url': 'https://postfinance.github.io/kubelet-csr-approver'}) +2025-11-24T09:49:03.2818051Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:03.2818769Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:03.2819834Z skipping: [kubenode-super-marlin] => (item={'name': 'kubelet-csr-approver', 'url': 'https://postfinance.github.io/kubelet-csr-approver'}) +2025-11-24T09:49:03.2820835Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.2821184Z +2025-11-24T09:49:03.2821594Z TASK [helm-apps : Update Helm repositories] ************************************ +2025-11-24T09:49:03.3311261Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:03.3311878Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:03.3312433Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.3313017Z +2025-11-24T09:49:03.3313376Z TASK [helm-apps : Install Helm Applications] *********************************** +2025-11-24T09:49:03.3612355Z skipping: [kubenode-renewed-asp] => (item={'name': 'kubelet-csr-approver', 'namespace': 'kube-system', 'chart_ref': 'kubelet-csr-approver/kubelet-csr-approver', 'chart_version': '1.1.0', 'wait': True, 'values': {}}) +2025-11-24T09:49:03.4989293Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kubelet-csr-approver', 'namespace': 'kube-system', 'chart_ref': 'kubelet-csr-approver/kubelet-csr-approver', 'chart_version': '1.1.0', 'wait': True, 'values': {}}) +2025-11-24T09:49:03.4990591Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:03.4991138Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:03.4992388Z skipping: [kubenode-super-marlin] => (item={'name': 'kubelet-csr-approver', 'namespace': 'kube-system', 'chart_ref': 'kubelet-csr-approver/kubelet-csr-approver', 'chart_version': '1.1.0', 'wait': True, 'values': {}}) +2025-11-24T09:49:03.4993864Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.4994179Z +2025-11-24T09:49:03.4994525Z PLAY [Install Calico Route Reflector] ****************************************** +2025-11-24T09:49:03.4995546Z skipping: no hosts matched +2025-11-24T09:49:03.4995828Z +2025-11-24T09:49:03.4996199Z PLAY [Patch Kubernetes for Windows] ******************************************** +2025-11-24T09:49:03.4996655Z +2025-11-24T09:49:03.4997011Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:49:03.5874306Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:49:03.5875132Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:03.5875871Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:49:03.5876516Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.5876799Z +2025-11-24T09:49:03.5877115Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:49:03.6358070Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.6358483Z +2025-11-24T09:49:03.6358846Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:49:03.6927187Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.6927628Z +2025-11-24T09:49:03.6928080Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:49:03.7479236Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.7479641Z +2025-11-24T09:49:03.7480026Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:49:03.7801750Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.7802136Z +2025-11-24T09:49:03.7803288Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:49:03.8181999Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:03.8182407Z +2025-11-24T09:49:03.8183041Z TASK [win_nodes/kubernetes_patch : Ensure that user manifests directory exists] *** +2025-11-24T09:49:04.0422466Z changed: [kubenode-super-marlin] +2025-11-24T09:49:04.0423100Z +2025-11-24T09:49:04.0423535Z TASK [win_nodes/kubernetes_patch : Check current nodeselector for kube-proxy daemonset] *** +2025-11-24T09:49:04.3332331Z ok: [kubenode-super-marlin] +2025-11-24T09:49:04.3333027Z +2025-11-24T09:49:04.6786744Z TASK [win_nodes/kubernetes_patch : Apply nodeselector patch for kube-proxy daemonset] *** +2025-11-24T09:49:04.6787565Z changed: [kubenode-super-marlin] +2025-11-24T09:49:04.6787894Z +2025-11-24T09:49:04.6788245Z TASK [win_nodes/kubernetes_patch : debug] ************************************** +2025-11-24T09:49:04.7287892Z ok: [kubenode-super-marlin] => { +2025-11-24T09:49:04.7288507Z "msg": [ +2025-11-24T09:49:04.7289094Z "daemonset.apps/kube-proxy patched (no change)" +2025-11-24T09:49:04.7289680Z ] +2025-11-24T09:49:04.7290091Z } +2025-11-24T09:49:04.7290308Z +2025-11-24T09:49:04.7290651Z TASK [win_nodes/kubernetes_patch : debug] ************************************** +2025-11-24T09:49:04.9368846Z ok: [kubenode-super-marlin] => { +2025-11-24T09:49:04.9369457Z "msg": [] +2025-11-24T09:49:04.9369892Z } +2025-11-24T09:49:04.9370129Z +2025-11-24T09:49:04.9370468Z PLAY [Install Kubernetes apps] ************************************************* +2025-11-24T09:49:04.9370921Z +2025-11-24T09:49:04.9371302Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:49:05.0103937Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:49:05.0104931Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:05.0105842Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:49:05.0106604Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.0106963Z +2025-11-24T09:49:05.0107399Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:49:05.0466014Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.0466434Z +2025-11-24T09:49:05.0466832Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:49:05.1184776Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.1185689Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.1186195Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.1186511Z +2025-11-24T09:49:05.1186902Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:49:05.1583862Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.1584263Z +2025-11-24T09:49:05.1584639Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:49:05.2255014Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.2255632Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.2256191Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.2256565Z +2025-11-24T09:49:05.2257034Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:49:05.3048675Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.3049302Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.3049840Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.3050197Z +2025-11-24T09:49:05.3050811Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Check OpenStack credentials] *** +2025-11-24T09:49:05.3608289Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.3608928Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.3609454Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.3609799Z +2025-11-24T09:49:05.3610353Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Get base64 cacert] *** +2025-11-24T09:49:05.4186536Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.4187613Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.4188174Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.4188508Z +2025-11-24T09:49:05.4189089Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Get base64 cloud-config] *** +2025-11-24T09:49:05.4889823Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.4890487Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.4890999Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.4891308Z +2025-11-24T09:49:05.4891814Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Generate Manifests] *** +2025-11-24T09:49:05.5786336Z skipping: [kubenode-super-marlin] => (item={'name': 'external-openstack-cloud-config-secret', 'file': 'external-openstack-cloud-config-secret.yml'}) +2025-11-24T09:49:05.5788172Z skipping: [kubenode-super-marlin] => (item={'name': 'external-openstack-cloud-controller-manager-roles', 'file': 'external-openstack-cloud-controller-manager-roles.yml'}) +2025-11-24T09:49:05.5789804Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-openstack-cloud-config-secret', 'file': 'external-openstack-cloud-config-secret.yml'}) +2025-11-24T09:49:05.5791554Z skipping: [kubenode-super-marlin] => (item={'name': 'external-openstack-cloud-controller-manager-role-bindings', 'file': 'external-openstack-cloud-controller-manager-role-bindings.yml'}) +2025-11-24T09:49:05.5793498Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-openstack-cloud-controller-manager-roles', 'file': 'external-openstack-cloud-controller-manager-roles.yml'}) +2025-11-24T09:49:05.5795124Z skipping: [kubenode-super-marlin] => (item={'name': 'external-openstack-cloud-controller-manager-ds', 'file': 'external-openstack-cloud-controller-manager-ds.yml'}) +2025-11-24T09:49:05.5796164Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.5797318Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-openstack-cloud-controller-manager-role-bindings', 'file': 'external-openstack-cloud-controller-manager-role-bindings.yml'}) +2025-11-24T09:49:05.5798930Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-openstack-cloud-config-secret', 'file': 'external-openstack-cloud-config-secret.yml'}) +2025-11-24T09:49:05.5800412Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-openstack-cloud-controller-manager-ds', 'file': 'external-openstack-cloud-controller-manager-ds.yml'}) +2025-11-24T09:49:05.5801778Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.5802833Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-openstack-cloud-controller-manager-roles', 'file': 'external-openstack-cloud-controller-manager-roles.yml'}) +2025-11-24T09:49:05.5804332Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-openstack-cloud-controller-manager-role-bindings', 'file': 'external-openstack-cloud-controller-manager-role-bindings.yml'}) +2025-11-24T09:49:05.5805785Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-openstack-cloud-controller-manager-ds', 'file': 'external-openstack-cloud-controller-manager-ds.yml'}) +2025-11-24T09:49:05.5806699Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.5806994Z +2025-11-24T09:49:05.5807462Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Apply Manifests] *** +2025-11-24T09:49:05.6274529Z skipping: [kubenode-super-marlin] => (item=external-openstack-cloud-config-secret.yml) +2025-11-24T09:49:05.6864741Z skipping: [kubenode-super-marlin] => (item=external-openstack-cloud-controller-manager-roles.yml) +2025-11-24T09:49:05.6866740Z skipping: [kubenode-super-marlin] => (item=external-openstack-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:05.6868295Z skipping: [kubenode-super-marlin] => (item=external-openstack-cloud-controller-manager-ds.yml) +2025-11-24T09:49:05.6869182Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.6870400Z skipping: [kubenode-renewed-asp] => (item=external-openstack-cloud-config-secret.yml) +2025-11-24T09:49:05.6871483Z skipping: [kubenode-renewed-asp] => (item=external-openstack-cloud-controller-manager-roles.yml) +2025-11-24T09:49:05.6872555Z skipping: [kubenode-teaching-gobbler] => (item=external-openstack-cloud-config-secret.yml) +2025-11-24T09:49:05.6874019Z skipping: [kubenode-renewed-asp] => (item=external-openstack-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:05.6875060Z skipping: [kubenode-teaching-gobbler] => (item=external-openstack-cloud-controller-manager-roles.yml) +2025-11-24T09:49:05.6876028Z skipping: [kubenode-renewed-asp] => (item=external-openstack-cloud-controller-manager-ds.yml) +2025-11-24T09:49:05.6876895Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.6877674Z skipping: [kubenode-teaching-gobbler] => (item=external-openstack-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:05.6878734Z skipping: [kubenode-teaching-gobbler] => (item=external-openstack-cloud-controller-manager-ds.yml) +2025-11-24T09:49:05.6885483Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.6885836Z +2025-11-24T09:49:05.6886350Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Controller | Check vsphere credentials] *** +2025-11-24T09:49:05.7459718Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.7460350Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.7460894Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.7461208Z +2025-11-24T09:49:05.7461752Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Controller | Generate CPI cloud-config] *** +2025-11-24T09:49:05.9272929Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cpi-cloud-config) +2025-11-24T09:49:05.9273746Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:05.9756964Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cpi-cloud-config) +2025-11-24T09:49:05.9757763Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:05.9758507Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cpi-cloud-config) +2025-11-24T09:49:05.9759256Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:05.9759594Z +2025-11-24T09:49:05.9760140Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Controller | Generate Manifests] *** +2025-11-24T09:49:06.0111793Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cpi-cloud-config-secret.yml) +2025-11-24T09:49:06.0113472Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.0114438Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cpi-cloud-config-secret.yml) +2025-11-24T09:49:06.0115422Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.0116421Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.0117407Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.0118392Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.0119324Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cpi-cloud-config-secret.yml) +2025-11-24T09:49:06.0120045Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.0120746Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.0121695Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.0122460Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.0123395Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.0124409Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.0125154Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.0125466Z +2025-11-24T09:49:06.0126376Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Provider Interface | Create a CPI configMap manifest] *** +2025-11-24T09:49:06.0704878Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.0705553Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.0706144Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.0706506Z +2025-11-24T09:49:06.0707207Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Provider Interface | Apply a CPI configMap manifest] *** +2025-11-24T09:49:06.2104868Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.2105898Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.2106495Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.2106887Z +2025-11-24T09:49:06.2107476Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Controller | Apply Manifests] *** +2025-11-24T09:49:06.2108641Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cpi-cloud-config-secret.yml) +2025-11-24T09:49:06.2109714Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.2110854Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.2719012Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.2720100Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cpi-cloud-config-secret.yml) +2025-11-24T09:49:06.2721099Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.2721887Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.2722922Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.2723977Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.2724740Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.2725494Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cpi-cloud-config-secret.yml) +2025-11-24T09:49:06.2726532Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.2727632Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.2729033Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.2729822Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.2730154Z +2025-11-24T09:49:06.2730679Z TASK [kubernetes-apps/external_cloud_controller/hcloud : External Hcloud Cloud Controller | Generate Manifests] *** +2025-11-24T09:49:06.3308571Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.3309221Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.3309817Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.3310175Z +2025-11-24T09:49:06.3310780Z TASK [kubernetes-apps/external_cloud_controller/hcloud : External Hcloud Cloud Controller | Apply Manifests] *** +2025-11-24T09:49:06.3722236Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.3723093Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.3723660Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.3723980Z +2025-11-24T09:49:06.3724573Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External Huawei Cloud Controller | Check Huawei credentials] *** +2025-11-24T09:49:06.4267183Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.4267845Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.4268444Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.4268816Z +2025-11-24T09:49:06.4269432Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External huaweicloud Cloud Controller | Get base64 cacert] *** +2025-11-24T09:49:06.4864310Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.4864932Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.4865462Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.4865802Z +2025-11-24T09:49:06.4866845Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External huaweicloud Cloud Controller | Get base64 cloud-config] *** +2025-11-24T09:49:06.5159300Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.5445023Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.5445720Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.5446126Z +2025-11-24T09:49:06.6208932Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External Huawei Cloud Controller | Generate Manifests] *** +2025-11-24T09:49:06.6210750Z skipping: [kubenode-super-marlin] => (item={'name': 'external-huawei-cloud-config-secret', 'file': 'external-huawei-cloud-config-secret.yml'}) +2025-11-24T09:49:06.6212115Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-huawei-cloud-config-secret', 'file': 'external-huawei-cloud-config-secret.yml'}) +2025-11-24T09:49:06.6213861Z skipping: [kubenode-super-marlin] => (item={'name': 'external-huawei-cloud-controller-manager-roles', 'file': 'external-huawei-cloud-controller-manager-roles.yml'}) +2025-11-24T09:49:06.6215395Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-huawei-cloud-controller-manager-roles', 'file': 'external-huawei-cloud-controller-manager-roles.yml'}) +2025-11-24T09:49:06.6217003Z skipping: [kubenode-super-marlin] => (item={'name': 'external-huawei-cloud-controller-manager-role-bindings', 'file': 'external-huawei-cloud-controller-manager-role-bindings.yml'}) +2025-11-24T09:49:06.6218694Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-huawei-cloud-controller-manager-role-bindings', 'file': 'external-huawei-cloud-controller-manager-role-bindings.yml'}) +2025-11-24T09:49:06.6220292Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-huawei-cloud-controller-manager-ds', 'file': 'external-huawei-cloud-controller-manager-ds.yml'}) +2025-11-24T09:49:06.6221702Z skipping: [kubenode-super-marlin] => (item={'name': 'external-huawei-cloud-controller-manager-ds', 'file': 'external-huawei-cloud-controller-manager-ds.yml'}) +2025-11-24T09:49:06.6222566Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.6223170Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.6223991Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-huawei-cloud-config-secret', 'file': 'external-huawei-cloud-config-secret.yml'}) +2025-11-24T09:49:06.6225279Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-huawei-cloud-controller-manager-roles', 'file': 'external-huawei-cloud-controller-manager-roles.yml'}) +2025-11-24T09:49:06.6228031Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-huawei-cloud-controller-manager-role-bindings', 'file': 'external-huawei-cloud-controller-manager-role-bindings.yml'}) +2025-11-24T09:49:06.6232481Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-huawei-cloud-controller-manager-ds', 'file': 'external-huawei-cloud-controller-manager-ds.yml'}) +2025-11-24T09:49:06.6234052Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.6234371Z +2025-11-24T09:49:06.6234863Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External Huawei Cloud Controller | Apply Manifests] *** +2025-11-24T09:49:06.6560008Z skipping: [kubenode-super-marlin] => (item=external-huawei-cloud-config-secret.yml) +2025-11-24T09:49:06.6561167Z skipping: [kubenode-super-marlin] => (item=external-huawei-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.6562290Z skipping: [kubenode-super-marlin] => (item=external-huawei-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.6563540Z skipping: [kubenode-super-marlin] => (item=external-huawei-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.7837709Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.7838670Z skipping: [kubenode-renewed-asp] => (item=external-huawei-cloud-config-secret.yml) +2025-11-24T09:49:06.7839763Z skipping: [kubenode-renewed-asp] => (item=external-huawei-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.7841306Z skipping: [kubenode-renewed-asp] => (item=external-huawei-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.7842979Z skipping: [kubenode-renewed-asp] => (item=external-huawei-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.7843832Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.7844573Z skipping: [kubenode-teaching-gobbler] => (item=external-huawei-cloud-config-secret.yml) +2025-11-24T09:49:06.7845616Z skipping: [kubenode-teaching-gobbler] => (item=external-huawei-cloud-controller-manager-roles.yml) +2025-11-24T09:49:06.7846764Z skipping: [kubenode-teaching-gobbler] => (item=external-huawei-cloud-controller-manager-role-bindings.yml) +2025-11-24T09:49:06.7848022Z skipping: [kubenode-teaching-gobbler] => (item=external-huawei-cloud-controller-manager-ds.yml) +2025-11-24T09:49:06.7848832Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.7849165Z +2025-11-24T09:49:06.7849538Z TASK [kubernetes-apps/network_plugin/flannel : Flannel | Start Resources] ****** +2025-11-24T09:49:06.8206833Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.8682401Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.8685071Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.8687208Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.8688551Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.8689080Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.8690453Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.8693081Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.8694447Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.8694783Z +2025-11-24T09:49:06.8695267Z TASK [kubernetes-apps/network_plugin/flannel : Flannel | Wait for flannel subnet.env file presence] *** +2025-11-24T09:49:06.9020069Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:06.9437905Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:06.9438590Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:06.9438972Z +2025-11-24T09:49:06.9439415Z TASK [kubernetes-apps/network_plugin/kube-ovn : Kube-OVN | Start Resources] **** +2025-11-24T09:49:06.9666079Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.9668647Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'ovn', 'file': 'cni-ovn.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.9670558Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:06.9783877Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:07.0251181Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:07.0254097Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'ovn', 'file': 'cni-ovn.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:07.0256234Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:07.0257592Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:07.0259158Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:07.0261225Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'ovn', 'file': 'cni-ovn.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:07.0263337Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:07.0264631Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:07.0264962Z +2025-11-24T09:49:07.0265331Z TASK [kubernetes-apps/network_plugin/weave : Weave | Start Resources] ********** +2025-11-24T09:49:07.0773557Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:07.0774189Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:07.0774744Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:07.0775076Z +2025-11-24T09:49:07.0775527Z TASK [kubernetes-apps/network_plugin/weave : Weave | Wait for Weave to become available] *** +2025-11-24T09:49:07.1604104Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:07.1604735Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:07.1605278Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:07.1605613Z +2025-11-24T09:49:07.1606055Z TASK [kubernetes-apps/network_plugin/kube-router : Kube-router | Start Resources] *** +2025-11-24T09:49:07.2055680Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:07.2056070Z +2025-11-24T09:49:07.2056560Z TASK [kubernetes-apps/network_plugin/kube-router : Kube-router | Wait for kube-router pods to be ready] *** +2025-11-24T09:49:07.2955336Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:07.2955813Z +2025-11-24T09:49:07.2956306Z TASK [policy_controller/calico : Create calico-kube-controllers manifests] ***** +2025-11-24T09:49:09.1379037Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-controllers.yml', 'type': 'deployment'}) +2025-11-24T09:49:09.1380380Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-controllers.yml', 'type': 'deployment'}) +2025-11-24T09:49:09.1381616Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:09.1383286Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:09.1384455Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-cr.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:09.1385630Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-cr.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:09.1386785Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-crb.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:09.1387743Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:09.1388620Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-crb.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:09.1389446Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:09.1390255Z changed: [kubenode-super-marlin] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-controllers.yml', 'type': 'deployment'}) +2025-11-24T09:49:09.1391279Z changed: [kubenode-super-marlin] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:09.1392273Z changed: [kubenode-super-marlin] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-cr.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:09.1393440Z changed: [kubenode-super-marlin] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-crb.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:09.1394020Z +2025-11-24T09:49:09.1394349Z TASK [policy_controller/calico : Start of Calico kube controllers] ************* +2025-11-24T09:49:10.3276012Z Still deploying... +2025-11-24T09:49:10.3902254Z skipping: [kubenode-teaching-gobbler] => (item=calico-kube-controllers.yml) +2025-11-24T09:49:10.3903477Z skipping: [kubenode-renewed-asp] => (item=calico-kube-controllers.yml) +2025-11-24T09:49:10.3904268Z skipping: [kubenode-teaching-gobbler] => (item=calico-kube-sa.yml) +2025-11-24T09:49:10.3904982Z skipping: [kubenode-renewed-asp] => (item=calico-kube-sa.yml) +2025-11-24T09:49:10.3905679Z skipping: [kubenode-teaching-gobbler] => (item=calico-kube-cr.yml) +2025-11-24T09:49:10.3906361Z skipping: [kubenode-renewed-asp] => (item=calico-kube-cr.yml) +2025-11-24T09:49:10.3907081Z skipping: [kubenode-teaching-gobbler] => (item=calico-kube-crb.yml) +2025-11-24T09:49:10.3908113Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.3908690Z skipping: [kubenode-renewed-asp] => (item=calico-kube-crb.yml) +2025-11-24T09:49:10.3909301Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.3909877Z ok: [kubenode-super-marlin] => (item=calico-kube-controllers.yml) +2025-11-24T09:49:10.3910524Z ok: [kubenode-super-marlin] => (item=calico-kube-sa.yml) +2025-11-24T09:49:10.3911135Z ok: [kubenode-super-marlin] => (item=calico-kube-cr.yml) +2025-11-24T09:49:10.3911735Z ok: [kubenode-super-marlin] => (item=calico-kube-crb.yml) +2025-11-24T09:49:10.3912123Z +2025-11-24T09:49:10.3912585Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Create addon dir] *** +2025-11-24T09:49:10.4589952Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.4590568Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.4591128Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.4591459Z +2025-11-24T09:49:10.4591969Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Templates list] *** +2025-11-24T09:49:10.5100375Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.5101013Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.5101549Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.5101885Z +2025-11-24T09:49:10.5102568Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Append extra templates to NGINX Ingress Template list for service] *** +2025-11-24T09:49:10.5680198Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.5680789Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.5681710Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.5682032Z +2025-11-24T09:49:10.5682904Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Append extra templates to NGINX Ingress Templates list for webhook] *** +2025-11-24T09:49:10.6026476Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.6251841Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.6252572Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.6253290Z +2025-11-24T09:49:10.6253843Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Create manifests] *** +2025-11-24T09:49:10.6753182Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.6753838Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.6754390Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.6754721Z +2025-11-24T09:49:10.6755221Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Apply manifests] *** +2025-11-24T09:49:10.7492941Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.7493789Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.7494397Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.7494778Z +2025-11-24T09:49:10.7495332Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Remove legacy addon dir and manifests] *** +2025-11-24T09:49:10.7787942Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.8016593Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.8017202Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.8017548Z +2025-11-24T09:49:10.8018044Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Remove legacy namespace] *** +2025-11-24T09:49:10.8338951Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.8578220Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.8578813Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.8579136Z +2025-11-24T09:49:10.8579560Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Create addon dir] *** +2025-11-24T09:49:10.8899801Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.9090893Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.9091526Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.9091881Z +2025-11-24T09:49:10.9092330Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Templates list] *** +2025-11-24T09:49:10.9419960Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:10.9676566Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:10.9677169Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:10.9677520Z +2025-11-24T09:49:10.9677941Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Create manifests] *** +2025-11-24T09:49:10.9998381Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.0219546Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.0220158Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.0220498Z +2025-11-24T09:49:11.0220940Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Apply manifests] *** +2025-11-24T09:49:11.0581366Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.1087995Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.1088641Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.1088994Z +2025-11-24T09:49:11.1089521Z TASK [kubernetes-apps/ingress_controller/alb_ingress_controller : ALB Ingress Controller | Create addon dir] *** +2025-11-24T09:49:11.1485137Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.1724653Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.1725346Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.1725793Z +2025-11-24T09:49:11.1726381Z TASK [kubernetes-apps/ingress_controller/alb_ingress_controller : ALB Ingress Controller | Create manifests] *** +2025-11-24T09:49:11.1918184Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:11.1920020Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:11.2155351Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}) +2025-11-24T09:49:11.2156398Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:11.2157416Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}) +2025-11-24T09:49:11.2158489Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:11.2160026Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:11.2161113Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}) +2025-11-24T09:49:11.2162008Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:11.2594364Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.2595525Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}) +2025-11-24T09:49:11.2596485Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.2597475Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:11.2598949Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:11.2600175Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}) +2025-11-24T09:49:11.2601203Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:11.2602266Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}) +2025-11-24T09:49:11.2603457Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.2603782Z +2025-11-24T09:49:11.2604621Z TASK [kubernetes-apps/ingress_controller/alb_ingress_controller : ALB Ingress Controller | Apply manifests] *** +2025-11-24T09:49:11.2948878Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.2951664Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.2954475Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.2956756Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.2959416Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.2961437Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3781037Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.3790790Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3793959Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3796060Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3798235Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3799611Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.3801109Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3803393Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3805572Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3807394Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3809250Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:11.3810465Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.3810772Z +2025-11-24T09:49:11.3811327Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Ensure base dir is created on all hosts] *** +2025-11-24T09:49:11.4105257Z skipping: [kubenode-super-marlin] => (item=['kubenode-renewed-asp', 'local-storage']) +2025-11-24T09:49:11.4106288Z skipping: [kubenode-super-marlin] => (item=['kubenode-teaching-gobbler', 'local-storage']) +2025-11-24T09:49:11.4107222Z skipping: [kubenode-super-marlin] => (item=['kubenode-super-marlin', 'local-storage']) +2025-11-24T09:49:11.4488254Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.4489153Z skipping: [kubenode-renewed-asp] => (item=['kubenode-renewed-asp', 'local-storage']) +2025-11-24T09:49:11.4490119Z skipping: [kubenode-renewed-asp] => (item=['kubenode-teaching-gobbler', 'local-storage']) +2025-11-24T09:49:11.4491086Z skipping: [kubenode-renewed-asp] => (item=['kubenode-super-marlin', 'local-storage']) +2025-11-24T09:49:11.4491859Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.4492606Z skipping: [kubenode-teaching-gobbler] => (item=['kubenode-renewed-asp', 'local-storage']) +2025-11-24T09:49:11.4494111Z skipping: [kubenode-teaching-gobbler] => (item=['kubenode-teaching-gobbler', 'local-storage']) +2025-11-24T09:49:11.4495126Z skipping: [kubenode-teaching-gobbler] => (item=['kubenode-super-marlin', 'local-storage']) +2025-11-24T09:49:11.4495915Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.4496269Z +2025-11-24T09:49:11.4496861Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Create addon dir] *** +2025-11-24T09:49:11.5117368Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.5117981Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.5118485Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.5118795Z +2025-11-24T09:49:11.5119311Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Templates list] *** +2025-11-24T09:49:11.5325672Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.5594085Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.5594656Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.5595050Z +2025-11-24T09:49:11.5595558Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Create manifests] *** +2025-11-24T09:49:11.6030035Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.6287663Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.6288260Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.6288592Z +2025-11-24T09:49:11.6289143Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Apply manifests] *** +2025-11-24T09:49:11.6627295Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.7106855Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.7107507Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.7107870Z +2025-11-24T09:49:11.7108503Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Remove legacy addon dir and manifests] *** +2025-11-24T09:49:11.7436608Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.7728206Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.7728766Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.7729082Z +2025-11-24T09:49:11.7729569Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Remove legacy namespace] *** +2025-11-24T09:49:11.8107001Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.8337296Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.8337909Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.8338230Z +2025-11-24T09:49:11.8338721Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Remove legacy storageclass] *** +2025-11-24T09:49:11.8659205Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.8925489Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.8926132Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.8926502Z +2025-11-24T09:49:11.8927039Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Create addon dir] *** +2025-11-24T09:49:11.9514560Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:11.9515209Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:11.9515784Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:11.9516139Z +2025-11-24T09:49:11.9516674Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Templates list] *** +2025-11-24T09:49:11.9767430Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.0009404Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.0010524Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.0010935Z +2025-11-24T09:49:12.0011501Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Create manifests] *** +2025-11-24T09:49:12.0343275Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.0707723Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.0708476Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.0708892Z +2025-11-24T09:49:12.0709518Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Apply manifests] *** +2025-11-24T09:49:12.1009742Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.1467712Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.1468310Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.1468630Z +2025-11-24T09:49:12.1469163Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Remove legacy addon dir and manifests] *** +2025-11-24T09:49:12.2000050Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.2000698Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.2001247Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.2001582Z +2025-11-24T09:49:12.2002089Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Remove legacy namespace] *** +2025-11-24T09:49:12.2346223Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.2555663Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.2556429Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.2556829Z +2025-11-24T09:49:12.2557462Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Remove legacy storageclass] *** +2025-11-24T09:49:12.2835573Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.3057849Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.3058506Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.3058906Z +2025-11-24T09:49:12.3059461Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Create addon dir] *** +2025-11-24T09:49:12.3365795Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.3576570Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.3577151Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.3577478Z +2025-11-24T09:49:12.3577919Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Templates list] *** +2025-11-24T09:49:12.3838099Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.4030699Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.4031323Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.4031691Z +2025-11-24T09:49:12.4032188Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Create manifests] *** +2025-11-24T09:49:12.4334031Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.4561102Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.4561781Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.4562128Z +2025-11-24T09:49:12.4562905Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Apply manifests] *** +2025-11-24T09:49:12.5228377Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.5228989Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.5229506Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.5229822Z +2025-11-24T09:49:12.5230338Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Create addon dir] *** +2025-11-24T09:49:12.5521591Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.5808079Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.5808665Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.5809008Z +2025-11-24T09:49:12.5809505Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Create claim root dir] *** +2025-11-24T09:49:12.6154708Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.6451162Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.6451874Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.6452264Z +2025-11-24T09:49:12.6453621Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Render Template] *** +2025-11-24T09:49:12.6710726Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.6914578Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.6915201Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.6915535Z +2025-11-24T09:49:12.6916047Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Create manifests] *** +2025-11-24T09:49:12.7421011Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.7421982Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.7422520Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.7423111Z +2025-11-24T09:49:12.7423674Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Apply manifests] *** +2025-11-24T09:49:12.7779140Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:12.9343166Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:12.9343800Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:12.9344184Z +2025-11-24T09:49:12.9344567Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Wait for kube-apiserver] ***** +2025-11-24T09:49:13.2944681Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:13.2945325Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:13.2945879Z ok: [kubenode-super-marlin] +2025-11-24T09:49:13.2946170Z +2025-11-24T09:49:13.2946575Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down CoreDNS templates] *** +2025-11-24T09:49:13.3412878Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:18.5910086Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:18.5911493Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-config.yml', 'type': 'configmap'}) +2025-11-24T09:49:18.5913020Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-deployment.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.5914147Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:18.5915291Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:18.5916865Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-svc.yml', 'type': 'svc'}) +2025-11-24T09:49:18.5917981Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:18.5919160Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.5920289Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:18.5921420Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-config.yml', 'type': 'configmap'}) +2025-11-24T09:49:18.5923004Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:18.5924410Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-deployment.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.5925825Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-poddisruptionbudget.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) +2025-11-24T09:49:18.5927122Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:18.5928017Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:18.5928713Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:18.5929585Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-svc.yml', 'type': 'svc'}) +2025-11-24T09:49:18.5930535Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.5931576Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:18.5932840Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:18.5934233Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-poddisruptionbudget.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) +2025-11-24T09:49:18.5935420Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:18.5936163Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:18.5936880Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:18.5937850Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:18.5938794Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-config.yml', 'type': 'configmap'}) +2025-11-24T09:49:18.5939684Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-deployment.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.5940547Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:18.5941368Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-svc.yml', 'type': 'svc'}) +2025-11-24T09:49:18.5942240Z changed: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.5943323Z changed: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrole.yml', 'type': 'clusterrole'}) +2025-11-24T09:49:18.5944388Z changed: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) +2025-11-24T09:49:18.5945688Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-poddisruptionbudget.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) +2025-11-24T09:49:18.5946815Z changed: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:18.5947318Z +2025-11-24T09:49:18.5947692Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down Secondary CoreDNS Template] *** +2025-11-24T09:49:18.6936673Z skipping: [kubenode-super-marlin] => (item={'name': 'coredns', 'src': 'coredns-deployment.yml', 'file': 'coredns-deployment-secondary.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.6938286Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'src': 'coredns-deployment.yml', 'file': 'coredns-deployment-secondary.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.6939698Z skipping: [kubenode-super-marlin] => (item={'name': 'coredns', 'src': 'coredns-svc.yml', 'file': 'coredns-svc-secondary.yml', 'type': 'svc'}) +2025-11-24T09:49:18.6940988Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'src': 'coredns-svc.yml', 'file': 'coredns-svc-secondary.yml', 'type': 'svc'}) +2025-11-24T09:49:18.6942379Z skipping: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'src': 'dns-autoscaler.yml', 'file': 'coredns-autoscaler-secondary.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.6944210Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'src': 'dns-autoscaler.yml', 'file': 'coredns-autoscaler-secondary.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.6946129Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'src': 'coredns-deployment.yml', 'file': 'coredns-deployment-secondary.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.6948012Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'src': 'coredns-poddisruptionbudget.yml', 'file': 'coredns-poddisruptionbudget-secondary.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) +2025-11-24T09:49:18.6950028Z skipping: [kubenode-super-marlin] => (item={'name': 'coredns', 'src': 'coredns-poddisruptionbudget.yml', 'file': 'coredns-poddisruptionbudget-secondary.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) +2025-11-24T09:49:18.6951244Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:18.6951718Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:18.6952497Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'src': 'coredns-svc.yml', 'file': 'coredns-svc-secondary.yml', 'type': 'svc'}) +2025-11-24T09:49:18.6953836Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'src': 'dns-autoscaler.yml', 'file': 'coredns-autoscaler-secondary.yml', 'type': 'deployment'}) +2025-11-24T09:49:18.6955334Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'src': 'coredns-poddisruptionbudget.yml', 'file': 'coredns-poddisruptionbudget-secondary.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) +2025-11-24T09:49:18.6956454Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:18.6956757Z +2025-11-24T09:49:18.6957144Z TASK [kubernetes-apps/ansible : Kubernetes Apps | set up necessary nodelocaldns parameters] *** +2025-11-24T09:49:18.8003120Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:18.8003884Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:18.8004570Z ok: [kubenode-super-marlin] +2025-11-24T09:49:18.8004923Z +2025-11-24T09:49:18.8005447Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down nodelocaldns Template] *** +2025-11-24T09:49:20.1936736Z skipping: [kubenode-renewed-asp] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-config.yml', 'type': 'configmap'}) +2025-11-24T09:49:20.1937928Z skipping: [kubenode-renewed-asp] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:20.1939037Z skipping: [kubenode-renewed-asp] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:20.1940211Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:20.1941068Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-config.yml', 'type': 'configmap'}) +2025-11-24T09:49:20.1942205Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:20.1943657Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:20.1944549Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:20.1945382Z changed: [kubenode-super-marlin] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-config.yml', 'type': 'configmap'}) +2025-11-24T09:49:20.1946465Z changed: [kubenode-super-marlin] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-sa.yml', 'type': 'sa'}) +2025-11-24T09:49:20.1947535Z changed: [kubenode-super-marlin] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:20.1948066Z +2025-11-24T09:49:20.1948449Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down nodelocaldns-secondary Template] *** +2025-11-24T09:49:20.2279833Z skipping: [kubenode-super-marlin] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-second-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:20.2608016Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:20.2609134Z skipping: [kubenode-renewed-asp] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-second-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:20.2610108Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:20.2611511Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-second-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:20.2612545Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:20.2613279Z +2025-11-24T09:49:20.2613694Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Start Resources] ************* +2025-11-24T09:49:20.3287008Z Still deploying... +2025-11-24T09:49:24.9768412Z skipping: [kubenode-renewed-asp] => (item=coredns-clusterrole.yml) +2025-11-24T09:49:24.9769828Z skipping: [kubenode-renewed-asp] => (item=coredns-clusterrolebinding.yml) +2025-11-24T09:49:24.9770613Z skipping: [kubenode-renewed-asp] => (item=coredns-config.yml) +2025-11-24T09:49:24.9771370Z skipping: [kubenode-renewed-asp] => (item=coredns-deployment.yml) +2025-11-24T09:49:24.9772085Z skipping: [kubenode-renewed-asp] => (item=coredns-sa.yml) +2025-11-24T09:49:24.9772989Z skipping: [kubenode-renewed-asp] => (item=coredns-svc.yml) +2025-11-24T09:49:24.9773698Z skipping: [kubenode-renewed-asp] => (item=dns-autoscaler.yml) +2025-11-24T09:49:24.9774460Z skipping: [kubenode-teaching-gobbler] => (item=coredns-clusterrole.yml) +2025-11-24T09:49:24.9775262Z skipping: [kubenode-renewed-asp] => (item=dns-autoscaler-clusterrole.yml) +2025-11-24T09:49:24.9776116Z skipping: [kubenode-teaching-gobbler] => (item=coredns-clusterrolebinding.yml) +2025-11-24T09:49:24.9777028Z skipping: [kubenode-renewed-asp] => (item=dns-autoscaler-clusterrolebinding.yml) +2025-11-24T09:49:24.9777834Z skipping: [kubenode-teaching-gobbler] => (item=coredns-config.yml) +2025-11-24T09:49:24.9778550Z skipping: [kubenode-renewed-asp] => (item=coredns-poddisruptionbudget.yml) +2025-11-24T09:49:24.9779269Z skipping: [kubenode-teaching-gobbler] => (item=coredns-deployment.yml) +2025-11-24T09:49:24.9779922Z skipping: [kubenode-teaching-gobbler] => (item=coredns-sa.yml) +2025-11-24T09:49:24.9780554Z skipping: [kubenode-renewed-asp] => (item=dns-autoscaler-sa.yml) +2025-11-24T09:49:24.9781209Z skipping: [kubenode-teaching-gobbler] => (item=coredns-svc.yml) +2025-11-24T09:49:24.9781893Z skipping: [kubenode-renewed-asp] => (item=coredns-deployment-secondary.yml) +2025-11-24T09:49:24.9782596Z skipping: [kubenode-teaching-gobbler] => (item=dns-autoscaler.yml) +2025-11-24T09:49:24.9783396Z skipping: [kubenode-renewed-asp] => (item=coredns-svc-secondary.yml) +2025-11-24T09:49:24.9784286Z skipping: [kubenode-teaching-gobbler] => (item=dns-autoscaler-clusterrole.yml) +2025-11-24T09:49:24.9785071Z skipping: [kubenode-teaching-gobbler] => (item=dns-autoscaler-clusterrolebinding.yml) +2025-11-24T09:49:24.9785842Z skipping: [kubenode-renewed-asp] => (item=coredns-autoscaler-secondary.yml) +2025-11-24T09:49:24.9786588Z skipping: [kubenode-teaching-gobbler] => (item=coredns-poddisruptionbudget.yml) +2025-11-24T09:49:24.9787375Z skipping: [kubenode-renewed-asp] => (item=coredns-poddisruptionbudget-secondary.yml) +2025-11-24T09:49:24.9788123Z skipping: [kubenode-teaching-gobbler] => (item=dns-autoscaler-sa.yml) +2025-11-24T09:49:24.9788802Z skipping: [kubenode-renewed-asp] => (item=nodelocaldns-config.yml) +2025-11-24T09:49:24.9789513Z skipping: [kubenode-teaching-gobbler] => (item=coredns-deployment-secondary.yml) +2025-11-24T09:49:24.9790199Z skipping: [kubenode-renewed-asp] => (item=nodelocaldns-sa.yml) +2025-11-24T09:49:24.9790875Z skipping: [kubenode-teaching-gobbler] => (item=coredns-svc-secondary.yml) +2025-11-24T09:49:24.9791581Z skipping: [kubenode-renewed-asp] => (item=nodelocaldns-daemonset.yml) +2025-11-24T09:49:24.9792291Z skipping: [kubenode-teaching-gobbler] => (item=coredns-autoscaler-secondary.yml) +2025-11-24T09:49:24.9793207Z skipping: [kubenode-teaching-gobbler] => (item=coredns-poddisruptionbudget-secondary.yml) +2025-11-24T09:49:24.9793972Z skipping: [kubenode-renewed-asp] => (item=nodelocaldns-second-daemonset.yml) +2025-11-24T09:49:24.9794680Z skipping: [kubenode-teaching-gobbler] => (item=nodelocaldns-config.yml) +2025-11-24T09:49:24.9795261Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:24.9796009Z skipping: [kubenode-teaching-gobbler] => (item=nodelocaldns-sa.yml) +2025-11-24T09:49:24.9796748Z skipping: [kubenode-teaching-gobbler] => (item=nodelocaldns-daemonset.yml) +2025-11-24T09:49:24.9797486Z skipping: [kubenode-teaching-gobbler] => (item=nodelocaldns-second-daemonset.yml) +2025-11-24T09:49:24.9798115Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:24.9798656Z ok: [kubenode-super-marlin] => (item=coredns-clusterrole.yml) +2025-11-24T09:49:24.9799290Z ok: [kubenode-super-marlin] => (item=coredns-clusterrolebinding.yml) +2025-11-24T09:49:24.9800004Z ok: [kubenode-super-marlin] => (item=coredns-config.yml) +2025-11-24T09:49:24.9800586Z ok: [kubenode-super-marlin] => (item=coredns-deployment.yml) +2025-11-24T09:49:24.9801152Z ok: [kubenode-super-marlin] => (item=coredns-sa.yml) +2025-11-24T09:49:24.9801691Z ok: [kubenode-super-marlin] => (item=coredns-svc.yml) +2025-11-24T09:49:24.9802244Z ok: [kubenode-super-marlin] => (item=dns-autoscaler.yml) +2025-11-24T09:49:24.9802991Z ok: [kubenode-super-marlin] => (item=dns-autoscaler-clusterrole.yml) +2025-11-24T09:49:24.9803677Z ok: [kubenode-super-marlin] => (item=dns-autoscaler-clusterrolebinding.yml) +2025-11-24T09:49:24.9804360Z ok: [kubenode-super-marlin] => (item=coredns-poddisruptionbudget.yml) +2025-11-24T09:49:24.9804974Z ok: [kubenode-super-marlin] => (item=dns-autoscaler-sa.yml) +2025-11-24T09:49:24.9805641Z skipping: [kubenode-super-marlin] => (item=coredns-deployment-secondary.yml) +2025-11-24T09:49:24.9806372Z skipping: [kubenode-super-marlin] => (item=coredns-svc-secondary.yml) +2025-11-24T09:49:24.9813226Z skipping: [kubenode-super-marlin] => (item=coredns-autoscaler-secondary.yml) +2025-11-24T09:49:24.9814044Z skipping: [kubenode-super-marlin] => (item=coredns-poddisruptionbudget-secondary.yml) +2025-11-24T09:49:24.9814779Z ok: [kubenode-super-marlin] => (item=nodelocaldns-config.yml) +2025-11-24T09:49:24.9815394Z ok: [kubenode-super-marlin] => (item=nodelocaldns-sa.yml) +2025-11-24T09:49:24.9816037Z ok: [kubenode-super-marlin] => (item=nodelocaldns-daemonset.yml) +2025-11-24T09:49:24.9816730Z skipping: [kubenode-super-marlin] => (item=nodelocaldns-second-daemonset.yml) +2025-11-24T09:49:24.9817170Z +2025-11-24T09:49:24.9817539Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay down etcd_metrics templates] *** +2025-11-24T09:49:25.0644272Z skipping: [kubenode-super-marlin] => (item={'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}) +2025-11-24T09:49:25.0645958Z skipping: [kubenode-renewed-asp] => (item={'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}) +2025-11-24T09:49:25.0647133Z skipping: [kubenode-renewed-asp] => (item={'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}) +2025-11-24T09:49:25.0648238Z skipping: [kubenode-super-marlin] => (item={'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}) +2025-11-24T09:49:25.0649067Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.0649599Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.0650476Z skipping: [kubenode-teaching-gobbler] => (item={'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}) +2025-11-24T09:49:25.0651655Z skipping: [kubenode-teaching-gobbler] => (item={'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}) +2025-11-24T09:49:25.0652526Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.0653020Z +2025-11-24T09:49:25.0653393Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Start etcd_metrics] ********** +2025-11-24T09:49:25.1473407Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'etcd_metrics_port is defined and etcd_metrics_service_labels is defined', 'item': {'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.1476460Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.1478941Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'etcd_metrics_port is defined and etcd_metrics_service_labels is defined', 'item': {'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.1481443Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.1482915Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.1483432Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.1484841Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.1487130Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.1488533Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.1488846Z +2025-11-24T09:49:25.1489193Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Check AppArmor status] ******* +2025-11-24T09:49:25.1824898Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.2103530Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.2104277Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.2104623Z +2025-11-24T09:49:25.2105012Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Set apparmor_enabled] ******** +2025-11-24T09:49:25.2666531Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.2667314Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.2668247Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.2668610Z +2025-11-24T09:49:25.2669018Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Netchecker Templates list] *** +2025-11-24T09:49:25.3189469Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.3190228Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.3190774Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.3191113Z +2025-11-24T09:49:25.3191509Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down Netchecker Template] *** +2025-11-24T09:49:25.3836351Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.3837162Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.3837702Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.3838035Z +2025-11-24T09:49:25.3838416Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Start Netchecker Resources] *** +2025-11-24T09:49:25.4366475Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.4367219Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.4367783Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.4368114Z +2025-11-24T09:49:25.4368500Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay down dashboard template] *** +2025-11-24T09:49:25.4713582Z skipping: [kubenode-super-marlin] => (item={'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}) +2025-11-24T09:49:25.4714775Z skipping: [kubenode-renewed-asp] => (item={'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}) +2025-11-24T09:49:25.4986658Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.4987421Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.4988686Z skipping: [kubenode-teaching-gobbler] => (item={'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}) +2025-11-24T09:49:25.4989714Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.4990054Z +2025-11-24T09:49:25.4990426Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Start dashboard] ************* +2025-11-24T09:49:25.5258738Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'dashboard_enabled', 'item': {'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.5775430Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.5777318Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.5778913Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.5780497Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:25.5782084Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.5782441Z +2025-11-24T09:49:25.5783157Z TASK [kubernetes-apps/helm : Helm | Gather os specific variables] ************** +2025-11-24T09:49:25.6091795Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:25.6489087Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.6490331Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:25.6491339Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.6492327Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) +2025-11-24T09:49:25.6493575Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.6494243Z +2025-11-24T09:49:25.6494606Z TASK [kubernetes-apps/helm : Helm | Install PyYaml] **************************** +2025-11-24T09:49:25.6848987Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.7073023Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.7073949Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.7074348Z +2025-11-24T09:49:25.7074756Z TASK [kubernetes-apps/helm : Helm | Install PyYaml [flatcar]] ****************** +2025-11-24T09:49:25.7662530Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.7663492Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.7664002Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.7664347Z +2025-11-24T09:49:25.7664684Z TASK [kubernetes-apps/helm : Helm | Download helm] ***************************** +2025-11-24T09:49:25.8016169Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.8311058Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.8311714Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.8312043Z +2025-11-24T09:49:25.8312409Z TASK [kubernetes-apps/helm : Helm | Copy helm binary from download dir] ******** +2025-11-24T09:49:25.8818943Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.8819660Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.8820231Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.8820542Z +2025-11-24T09:49:25.8820878Z TASK [kubernetes-apps/helm : Helm | Get helm completion] *********************** +2025-11-24T09:49:25.9087157Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.9292570Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.9293801Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.9294210Z +2025-11-24T09:49:25.9295059Z TASK [kubernetes-apps/helm : Helm | Install helm completion] ******************* +2025-11-24T09:49:25.9990665Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:25.9991333Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:25.9991847Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:25.9992162Z +2025-11-24T09:49:25.9992493Z TASK [kubernetes-apps/krew : Krew | Download krew] ***************************** +2025-11-24T09:49:26.0282907Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.0513473Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.0514583Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.0514951Z +2025-11-24T09:49:26.0515307Z TASK [kubernetes-apps/krew : Krew | krew env] ********************************** +2025-11-24T09:49:26.0976060Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.0976761Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.0977278Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.0977599Z +2025-11-24T09:49:26.0977953Z TASK [kubernetes-apps/krew : Krew | Copy krew manifest] ************************ +2025-11-24T09:49:26.1451169Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.1452030Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.1452543Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.1453042Z +2025-11-24T09:49:26.1453381Z TASK [kubernetes-apps/krew : Krew | Install krew] ****************************** +2025-11-24T09:49:26.1779463Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.2059694Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.2060394Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.2060786Z +2025-11-24T09:49:26.2061201Z TASK [kubernetes-apps/krew : Krew | Get krew completion] *********************** +2025-11-24T09:49:26.2386119Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.2748958Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.2749636Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.2749988Z +2025-11-24T09:49:26.2750399Z TASK [kubernetes-apps/krew : Krew | Install krew completion] ******************* +2025-11-24T09:49:26.3031907Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.3283729Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.3284310Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.3284642Z +2025-11-24T09:49:26.3284978Z TASK [kubernetes-apps/krew : Krew | Download krew] ***************************** +2025-11-24T09:49:26.3643076Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.3643556Z +2025-11-24T09:49:26.3643971Z TASK [kubernetes-apps/krew : Krew | krew env] ********************************** +2025-11-24T09:49:26.3822410Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.3823074Z +2025-11-24T09:49:26.3823450Z TASK [kubernetes-apps/krew : Krew | Copy krew manifest] ************************ +2025-11-24T09:49:26.4079613Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.4080022Z +2025-11-24T09:49:26.4080373Z TASK [kubernetes-apps/krew : Krew | Install krew] ****************************** +2025-11-24T09:49:26.4354094Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.4354494Z +2025-11-24T09:49:26.4354867Z TASK [kubernetes-apps/krew : Krew | Get krew completion] *********************** +2025-11-24T09:49:26.4620511Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.4620966Z +2025-11-24T09:49:26.4621387Z TASK [kubernetes-apps/krew : Krew | Install krew completion] ******************* +2025-11-24T09:49:26.5035132Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.5035558Z +2025-11-24T09:49:26.5035997Z TASK [kubernetes-apps/registry : Registry | check registry_service_type value] *** +2025-11-24T09:49:26.5311140Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.5522529Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.5523481Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.5523887Z +2025-11-24T09:49:26.5524557Z TASK [kubernetes-apps/registry : Registry | Stop if registry_service_cluster_ip is defined when registry_service_type is not 'ClusterIP'] *** +2025-11-24T09:49:26.6017444Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.6018540Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.6019162Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.6019536Z +2025-11-24T09:49:26.6020243Z TASK [kubernetes-apps/registry : Registry | Stop if registry_service_loadbalancer_ip is defined when registry_service_type is not 'LoadBalancer'] *** +2025-11-24T09:49:26.6375437Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.6615333Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.6616195Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.6616914Z +2025-11-24T09:49:26.6617542Z TASK [kubernetes-apps/registry : Registry | Stop if registry_service_nodeport is defined when registry_service_type is not 'NodePort'] *** +2025-11-24T09:49:26.7183844Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.7184459Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.7184990Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.7185322Z +2025-11-24T09:49:26.7185712Z TASK [kubernetes-apps/registry : Registry | Create addon dir] ****************** +2025-11-24T09:49:26.7764568Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.7765154Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.7765653Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.7765965Z +2025-11-24T09:49:26.7766306Z TASK [kubernetes-apps/registry : Registry | Templates list] ******************** +2025-11-24T09:49:26.8305357Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.8305965Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.8306502Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.8306855Z +2025-11-24T09:49:26.8307429Z TASK [kubernetes-apps/registry : Registry | Append nginx ingress templates to Registry Templates list when ingress enabled] *** +2025-11-24T09:49:26.8550198Z skipping: [kubenode-super-marlin] => (item={'name': 'registry-ing', 'file': 'registry-ing.yml', 'type': 'ing'}) +2025-11-24T09:49:26.8732042Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.9075352Z skipping: [kubenode-renewed-asp] => (item={'name': 'registry-ing', 'file': 'registry-ing.yml', 'type': 'ing'}) +2025-11-24T09:49:26.9076243Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.9077050Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'registry-ing', 'file': 'registry-ing.yml', 'type': 'ing'}) +2025-11-24T09:49:26.9078052Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.9078859Z +2025-11-24T09:49:26.9079269Z TASK [kubernetes-apps/registry : Registry | Create manifests] ****************** +2025-11-24T09:49:26.9361676Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:26.9576289Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:26.9576896Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:26.9577225Z +2025-11-24T09:49:26.9577576Z TASK [kubernetes-apps/registry : Registry | Apply manifests] ******************* +2025-11-24T09:49:26.9889704Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.0169399Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.0170021Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.0170389Z +2025-11-24T09:49:27.0170777Z TASK [kubernetes-apps/registry : Registry | Create PVC manifests] ************** +2025-11-24T09:49:27.0315745Z skipping: [kubenode-super-marlin] => (item={'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}) +2025-11-24T09:49:27.0465349Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.0466187Z skipping: [kubenode-renewed-asp] => (item={'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}) +2025-11-24T09:49:27.0705881Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.0706984Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}) +2025-11-24T09:49:27.0707888Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.0708249Z +2025-11-24T09:49:27.0708647Z TASK [kubernetes-apps/registry : Registry | Apply PVC manifests] *************** +2025-11-24T09:49:27.1073134Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'registry_enabled', 'item': {'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:27.1075399Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'registry_enabled', 'item': {'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:27.1491982Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.1493254Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.1494522Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'registry_enabled', 'item': {'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:27.1495818Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.1496146Z +2025-11-24T09:49:27.1496516Z TASK [kubernetes-apps/metrics_server : Check all masters are node or not] ****** +2025-11-24T09:49:27.1785610Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.2037806Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.2038411Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.2038756Z +2025-11-24T09:49:27.2039138Z TASK [kubernetes-apps/metrics_server : Metrics Server | Delete addon dir] ****** +2025-11-24T09:49:27.2598746Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.2599377Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.2599939Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.2600282Z +2025-11-24T09:49:27.2600651Z TASK [kubernetes-apps/metrics_server : Metrics Server | Create addon dir] ****** +2025-11-24T09:49:27.3160146Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.3160805Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.3161457Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.3161869Z +2025-11-24T09:49:27.3162367Z TASK [kubernetes-apps/metrics_server : Metrics Server | Templates list] ******** +2025-11-24T09:49:27.3711302Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.3711887Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.3712383Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.3712909Z +2025-11-24T09:49:27.3713263Z TASK [kubernetes-apps/metrics_server : Metrics Server | Create manifests] ****** +2025-11-24T09:49:27.4266786Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.4267384Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.4267900Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.4268250Z +2025-11-24T09:49:27.4268609Z TASK [kubernetes-apps/metrics_server : Metrics Server | Apply manifests] ******* +2025-11-24T09:49:27.4556245Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.4990939Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.4991623Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.4992012Z +2025-11-24T09:49:27.4992458Z TASK [kubernetes-apps/csi_driver/csi_crd : CSI CRD | Generate Manifests] ******* +2025-11-24T09:49:27.5311016Z skipping: [kubenode-super-marlin] => (item={'name': 'volumesnapshotclasses', 'file': 'volumesnapshotclasses.yml'}) +2025-11-24T09:49:27.5312244Z skipping: [kubenode-super-marlin] => (item={'name': 'volumesnapshotcontents', 'file': 'volumesnapshotcontents.yml'}) +2025-11-24T09:49:27.5313575Z skipping: [kubenode-super-marlin] => (item={'name': 'volumesnapshots', 'file': 'volumesnapshots.yml'}) +2025-11-24T09:49:27.5705369Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.5706242Z skipping: [kubenode-renewed-asp] => (item={'name': 'volumesnapshotclasses', 'file': 'volumesnapshotclasses.yml'}) +2025-11-24T09:49:27.5707484Z skipping: [kubenode-renewed-asp] => (item={'name': 'volumesnapshotcontents', 'file': 'volumesnapshotcontents.yml'}) +2025-11-24T09:49:27.5708657Z skipping: [kubenode-renewed-asp] => (item={'name': 'volumesnapshots', 'file': 'volumesnapshots.yml'}) +2025-11-24T09:49:27.5709509Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.5710921Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'volumesnapshotclasses', 'file': 'volumesnapshotclasses.yml'}) +2025-11-24T09:49:27.5712241Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'volumesnapshotcontents', 'file': 'volumesnapshotcontents.yml'}) +2025-11-24T09:49:27.5713658Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'volumesnapshots', 'file': 'volumesnapshots.yml'}) +2025-11-24T09:49:27.5714518Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.5714893Z +2025-11-24T09:49:27.5715293Z TASK [kubernetes-apps/csi_driver/csi_crd : CSI CRD | Apply Manifests] ********** +2025-11-24T09:49:27.6057437Z skipping: [kubenode-super-marlin] => (item=volumesnapshotclasses.yml) +2025-11-24T09:49:27.6058409Z skipping: [kubenode-super-marlin] => (item=volumesnapshotcontents.yml) +2025-11-24T09:49:27.6059205Z skipping: [kubenode-super-marlin] => (item=volumesnapshots.yml) +2025-11-24T09:49:27.6658869Z skipping: [kubenode-renewed-asp] => (item=volumesnapshotclasses.yml) +2025-11-24T09:49:27.6659673Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.6660338Z skipping: [kubenode-renewed-asp] => (item=volumesnapshotcontents.yml) +2025-11-24T09:49:27.6661036Z skipping: [kubenode-renewed-asp] => (item=volumesnapshots.yml) +2025-11-24T09:49:27.6661642Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.6662245Z skipping: [kubenode-teaching-gobbler] => (item=volumesnapshotclasses.yml) +2025-11-24T09:49:27.6663402Z skipping: [kubenode-teaching-gobbler] => (item=volumesnapshotcontents.yml) +2025-11-24T09:49:27.6664173Z skipping: [kubenode-teaching-gobbler] => (item=volumesnapshots.yml) +2025-11-24T09:49:27.6664822Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.6665117Z +2025-11-24T09:49:27.6665512Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Check Cinder credentials] *** +2025-11-24T09:49:27.7095818Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.7236985Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.7237590Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.7237945Z +2025-11-24T09:49:27.7238334Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Write cacert file] *** +2025-11-24T09:49:27.7503540Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:49:27.7504402Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:27.7505478Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:49:27.7506102Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.7506396Z +2025-11-24T09:49:27.7506802Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Write Cinder cloud-config] *** +2025-11-24T09:49:27.8048700Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.8049350Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.8049887Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.8050202Z +2025-11-24T09:49:27.8050606Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Get base64 cloud-config] *** +2025-11-24T09:49:27.8335899Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.8542235Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.8543145Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.8543482Z +2025-11-24T09:49:27.8543879Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Generate Manifests] *** +2025-11-24T09:49:27.8692201Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-driver', 'file': 'cinder-csi-driver.yml'}) +2025-11-24T09:49:27.8899719Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-cloud-config-secret', 'file': 'cinder-csi-cloud-config-secret.yml'}) +2025-11-24T09:49:27.8901000Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin-rbac.yml'}) +2025-11-24T09:49:27.8902199Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin.yml'}) +2025-11-24T09:49:27.8903897Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin-rbac.yml'}) +2025-11-24T09:49:27.8904948Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin.yml'}) +2025-11-24T09:49:27.8911917Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-poddisruptionbudget', 'file': 'cinder-csi-poddisruptionbudget.yml'}) +2025-11-24T09:49:27.8913438Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-driver', 'file': 'cinder-csi-driver.yml'}) +2025-11-24T09:49:27.9468459Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:27.9469777Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-cloud-config-secret', 'file': 'cinder-csi-cloud-config-secret.yml'}) +2025-11-24T09:49:27.9471067Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin-rbac.yml'}) +2025-11-24T09:49:27.9472288Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin.yml'}) +2025-11-24T09:49:27.9473667Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-driver', 'file': 'cinder-csi-driver.yml'}) +2025-11-24T09:49:27.9474847Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-cloud-config-secret', 'file': 'cinder-csi-cloud-config-secret.yml'}) +2025-11-24T09:49:27.9476080Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin-rbac.yml'}) +2025-11-24T09:49:27.9477328Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin-rbac.yml'}) +2025-11-24T09:49:27.9478538Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin.yml'}) +2025-11-24T09:49:27.9479705Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-poddisruptionbudget', 'file': 'cinder-csi-poddisruptionbudget.yml'}) +2025-11-24T09:49:27.9480610Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:27.9481503Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin.yml'}) +2025-11-24T09:49:27.9482837Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin-rbac.yml'}) +2025-11-24T09:49:27.9483967Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin.yml'}) +2025-11-24T09:49:27.9485163Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-poddisruptionbudget', 'file': 'cinder-csi-poddisruptionbudget.yml'}) +2025-11-24T09:49:27.9485982Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:27.9486295Z +2025-11-24T09:49:27.9486636Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Apply Manifests] *** +2025-11-24T09:49:27.9860203Z skipping: [kubenode-super-marlin] => (item=cinder-csi-driver.yml) +2025-11-24T09:49:27.9861235Z skipping: [kubenode-super-marlin] => (item=cinder-csi-cloud-config-secret.yml) +2025-11-24T09:49:27.9862271Z skipping: [kubenode-super-marlin] => (item=cinder-csi-controllerplugin-rbac.yml) +2025-11-24T09:49:27.9863607Z skipping: [kubenode-super-marlin] => (item=cinder-csi-controllerplugin.yml) +2025-11-24T09:49:27.9864514Z skipping: [kubenode-super-marlin] => (item=cinder-csi-nodeplugin-rbac.yml) +2025-11-24T09:49:27.9865330Z skipping: [kubenode-super-marlin] => (item=cinder-csi-nodeplugin.yml) +2025-11-24T09:49:28.0529982Z skipping: [kubenode-super-marlin] => (item=cinder-csi-poddisruptionbudget.yml) +2025-11-24T09:49:28.0530788Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.0531390Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-driver.yml) +2025-11-24T09:49:28.0532155Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-cloud-config-secret.yml) +2025-11-24T09:49:28.0533168Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-driver.yml) +2025-11-24T09:49:28.0533995Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-cloud-config-secret.yml) +2025-11-24T09:49:28.0535229Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-controllerplugin-rbac.yml) +2025-11-24T09:49:28.0536074Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-controllerplugin-rbac.yml) +2025-11-24T09:49:28.0536902Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-controllerplugin.yml) +2025-11-24T09:49:28.0537688Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-controllerplugin.yml) +2025-11-24T09:49:28.0538510Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-nodeplugin-rbac.yml) +2025-11-24T09:49:28.0539395Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-nodeplugin.yml) +2025-11-24T09:49:28.0540159Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-nodeplugin-rbac.yml) +2025-11-24T09:49:28.0540953Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-poddisruptionbudget.yml) +2025-11-24T09:49:28.0541671Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.0542282Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-nodeplugin.yml) +2025-11-24T09:49:28.0543190Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-poddisruptionbudget.yml) +2025-11-24T09:49:28.0543844Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.0544130Z +2025-11-24T09:49:28.0544480Z TASK [kubernetes-apps/csi_driver/aws_ebs : AWS CSI Driver | Generate Manifests] *** +2025-11-24T09:49:28.0671340Z skipping: [kubenode-super-marlin] => (item={'name': 'aws-ebs-csi-driver', 'file': 'aws-ebs-csi-driver.yml'}) +2025-11-24T09:49:28.0897051Z skipping: [kubenode-super-marlin] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice-rbac.yml'}) +2025-11-24T09:49:28.0898414Z skipping: [kubenode-super-marlin] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice.yml'}) +2025-11-24T09:49:28.0899649Z skipping: [kubenode-super-marlin] => (item={'name': 'aws-ebs-csi-nodeservice', 'file': 'aws-ebs-csi-nodeservice.yml'}) +2025-11-24T09:49:28.1236836Z skipping: [kubenode-renewed-asp] => (item={'name': 'aws-ebs-csi-driver', 'file': 'aws-ebs-csi-driver.yml'}) +2025-11-24T09:49:28.1237735Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.1238580Z skipping: [kubenode-renewed-asp] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice-rbac.yml'}) +2025-11-24T09:49:28.1239777Z skipping: [kubenode-renewed-asp] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice.yml'}) +2025-11-24T09:49:28.1241174Z skipping: [kubenode-renewed-asp] => (item={'name': 'aws-ebs-csi-nodeservice', 'file': 'aws-ebs-csi-nodeservice.yml'}) +2025-11-24T09:49:28.1241980Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.1242967Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'aws-ebs-csi-driver', 'file': 'aws-ebs-csi-driver.yml'}) +2025-11-24T09:49:28.1244066Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice-rbac.yml'}) +2025-11-24T09:49:28.1245258Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice.yml'}) +2025-11-24T09:49:28.1246367Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'aws-ebs-csi-nodeservice', 'file': 'aws-ebs-csi-nodeservice.yml'}) +2025-11-24T09:49:28.1247155Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.1247452Z +2025-11-24T09:49:28.1247782Z TASK [kubernetes-apps/csi_driver/aws_ebs : AWS CSI Driver | Apply Manifests] *** +2025-11-24T09:49:28.1411928Z skipping: [kubenode-super-marlin] => (item=aws-ebs-csi-driver.yml) +2025-11-24T09:49:28.1413330Z skipping: [kubenode-super-marlin] => (item=aws-ebs-csi-controllerservice-rbac.yml) +2025-11-24T09:49:28.1603351Z skipping: [kubenode-super-marlin] => (item=aws-ebs-csi-controllerservice.yml) +2025-11-24T09:49:28.1604415Z skipping: [kubenode-super-marlin] => (item=aws-ebs-csi-nodeservice.yml) +2025-11-24T09:49:28.1605322Z skipping: [kubenode-renewed-asp] => (item=aws-ebs-csi-driver.yml) +2025-11-24T09:49:28.1606686Z skipping: [kubenode-renewed-asp] => (item=aws-ebs-csi-controllerservice-rbac.yml) +2025-11-24T09:49:28.1607657Z skipping: [kubenode-renewed-asp] => (item=aws-ebs-csi-controllerservice.yml) +2025-11-24T09:49:28.2131381Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.2132135Z skipping: [kubenode-renewed-asp] => (item=aws-ebs-csi-nodeservice.yml) +2025-11-24T09:49:28.2133123Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.2133814Z skipping: [kubenode-teaching-gobbler] => (item=aws-ebs-csi-driver.yml) +2025-11-24T09:49:28.2134725Z skipping: [kubenode-teaching-gobbler] => (item=aws-ebs-csi-controllerservice-rbac.yml) +2025-11-24T09:49:28.2136000Z skipping: [kubenode-teaching-gobbler] => (item=aws-ebs-csi-controllerservice.yml) +2025-11-24T09:49:28.2136885Z skipping: [kubenode-teaching-gobbler] => (item=aws-ebs-csi-nodeservice.yml) +2025-11-24T09:49:28.2137588Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.2137918Z +2025-11-24T09:49:28.2138359Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Check Azure credentials] *** +2025-11-24T09:49:28.2398920Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.2597911Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.2598520Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.2598845Z +2025-11-24T09:49:28.2599288Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Write Azure CSI cloud-config] *** +2025-11-24T09:49:28.2867902Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.3077018Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.3077611Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.3077962Z +2025-11-24T09:49:28.3078382Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Get base64 cloud-config] *** +2025-11-24T09:49:28.3348075Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.3612281Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.3613329Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.3613660Z +2025-11-24T09:49:28.3614082Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Generate Manifests] *** +2025-11-24T09:49:28.3924845Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-driver', 'file': 'azure-csi-azuredisk-driver.yml'}) +2025-11-24T09:49:28.3926134Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-cloud-config-secret', 'file': 'azure-csi-cloud-config-secret.yml'}) +2025-11-24T09:49:28.4366327Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller-rbac.yml'}) +2025-11-24T09:49:28.4367589Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-driver', 'file': 'azure-csi-azuredisk-driver.yml'}) +2025-11-24T09:49:28.4368762Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller.yml'}) +2025-11-24T09:49:28.4369915Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-cloud-config-secret', 'file': 'azure-csi-cloud-config-secret.yml'}) +2025-11-24T09:49:28.4371071Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-node-rbac', 'file': 'azure-csi-azuredisk-node-rbac.yml'}) +2025-11-24T09:49:28.4372227Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller-rbac.yml'}) +2025-11-24T09:49:28.4373665Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller.yml'}) +2025-11-24T09:49:28.4374706Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-node', 'file': 'azure-csi-azuredisk-node.yml'}) +2025-11-24T09:49:28.4375731Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-node-rbac', 'file': 'azure-csi-azuredisk-node-rbac.yml'}) +2025-11-24T09:49:28.4376498Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.4377234Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-node', 'file': 'azure-csi-azuredisk-node.yml'}) +2025-11-24T09:49:28.4378370Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.4379166Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-driver', 'file': 'azure-csi-azuredisk-driver.yml'}) +2025-11-24T09:49:28.4380274Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-cloud-config-secret', 'file': 'azure-csi-cloud-config-secret.yml'}) +2025-11-24T09:49:28.4381410Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller-rbac.yml'}) +2025-11-24T09:49:28.4382543Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller.yml'}) +2025-11-24T09:49:28.4383883Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-node-rbac', 'file': 'azure-csi-azuredisk-node-rbac.yml'}) +2025-11-24T09:49:28.4384935Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-node', 'file': 'azure-csi-azuredisk-node.yml'}) +2025-11-24T09:49:28.4385694Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.4385995Z +2025-11-24T09:49:28.4386347Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Apply Manifests] *** +2025-11-24T09:49:28.4968584Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-driver.yml) +2025-11-24T09:49:28.4969663Z skipping: [kubenode-super-marlin] => (item=azure-csi-cloud-config-secret.yml) +2025-11-24T09:49:28.4970692Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-controller-rbac.yml) +2025-11-24T09:49:28.4971664Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-controller.yml) +2025-11-24T09:49:28.4972586Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-node-rbac.yml) +2025-11-24T09:49:28.4973811Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-node.yml) +2025-11-24T09:49:28.4974568Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-driver.yml) +2025-11-24T09:49:28.4975342Z skipping: [kubenode-renewed-asp] => (item=azure-csi-cloud-config-secret.yml) +2025-11-24T09:49:28.5515498Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.5516367Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-controller-rbac.yml) +2025-11-24T09:49:28.5517268Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-controller.yml) +2025-11-24T09:49:28.5518135Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-node-rbac.yml) +2025-11-24T09:49:28.5519336Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-node.yml) +2025-11-24T09:49:28.5520024Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.5520700Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-driver.yml) +2025-11-24T09:49:28.5521565Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-cloud-config-secret.yml) +2025-11-24T09:49:28.5522483Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-controller-rbac.yml) +2025-11-24T09:49:28.5523661Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-controller.yml) +2025-11-24T09:49:28.5524552Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-node-rbac.yml) +2025-11-24T09:49:28.5525393Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-node.yml) +2025-11-24T09:49:28.5526006Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.5526302Z +2025-11-24T09:49:28.5526690Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Check if cloud-sa.json exists] *** +2025-11-24T09:49:28.6100831Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.6101487Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.6102144Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.6102458Z +2025-11-24T09:49:28.6103144Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Copy GCP credentials file] *** +2025-11-24T09:49:28.6576878Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.6577592Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.6578143Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.6578477Z +2025-11-24T09:49:28.6579321Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Get base64 cloud-sa.json] *** +2025-11-24T09:49:28.7152993Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.7153719Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.7154268Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.7154622Z +2025-11-24T09:49:28.7155050Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Generate Manifests] *** +2025-11-24T09:49:28.7440292Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-cred-secret', 'file': 'gcp-pd-csi-cred-secret.yml'}) +2025-11-24T09:49:28.7441758Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-setup', 'file': 'gcp-pd-csi-setup.yml'}) +2025-11-24T09:49:28.7443027Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-controller', 'file': 'gcp-pd-csi-controller.yml'}) +2025-11-24T09:49:28.7855827Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-node', 'file': 'gcp-pd-csi-node.yml'}) +2025-11-24T09:49:28.7856925Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-cred-secret', 'file': 'gcp-pd-csi-cred-secret.yml'}) +2025-11-24T09:49:28.7857955Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-sc-regional', 'file': 'gcp-pd-csi-sc-regional.yml'}) +2025-11-24T09:49:28.7858949Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-setup', 'file': 'gcp-pd-csi-setup.yml'}) +2025-11-24T09:49:28.7859989Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-sc-zonal', 'file': 'gcp-pd-csi-sc-zonal.yml'}) +2025-11-24T09:49:28.7860801Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:28.7861613Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-controller', 'file': 'gcp-pd-csi-controller.yml'}) +2025-11-24T09:49:28.7862972Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-cred-secret', 'file': 'gcp-pd-csi-cred-secret.yml'}) +2025-11-24T09:49:28.7864081Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-setup', 'file': 'gcp-pd-csi-setup.yml'}) +2025-11-24T09:49:28.7865081Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-node', 'file': 'gcp-pd-csi-node.yml'}) +2025-11-24T09:49:28.7866118Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-controller', 'file': 'gcp-pd-csi-controller.yml'}) +2025-11-24T09:49:28.7867184Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-node', 'file': 'gcp-pd-csi-node.yml'}) +2025-11-24T09:49:28.7868572Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-sc-regional', 'file': 'gcp-pd-csi-sc-regional.yml'}) +2025-11-24T09:49:28.7869680Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-sc-regional', 'file': 'gcp-pd-csi-sc-regional.yml'}) +2025-11-24T09:49:28.7870597Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-sc-zonal', 'file': 'gcp-pd-csi-sc-zonal.yml'}) +2025-11-24T09:49:28.7871330Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:28.7872033Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-sc-zonal', 'file': 'gcp-pd-csi-sc-zonal.yml'}) +2025-11-24T09:49:28.7872831Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:28.7873110Z +2025-11-24T09:49:28.7873448Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Apply Manifests] *** +2025-11-24T09:49:28.8182071Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-cred-secret.yml) +2025-11-24T09:49:28.8183251Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-setup.yml) +2025-11-24T09:49:28.8183978Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-controller.yml) +2025-11-24T09:49:28.8184668Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-node.yml) +2025-11-24T09:49:28.8185347Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-sc-regional.yml) +2025-11-24T09:49:29.0092566Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-cred-secret.yml) +2025-11-24T09:49:29.0093790Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-sc-zonal.yml) +2025-11-24T09:49:29.0095065Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-setup.yml) +2025-11-24T09:49:29.0095798Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.0096526Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-controller.yml) +2025-11-24T09:49:29.0097371Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-node.yml) +2025-11-24T09:49:29.0098207Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-sc-regional.yml) +2025-11-24T09:49:29.0099093Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-cred-secret.yml) +2025-11-24T09:49:29.0099961Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-sc-zonal.yml) +2025-11-24T09:49:29.0100797Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.0101497Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-setup.yml) +2025-11-24T09:49:29.0102367Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-controller.yml) +2025-11-24T09:49:29.0103363Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-node.yml) +2025-11-24T09:49:29.0104075Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-sc-regional.yml) +2025-11-24T09:49:29.0104787Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-sc-zonal.yml) +2025-11-24T09:49:29.0105390Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.0105685Z +2025-11-24T09:49:29.0106087Z TASK [kubernetes-apps/csi_driver/upcloud : UpCloud CSI Driver | Check if UPCLOUD_USERNAME exists] *** +2025-11-24T09:49:29.0662204Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.0663364Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.0664036Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.0664445Z +2025-11-24T09:49:29.0664960Z TASK [kubernetes-apps/csi_driver/upcloud : UpCloud CSI Driver | Check if UPCLOUD_PASSWORD exists] *** +2025-11-24T09:49:29.1207929Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.1208626Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.1209137Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.1209455Z +2025-11-24T09:49:29.1209872Z TASK [kubernetes-apps/csi_driver/upcloud : UpCloud CSI Driver | Generate Manifests] *** +2025-11-24T09:49:29.1667212Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-cred-secret', 'file': 'upcloud-csi-cred-secret.yml'}) +2025-11-24T09:49:29.1668606Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-setup', 'file': 'upcloud-csi-setup.yml'}) +2025-11-24T09:49:29.1669888Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-controller', 'file': 'upcloud-csi-controller.yml'}) +2025-11-24T09:49:29.1671577Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-node', 'file': 'upcloud-csi-node.yml'}) +2025-11-24T09:49:29.1673149Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-cred-secret', 'file': 'upcloud-csi-cred-secret.yml'}) +2025-11-24T09:49:29.1674383Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-setup', 'file': 'upcloud-csi-setup.yml'}) +2025-11-24T09:49:29.1675556Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-driver', 'file': 'upcloud-csi-driver.yml'}) +2025-11-24T09:49:29.1676663Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-controller', 'file': 'upcloud-csi-controller.yml'}) +2025-11-24T09:49:29.1677623Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-node', 'file': 'upcloud-csi-node.yml'}) +2025-11-24T09:49:29.1678549Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-driver', 'file': 'upcloud-csi-driver.yml'}) +2025-11-24T09:49:29.2149136Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.2150014Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.2151112Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-cred-secret', 'file': 'upcloud-csi-cred-secret.yml'}) +2025-11-24T09:49:29.2152528Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-setup', 'file': 'upcloud-csi-setup.yml'}) +2025-11-24T09:49:29.2154195Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-controller', 'file': 'upcloud-csi-controller.yml'}) +2025-11-24T09:49:29.2155953Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-node', 'file': 'upcloud-csi-node.yml'}) +2025-11-24T09:49:29.2157229Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-driver', 'file': 'upcloud-csi-driver.yml'}) +2025-11-24T09:49:29.2158038Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.2158365Z +2025-11-24T09:49:29.2158766Z TASK [kubernetes-apps/csi_driver/upcloud : UpCloud CSI Driver | Apply Manifests] *** +2025-11-24T09:49:29.2496096Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-cred-secret.yml) +2025-11-24T09:49:29.2497239Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-setup.yml) +2025-11-24T09:49:29.2497975Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-controller.yml) +2025-11-24T09:49:29.2498713Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-node.yml) +2025-11-24T09:49:29.2499440Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-driver.yml) +2025-11-24T09:49:29.2668844Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.2669713Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-cred-secret.yml) +2025-11-24T09:49:29.3391128Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-setup.yml) +2025-11-24T09:49:29.3392083Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-controller.yml) +2025-11-24T09:49:29.3393049Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-node.yml) +2025-11-24T09:49:29.3393771Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-driver.yml) +2025-11-24T09:49:29.3394382Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.3395009Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-cred-secret.yml) +2025-11-24T09:49:29.3395767Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-setup.yml) +2025-11-24T09:49:29.3396522Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-controller.yml) +2025-11-24T09:49:29.3397272Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-node.yml) +2025-11-24T09:49:29.3398048Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-driver.yml) +2025-11-24T09:49:29.3398676Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.3398982Z +2025-11-24T09:49:29.3399390Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Check vsphare credentials] *** +2025-11-24T09:49:29.3732315Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.3946057Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.3947034Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.3947357Z +2025-11-24T09:49:29.3947818Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Generate CSI cloud-config] *** +2025-11-24T09:49:29.4105598Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-cloud-config) +2025-11-24T09:49:29.4258557Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.4259425Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-cloud-config) +2025-11-24T09:49:29.4490809Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.4491852Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-cloud-config) +2025-11-24T09:49:29.4492959Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.4493353Z +2025-11-24T09:49:29.4493826Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Generate Manifests] *** +2025-11-24T09:49:29.4699338Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-namespace.yml) +2025-11-24T09:49:29.4700498Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-driver.yml) +2025-11-24T09:49:29.4901465Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-rbac.yml) +2025-11-24T09:49:29.4902534Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-node-rbac.yml) +2025-11-24T09:49:29.4903804Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-config.yml) +2025-11-24T09:49:29.4904745Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-deployment.yml) +2025-11-24T09:49:29.5515976Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-namespace.yml) +2025-11-24T09:49:29.5516926Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-driver.yml) +2025-11-24T09:49:29.5518093Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-service.yml) +2025-11-24T09:49:29.5518894Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-rbac.yml) +2025-11-24T09:49:29.5519628Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-node.yml) +2025-11-24T09:49:29.5520351Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-node-rbac.yml) +2025-11-24T09:49:29.5527138Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.5527926Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-config.yml) +2025-11-24T09:49:29.5528869Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-deployment.yml) +2025-11-24T09:49:29.5529671Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-service.yml) +2025-11-24T09:49:29.5530386Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-node.yml) +2025-11-24T09:49:29.5530968Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.5531568Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-namespace.yml) +2025-11-24T09:49:29.5532281Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-driver.yml) +2025-11-24T09:49:29.5533161Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-rbac.yml) +2025-11-24T09:49:29.5533910Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-node-rbac.yml) +2025-11-24T09:49:29.5534659Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-config.yml) +2025-11-24T09:49:29.5535458Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-deployment.yml) +2025-11-24T09:49:29.5536257Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-service.yml) +2025-11-24T09:49:29.5537005Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-node.yml) +2025-11-24T09:49:29.5537600Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.5537898Z +2025-11-24T09:49:29.5538253Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Apply Manifests] *** +2025-11-24T09:49:29.5726210Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-namespace.yml) +2025-11-24T09:49:29.5727323Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-driver.yml) +2025-11-24T09:49:29.5728230Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-rbac.yml) +2025-11-24T09:49:29.5729134Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-node-rbac.yml) +2025-11-24T09:49:29.5939440Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-config.yml) +2025-11-24T09:49:29.5940451Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-deployment.yml) +2025-11-24T09:49:29.5941303Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-service.yml) +2025-11-24T09:49:29.5942060Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-node.yml) +2025-11-24T09:49:29.6417233Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-namespace.yml) +2025-11-24T09:49:29.6418017Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.6418646Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-driver.yml) +2025-11-24T09:49:29.6419421Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-rbac.yml) +2025-11-24T09:49:29.6420176Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-node-rbac.yml) +2025-11-24T09:49:29.6420924Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-config.yml) +2025-11-24T09:49:29.6421699Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-namespace.yml) +2025-11-24T09:49:29.6422438Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-driver.yml) +2025-11-24T09:49:29.6423472Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-deployment.yml) +2025-11-24T09:49:29.6424278Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-rbac.yml) +2025-11-24T09:49:29.6425067Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-service.yml) +2025-11-24T09:49:29.6425837Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-node-rbac.yml) +2025-11-24T09:49:29.6426926Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-config.yml) +2025-11-24T09:49:29.6427651Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-node.yml) +2025-11-24T09:49:29.6428413Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-deployment.yml) +2025-11-24T09:49:29.6429067Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.6429681Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-service.yml) +2025-11-24T09:49:29.6430425Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-node.yml) +2025-11-24T09:49:29.6431123Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.6431416Z +2025-11-24T09:49:29.6431814Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Generate a CSI secret manifest] *** +2025-11-24T09:49:29.6805507Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.7137770Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.7138522Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.7138848Z +2025-11-24T09:49:29.7139287Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Apply a CSI secret manifest] *** +2025-11-24T09:49:29.7491896Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.8014563Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.8015260Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.8015588Z +2025-11-24T09:49:29.8016192Z TASK [kubernetes-apps/persistent_volumes/openstack : Kubernetes Persistent Volumes | Lay down OpenStack Cinder Storage Class template] *** +2025-11-24T09:49:29.8291525Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.8507688Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.8508358Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.8508679Z +2025-11-24T09:49:29.8509237Z TASK [kubernetes-apps/persistent_volumes/openstack : Kubernetes Persistent Volumes | Add OpenStack Cinder Storage Class] *** +2025-11-24T09:49:29.8847018Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.9284349Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.9285107Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.9285425Z +2025-11-24T09:49:29.9285962Z TASK [kubernetes-apps/persistent_volumes/cinder-csi : Kubernetes Persistent Volumes | Copy Cinder CSI Storage Class template] *** +2025-11-24T09:49:29.9669307Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:29.9873632Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:29.9874566Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:29.9874895Z +2025-11-24T09:49:29.9875431Z TASK [kubernetes-apps/persistent_volumes/cinder-csi : Kubernetes Persistent Volumes | Add Cinder CSI Storage Class] *** +2025-11-24T09:49:30.0192406Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.0663168Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.0663896Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.0664248Z +2025-11-24T09:49:30.0664860Z TASK [kubernetes-apps/persistent_volumes/aws-ebs-csi : Kubernetes Persistent Volumes | Copy AWS EBS CSI Storage Class template] *** +2025-11-24T09:49:30.1131118Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.1131945Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.1132450Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.1132978Z +2025-11-24T09:49:30.1133518Z TASK [kubernetes-apps/persistent_volumes/aws-ebs-csi : Kubernetes Persistent Volumes | Add AWS EBS CSI Storage Class] *** +2025-11-24T09:49:30.1483128Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.1897707Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.1898593Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.1898990Z +2025-11-24T09:49:30.1899682Z TASK [kubernetes-apps/persistent_volumes/azuredisk-csi : Kubernetes Persistent Volumes | Copy Azure CSI Storage Class template] *** +2025-11-24T09:49:30.2470777Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.2471626Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.2472226Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.2472606Z +2025-11-24T09:49:30.3282501Z TASK [kubernetes-apps/persistent_volumes/azuredisk-csi : Kubernetes Persistent Volumes | Add Azure CSI Storage Class] *** +2025-11-24T09:49:30.3283902Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.3284524Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.3285110Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.3285485Z +2025-11-24T09:49:30.3286127Z TASK [kubernetes-apps/persistent_volumes/gcp-pd-csi : Kubernetes Persistent Volumes | Copy GCP PD CSI Storage Class template] *** +2025-11-24T09:49:30.3299021Z Still deploying... +2025-11-24T09:49:30.3801481Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.3802967Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.3803594Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.3803964Z +2025-11-24T09:49:30.3804583Z TASK [kubernetes-apps/persistent_volumes/gcp-pd-csi : Kubernetes Persistent Volumes | Add GCP PD CSI Storage Class] *** +2025-11-24T09:49:30.4511837Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.4512570Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.4513375Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.4513700Z +2025-11-24T09:49:30.4514272Z TASK [kubernetes-apps/persistent_volumes/upcloud-csi : Kubernetes Persistent Volumes | Copy UpCloud CSI Storage Class template] *** +2025-11-24T09:49:30.4871368Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.5133290Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.5134371Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.5134798Z +2025-11-24T09:49:30.5135478Z TASK [kubernetes-apps/persistent_volumes/upcloud-csi : Kubernetes Persistent Volumes | Add UpCloud CSI Storage Class] *** +2025-11-24T09:49:30.5429538Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.6045154Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.6045913Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.6046258Z +2025-11-24T09:49:30.6046723Z TASK [kubernetes-apps/snapshots/snapshot-controller : Check if snapshot namespace exists] *** +2025-11-24T09:49:30.6416564Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.6689553Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.6690474Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.6690865Z +2025-11-24T09:49:30.6691399Z TASK [kubernetes-apps/snapshots/snapshot-controller : Snapshot Controller | Generate Manifests] *** +2025-11-24T09:49:30.7281367Z skipping: [kubenode-super-marlin] => (item={'name': 'snapshot-ns', 'file': 'snapshot-ns.yml', 'apply': 'not snapshot_namespace_exists'}) +2025-11-24T09:49:30.7283302Z skipping: [kubenode-renewed-asp] => (item={'name': 'snapshot-ns', 'file': 'snapshot-ns.yml', 'apply': 'not snapshot_namespace_exists'}) +2025-11-24T09:49:30.7284515Z skipping: [kubenode-renewed-asp] => (item={'name': 'rbac-snapshot-controller', 'file': 'rbac-snapshot-controller.yml'}) +2025-11-24T09:49:30.7285599Z skipping: [kubenode-renewed-asp] => (item={'name': 'snapshot-controller', 'file': 'snapshot-controller.yml'}) +2025-11-24T09:49:30.7286720Z skipping: [kubenode-super-marlin] => (item={'name': 'rbac-snapshot-controller', 'file': 'rbac-snapshot-controller.yml'}) +2025-11-24T09:49:30.7287565Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.7288349Z skipping: [kubenode-super-marlin] => (item={'name': 'snapshot-controller', 'file': 'snapshot-controller.yml'}) +2025-11-24T09:49:30.7289488Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'snapshot-ns', 'file': 'snapshot-ns.yml', 'apply': 'not snapshot_namespace_exists'}) +2025-11-24T09:49:30.7290380Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.7291219Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'rbac-snapshot-controller', 'file': 'rbac-snapshot-controller.yml'}) +2025-11-24T09:49:30.7292613Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'snapshot-controller', 'file': 'snapshot-controller.yml'}) +2025-11-24T09:49:30.7293661Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.7294000Z +2025-11-24T09:49:30.7294474Z TASK [kubernetes-apps/snapshots/snapshot-controller : Snapshot Controller | Apply Manifests] *** +2025-11-24T09:49:30.8165444Z skipping: [kubenode-super-marlin] => (item=snapshot-ns.yml) +2025-11-24T09:49:30.8166407Z skipping: [kubenode-super-marlin] => (item=rbac-snapshot-controller.yml) +2025-11-24T09:49:30.8167240Z skipping: [kubenode-renewed-asp] => (item=snapshot-ns.yml) +2025-11-24T09:49:30.8168034Z skipping: [kubenode-super-marlin] => (item=snapshot-controller.yml) +2025-11-24T09:49:30.8168747Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.8169451Z skipping: [kubenode-renewed-asp] => (item=rbac-snapshot-controller.yml) +2025-11-24T09:49:30.8170307Z skipping: [kubenode-renewed-asp] => (item=snapshot-controller.yml) +2025-11-24T09:49:30.8171166Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.8171830Z skipping: [kubenode-teaching-gobbler] => (item=snapshot-ns.yml) +2025-11-24T09:49:30.8172885Z skipping: [kubenode-teaching-gobbler] => (item=rbac-snapshot-controller.yml) +2025-11-24T09:49:30.8173796Z skipping: [kubenode-teaching-gobbler] => (item=snapshot-controller.yml) +2025-11-24T09:49:30.8174519Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.8174875Z +2025-11-24T09:49:30.8175426Z TASK [kubernetes-apps/snapshots/cinder-csi : Kubernetes Snapshots | Copy Cinder CSI Snapshot Class template] *** +2025-11-24T09:49:30.8763800Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.8764544Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.8765087Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.8765438Z +2025-11-24T09:49:30.8765928Z TASK [kubernetes-apps/snapshots/cinder-csi : Kubernetes Snapshots | Add Cinder CSI Snapshot Class] *** +2025-11-24T09:49:30.9635092Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:30.9635802Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:30.9636307Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:30.9636623Z +2025-11-24T09:49:30.9637064Z TASK [kubernetes-apps/container_runtimes/kata_containers : Kata Containers | Create addon dir] *** +2025-11-24T09:49:30.9998288Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.0222540Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.0223568Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.0223898Z +2025-11-24T09:49:31.0224307Z TASK [kubernetes-apps/container_runtimes/kata_containers : Kata Containers | Templates list] *** +2025-11-24T09:49:31.0767824Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.0768561Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.0769110Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.0769769Z +2025-11-24T09:49:31.0770247Z TASK [kubernetes-apps/container_runtimes/kata_containers : Kata Containers | Create manifests] *** +2025-11-24T09:49:31.1066245Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.1309602Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.1310348Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.1310681Z +2025-11-24T09:49:31.1311120Z TASK [kubernetes-apps/container_runtimes/kata_containers : Kata Containers | Apply manifests] *** +2025-11-24T09:49:31.1670171Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.2137207Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.2138052Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.2138390Z +2025-11-24T09:49:31.2138749Z TASK [kubernetes-apps/container_runtimes/gvisor : GVisor | Create addon dir] *** +2025-11-24T09:49:31.2675822Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.2676555Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.2677078Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.2677392Z +2025-11-24T09:49:31.2677746Z TASK [kubernetes-apps/container_runtimes/gvisor : GVisor | Templates List] ***** +2025-11-24T09:49:31.3213577Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.3214529Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.3215121Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.3215494Z +2025-11-24T09:49:31.3215919Z TASK [kubernetes-apps/container_runtimes/gvisor : GVisort | Create manifests] *** +2025-11-24T09:49:31.3488277Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.3711599Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.3713268Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.3713697Z +2025-11-24T09:49:31.3714135Z TASK [kubernetes-apps/container_runtimes/gvisor : GVisor | Apply manifests] **** +2025-11-24T09:49:31.4450628Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.4451536Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.4452134Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.4452533Z +2025-11-24T09:49:31.4453303Z TASK [kubernetes-apps/container_runtimes/crun : Crun | Copy runtime class manifest] *** +2025-11-24T09:49:31.5015148Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.5016120Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.5016622Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.5016936Z +2025-11-24T09:49:31.5017291Z TASK [kubernetes-apps/container_runtimes/crun : Crun | Apply manifests] ******** +2025-11-24T09:49:31.5767276Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.5768235Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.5768884Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.5769282Z +2025-11-24T09:49:31.5769792Z TASK [kubernetes-apps/container_runtimes/youki : Youki | Copy runtime class manifest] *** +2025-11-24T09:49:31.6049666Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.6262888Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.6263785Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.6264186Z +2025-11-24T09:49:31.6264609Z TASK [kubernetes-apps/container_runtimes/youki : Youki | Apply manifests] ****** +2025-11-24T09:49:31.7166335Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.7167264Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.7167801Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.7168131Z +2025-11-24T09:49:31.7168767Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | gather os specific variables] *** +2025-11-24T09:49:31.7725491Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.7726170Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.7726727Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.7727017Z +2025-11-24T09:49:31.7727625Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Set fact of download url Tesla] *** +2025-11-24T09:49:31.8205265Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.8206003Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.8206985Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.8207358Z +2025-11-24T09:49:31.8208045Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Set fact of download url GTX] *** +2025-11-24T09:49:31.8495776Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.8692191Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.8693137Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.8693463Z +2025-11-24T09:49:31.8694020Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Create addon dir] *** +2025-11-24T09:49:31.9079622Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.9298825Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.9299580Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.9299897Z +2025-11-24T09:49:31.9300500Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Create manifests for nvidia accelerators] *** +2025-11-24T09:49:31.9606681Z skipping: [kubenode-super-marlin] => (item={'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:31.9608369Z skipping: [kubenode-super-marlin] => (item={'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:31.9892133Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:31.9894253Z skipping: [kubenode-renewed-asp] => (item={'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:31.9895853Z skipping: [kubenode-renewed-asp] => (item={'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:31.9896933Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:31.9898001Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:31.9899587Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}) +2025-11-24T09:49:31.9900607Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:31.9900910Z +2025-11-24T09:49:31.9901501Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Apply manifests for nvidia accelerators] *** +2025-11-24T09:49:32.0058568Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:32.0228739Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:32.0231296Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:32.1002316Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.1004289Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:32.1006001Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.1007450Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:32.1009859Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:32.1011318Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.1011638Z +2025-11-24T09:49:32.1012072Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_private_key] *** +2025-11-24T09:49:32.1618869Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.1619771Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.1620393Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.1620802Z +2025-11-24T09:49:32.1621370Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_region_id] *** +2025-11-24T09:49:32.2266467Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.2267340Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.2267968Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.2268361Z +2025-11-24T09:49:32.2269344Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_tenancy_id] *** +2025-11-24T09:49:32.2846181Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.2847073Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.2847690Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.2848074Z +2025-11-24T09:49:32.2848629Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_user_id] *** +2025-11-24T09:49:32.3495628Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.3496368Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.3497249Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.3497583Z +2025-11-24T09:49:32.3498135Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_user_fingerprint] *** +2025-11-24T09:49:32.4093565Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.4094261Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.4094766Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.4095079Z +2025-11-24T09:49:32.4095578Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_compartment_id] *** +2025-11-24T09:49:32.4659501Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.4660393Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.4660998Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.4661368Z +2025-11-24T09:49:32.4661906Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_vnc_id] *** +2025-11-24T09:49:32.5239648Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.5240558Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.5241348Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.5241836Z +2025-11-24T09:49:32.5242501Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_subnet1_id] *** +2025-11-24T09:49:32.5865890Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.5866558Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.5867050Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.5867373Z +2025-11-24T09:49:32.5867815Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_subnet2_id] *** +2025-11-24T09:49:32.6449511Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.6450291Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.6450810Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.6451449Z +2025-11-24T09:49:32.6451967Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_security_list_management] *** +2025-11-24T09:49:32.7064477Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.7065441Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.7066076Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.7066476Z +2025-11-24T09:49:32.7067076Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Generate Cloud Provider Configuration] *** +2025-11-24T09:49:32.7679695Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.7680547Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.7681161Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.7681536Z +2025-11-24T09:49:32.7682042Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Slurp Configuration] *** +2025-11-24T09:49:32.8106759Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.8529002Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.8529696Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.8530025Z +2025-11-24T09:49:32.8530460Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Encode Configuration] *** +2025-11-24T09:49:32.9160548Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.9161276Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.9161817Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.9162157Z +2025-11-24T09:49:32.9162600Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Generate Manifests] *** +2025-11-24T09:49:32.9760534Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:32.9761933Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:32.9762579Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:32.9763237Z +2025-11-24T09:49:32.9763742Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Apply Manifests] *** +2025-11-24T09:49:33.0618732Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.0619639Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.0620477Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.0620986Z +2025-11-24T09:49:33.0621633Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Check cluster settings for MetalLB] *** +2025-11-24T09:49:33.1285575Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.1286474Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.1287099Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.1287493Z +2025-11-24T09:49:33.1288176Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Check that the deprecated 'matallb_auto_assign' variable is not used anymore] *** +2025-11-24T09:49:33.1599191Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.1818186Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.1819009Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.1819388Z +2025-11-24T09:49:33.1819798Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Lay Down MetalLB] ************ +2025-11-24T09:49:33.2133276Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.2345740Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.2346695Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.2347096Z +2025-11-24T09:49:33.2347546Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Install and configure MetalLB] *** +2025-11-24T09:49:33.4306652Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.4307532Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.4308153Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.4308536Z +2025-11-24T09:49:33.4309055Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Wait for MetalLB controller to be running] *** +2025-11-24T09:49:33.4654739Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.4917642Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.4918568Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.4918965Z +2025-11-24T09:49:33.4919387Z TASK [kubernetes-apps/metallb : MetalLB | Layout address pools template] ******* +2025-11-24T09:49:33.5221084Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.5424204Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.5425383Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.5425778Z +2025-11-24T09:49:33.5426231Z TASK [kubernetes-apps/metallb : MetalLB | Create address pools configuration] *** +2025-11-24T09:49:33.5704887Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.5909925Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.5910771Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.5911155Z +2025-11-24T09:49:33.5911561Z TASK [kubernetes-apps/metallb : MetalLB | Layout layer2 template] ************** +2025-11-24T09:49:33.6239344Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.6449863Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.6450587Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.6450959Z +2025-11-24T09:49:33.6451402Z TASK [kubernetes-apps/metallb : MetalLB | Create layer2 configuration] ********* +2025-11-24T09:49:33.6767404Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.6974588Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.6975368Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.6975714Z +2025-11-24T09:49:33.6976087Z TASK [kubernetes-apps/metallb : MetalLB | Layout layer3 template] ************** +2025-11-24T09:49:33.7521141Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.7521933Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.7522437Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.7522985Z +2025-11-24T09:49:33.7523348Z TASK [kubernetes-apps/metallb : MetalLB | Create layer3 configuration] ********* +2025-11-24T09:49:33.7864298Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.8117740Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.8119014Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.8119350Z +2025-11-24T09:49:33.8119708Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Delete MetalLB ConfigMap] **** +2025-11-24T09:49:33.8435846Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.8861250Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.8861847Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.8862192Z +2025-11-24T09:49:33.8862537Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Download yq] ****************** +2025-11-24T09:49:33.9196862Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:33.9514234Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:33.9515101Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:33.9515510Z +2025-11-24T09:49:33.9515999Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Copy yq binary from download dir] *** +2025-11-24T09:49:34.0129340Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.0130039Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.0130571Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.0130885Z +2025-11-24T09:49:34.0131264Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Set ArgoCD template list] ***** +2025-11-24T09:49:34.0497746Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.0715578Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.0716303Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.0716646Z +2025-11-24T09:49:34.0717021Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Download ArgoCD remote manifests] *** +2025-11-24T09:49:34.1355223Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.1355900Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.1356410Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.1356719Z +2025-11-24T09:49:34.1357149Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Copy ArgoCD remote manifests from download dir] *** +2025-11-24T09:49:34.2070429Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.2071135Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.2071662Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.2071978Z +2025-11-24T09:49:34.2072394Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Set ArgoCD namespace for remote manifests] *** +2025-11-24T09:49:34.2658098Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.2658844Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.2659350Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.2660020Z +2025-11-24T09:49:34.2660432Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Create ArgoCD manifests from templates] *** +2025-11-24T09:49:34.3146164Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.3538844Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.3539574Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.3539896Z +2025-11-24T09:49:34.3540239Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Install ArgoCD] *************** +2025-11-24T09:49:34.4142515Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.4143537Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.4144146Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.4144501Z +2025-11-24T09:49:34.4144917Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Set ArgoCD custom admin password] *** +2025-11-24T09:49:34.4423764Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.4796632Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.4797606Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.4798086Z +2025-11-24T09:49:34.4798562Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Ensure dir exists] *** +2025-11-24T09:49:34.5372218Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.5373456Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.5374067Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.5374441Z +2025-11-24T09:49:34.5374883Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Create manifests] *** +2025-11-24T09:49:34.5721339Z skipping: [kubenode-super-marlin] => (item={'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.5723826Z skipping: [kubenode-super-marlin] => (item={'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.5725397Z skipping: [kubenode-renewed-asp] => (item={'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.5726844Z skipping: [kubenode-renewed-asp] => (item={'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6286306Z skipping: [kubenode-super-marlin] => (item={'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6287704Z skipping: [kubenode-renewed-asp] => (item={'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6288764Z skipping: [kubenode-super-marlin] => (item={'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6289861Z skipping: [kubenode-renewed-asp] => (item={'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6291046Z skipping: [kubenode-renewed-asp] => (item={'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6292189Z skipping: [kubenode-renewed-asp] => (item={'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}) +2025-11-24T09:49:34.6293581Z skipping: [kubenode-super-marlin] => (item={'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6294735Z skipping: [kubenode-renewed-asp] => (item={'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}) +2025-11-24T09:49:34.6295717Z skipping: [kubenode-renewed-asp] => (item={'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}) +2025-11-24T09:49:34.6296682Z skipping: [kubenode-super-marlin] => (item={'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}) +2025-11-24T09:49:34.6297659Z skipping: [kubenode-renewed-asp] => (item={'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}) +2025-11-24T09:49:34.6298641Z skipping: [kubenode-super-marlin] => (item={'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}) +2025-11-24T09:49:34.6299799Z skipping: [kubenode-renewed-asp] => (item={'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}) +2025-11-24T09:49:34.6300730Z skipping: [kubenode-super-marlin] => (item={'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}) +2025-11-24T09:49:34.6301705Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6302792Z skipping: [kubenode-super-marlin] => (item={'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}) +2025-11-24T09:49:34.6303573Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.6304418Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6305509Z skipping: [kubenode-super-marlin] => (item={'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}) +2025-11-24T09:49:34.6306518Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6307293Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.6308036Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6309148Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}) +2025-11-24T09:49:34.6310399Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}) +2025-11-24T09:49:34.6311349Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}) +2025-11-24T09:49:34.6312282Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}) +2025-11-24T09:49:34.6313318Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}) +2025-11-24T09:49:34.6314281Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}) +2025-11-24T09:49:34.6315143Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.6315442Z +2025-11-24T09:49:34.6315788Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Apply manifests] *** +2025-11-24T09:49:34.6514843Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6517557Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6520033Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6763777Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6766122Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6769167Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6771185Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6773413Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6775441Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6777657Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6779750Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6781837Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6784065Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.6786035Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7393781Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.7395808Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7398409Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7400772Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7403354Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7405356Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7407369Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7408658Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.7409967Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7412346Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7414542Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7416506Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7418669Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7420659Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7422534Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7424530Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7426389Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7428271Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:49:34.7429566Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.7429862Z +2025-11-24T09:49:34.7430273Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Wait for controller pods to be ready] *** +2025-11-24T09:49:34.7564597Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.7784319Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.7785213Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.7785720Z +2025-11-24T09:49:34.7786423Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Wait for scheduler pods to be ready] *** +2025-11-24T09:49:34.8073593Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.8557743Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.8558612Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.8559032Z +2025-11-24T09:49:34.8559519Z TASK [kubernetes-apps/node_feature_discovery : Node Feature Discovery | Create addon dir] *** +2025-11-24T09:49:34.8901567Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.9127240Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.9128188Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.9128597Z +2025-11-24T09:49:34.9129110Z TASK [kubernetes-apps/node_feature_discovery : Node Feature Discovery | Templates list] *** +2025-11-24T09:49:34.9490552Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:34.9720658Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:34.9721996Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:34.9722393Z +2025-11-24T09:49:34.9723188Z TASK [kubernetes-apps/node_feature_discovery : Node Feature Discovery | Create manifests] *** +2025-11-24T09:49:35.0235004Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:35.0235663Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:35.0236223Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:35.0236566Z +2025-11-24T09:49:35.0236982Z TASK [kubernetes-apps/node_feature_discovery : Node Feature Discovery | Apply manifests] *** +2025-11-24T09:49:35.0534150Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:35.2792224Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:35.2793409Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:35.2793800Z +2025-11-24T09:49:35.2794199Z PLAY [Apply resolv.conf changes now that cluster DNS is up] ******************** +2025-11-24T09:49:35.2794718Z +2025-11-24T09:49:35.2795123Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:49:35.3615909Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:49:35.3616783Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:35.3617525Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:49:35.3618147Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:35.3618437Z +2025-11-24T09:49:35.3618775Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:49:35.4091515Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:35.4092008Z +2025-11-24T09:49:35.4092372Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:49:35.4746867Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:35.4747581Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:35.4748146Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:35.4748455Z +2025-11-24T09:49:35.4748854Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:49:35.5139696Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:35.5140156Z +2025-11-24T09:49:35.5140538Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:49:35.5715738Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:35.5716396Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:35.5716933Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:35.5717556Z +2025-11-24T09:49:35.5718005Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:49:35.6352328Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:35.6353335Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:35.6353971Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:35.6354326Z +2025-11-24T09:49:35.6354698Z TASK [adduser : User | Create User Group] ************************************** +2025-11-24T09:49:35.8910163Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:35.8910995Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:35.8911627Z ok: [kubenode-super-marlin] +2025-11-24T09:49:35.8911967Z +2025-11-24T09:49:35.8912344Z TASK [adduser : User | Create User] ******************************************** +2025-11-24T09:49:36.2253298Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:36.2253915Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:36.2254401Z ok: [kubenode-super-marlin] +2025-11-24T09:49:36.2254688Z +2025-11-24T09:49:36.2255037Z TASK [kubernetes/preinstall : Check if /etc/fstab exists] ********************** +2025-11-24T09:49:36.2712226Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:36.2713268Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:36.2713840Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:36.2714166Z +2025-11-24T09:49:36.2714539Z TASK [kubernetes/preinstall : Remove swapfile from /etc/fstab] ***************** +2025-11-24T09:49:36.2994811Z skipping: [kubenode-renewed-asp] => (item=swap) +2025-11-24T09:49:36.2995735Z skipping: [kubenode-renewed-asp] => (item=none) +2025-11-24T09:49:36.2996966Z skipping: [kubenode-teaching-gobbler] => (item=swap) +2025-11-24T09:49:36.3361426Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:36.3362161Z skipping: [kubenode-teaching-gobbler] => (item=none) +2025-11-24T09:49:36.3362966Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:36.3363526Z skipping: [kubenode-super-marlin] => (item=swap) +2025-11-24T09:49:36.3364097Z skipping: [kubenode-super-marlin] => (item=none) +2025-11-24T09:49:36.3364656Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:36.3364946Z +2025-11-24T09:49:36.3365294Z TASK [kubernetes/preinstall : Mask swap.target (persist swapoff)] ************** +2025-11-24T09:49:36.3665218Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:36.3883898Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:36.3884625Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:36.3884950Z +2025-11-24T09:49:36.3885315Z TASK [kubernetes/preinstall : Disable swap] ************************************ +2025-11-24T09:49:36.4402906Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:36.4403822Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:36.4404388Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:36.4404704Z +2025-11-24T09:49:36.4405149Z TASK [kubernetes/preinstall : Set os_family fact for other redhat-based operating systems] *** +2025-11-24T09:49:36.4949479Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:36.4950221Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:36.4950780Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:36.4951083Z +2025-11-24T09:49:36.4951432Z TASK [kubernetes/preinstall : Check resolvconf] ******************************** +2025-11-24T09:49:36.7350966Z ok: [kubenode-super-marlin] +2025-11-24T09:49:36.7351646Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:36.7352151Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:36.7352456Z +2025-11-24T09:49:36.7353080Z TASK [kubernetes/preinstall : Check existence of /etc/resolvconf/resolv.conf.d] *** +2025-11-24T09:49:37.0072340Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:37.0073357Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:37.0073955Z ok: [kubenode-super-marlin] +2025-11-24T09:49:37.0074231Z +2025-11-24T09:49:37.0074571Z TASK [kubernetes/preinstall : Check status of /etc/resolv.conf] **************** +2025-11-24T09:49:37.2575470Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:37.2576288Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:37.2576855Z ok: [kubenode-super-marlin] +2025-11-24T09:49:37.2577521Z +2025-11-24T09:49:37.2577934Z TASK [kubernetes/preinstall : Get content of /etc/resolv.conf] ***************** +2025-11-24T09:49:37.5379093Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:37.5379934Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:37.5380571Z ok: [kubenode-super-marlin] +2025-11-24T09:49:37.5380896Z +2025-11-24T09:49:37.5381332Z TASK [kubernetes/preinstall : Get currently configured nameservers] ************ +2025-11-24T09:49:37.6723511Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:37.6724223Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:37.6724698Z ok: [kubenode-super-marlin] +2025-11-24T09:49:37.6724967Z +2025-11-24T09:49:37.6725391Z TASK [kubernetes/preinstall : Stop if /etc/resolv.conf not configured nameservers] *** +2025-11-24T09:49:37.7341993Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:37.7343179Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:37.7343816Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:37.7344202Z +2025-11-24T09:49:37.7344677Z TASK [kubernetes/preinstall : NetworkManager | Check if host has NetworkManager] *** +2025-11-24T09:49:37.9964927Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:37.9965714Z ok: [kubenode-super-marlin] +2025-11-24T09:49:37.9966214Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:37.9966488Z +2025-11-24T09:49:37.9966846Z TASK [kubernetes/preinstall : Check systemd-resolved] ************************** +2025-11-24T09:49:38.2686651Z ok: [kubenode-super-marlin] +2025-11-24T09:49:38.2687491Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:38.2688105Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:38.2688373Z +2025-11-24T09:49:38.2689205Z TASK [kubernetes/preinstall : Set default dns if remove_default_searchdomains is false] *** +2025-11-24T09:49:38.3648501Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:38.3649368Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:38.3649907Z ok: [kubenode-super-marlin] +2025-11-24T09:49:38.3650170Z +2025-11-24T09:49:38.3650509Z TASK [kubernetes/preinstall : Set dns facts] *********************************** +2025-11-24T09:49:38.4855948Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:38.4856607Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:38.4857058Z ok: [kubenode-super-marlin] +2025-11-24T09:49:38.4857657Z +2025-11-24T09:49:38.4857991Z TASK [kubernetes/preinstall : Check if kubelet is configured] ****************** +2025-11-24T09:49:38.7508546Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:38.7509215Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:38.7509708Z ok: [kubenode-super-marlin] +2025-11-24T09:49:38.7509974Z +2025-11-24T09:49:38.7510336Z TASK [kubernetes/preinstall : Check if early DNS configuration stage] ********** +2025-11-24T09:49:38.8326608Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:38.8327449Z ok: [kubenode-super-marlin] +2025-11-24T09:49:38.8328119Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:38.8328461Z +2025-11-24T09:49:38.8328795Z TASK [kubernetes/preinstall : Target resolv.conf files] ************************ +2025-11-24T09:49:38.9407417Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:38.9408273Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:38.9408873Z ok: [kubenode-super-marlin] +2025-11-24T09:49:38.9409196Z +2025-11-24T09:49:38.9409849Z TASK [kubernetes/preinstall : Target temporary resolvconf cloud init file (Flatcar Container Linux by Kinvolk / Fedora CoreOS)] *** +2025-11-24T09:49:38.9820800Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:39.0053094Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:39.0053852Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:39.0054152Z +2025-11-24T09:49:39.0054525Z TASK [kubernetes/preinstall : Check if /etc/dhclient.conf exists] ************** +2025-11-24T09:49:39.2698029Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:39.2698839Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:39.2699403Z ok: [kubenode-super-marlin] +2025-11-24T09:49:39.2699715Z +2025-11-24T09:49:39.2700155Z TASK [kubernetes/preinstall : Target dhclient conf file for /etc/dhclient.conf] *** +2025-11-24T09:49:39.3391025Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:39.3392172Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:39.3393087Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:39.3393466Z +2025-11-24T09:49:39.3393883Z TASK [kubernetes/preinstall : Check if /etc/dhcp/dhclient.conf exists] ********* +2025-11-24T09:49:39.5922901Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:39.5923629Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:39.5924099Z ok: [kubenode-super-marlin] +2025-11-24T09:49:39.5924353Z +2025-11-24T09:49:39.5924739Z TASK [kubernetes/preinstall : Target dhclient conf file for /etc/dhcp/dhclient.conf] *** +2025-11-24T09:49:39.6915620Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:39.6916303Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:39.6916825Z ok: [kubenode-super-marlin] +2025-11-24T09:49:39.6917114Z +2025-11-24T09:49:39.6917496Z TASK [kubernetes/preinstall : Target dhclient hook file for Red Hat family] **** +2025-11-24T09:49:39.7503441Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:39.7504046Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:39.7504599Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:39.7504897Z +2025-11-24T09:49:39.7505250Z TASK [kubernetes/preinstall : Target dhclient hook file for Debian family] ***** +2025-11-24T09:49:39.8294155Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:39.8294714Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:39.8295192Z ok: [kubenode-super-marlin] +2025-11-24T09:49:39.8295451Z +2025-11-24T09:49:39.8295803Z TASK [kubernetes/preinstall : Generate search domains to resolvconf] *********** +2025-11-24T09:49:39.8991281Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:39.8991922Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:39.8993236Z ok: [kubenode-super-marlin] +2025-11-24T09:49:39.8993630Z +2025-11-24T09:49:39.8994076Z TASK [kubernetes/preinstall : Pick coredns cluster IP or default resolver] ***** +2025-11-24T09:49:40.0381789Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:40.0382339Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.0383127Z ok: [kubenode-super-marlin] +2025-11-24T09:49:40.0383413Z +2025-11-24T09:49:40.0383841Z TASK [kubernetes/preinstall : Generate nameservers for resolvconf, including cluster DNS] *** +2025-11-24T09:49:40.1183926Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:40.1184772Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.1185333Z ok: [kubenode-super-marlin] +2025-11-24T09:49:40.1185607Z +2025-11-24T09:49:40.1186044Z TASK [kubernetes/preinstall : Generate nameservers for resolvconf, not including cluster DNS] *** +2025-11-24T09:49:40.1647866Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.1648434Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.1648948Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.1649263Z +2025-11-24T09:49:40.1649609Z TASK [kubernetes/preinstall : Set etcd vars if using kubeadm mode] ************* +2025-11-24T09:49:40.2104947Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.2105511Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.2106015Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.2106302Z +2025-11-24T09:49:40.2106643Z TASK [kubernetes/preinstall : Check /usr readonly] ***************************** +2025-11-24T09:49:40.3319145Z Still deploying... +2025-11-24T09:49:40.4397649Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.4398214Z ok: [kubenode-super-marlin] +2025-11-24T09:49:40.4398755Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:40.4399076Z +2025-11-24T09:49:40.4399490Z TASK [kubernetes/preinstall : Set alternate flexvolume path] ******************* +2025-11-24T09:49:40.4809569Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.4810285Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.4810932Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.4811319Z +2025-11-24T09:49:40.4811845Z TASK [kubernetes/preinstall : Stop if either kube_control_plane or kube_node group is empty] *** +2025-11-24T09:49:40.5057038Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.5057458Z +2025-11-24T09:49:40.5057916Z TASK [kubernetes/preinstall : Stop if etcd group is empty in external etcd mode] *** +2025-11-24T09:49:40.5325058Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.5325407Z +2025-11-24T09:49:40.5325766Z TASK [kubernetes/preinstall : Stop if non systemd OS type] ********************* +2025-11-24T09:49:40.5637990Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.5851076Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.5851805Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.5852165Z +2025-11-24T09:49:40.5852575Z TASK [kubernetes/preinstall : Stop if the os does not support] ***************** +2025-11-24T09:49:40.6086087Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.6382466Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.6383383Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.6383740Z +2025-11-24T09:49:40.6384158Z TASK [kubernetes/preinstall : Stop if unknown network plugin] ****************** +2025-11-24T09:49:40.6928948Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.6929577Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.6930161Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.6930481Z +2025-11-24T09:49:40.6930862Z TASK [kubernetes/preinstall : Stop if unsupported version of Kubernetes] ******* +2025-11-24T09:49:40.7366461Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.7367143Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.7367663Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.7367957Z +2025-11-24T09:49:40.7368475Z TASK [kubernetes/preinstall : Stop if known booleans are set as strings (Use JSON format on CLI: -e "{'key': true }")] *** +2025-11-24T09:49:40.7759251Z skipping: [kubenode-renewed-asp] => (item={'name': 'download_run_once', 'value': False}) +2025-11-24T09:49:40.7760608Z skipping: [kubenode-renewed-asp] => (item={'name': 'deploy_netchecker', 'value': False}) +2025-11-24T09:49:40.7761476Z skipping: [kubenode-renewed-asp] => (item={'name': 'download_always_pull', 'value': False}) +2025-11-24T09:49:40.7762305Z skipping: [kubenode-renewed-asp] => (item={'name': 'helm_enabled', 'value': False}) +2025-11-24T09:49:40.7763446Z skipping: [kubenode-renewed-asp] => (item={'name': 'openstack_lbaas_enabled', 'value': False}) +2025-11-24T09:49:40.7764133Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.7764537Z +2025-11-24T09:49:40.7764890Z TASK [kubernetes/preinstall : Stop if even number of etcd hosts] *************** +2025-11-24T09:49:40.8197999Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.8198905Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.8199547Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.8199902Z +2025-11-24T09:49:40.8200315Z TASK [kubernetes/preinstall : Stop if memory is too small for masters] ********* +2025-11-24T09:49:40.9871069Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:40.9871794Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:40.9872337Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:40.9872881Z +2025-11-24T09:49:40.9873258Z TASK [kubernetes/preinstall : Stop if memory is too small for nodes] *********** +2025-11-24T09:49:41.0442091Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.0443290Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.0443991Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.0444378Z +2025-11-24T09:49:41.0444841Z TASK [kubernetes/preinstall : Stop if cgroups are not enabled on nodes] ******** +2025-11-24T09:49:41.0911984Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.0913154Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.0913785Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.0914128Z +2025-11-24T09:49:41.0914655Z TASK [kubernetes/preinstall : Guarantee that enough network address space is available for all pods] *** +2025-11-24T09:49:41.1414375Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.1415112Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.1415642Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.1415935Z +2025-11-24T09:49:41.1416286Z TASK [kubernetes/preinstall : Stop if ip var does not match local ips] ********* +2025-11-24T09:49:41.1931034Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.1932048Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.1932575Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.1933144Z +2025-11-24T09:49:41.1933503Z TASK [kubernetes/preinstall : Ensure ping package] ***************************** +2025-11-24T09:49:41.2444020Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.2444913Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.2445549Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.2445892Z +2025-11-24T09:49:41.2446307Z TASK [kubernetes/preinstall : Stop if access_ip is not pingable] *************** +2025-11-24T09:49:41.2897376Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.2898260Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.2898906Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.2899266Z +2025-11-24T09:49:41.2899755Z TASK [kubernetes/preinstall : Stop if RBAC is not enabled when dashboard is enabled] *** +2025-11-24T09:49:41.3365039Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.3365924Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.3366577Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.3366936Z +2025-11-24T09:49:41.3367465Z TASK [kubernetes/preinstall : Stop if RBAC is not enabled when OCI cloud controller is enabled] *** +2025-11-24T09:49:41.3886344Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.3887242Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.3887879Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.3888241Z +2025-11-24T09:49:41.3888663Z TASK [kubernetes/preinstall : Stop if kernel version is too low] *************** +2025-11-24T09:49:41.4371062Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.4371785Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.4372418Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.4373088Z +2025-11-24T09:49:41.4373506Z TASK [kubernetes/preinstall : Stop if bad hostname] **************************** +2025-11-24T09:49:41.4624530Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.4846880Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.4847788Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.4848175Z +2025-11-24T09:49:41.4848535Z TASK [kubernetes/preinstall : Check cloud_provider value] ********************** +2025-11-24T09:49:41.5313940Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.5314807Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.5315469Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.5315834Z +2025-11-24T09:49:41.5316325Z TASK [kubernetes/preinstall : Check that kube_service_addresses is a network range] *** +2025-11-24T09:49:41.5541941Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.5542905Z +2025-11-24T09:49:41.5543378Z TASK [kubernetes/preinstall : Check that kube_pods_subnet is a network range] *** +2025-11-24T09:49:41.5766906Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.5767548Z +2025-11-24T09:49:41.5768163Z TASK [kubernetes/preinstall : Check that kube_pods_subnet does not collide with kube_service_addresses] *** +2025-11-24T09:49:41.6031867Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.6032378Z +2025-11-24T09:49:41.6033007Z TASK [kubernetes/preinstall : Check that IP range is enough for the nodes] ***** +2025-11-24T09:49:41.6229277Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.6229912Z +2025-11-24T09:49:41.6230369Z TASK [kubernetes/preinstall : Stop if unknown dns mode] ************************ +2025-11-24T09:49:41.6461637Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.6462271Z +2025-11-24T09:49:41.6462939Z TASK [kubernetes/preinstall : Stop if unknown kube proxy mode] ***************** +2025-11-24T09:49:41.6728685Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.6729346Z +2025-11-24T09:49:41.6729794Z TASK [kubernetes/preinstall : Stop if unknown cert_management] ***************** +2025-11-24T09:49:41.6997937Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.6998546Z +2025-11-24T09:49:41.6998964Z TASK [kubernetes/preinstall : Stop if unknown resolvconf_mode] ***************** +2025-11-24T09:49:41.7298032Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.7298652Z +2025-11-24T09:49:41.7299182Z TASK [kubernetes/preinstall : Stop if etcd deployment type is not host, docker or kubeadm] *** +2025-11-24T09:49:41.7903328Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.7903999Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.7904535Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.7904833Z +2025-11-24T09:49:41.7905250Z TASK [kubernetes/preinstall : Stop if container manager is not docker, crio or containerd] *** +2025-11-24T09:49:41.8135421Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.8136047Z +2025-11-24T09:49:41.8136742Z TASK [kubernetes/preinstall : Stop if etcd deployment type is not host or kubeadm when container_manager != docker] *** +2025-11-24T09:49:41.8641896Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.8643058Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.8643722Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.8644086Z +2025-11-24T09:49:41.8644610Z TASK [kubernetes/preinstall : Warn the user if they are still using `etcd_kubeadm_enabled`] *** +2025-11-24T09:49:41.8939264Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.8939891Z +2025-11-24T09:49:41.8940612Z TASK [kubernetes/preinstall : Stop if `etcd_kubeadm_enabled` is defined and `etcd_deployment_type` is not `kubeadm` or `host`] *** +2025-11-24T09:49:41.9159798Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.9160472Z +2025-11-24T09:49:41.9161079Z TASK [kubernetes/preinstall : Stop if download_localhost is enabled but download_run_once is not] *** +2025-11-24T09:49:41.9608321Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:41.9609585Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:41.9610225Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:41.9610572Z +2025-11-24T09:49:41.9611120Z TASK [kubernetes/preinstall : Stop if kata_containers_enabled is enabled when container_manager is docker] *** +2025-11-24T09:49:42.0089539Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.0090384Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.0091018Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.0091368Z +2025-11-24T09:49:42.0091919Z TASK [kubernetes/preinstall : Stop if gvisor_enabled is enabled when container_manager is not containerd] *** +2025-11-24T09:49:42.0531600Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.0532352Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.0533116Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.0533417Z +2025-11-24T09:49:42.0533870Z TASK [kubernetes/preinstall : Stop if download_localhost is enabled for Flatcar Container Linux] *** +2025-11-24T09:49:42.0906456Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.1140160Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.1141139Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.1141503Z +2025-11-24T09:49:42.1141917Z TASK [kubernetes/preinstall : Ensure minimum containerd version] *************** +2025-11-24T09:49:42.1422540Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.1423418Z +2025-11-24T09:49:42.1423901Z TASK [kubernetes/preinstall : Stop if using deprecated containerd_config variable] *** +2025-11-24T09:49:42.1911175Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.1912012Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.1912544Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.1913041Z +2025-11-24T09:49:42.1913674Z TASK [kubernetes/preinstall : Stop if auto_renew_certificates is enabled when certificates are managed externally (kube_external_ca_mode is true)] *** +2025-11-24T09:49:42.2413253Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.2419679Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.2420236Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.2420534Z +2025-11-24T09:49:42.2420983Z TASK [kubernetes/preinstall : Stop if using deprecated comma separated list for admission plugins] *** +2025-11-24T09:49:42.2998375Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.2999052Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.3000099Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.3000450Z +2025-11-24T09:49:42.3000893Z TASK [kubernetes/preinstall : Verify that the packages list structure is valid] *** +2025-11-24T09:49:42.3304565Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.3493144Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.3494009Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.3494398Z +2025-11-24T09:49:42.3494783Z TASK [kubernetes/preinstall : Verify that the packages list is sorted] ********* +2025-11-24T09:49:42.3940814Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.3941565Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.3942215Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.3942576Z +2025-11-24T09:49:42.3943317Z TASK [kubernetes/preinstall : Check if kubernetes kubeadm compat cert dir exists] *** +2025-11-24T09:49:42.4416905Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.4417696Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.4418235Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.4418519Z +2025-11-24T09:49:42.4418968Z TASK [kubernetes/preinstall : Create kubernetes kubeadm compat cert dir (kubernetes/kubeadm issue 1498)] *** +2025-11-24T09:49:42.4984410Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.4985146Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.4985829Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.4986240Z +2025-11-24T09:49:42.4986684Z TASK [kubernetes/preinstall : Create local volume provisioner directories] ***** +2025-11-24T09:49:42.5258949Z skipping: [kubenode-renewed-asp] => (item=local-storage) +2025-11-24T09:49:42.5933346Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:42.5934198Z skipping: [kubenode-teaching-gobbler] => (item=local-storage) +2025-11-24T09:49:42.5934940Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:42.5935671Z skipping: [kubenode-super-marlin] => (item=local-storage) +2025-11-24T09:49:42.5936381Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:42.5936731Z +2025-11-24T09:49:42.5937126Z TASK [kubernetes/preinstall : Flush handlers] ********************************** +2025-11-24T09:49:42.5937630Z +2025-11-24T09:49:42.5938139Z TASK [kubernetes/preinstall : Flush handlers] ********************************** +2025-11-24T09:49:42.5938648Z +2025-11-24T09:49:42.5939043Z TASK [kubernetes/preinstall : Flush handlers] ********************************** +2025-11-24T09:49:42.5939537Z +2025-11-24T09:49:42.5939811Z TASK [Run calico checks] ******************************************************* +2025-11-24T09:49:42.8761799Z +2025-11-24T09:49:42.8762616Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (ipip)] *** +2025-11-24T09:49:42.9247122Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:42.9247836Z "changed": false, +2025-11-24T09:49:42.9248315Z "msg": "All assertions passed" +2025-11-24T09:49:42.9248816Z } +2025-11-24T09:49:42.9249031Z +2025-11-24T09:49:42.9249479Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (ipip_mode)] *** +2025-11-24T09:49:42.9892423Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:42.9893306Z "changed": false, +2025-11-24T09:49:42.9893737Z "msg": "All assertions passed" +2025-11-24T09:49:42.9894187Z } +2025-11-24T09:49:42.9894379Z +2025-11-24T09:49:42.9894858Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (calcio_ipam_autoallocateblocks)] *** +2025-11-24T09:49:43.0382917Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:43.0383696Z "changed": false, +2025-11-24T09:49:43.0384246Z "msg": "All assertions passed" +2025-11-24T09:49:43.0384805Z } +2025-11-24T09:49:43.0385043Z +2025-11-24T09:49:43.0385501Z TASK [network_plugin/calico : Stop if incompatible network plugin and cloudprovider] *** +2025-11-24T09:49:43.0711183Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:43.0711604Z +2025-11-24T09:49:43.0712368Z TASK [network_plugin/calico : Stop if supported Calico versions] *************** +2025-11-24T09:49:43.1213879Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:43.1214650Z "changed": false, +2025-11-24T09:49:43.1215174Z "msg": "All assertions passed" +2025-11-24T09:49:43.1215735Z } +2025-11-24T09:49:43.1215972Z +2025-11-24T09:49:43.1216366Z TASK [network_plugin/calico : Check if calicoctl.sh exists] ******************** +2025-11-24T09:49:43.3714262Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:49:43.3714745Z +2025-11-24T09:49:43.3715097Z TASK [network_plugin/calico : Check if calico ready] *************************** +2025-11-24T09:49:43.6347607Z changed: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:49:43.6348168Z +2025-11-24T09:49:43.6348572Z TASK [network_plugin/calico : Get current calico version] ********************** +2025-11-24T09:49:43.9234659Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:49:43.9235262Z +2025-11-24T09:49:43.9235739Z TASK [network_plugin/calico : Assert that current calico version is enough for upgrade] *** +2025-11-24T09:49:44.0163373Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:44.0164212Z "changed": false, +2025-11-24T09:49:44.0164749Z "msg": "All assertions passed" +2025-11-24T09:49:44.0165299Z } +2025-11-24T09:49:44.0165539Z +2025-11-24T09:49:44.0166123Z TASK [network_plugin/calico : Check that cluster_id is set and a valid IPv4 address if calico_rr enabled] *** +2025-11-24T09:49:44.0617733Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:44.0618185Z +2025-11-24T09:49:44.0619082Z TASK [network_plugin/calico : Check that calico_rr nodes are in k8s_cluster group] *** +2025-11-24T09:49:44.1028575Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:44.1029191Z +2025-11-24T09:49:44.1029675Z TASK [network_plugin/calico : Check vars defined correctly] ******************** +2025-11-24T09:49:44.1667922Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:44.1668841Z "changed": false, +2025-11-24T09:49:44.1669388Z "msg": "All assertions passed" +2025-11-24T09:49:44.1669938Z } +2025-11-24T09:49:44.1670499Z +2025-11-24T09:49:44.1670915Z TASK [network_plugin/calico : Check calico network backend defined correctly] *** +2025-11-24T09:49:44.2130865Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:44.2131537Z "changed": false, +2025-11-24T09:49:44.2132023Z "msg": "All assertions passed" +2025-11-24T09:49:44.2132496Z } +2025-11-24T09:49:44.2132920Z +2025-11-24T09:49:44.2133298Z TASK [network_plugin/calico : Check ipip and vxlan mode defined correctly] ***** +2025-11-24T09:49:44.2556030Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:44.2556791Z "changed": false, +2025-11-24T09:49:44.2557324Z "msg": "All assertions passed" +2025-11-24T09:49:44.2557875Z } +2025-11-24T09:49:44.2558111Z +2025-11-24T09:49:44.2558552Z TASK [network_plugin/calico : Check ipip and vxlan mode if simultaneously enabled] *** +2025-11-24T09:49:44.2913807Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:44.2914242Z +2025-11-24T09:49:44.2914710Z TASK [network_plugin/calico : Check ipip and vxlan mode if simultaneously enabled] *** +2025-11-24T09:49:44.3445265Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:44.3446160Z "changed": false, +2025-11-24T09:49:44.3446684Z "msg": "All assertions passed" +2025-11-24T09:49:44.3447234Z } +2025-11-24T09:49:44.3447470Z +2025-11-24T09:49:44.3447871Z TASK [network_plugin/calico : Get Calico default-pool configuration] *********** +2025-11-24T09:49:44.5835989Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:49:44.5836558Z +2025-11-24T09:49:44.5836890Z TASK [network_plugin/calico : Set calico_pool_conf] **************************** +2025-11-24T09:49:44.6331404Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] +2025-11-24T09:49:44.6331960Z +2025-11-24T09:49:44.6333017Z TASK [network_plugin/calico : Check if inventory match current cluster configuration] *** +2025-11-24T09:49:44.6919087Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { +2025-11-24T09:49:44.6919807Z "changed": false, +2025-11-24T09:49:44.6920260Z "msg": "All assertions passed" +2025-11-24T09:49:44.6920730Z } +2025-11-24T09:49:44.6920933Z +2025-11-24T09:49:44.6921321Z TASK [network_plugin/calico : Check kdd calico_datastore if calico_apiserver_enabled] *** +2025-11-24T09:49:44.7216719Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:44.7217106Z +2025-11-24T09:49:44.7217504Z TASK [network_plugin/calico : Check kdd calico_datastore if typha_enabled] ***** +2025-11-24T09:49:44.7488755Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:44.7489163Z +2025-11-24T09:49:44.7489581Z TASK [network_plugin/calico : Check ipip mode is Never for calico ipv6] ******** +2025-11-24T09:49:44.8934376Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:44.8934809Z +2025-11-24T09:49:44.8935193Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:49:44.8935661Z +2025-11-24T09:49:44.8935995Z TASK [Annotate nodes] ********************************************************** +2025-11-24T09:49:45.0111900Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:45.0112892Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:45.0113591Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:45.0113990Z +2025-11-24T09:49:45.0114340Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:49:45.0114817Z +2025-11-24T09:49:45.0115543Z TASK [logrotate : nickhammond.logrotate | Install logrotate] ******************* +2025-11-24T09:49:45.6944331Z ok: [kubenode-super-marlin] +2025-11-24T09:49:45.6944976Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:45.6945536Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:45.6945854Z +2025-11-24T09:49:45.6946267Z TASK [logrotate : nickhammond.logrotate | Setup logrotate.d scripts] *********** +2025-11-24T09:49:46.3717992Z changed: [kubenode-super-marlin] => (item={'name': 'podlogs', 'path': '/var/lib/docker/containers/*/*.log', 'options': ['daily', 'missingok', 'rotate 2', 'maxage 1', 'copytruncate', 'nocreate', 'nocompress']}) +2025-11-24T09:49:46.3720303Z changed: [kubenode-renewed-asp] => (item={'name': 'podlogs', 'path': '/var/lib/docker/containers/*/*.log', 'options': ['daily', 'missingok', 'rotate 2', 'maxage 1', 'copytruncate', 'nocreate', 'nocompress']}) +2025-11-24T09:49:46.3721870Z changed: [kubenode-teaching-gobbler] => (item={'name': 'podlogs', 'path': '/var/lib/docker/containers/*/*.log', 'options': ['daily', 'missingok', 'rotate 2', 'maxage 1', 'copytruncate', 'nocreate', 'nocompress']}) +2025-11-24T09:49:46.3722976Z +2025-11-24T09:49:46.3723304Z PLAY [Bringing kubeconfig in place] ******************************************** +2025-11-24T09:49:46.3723737Z +2025-11-24T09:49:46.3724074Z TASK [Checking if 'kubeconfig' file already exists] **************************** +2025-11-24T09:49:46.6974325Z ok: [kubenode-renewed-asp -> localhost] +2025-11-24T09:49:46.6975101Z ok: [kubenode-super-marlin -> localhost] +2025-11-24T09:49:46.6975756Z ok: [kubenode-teaching-gobbler -> localhost] +2025-11-24T09:49:46.6976158Z +2025-11-24T09:49:46.6976531Z TASK [Renaming kubeconfig file provided by Kubespray] ************************** +2025-11-24T09:49:47.2155728Z changed: [kubenode-super-marlin -> localhost] +2025-11-24T09:49:47.2156489Z ok: [kubenode-teaching-gobbler -> localhost] +2025-11-24T09:49:47.2157178Z ok: [kubenode-renewed-asp -> localhost] +2025-11-24T09:49:47.2157570Z +2025-11-24T09:49:47.3406895Z TASK [debug] ******************************************************************* +2025-11-24T09:49:47.3407682Z ok: [kubenode-renewed-asp -> localhost] => { +2025-11-24T09:49:47.3408619Z "msg": "TODO: Encrypt /wire-server-deploy/ansible/inventory/offline/../kubeconfig.dec with sops" +2025-11-24T09:49:47.3409468Z } +2025-11-24T09:49:47.3409988Z ok: [kubenode-super-marlin -> localhost] => { +2025-11-24T09:49:47.3410883Z "msg": "TODO: Encrypt /wire-server-deploy/ansible/inventory/offline/../kubeconfig.dec with sops" +2025-11-24T09:49:47.3412092Z } +2025-11-24T09:49:47.3412617Z ok: [kubenode-teaching-gobbler -> localhost] => { +2025-11-24T09:49:47.3413769Z "msg": "TODO: Encrypt /wire-server-deploy/ansible/inventory/offline/../kubeconfig.dec with sops" +2025-11-24T09:49:47.3414592Z } +2025-11-24T09:49:47.3414840Z +2025-11-24T09:49:47.3415177Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:49:47.3415646Z +2025-11-24T09:49:47.3416045Z TASK [systemd-coredump : Install systemd-coredump] ***************************** +2025-11-24T09:49:47.5011592Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:47.5012149Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:47.5012826Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:47.5013132Z +2025-11-24T09:49:47.5013376Z PLAY [etcd] ******************************************************************** +2025-11-24T09:49:47.5013716Z +2025-11-24T09:49:47.5014020Z TASK [etcd-helpers : Add etcd helper scripts] ********************************** +2025-11-24T09:49:48.7453842Z changed: [kubenode-super-marlin] => (item=etcd-health.sh) +2025-11-24T09:49:48.7454732Z changed: [kubenode-renewed-asp] => (item=etcd-health.sh) +2025-11-24T09:49:48.7455526Z changed: [kubenode-teaching-gobbler] => (item=etcd-health.sh) +2025-11-24T09:49:48.7456313Z changed: [kubenode-super-marlin] => (item=etcdctl3.sh) +2025-11-24T09:49:48.7457060Z changed: [kubenode-teaching-gobbler] => (item=etcdctl3.sh) +2025-11-24T09:49:48.7457816Z changed: [kubenode-renewed-asp] => (item=etcdctl3.sh) +2025-11-24T09:49:48.7458250Z +2025-11-24T09:49:48.7458989Z PLAY RECAP ********************************************************************* +2025-11-24T09:49:48.7459939Z adminhost : ok=3 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:49:48.7461107Z kubenode-renewed-asp : ok=442 changed=80 unreachable=0 failed=0 skipped=780 rescued=0 ignored=3 +2025-11-24T09:49:48.7462298Z kubenode-super-marlin : ok=447 changed=82 unreachable=0 failed=0 skipped=699 rescued=0 ignored=6 +2025-11-24T09:49:48.7463719Z kubenode-teaching-gobbler : ok=413 changed=75 unreachable=0 failed=0 skipped=686 rescued=0 ignored=3 +2025-11-24T09:49:48.7464524Z +2025-11-24T09:49:49.0346264Z ++ dirname /wire-server-deploy/ansible/inventory/offline/inventory.yml +2025-11-24T09:49:49.0359458Z + INVENTORY_DIR=/wire-server-deploy/ansible/inventory/offline +2025-11-24T09:49:49.0367007Z ++ yq eval '."k8s-cluster".vars.kube_vip_address // ""' /wire-server-deploy/ansible/inventory/offline/inventory.yml +2025-11-24T09:49:49.0703548Z + VIP_ADDRESS=10.1.1.254 +2025-11-24T09:49:49.0704345Z Deploying kube-vip with VIP: 10.1.1.254 +2025-11-24T09:49:49.0705145Z + '[' -z 10.1.1.254 ']' +2025-11-24T09:49:49.0705814Z + '[' 10.1.1.254 = null ']' +2025-11-24T09:49:49.0706485Z + '[' -n 10.1.1.254 ']' +2025-11-24T09:49:49.0707146Z + '[' 10.1.1.254 '!=' null ']' +2025-11-24T09:49:49.0707909Z + echo 'Deploying kube-vip with VIP: 10.1.1.254' +2025-11-24T09:49:49.0709686Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/kubernetes.yml --tags kube-vip,client -e '{"loadbalancer_apiserver": {"address": "10.1.1.254", "port": 6443}}' -e apiserver_loadbalancer_domain_name=10.1.1.254 -e loadbalancer_apiserver_localhost=false -e '{"supplementary_addresses_in_ssl_keys": ["10.1.1.254"]}' +2025-11-24T09:49:49.5207771Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:49:49.5208624Z -vvvv to see details +2025-11-24T09:49:49.5211079Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:49:49.5212135Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:49:49.7723712Z [WARNING]: While constructing a mapping from /wire-server-deploy/ansible/roles- +2025-11-24T09:49:49.7724899Z external/kubespray/roles/bootstrap-os/tasks/main.yml, line 29, column 7, found +2025-11-24T09:49:49.7726181Z a duplicate dict key (paths). Using last defined value only. +2025-11-24T09:49:50.3332917Z Still deploying... +2025-11-24T09:49:51.4247463Z +2025-11-24T09:49:51.4248132Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:49:51.4248682Z +2025-11-24T09:49:51.4249039Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:49:53.1433873Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:53.1434773Z ok: [kubenode-super-marlin] +2025-11-24T09:49:53.1435349Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:53.1435663Z +2025-11-24T09:49:53.1436058Z PLAY [Check Ansible version] *************************************************** +2025-11-24T09:49:53.1436538Z +2025-11-24T09:49:53.1436914Z TASK [Check 2.16.4 <= Ansible version < 2.17.0] ******************************** +2025-11-24T09:49:53.1930567Z ok: [adminhost] => { +2025-11-24T09:49:53.1931226Z "changed": false, +2025-11-24T09:49:53.1931709Z "msg": "All assertions passed" +2025-11-24T09:49:53.1932202Z } +2025-11-24T09:49:53.1932405Z +2025-11-24T09:49:53.1932957Z TASK [Check that python netaddr is installed] ********************************** +2025-11-24T09:49:53.3145822Z ok: [adminhost] => { +2025-11-24T09:49:53.3146600Z "changed": false, +2025-11-24T09:49:53.3147156Z "msg": "All assertions passed" +2025-11-24T09:49:53.3147744Z } +2025-11-24T09:49:53.3147991Z +2025-11-24T09:49:53.3148384Z TASK [Check that jinja is not too old (install via pip)] *********************** +2025-11-24T09:49:53.4855677Z ok: [adminhost] => { +2025-11-24T09:49:53.4856301Z "changed": false, +2025-11-24T09:49:53.4857285Z "msg": "All assertions passed" +2025-11-24T09:49:53.4857775Z } +2025-11-24T09:49:53.4857979Z +2025-11-24T09:49:53.4858320Z PLAY [Add kube-master nodes to kube_control_plane] ***************************** +2025-11-24T09:49:53.4858769Z +2025-11-24T09:49:53.4859079Z TASK [Add nodes to kube_control_plane group] *********************************** +2025-11-24T09:49:53.6639356Z changed: [kubenode-renewed-asp] +2025-11-24T09:49:53.6640090Z changed: [kubenode-super-marlin] +2025-11-24T09:49:53.6640608Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:49:53.6641278Z +2025-11-24T09:49:53.6641601Z PLAY [Add kube-node nodes to kube_node] **************************************** +2025-11-24T09:49:53.6642023Z +2025-11-24T09:49:53.6642313Z TASK [Add nodes to kube_node group] ******************************************** +2025-11-24T09:49:53.8369738Z changed: [kubenode-renewed-asp] +2025-11-24T09:49:53.8370639Z changed: [kubenode-super-marlin] +2025-11-24T09:49:53.8371165Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:49:53.8371497Z +2025-11-24T09:49:53.8371823Z PLAY [Add k8s-cluster nodes to k8s_cluster] ************************************ +2025-11-24T09:49:53.8372255Z +2025-11-24T09:49:53.8372556Z TASK [Add nodes to k8s_cluster group] ****************************************** +2025-11-24T09:49:53.9571988Z [WARNING]: Could not match supplied host pattern, ignoring: calico-rr +2025-11-24T09:49:53.9573146Z [WARNING]: Could not match supplied host pattern, ignoring: no-floating +2025-11-24T09:49:53.9574022Z [WARNING]: Could not match supplied host pattern, ignoring: bastion +2025-11-24T09:49:53.9575609Z [WARNING]: Could not match supplied host pattern, ignoring: calico_rr +2025-11-24T09:49:53.9991583Z changed: [kubenode-super-marlin] +2025-11-24T09:49:53.9992532Z changed: [kubenode-renewed-asp] +2025-11-24T09:49:53.9993414Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:49:53.9993801Z +2025-11-24T09:49:53.9994119Z PLAY [Add calico-rr nodes to calico_rr] **************************************** +2025-11-24T09:49:53.9994764Z skipping: no hosts matched +2025-11-24T09:49:53.9995028Z +2025-11-24T09:49:53.9995343Z PLAY [Add no-floating nodes to no_floating] ************************************ +2025-11-24T09:49:53.9995952Z skipping: no hosts matched +2025-11-24T09:49:53.9996205Z +2025-11-24T09:49:53.9996505Z PLAY [Install bastion ssh config] ********************************************** +2025-11-24T09:49:53.9997457Z skipping: no hosts matched +2025-11-24T09:49:53.9997709Z +2025-11-24T09:49:53.9998016Z PLAY [Bootstrap hosts for Ansible] ********************************************* +2025-11-24T09:49:53.9998438Z +2025-11-24T09:49:53.9998766Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:49:54.0825593Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:49:54.0826636Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:49:54.0827503Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:54.0828267Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:54.0828608Z +2025-11-24T09:49:54.0829006Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:49:54.1383179Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:54.1383871Z +2025-11-24T09:49:54.1384286Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:49:54.2229294Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:54.2229987Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:54.2230492Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:54.2230826Z +2025-11-24T09:49:54.2231200Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:49:54.2632376Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:54.2633309Z +2025-11-24T09:49:54.2633800Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:49:54.3467395Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:54.3468261Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:54.3469280Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:54.3469665Z +2025-11-24T09:49:54.3470211Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:49:54.5279604Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:54.5280551Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:54.5281190Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:54.5281570Z +2025-11-24T09:49:54.5288123Z PLAY [Gather facts] ************************************************************ +2025-11-24T09:49:54.5288919Z +2025-11-24T09:49:54.5289245Z TASK [Gather minimal facts] **************************************************** +2025-11-24T09:49:55.2121293Z ok: [kubenode-super-marlin] +2025-11-24T09:49:55.2122170Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:55.2123018Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:55.2123360Z +2025-11-24T09:49:55.2123741Z TASK [Gather necessary facts (network)] **************************************** +2025-11-24T09:49:55.7755743Z ok: [kubenode-super-marlin] +2025-11-24T09:49:55.7756401Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:55.7756944Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:55.7757226Z +2025-11-24T09:49:55.7757553Z TASK [Gather necessary facts (hardware)] *************************************** +2025-11-24T09:49:56.9173032Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:56.9173886Z ok: [kubenode-super-marlin] +2025-11-24T09:49:56.9174450Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:56.9174767Z +2025-11-24T09:49:56.9175141Z PLAY [Prepare for etcd install] ************************************************ +2025-11-24T09:49:56.9175645Z +2025-11-24T09:49:56.9176052Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:49:57.0437107Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:49:57.0437941Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:49:57.0438755Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:57.0439396Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:57.0439688Z +2025-11-24T09:49:57.0440024Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:49:57.1145772Z ok: [kubenode-super-marlin -> localhost] +2025-11-24T09:49:57.1146457Z +2025-11-24T09:49:57.2036925Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:49:57.2037819Z ok: [kubenode-super-marlin] +2025-11-24T09:49:57.2038409Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:49:57.2039008Z ok: [kubenode-renewed-asp] +2025-11-24T09:49:57.2039330Z +2025-11-24T09:49:57.2039783Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:49:57.2647623Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:57.2648080Z +2025-11-24T09:49:57.2648445Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:49:57.3475211Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:57.3476106Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:57.3476741Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:57.3477120Z +2025-11-24T09:49:57.3477566Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:49:58.2130575Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:58.2131459Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:58.2132098Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:58.2132488Z +2025-11-24T09:49:58.2133224Z PLAY [Add worker nodes to the etcd play if needed] ***************************** +2025-11-24T09:49:58.2133730Z +2025-11-24T09:49:58.2134072Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:49:58.3320693Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:49:58.3321719Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:49:58.3323315Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:58.3324136Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:58.3324496Z +2025-11-24T09:49:58.3324915Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:49:58.3790176Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:58.3790651Z +2025-11-24T09:49:58.3791021Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:49:58.4763789Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:58.4764737Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:58.4765720Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:58.4766119Z +2025-11-24T09:49:58.4766583Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:49:58.5361590Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:58.5362198Z +2025-11-24T09:49:58.5362888Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:49:58.6364165Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:58.6365028Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:58.6365635Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:58.6366016Z +2025-11-24T09:49:58.6366532Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:49:58.7802514Z [WARNING]: Could not match supplied host pattern, ignoring: +2025-11-24T09:49:58.7803533Z _kubespray_needs_etcd +2025-11-24T09:49:58.8290950Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:58.8291853Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:58.8292489Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:58.8293162Z +2025-11-24T09:49:58.8293501Z PLAY [Install etcd] ************************************************************ +2025-11-24T09:49:58.8293951Z +2025-11-24T09:49:58.8294349Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:49:58.9519829Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:49:58.9520912Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:49:58.9521851Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:58.9522463Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:58.9522968Z +2025-11-24T09:49:58.9523443Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:49:59.0025122Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:59.0025603Z +2025-11-24T09:49:59.0025954Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:49:59.0875527Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:59.0876392Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:59.0877000Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:59.0877377Z +2025-11-24T09:49:59.0877832Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:49:59.1499097Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:59.1499565Z +2025-11-24T09:49:59.1499953Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:49:59.2536043Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:59.2536778Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:59.2537311Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:59.2537630Z +2025-11-24T09:49:59.2538092Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:49:59.2863598Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:59.5137682Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:59.5138466Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:59.5138804Z +2025-11-24T09:49:59.5139121Z PLAY [Install Kubernetes nodes] ************************************************ +2025-11-24T09:49:59.5139546Z +2025-11-24T09:49:59.5139892Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:49:59.6278647Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:49:59.6279581Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:49:59.6280398Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:49:59.6281029Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:59.6281317Z +2025-11-24T09:49:59.6281649Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:49:59.6924368Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:59.6924831Z +2025-11-24T09:49:59.6925255Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:49:59.7898210Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:59.7898928Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:59.7899559Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:59.7899941Z +2025-11-24T09:49:59.7900408Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:49:59.8463973Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:59.8464358Z +2025-11-24T09:49:59.8464732Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:49:59.9361157Z skipping: [kubenode-super-marlin] +2025-11-24T09:49:59.9361859Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:49:59.9362482Z skipping: [kubenode-renewed-asp] +2025-11-24T09:49:59.9363121Z +2025-11-24T09:49:59.9363675Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:50:00.0059104Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:00.0059866Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:00.0060473Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:00.0060848Z +2025-11-24T09:50:00.0061243Z TASK [kubernetes/node : Kube-vip | Check cluster settings for kube-vip] ******* +2025-11-24T09:50:00.0605168Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:00.0605909Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:00.0606608Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:00.0607051Z +2025-11-24T09:50:00.0607503Z TASK [kubernetes/node : Kube-vip | Check if super-admin.conf exists] *********** +2025-11-24T09:50:00.3353649Z Still deploying... +2025-11-24T09:50:00.6704179Z ok: [kubenode-super-marlin] +2025-11-24T09:50:00.6704761Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:00.6705266Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:00.6705945Z +2025-11-24T09:50:00.6706311Z TASK [kubernetes/node : Kube-vip | Check if kubeadm has already run] *********** +2025-11-24T09:50:00.9689592Z ok: [kubenode-super-marlin] +2025-11-24T09:50:00.9690151Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:00.9690607Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:00.9690902Z +2025-11-24T09:50:00.9691212Z TASK [kubernetes/node : Kube-vip | Set admin.conf] ***************************** +2025-11-24T09:50:01.0969248Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:01.0969933Z ok: [kubenode-super-marlin] +2025-11-24T09:50:01.0970521Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:01.0970862Z +2025-11-24T09:50:01.0971320Z TASK [kubernetes/node : Kube-vip | Set admin.conf for first Control Plane] ***** +2025-11-24T09:50:01.2106189Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:01.2106901Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:01.2107546Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:01.2107930Z +2025-11-24T09:50:01.2108330Z TASK [kubernetes/node : Kube-vip | Write static pod] *************************** +2025-11-24T09:50:02.0174972Z changed: [kubenode-teaching-gobbler] +2025-11-24T09:50:02.0175751Z changed: [kubenode-super-marlin] +2025-11-24T09:50:02.0176351Z changed: [kubenode-renewed-asp] +2025-11-24T09:50:02.0176672Z +2025-11-24T09:50:02.0177038Z PLAY [Install the control plane] *********************************************** +2025-11-24T09:50:02.0177519Z +2025-11-24T09:50:02.0177908Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:50:02.1241347Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:50:02.1242510Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:50:02.1243582Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:50:02.1244266Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:02.1244568Z +2025-11-24T09:50:02.1244922Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:50:02.1720271Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:02.1720730Z +2025-11-24T09:50:02.1721181Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:50:02.2519284Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:02.2519972Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:02.2520604Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:02.2520950Z +2025-11-24T09:50:02.2521395Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:50:02.3122354Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:02.3123039Z +2025-11-24T09:50:02.3123488Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:50:02.3981824Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:02.3982481Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:02.3983360Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:02.3983735Z +2025-11-24T09:50:02.3984244Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:50:02.5345032Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:02.5345612Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:02.5346144Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:02.5346458Z +2025-11-24T09:50:02.5346801Z TASK [kubernetes/client : Set external kube-apiserver endpoint] **************** +2025-11-24T09:50:02.6376977Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:02.6377609Z ok: [kubenode-super-marlin] +2025-11-24T09:50:02.6378167Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:02.6378490Z +2025-11-24T09:50:02.6378962Z TASK [kubernetes/client : Create kube config dir for current/ansible become user] *** +2025-11-24T09:50:03.1141789Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:03.1142393Z ok: [kubenode-super-marlin] +2025-11-24T09:50:03.1143062Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:03.1143334Z +2025-11-24T09:50:03.1143725Z TASK [kubernetes/client : Copy admin kubeconfig to current/ansible become user home] *** +2025-11-24T09:50:03.4206297Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:03.4206948Z ok: [kubenode-super-marlin] +2025-11-24T09:50:03.4207513Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:03.4207869Z +2025-11-24T09:50:03.4208280Z TASK [kubernetes/client : Create kube artifacts dir] *************************** +2025-11-24T09:50:03.7812301Z ok: [kubenode-renewed-asp -> localhost] +2025-11-24T09:50:03.7813020Z +2025-11-24T09:50:03.7813400Z TASK [kubernetes/client : Wait for k8s apiserver] ****************************** +2025-11-24T09:50:04.2629240Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:04.2629850Z ok: [kubenode-super-marlin] +2025-11-24T09:50:04.2630389Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:04.2630684Z +2025-11-24T09:50:04.2631047Z TASK [kubernetes/client : Get admin kubeconfig from remote host] *************** +2025-11-24T09:50:04.7467099Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:04.7467469Z +2025-11-24T09:50:04.7467850Z TASK [kubernetes/client : Convert kubeconfig to YAML] ************************** +2025-11-24T09:50:04.8739440Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:04.8740039Z ok: [kubenode-super-marlin] +2025-11-24T09:50:04.8740555Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:04.8740875Z +2025-11-24T09:50:04.8741248Z TASK [kubernetes/client : Override username in kubeconfig] ********************* +2025-11-24T09:50:04.9843564Z ok: [kubenode-renewed-asp] +2025-11-24T09:50:04.9844141Z ok: [kubenode-super-marlin] +2025-11-24T09:50:04.9844646Z ok: [kubenode-teaching-gobbler] +2025-11-24T09:50:04.9844937Z +2025-11-24T09:50:04.9845304Z TASK [kubernetes/client : Write admin kubeconfig on ansible host] ************** +2025-11-24T09:50:05.5186522Z changed: [kubenode-renewed-asp -> localhost] +2025-11-24T09:50:05.5187002Z +2025-11-24T09:50:05.5187379Z TASK [kubernetes/client : Copy kubectl binary to ansible host] ***************** +2025-11-24T09:50:05.5374971Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:05.5375373Z +2025-11-24T09:50:05.5375741Z TASK [kubernetes/client : Create helper script kubectl.sh on ansible host] ***** +2025-11-24T09:50:05.7443783Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:05.7444177Z +2025-11-24T09:50:05.7444513Z PLAY [Invoke kubeadm and install a CNI] **************************************** +2025-11-24T09:50:05.7445336Z +2025-11-24T09:50:05.7445758Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:50:05.8516812Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:50:05.8517735Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:50:05.8518556Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:50:05.8519231Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:05.8519540Z +2025-11-24T09:50:05.8519918Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:50:05.9075022Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:05.9075462Z +2025-11-24T09:50:05.9075863Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:50:06.0332356Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:06.0333278Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:06.0333852Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:06.0334184Z +2025-11-24T09:50:06.0334586Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:50:06.0947190Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:06.0947658Z +2025-11-24T09:50:06.0948091Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:50:06.1841320Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:06.1842021Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:06.1842606Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:06.1843264Z +2025-11-24T09:50:06.1843776Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:50:06.5930520Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:06.5931684Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:06.5932195Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:06.5932506Z +2025-11-24T09:50:06.5933198Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** +2025-11-24T09:50:06.7570035Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:06.7570840Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:06.7571424Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:06.7571786Z +2025-11-24T09:50:06.7572290Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** +2025-11-24T09:50:06.9329726Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:06.9330488Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:06.9331039Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:06.9331376Z +2025-11-24T09:50:06.9331724Z PLAY [Install Calico Route Reflector] ****************************************** +2025-11-24T09:50:06.9332392Z skipping: no hosts matched +2025-11-24T09:50:06.9333016Z +2025-11-24T09:50:06.9333365Z PLAY [Patch Kubernetes for Windows] ******************************************** +2025-11-24T09:50:06.9333819Z +2025-11-24T09:50:06.9334189Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:50:07.0303887Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:50:07.0304987Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:50:07.0305872Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:50:07.0306609Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.0306948Z +2025-11-24T09:50:07.0307766Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:50:07.0842997Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.0843441Z +2025-11-24T09:50:07.0843849Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:50:07.1508799Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.1509204Z +2025-11-24T09:50:07.1509618Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:50:07.2081142Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.2081984Z +2025-11-24T09:50:07.2082376Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:50:07.2659909Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.2660293Z +2025-11-24T09:50:07.2660780Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:50:07.4646263Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.4646661Z +2025-11-24T09:50:07.4646989Z PLAY [Install Kubernetes apps] ************************************************* +2025-11-24T09:50:07.4647443Z +2025-11-24T09:50:07.4647804Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:50:07.5725453Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) +2025-11-24T09:50:07.5726305Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) +2025-11-24T09:50:07.5727091Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) +2025-11-24T09:50:07.5727820Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.5728174Z +2025-11-24T09:50:07.5728536Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:50:07.6462505Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.6463115Z +2025-11-24T09:50:07.6463469Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:50:07.7566244Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.7566902Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:07.7567476Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:07.7574484Z +2025-11-24T09:50:07.7575010Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:50:07.9664756Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:07.9665607Z +2025-11-24T09:50:07.9666054Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:50:08.3583900Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:08.3584510Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:08.3585067Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:08.3585390Z +2025-11-24T09:50:08.3585849Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:50:09.7466023Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:09.7466867Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:09.7467537Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:09.7468035Z +2025-11-24T09:50:09.7468575Z PLAY [Apply resolv.conf changes now that cluster DNS is up] ******************** +2025-11-24T09:50:09.7469264Z +2025-11-24T09:50:09.7469876Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* +2025-11-24T09:50:09.8764613Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) +2025-11-24T09:50:09.8765507Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) +2025-11-24T09:50:09.8766308Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) +2025-11-24T09:50:09.8767007Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:09.8767343Z +2025-11-24T09:50:09.8767714Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** +2025-11-24T09:50:09.9281253Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:09.9281633Z +2025-11-24T09:50:09.9281973Z TASK [kubespray-defaults : Set fallback_ips] *********************************** +2025-11-24T09:50:10.0215639Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:10.0216290Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:10.0216836Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:10.0217179Z +2025-11-24T09:50:10.0217579Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** +2025-11-24T09:50:10.0857899Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:10.0858370Z +2025-11-24T09:50:10.0858779Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** +2025-11-24T09:50:10.1727694Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:10.1728680Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:10.1729201Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:10.1729515Z +2025-11-24T09:50:10.1729990Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** +2025-11-24T09:50:10.3369160Z Still deploying... +2025-11-24T09:50:10.8315948Z skipping: [kubenode-super-marlin] +2025-11-24T09:50:10.8316845Z skipping: [kubenode-renewed-asp] +2025-11-24T09:50:10.8317427Z skipping: [kubenode-teaching-gobbler] +2025-11-24T09:50:10.8317761Z +2025-11-24T09:50:10.8318062Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:50:10.8318491Z +2025-11-24T09:50:10.8318786Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:50:10.8319207Z +2025-11-24T09:50:10.8319542Z PLAY [Bringing kubeconfig in place] ******************************************** +2025-11-24T09:50:10.8319986Z +2025-11-24T09:50:10.8320264Z PLAY [k8s-cluster] ************************************************************* +2025-11-24T09:50:10.8320663Z +2025-11-24T09:50:10.8320920Z PLAY [etcd] ******************************************************************** +2025-11-24T09:50:10.8321301Z +2025-11-24T09:50:10.8321561Z PLAY RECAP ********************************************************************* +2025-11-24T09:50:10.8322398Z adminhost : ok=3 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 +2025-11-24T09:50:10.8323709Z kubenode-renewed-asp : ok=21 changed=5 unreachable=0 failed=0 skipped=50 rescued=0 ignored=0 +2025-11-24T09:50:10.8324733Z kubenode-super-marlin : ok=19 changed=4 unreachable=0 failed=0 skipped=44 rescued=0 ignored=0 +2025-11-24T09:50:10.8326173Z kubenode-teaching-gobbler : ok=18 changed=4 unreachable=0 failed=0 skipped=30 rescued=0 ignored=0 +2025-11-24T09:50:10.8326765Z +2025-11-24T09:50:11.1329663Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/cassandra.yml +2025-11-24T09:50:11.6278215Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:50:11.6278942Z -vvvv to see details +2025-11-24T09:50:11.6284759Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:50:11.6285481Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:50:11.8858735Z +2025-11-24T09:50:11.8859474Z PLAY [cassandra] *************************************************************** +2025-11-24T09:50:11.8859937Z +2025-11-24T09:50:11.8860233Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:50:15.9211465Z ok: [cassandra-improved-teal] +2025-11-24T09:50:15.9212068Z ok: [cassandra-noted-manatee] +2025-11-24T09:50:15.9212601Z ok: [cassandra-tops-fowl] +2025-11-24T09:50:15.9213130Z +2025-11-24T09:50:15.9213509Z TASK [ansible-role-ntp : Include OS-specific variables.] *********************** +2025-11-24T09:50:15.9727167Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:15.9727786Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:15.9728289Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:15.9728559Z +2025-11-24T09:50:15.9728904Z TASK [ansible-role-ntp : Ensure NTP-related packages are installed.] *********** +2025-11-24T09:50:16.0233382Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.0234007Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.0234983Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.0235300Z +2025-11-24T09:50:16.0235673Z TASK [ansible-role-ntp : Ensure tzdata package is installed (Linux).] ********** +2025-11-24T09:50:16.0856738Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.0857373Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.0857938Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.0858234Z +2025-11-24T09:50:16.0858587Z TASK [ansible-role-ntp : include_tasks] **************************************** +2025-11-24T09:50:16.1733976Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.1734622Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.1735175Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.1735476Z +2025-11-24T09:50:16.1735818Z TASK [ansible-role-ntp : Set timezone] ***************************************** +2025-11-24T09:50:16.2364421Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.2365051Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.2365601Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.2365887Z +2025-11-24T09:50:16.2366268Z TASK [ansible-role-ntp : Ensure NTP is running and enabled as configured.] ***** +2025-11-24T09:50:16.2931226Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.2931896Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.2932450Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.2933078Z +2025-11-24T09:50:16.2933475Z TASK [ansible-role-ntp : Ensure NTP is stopped and disabled as configured.] **** +2025-11-24T09:50:16.3496426Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.3497157Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.3497777Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.3498107Z +2025-11-24T09:50:16.3498503Z TASK [ansible-role-ntp : Generate ntp.conf file] ******************************* +2025-11-24T09:50:16.4305964Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.4306633Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.4307158Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.4307463Z +2025-11-24T09:50:16.4307827Z TASK [ansible-role-java : Include OS-specific variables for Fedora or FreeBSD.] *** +2025-11-24T09:50:16.4632804Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.4633420Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.4633948Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.4634577Z +2025-11-24T09:50:16.4634937Z TASK [ansible-role-java : Include version-specific variables for CentOS/RHEL.] *** +2025-11-24T09:50:16.5029589Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.5030214Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.5030730Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.5031012Z +2025-11-24T09:50:16.5031353Z TASK [ansible-role-java : Include version-specific variables for Ubuntu.] ****** +2025-11-24T09:50:16.6312381Z ok: [cassandra-improved-teal] +2025-11-24T09:50:16.6313202Z ok: [cassandra-noted-manatee] +2025-11-24T09:50:16.6313711Z ok: [cassandra-tops-fowl] +2025-11-24T09:50:16.6314000Z +2025-11-24T09:50:16.6314417Z TASK [ansible-role-java : Include version-specific variables for Debian.] ****** +2025-11-24T09:50:16.7228337Z ok: [cassandra-improved-teal] +2025-11-24T09:50:16.7228936Z ok: [cassandra-noted-manatee] +2025-11-24T09:50:16.7229438Z ok: [cassandra-tops-fowl] +2025-11-24T09:50:16.7229717Z +2025-11-24T09:50:16.7230080Z TASK [ansible-role-java : Define java_packages.] ******************************* +2025-11-24T09:50:16.7750363Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.7750993Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.7751534Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.7751813Z +2025-11-24T09:50:16.7752139Z TASK [ansible-role-java : include_tasks] *************************************** +2025-11-24T09:50:16.8131701Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:16.8132315Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:16.8133063Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:16.8133354Z +2025-11-24T09:50:16.8134123Z TASK [ansible-role-java : include_tasks] *************************************** +2025-11-24T09:50:16.8762144Z included: /wire-server-deploy/ansible/roles-external/ansible-role-java/tasks/setup-Debian.yml for cassandra-improved-teal, cassandra-noted-manatee, cassandra-tops-fowl +2025-11-24T09:50:16.8763517Z +2025-11-24T09:50:16.8763939Z TASK [ansible-role-java : Ensure 'man' directory exists.] ********************** +2025-11-24T09:50:17.3728161Z ok: [cassandra-tops-fowl] +2025-11-24T09:50:17.3728742Z ok: [cassandra-noted-manatee] +2025-11-24T09:50:17.3729217Z ok: [cassandra-improved-teal] +2025-11-24T09:50:17.3729840Z +2025-11-24T09:50:17.3730185Z TASK [ansible-role-java : Ensure Java is installed.] *************************** +2025-11-24T09:50:20.3385550Z Still deploying... +2025-11-24T09:50:28.7294276Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:28.7294908Z changed: [cassandra-improved-teal] +2025-11-24T09:50:28.7295461Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:28.7295790Z +2025-11-24T09:50:28.7296169Z TASK [ansible-role-java : include_tasks] *************************************** +2025-11-24T09:50:28.7756256Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:28.7756976Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:28.7757581Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:28.7757912Z +2025-11-24T09:50:28.7758324Z TASK [ansible-role-java : Set JAVA_HOME if configured.] ************************ +2025-11-24T09:50:28.8423176Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:28.8423832Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:28.8424350Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:28.8424649Z +2025-11-24T09:50:28.8424990Z TASK [ansible-cassandra : Ensure apt cache is updated] ************************* +2025-11-24T09:50:29.9687173Z ok: [cassandra-tops-fowl] +2025-11-24T09:50:29.9687972Z ok: [cassandra-noted-manatee] +2025-11-24T09:50:29.9688569Z ok: [cassandra-improved-teal] +2025-11-24T09:50:29.9688853Z +2025-11-24T09:50:29.9689207Z TASK [ansible-cassandra : install iproute2] ************************************ +2025-11-24T09:50:30.3403655Z Still deploying... +2025-11-24T09:50:30.6045352Z ok: [cassandra-noted-manatee] +2025-11-24T09:50:30.6045904Z ok: [cassandra-tops-fowl] +2025-11-24T09:50:30.6046373Z ok: [cassandra-improved-teal] +2025-11-24T09:50:30.6046645Z +2025-11-24T09:50:30.6047001Z TASK [ansible-cassandra : populate 'ansible_default_ipv4'] ********************* +2025-11-24T09:50:30.6653548Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:30.6654273Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:30.6654900Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:30.6655285Z +2025-11-24T09:50:30.6655699Z TASK [ansible-cassandra : Check if inside AWS.] ******************************** +2025-11-24T09:50:30.7163865Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:30.7164601Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:30.7165239Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:30.7165597Z +2025-11-24T09:50:30.7166007Z TASK [ansible-cassandra : set is_aws_environment] ****************************** +2025-11-24T09:50:30.7654946Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:30.7655533Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:30.7656043Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:30.7656321Z +2025-11-24T09:50:30.7656661Z TASK [ansible-cassandra : Remove swapfile from /etc/fstab] ********************* +2025-11-24T09:50:31.2493856Z ok: [cassandra-tops-fowl] +2025-11-24T09:50:31.2494414Z ok: [cassandra-improved-teal] +2025-11-24T09:50:31.2494891Z ok: [cassandra-noted-manatee] +2025-11-24T09:50:31.2495159Z +2025-11-24T09:50:31.2495506Z TASK [ansible-cassandra : Disable swap] **************************************** +2025-11-24T09:50:31.2793442Z skipping: [cassandra-improved-teal] +2025-11-24T09:50:31.2993731Z skipping: [cassandra-noted-manatee] +2025-11-24T09:50:31.2994378Z skipping: [cassandra-tops-fowl] +2025-11-24T09:50:31.2994661Z +2025-11-24T09:50:31.2994995Z TASK [ansible-cassandra : add cassandra binaries to default login shell] ******* +2025-11-24T09:50:32.3513783Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:32.3514415Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:32.3514908Z changed: [cassandra-improved-teal] +2025-11-24T09:50:32.3515212Z +2025-11-24T09:50:32.3515556Z TASK [ansible-cassandra : resolve platform specific vars] ********************** +2025-11-24T09:50:32.4842339Z ok: [cassandra-improved-teal] => (item=/wire-server-deploy/ansible/roles-external/ansible-cassandra/defaults/Ubuntu-jammy.yml) +2025-11-24T09:50:32.4844216Z ok: [cassandra-noted-manatee] => (item=/wire-server-deploy/ansible/roles-external/ansible-cassandra/defaults/Ubuntu-jammy.yml) +2025-11-24T09:50:32.4845888Z ok: [cassandra-tops-fowl] => (item=/wire-server-deploy/ansible/roles-external/ansible-cassandra/defaults/Ubuntu-jammy.yml) +2025-11-24T09:50:32.4846576Z +2025-11-24T09:50:32.4847090Z TASK [ansible-cassandra : install OS dependent packages ['procps', 'libjemalloc2', 'python3-pip']] *** +2025-11-24T09:50:40.0780761Z ok: [cassandra-tops-fowl] => (item=procps) +2025-11-24T09:50:40.0781471Z ok: [cassandra-improved-teal] => (item=procps) +2025-11-24T09:50:40.0782065Z ok: [cassandra-noted-manatee] => (item=procps) +2025-11-24T09:50:40.0782905Z changed: [cassandra-tops-fowl] => (item=libjemalloc2) +2025-11-24T09:50:40.0783577Z changed: [cassandra-improved-teal] => (item=libjemalloc2) +2025-11-24T09:50:40.0784276Z changed: [cassandra-noted-manatee] => (item=libjemalloc2) +2025-11-24T09:50:40.0784928Z changed: [cassandra-tops-fowl] => (item=python3-pip) +2025-11-24T09:50:40.0785578Z changed: [cassandra-noted-manatee] => (item=python3-pip) +2025-11-24T09:50:40.0786242Z changed: [cassandra-improved-teal] => (item=python3-pip) +2025-11-24T09:50:40.0786660Z +2025-11-24T09:50:40.0787004Z TASK [ansible-cassandra : set vm.max_map_count=1048575] ************************ +2025-11-24T09:50:40.3421789Z Still deploying... +2025-11-24T09:50:40.6099139Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:40.6099809Z changed: [cassandra-improved-teal] +2025-11-24T09:50:40.6100403Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:40.6100738Z +2025-11-24T09:50:40.6101192Z TASK [ansible-cassandra : set net.ipv4.tcp_keepalive_time=300] ***************** +2025-11-24T09:50:41.9389131Z changed: [cassandra-improved-teal] +2025-11-24T09:50:41.9389836Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:41.9390434Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:41.9390770Z +2025-11-24T09:50:41.9391579Z TASK [ansible-cassandra : ensure group cassandra exists] *********************** +2025-11-24T09:50:42.4771758Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:42.4772420Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:42.4773363Z changed: [cassandra-improved-teal] +2025-11-24T09:50:42.4773718Z +2025-11-24T09:50:42.4774122Z TASK [ansible-cassandra : ensure user cassandra exists] ************************ +2025-11-24T09:50:43.0781385Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:43.0781960Z changed: [cassandra-improved-teal] +2025-11-24T09:50:43.0782470Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:43.0783017Z +2025-11-24T09:50:43.0783393Z TASK [ansible-cassandra : check for install] *********************************** +2025-11-24T09:50:43.4698371Z ok: [cassandra-improved-teal] +2025-11-24T09:50:43.4699006Z ok: [cassandra-noted-manatee] +2025-11-24T09:50:43.4699562Z ok: [cassandra-tops-fowl] +2025-11-24T09:50:43.4699874Z +2025-11-24T09:50:43.4700261Z TASK [ansible-cassandra : grab tarball] **************************************** +2025-11-24T09:50:44.5112187Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:44.5113182Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:44.5113848Z changed: [cassandra-improved-teal] +2025-11-24T09:50:44.5114254Z +2025-11-24T09:50:44.5114666Z TASK [ansible-cassandra : unpack tarball] ************************************** +2025-11-24T09:50:46.8423182Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:46.8424084Z changed: [cassandra-improved-teal] +2025-11-24T09:50:46.8424813Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:46.8425228Z +2025-11-24T09:50:46.8426043Z TASK [ansible-cassandra : chown tree] ****************************************** +2025-11-24T09:50:47.2387505Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:47.2388219Z changed: [cassandra-improved-teal] +2025-11-24T09:50:47.2388836Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:47.2389177Z +2025-11-24T09:50:47.2389573Z TASK [ansible-cassandra : cleanup] ********************************************* +2025-11-24T09:50:47.6315386Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:47.6316037Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:47.6316655Z changed: [cassandra-improved-teal] +2025-11-24T09:50:47.6317332Z +2025-11-24T09:50:47.6317737Z TASK [ansible-cassandra : symlink home] **************************************** +2025-11-24T09:50:48.0404693Z changed: [cassandra-improved-teal] +2025-11-24T09:50:48.0405283Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:48.0405761Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:48.0406050Z +2025-11-24T09:50:48.0406381Z TASK [ansible-cassandra : create a handy nodetool in path] ********************* +2025-11-24T09:50:48.8023984Z changed: [cassandra-improved-teal] +2025-11-24T09:50:48.8024702Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:48.8025264Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:48.8025613Z +2025-11-24T09:50:48.8026029Z TASK [ansible-cassandra : create a handy cqlsh in path] ************************ +2025-11-24T09:50:49.5600158Z changed: [cassandra-improved-teal] +2025-11-24T09:50:49.5600794Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:49.5601284Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:49.5601584Z +2025-11-24T09:50:49.5601930Z TASK [ansible-cassandra : create data directories under /mnt/cassandra] ******** +2025-11-24T09:50:50.3440492Z Still deploying... +2025-11-24T09:50:50.8570207Z changed: [cassandra-tops-fowl] => (item=data) +2025-11-24T09:50:50.8570845Z changed: [cassandra-improved-teal] => (item=data) +2025-11-24T09:50:50.8571420Z changed: [cassandra-noted-manatee] => (item=data) +2025-11-24T09:50:50.8572013Z changed: [cassandra-tops-fowl] => (item=commitlog) +2025-11-24T09:50:50.8572857Z changed: [cassandra-improved-teal] => (item=commitlog) +2025-11-24T09:50:50.8573474Z changed: [cassandra-noted-manatee] => (item=commitlog) +2025-11-24T09:50:50.8574059Z changed: [cassandra-tops-fowl] => (item=saved_caches) +2025-11-24T09:50:50.8580231Z changed: [cassandra-improved-teal] => (item=saved_caches) +2025-11-24T09:50:50.8580957Z changed: [cassandra-noted-manatee] => (item=saved_caches) +2025-11-24T09:50:50.8581866Z changed: [cassandra-tops-fowl] => (item=hints) +2025-11-24T09:50:50.8582429Z changed: [cassandra-improved-teal] => (item=hints) +2025-11-24T09:50:50.8583334Z changed: [cassandra-noted-manatee] => (item=hints) +2025-11-24T09:50:50.8583687Z +2025-11-24T09:50:50.8584024Z TASK [ansible-cassandra : create gc log directory] ***************************** +2025-11-24T09:50:51.2375035Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:51.2375655Z changed: [cassandra-improved-teal] +2025-11-24T09:50:51.2376162Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:51.2376442Z +2025-11-24T09:50:51.2376813Z TASK [ansible-cassandra : install logback.xml] ********************************* +2025-11-24T09:50:52.0400791Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:52.0401347Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:52.0401862Z changed: [cassandra-improved-teal] +2025-11-24T09:50:52.0402165Z +2025-11-24T09:50:52.0402527Z TASK [ansible-cassandra : download prometheus jmx exporter jar] **************** +2025-11-24T09:50:52.5715202Z changed: [cassandra-improved-teal] +2025-11-24T09:50:52.5715902Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:52.5716526Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:52.5716839Z +2025-11-24T09:50:52.5717180Z TASK [ansible-cassandra : prometheus jmx config] ******************************* +2025-11-24T09:50:53.3759112Z changed: [cassandra-improved-teal] +2025-11-24T09:50:53.3759821Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:53.3760391Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:53.3760748Z +2025-11-24T09:50:53.3761617Z TASK [ansible-cassandra : main configuration (cassandra.yaml)] ***************** +2025-11-24T09:50:54.1524630Z changed: [cassandra-improved-teal] +2025-11-24T09:50:54.1525251Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:54.1525764Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:54.1526077Z +2025-11-24T09:50:54.1526452Z TASK [ansible-cassandra : extra environment variables file for systemd unit] *** +2025-11-24T09:50:55.0853938Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:55.0854564Z changed: [cassandra-improved-teal] +2025-11-24T09:50:55.0855103Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:55.0855738Z +2025-11-24T09:50:55.0856107Z TASK [ansible-cassandra : install systemd cassandra.service unit] ************** +2025-11-24T09:50:55.8504043Z changed: [cassandra-improved-teal] => (item=cassandra.service) +2025-11-24T09:50:55.8504903Z changed: [cassandra-tops-fowl] => (item=cassandra.service) +2025-11-24T09:50:55.8505685Z changed: [cassandra-noted-manatee] => (item=cassandra.service) +2025-11-24T09:50:55.8506160Z +2025-11-24T09:50:55.8506585Z TASK [ansible-cassandra : enable and start cassandra systemd service] ********** +2025-11-24T09:50:57.7543459Z changed: [cassandra-improved-teal] +2025-11-24T09:50:57.7544185Z changed: [cassandra-tops-fowl] +2025-11-24T09:50:57.7544665Z changed: [cassandra-noted-manatee] +2025-11-24T09:50:57.7544959Z +2025-11-24T09:50:57.7545301Z TASK [ansible-cassandra : Wait for cassandra to startup] *********************** +2025-11-24T09:51:00.3460659Z Still deploying... +2025-11-24T09:51:10.3478413Z Still deploying... +2025-11-24T09:51:20.3496394Z Still deploying... +2025-11-24T09:51:30.3514758Z Still deploying... +2025-11-24T09:51:40.3534121Z Still deploying... +2025-11-24T09:51:50.3573553Z Still deploying... +2025-11-24T09:52:00.3569965Z Still deploying... +2025-11-24T09:52:10.3587727Z Still deploying... +2025-11-24T09:52:20.3610484Z Still deploying... +2025-11-24T09:52:30.3628495Z Still deploying... +2025-11-24T09:52:40.3655271Z Still deploying... +2025-11-24T09:52:46.5868028Z ok: [cassandra-tops-fowl] => (item=9042) +2025-11-24T09:52:46.5868784Z ok: [cassandra-improved-teal] => (item=9042) +2025-11-24T09:52:46.5869419Z ok: [cassandra-noted-manatee] => (item=9042) +2025-11-24T09:52:46.5869802Z +2025-11-24T09:52:46.5870194Z TASK [ansible-cassandra : install awscli] ************************************** +2025-11-24T09:52:46.6064275Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:46.6214737Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:46.6215345Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:46.6215633Z +2025-11-24T09:52:46.6215972Z TASK [ansible-cassandra : render repair script] ******************************** +2025-11-24T09:52:48.8227404Z changed: [cassandra-noted-manatee] +2025-11-24T09:52:48.8228108Z changed: [cassandra-improved-teal] +2025-11-24T09:52:48.8228702Z changed: [cassandra-tops-fowl] +2025-11-24T09:52:48.8229015Z +2025-11-24T09:52:48.8229415Z TASK [ansible-cassandra : render backup script] ******************************** +2025-11-24T09:52:48.8681810Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:48.8682873Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:48.8683524Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:48.8684232Z +2025-11-24T09:52:48.8684574Z TASK [ansible-cassandra : render restore script] ******************************* +2025-11-24T09:52:48.9261884Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:48.9262482Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:48.9263252Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:48.9263526Z +2025-11-24T09:52:48.9263875Z TASK [ansible-cassandra : render incremental backup script] ******************** +2025-11-24T09:52:48.9613689Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:48.9614369Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:48.9614966Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:48.9615288Z +2025-11-24T09:52:48.9615669Z TASK [ansible-cassandra : set up cron job for daily backup] ******************** +2025-11-24T09:52:48.9797879Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:49.0042132Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:49.0043421Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:49.0043950Z +2025-11-24T09:52:49.0044286Z TASK [ansible-cassandra : set up cron job for incremental backup] ************** +2025-11-24T09:52:49.0411003Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:49.0411585Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:49.0412120Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:49.0412397Z +2025-11-24T09:52:49.0412963Z TASK [ansible-cassandra : set up cron job for repair] ************************** +2025-11-24T09:52:49.0833165Z [DEPRECATION WARNING]: "listify_lookup_plugin_terms" does not use "dataloader" +2025-11-24T09:52:49.0834132Z anymore, the ability to pass it in will be removed in future versions. This +2025-11-24T09:52:49.0834897Z feature will be removed in version 2.18. Deprecation warnings can be disabled +2025-11-24T09:52:49.0835577Z by setting deprecation_warnings=False in ansible.cfg. +2025-11-24T09:52:49.5442093Z skipping: [cassandra-improved-teal] => (item=['cassandra-tops-fowl', {'weekday': '0', 'hour': '0'}]) +2025-11-24T09:52:49.5443436Z skipping: [cassandra-noted-manatee] => (item=['cassandra-tops-fowl', {'weekday': '0', 'hour': '0'}]) +2025-11-24T09:52:49.5444355Z skipping: [cassandra-noted-manatee] => (item=['cassandra-improved-teal', {'weekday': '1', 'hour': '0'}]) +2025-11-24T09:52:49.5445234Z changed: [cassandra-tops-fowl] => (item=['cassandra-tops-fowl', {'weekday': '0', 'hour': '0'}]) +2025-11-24T09:52:49.5446093Z skipping: [cassandra-tops-fowl] => (item=['cassandra-improved-teal', {'weekday': '1', 'hour': '0'}]) +2025-11-24T09:52:49.5447001Z skipping: [cassandra-tops-fowl] => (item=['cassandra-noted-manatee', {'weekday': '2', 'hour': '0'}]) +2025-11-24T09:52:49.5447897Z changed: [cassandra-improved-teal] => (item=['cassandra-improved-teal', {'weekday': '1', 'hour': '0'}]) +2025-11-24T09:52:49.5448785Z skipping: [cassandra-improved-teal] => (item=['cassandra-noted-manatee', {'weekday': '2', 'hour': '0'}]) +2025-11-24T09:52:49.5449682Z changed: [cassandra-noted-manatee] => (item=['cassandra-noted-manatee', {'weekday': '2', 'hour': '0'}]) +2025-11-24T09:52:49.5450178Z +2025-11-24T09:52:49.5450531Z TASK [ansible-ntp-verify : Ensure NTP daemon is running] *********************** +2025-11-24T09:52:49.6253741Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:49.6254479Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:49.6255312Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:49.6255581Z +2025-11-24T09:52:49.6255887Z TASK [ansible-ntp-verify : shell] ********************************************** +2025-11-24T09:52:49.6835082Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:49.6836011Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:49.6836632Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:49.6836965Z +2025-11-24T09:52:49.6837342Z TASK [ansible-ntp-verify : debug] ********************************************** +2025-11-24T09:52:49.7434169Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:49.7434860Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:49.7435437Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:49.7435709Z +2025-11-24T09:52:49.7436011Z TASK [ansible-ntp-verify : fail] *********************************************** +2025-11-24T09:52:49.8073414Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:49.8074135Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:49.8074695Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:49.8074986Z +2025-11-24T09:52:49.8075294Z TASK [ansible-ntp-verify : shell] ********************************************** +2025-11-24T09:52:49.8646660Z skipping: [cassandra-noted-manatee] +2025-11-24T09:52:49.8647364Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:49.8647888Z skipping: [cassandra-tops-fowl] +2025-11-24T09:52:49.8648171Z +2025-11-24T09:52:49.8648484Z TASK [ansible-ntp-verify : assert] ********************************************* +2025-11-24T09:52:49.9386548Z skipping: [cassandra-improved-teal] => (item=cassandra-improved-teal) +2025-11-24T09:52:49.9388074Z skipping: [cassandra-improved-teal] => (item=cassandra-noted-manatee) +2025-11-24T09:52:49.9389026Z skipping: [cassandra-improved-teal] => (item=cassandra-tops-fowl) +2025-11-24T09:52:49.9389776Z skipping: [cassandra-improved-teal] +2025-11-24T09:52:49.9390142Z +2025-11-24T09:52:49.9390444Z TASK [shell] ******************************************************************* +2025-11-24T09:52:50.3663718Z Still deploying... +2025-11-24T09:52:52.4474418Z changed: [cassandra-tops-fowl] +2025-11-24T09:52:52.4475367Z changed: [cassandra-improved-teal] +2025-11-24T09:52:52.4475983Z changed: [cassandra-noted-manatee] +2025-11-24T09:52:52.4476720Z +2025-11-24T09:52:52.4477028Z TASK [debug] ******************************************************************* +2025-11-24T09:52:52.5766751Z ok: [cassandra-noted-manatee] => { +2025-11-24T09:52:52.5767643Z "nodetool_status.stdout_lines": [ +2025-11-24T09:52:52.5768250Z "Datacenter: datacenter1", +2025-11-24T09:52:52.5768805Z "=======================", +2025-11-24T09:52:52.5769349Z "Status=Up/Down", +2025-11-24T09:52:52.5769914Z "|/ State=Normal/Leaving/Joining/Moving", +2025-11-24T09:52:52.5770725Z "-- Address Load Tokens Owns (effective) Host ID Rack", +2025-11-24T09:52:52.5771643Z "UN 10.1.1.5 75.92 KiB 256 100.0% 087718e4-71e1-4602-a6c5-05b9da92b773 rack1", +2025-11-24T09:52:52.5772497Z "UN 10.1.1.15 87.88 KiB 256 100.0% 9e50ddb2-4b70-40f2-9c23-138179d2d513 rack1" +2025-11-24T09:52:52.5773392Z ] +2025-11-24T09:52:52.5773829Z } +2025-11-24T09:52:52.5774218Z ok: [cassandra-tops-fowl] => { +2025-11-24T09:52:52.5774675Z "nodetool_status.stdout_lines": [ +2025-11-24T09:52:52.5775144Z "Datacenter: datacenter1", +2025-11-24T09:52:52.5775589Z "=======================", +2025-11-24T09:52:52.5776023Z "Status=Up/Down", +2025-11-24T09:52:52.5776463Z "|/ State=Normal/Leaving/Joining/Moving", +2025-11-24T09:52:52.5777108Z "-- Address Load Tokens Owns (effective) Host ID Rack", +2025-11-24T09:52:52.5777864Z "UN 10.1.1.5 75.92 KiB 256 100.0% 087718e4-71e1-4602-a6c5-05b9da92b773 rack1", +2025-11-24T09:52:52.5778539Z "UN 10.1.1.14 70.9 KiB 256 100.0% 11c4f8d0-36e7-4779-a918-c53edc8823d0 rack1" +2025-11-24T09:52:52.5779379Z ] +2025-11-24T09:52:52.5779735Z } +2025-11-24T09:52:52.5780121Z ok: [cassandra-improved-teal] => { +2025-11-24T09:52:52.5780593Z "nodetool_status.stdout_lines": [ +2025-11-24T09:52:52.5781062Z "Datacenter: datacenter1", +2025-11-24T09:52:52.5781495Z "=======================", +2025-11-24T09:52:52.5781926Z "Status=Up/Down", +2025-11-24T09:52:52.5782364Z "|/ State=Normal/Leaving/Joining/Moving", +2025-11-24T09:52:52.5783098Z "-- Address Load Tokens Owns (effective) Host ID Rack", +2025-11-24T09:52:52.5783830Z "UN 10.1.1.5 75.92 KiB 256 100.0% 087718e4-71e1-4602-a6c5-05b9da92b773 rack1", +2025-11-24T09:52:52.5784482Z "UN 10.1.1.14 70.9 KiB 256 100.0% 11c4f8d0-36e7-4779-a918-c53edc8823d0 rack1" +2025-11-24T09:52:52.5785010Z ] +2025-11-24T09:52:52.5785361Z } +2025-11-24T09:52:52.5785551Z +2025-11-24T09:52:52.5785796Z PLAY RECAP ********************************************************************* +2025-11-24T09:52:52.5786547Z cassandra-improved-teal : ok=38 changed=26 unreachable=0 failed=0 skipped=30 rescued=0 ignored=0 +2025-11-24T09:52:52.5787442Z cassandra-noted-manatee : ok=38 changed=26 unreachable=0 failed=0 skipped=29 rescued=0 ignored=0 +2025-11-24T09:52:52.5788312Z cassandra-tops-fowl : ok=38 changed=26 unreachable=0 failed=0 skipped=29 rescued=0 ignored=0 +2025-11-24T09:52:52.5788777Z +2025-11-24T09:52:52.6996696Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/elasticsearch.yml +2025-11-24T09:52:53.1738595Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:52:53.1739321Z -vvvv to see details +2025-11-24T09:52:53.1743729Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:52:53.1744617Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:52:53.3501307Z +2025-11-24T09:52:53.3502167Z PLAY [elasticsearch] *********************************************************** +2025-11-24T09:52:53.3502852Z +2025-11-24T09:52:53.3503141Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:52:56.2948238Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:56.2948951Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:56.2949315Z +2025-11-24T09:52:56.2949631Z TASK [debug] ******************************************************************* +2025-11-24T09:52:56.3834366Z ok: [elasticsearch-renewing-bear] => { +2025-11-24T09:52:56.3835044Z "es_config": { +2025-11-24T09:52:56.3835538Z "cluster.name": "elasticsearch-directory", +2025-11-24T09:52:56.3836102Z "discovery.zen.minimum_master_nodes": "2", +2025-11-24T09:52:56.3836723Z "discovery.zen.ping.unicast.hosts": "10.1.1.3:9300,10.1.1.12:9300", +2025-11-24T09:52:56.3837365Z "http.port": 9200, +2025-11-24T09:52:56.3837811Z "network.bind_host": [ +2025-11-24T09:52:56.3838251Z "_enp7s0_", +2025-11-24T09:52:56.3838670Z "_local_" +2025-11-24T09:52:56.3839075Z ], +2025-11-24T09:52:56.3839484Z "network.publish_host": "_enp7s0_", +2025-11-24T09:52:56.3839983Z "node.data": true, +2025-11-24T09:52:56.3840423Z "node.master": true, +2025-11-24T09:52:56.3840875Z "transport.tcp.port": 9300 +2025-11-24T09:52:56.3841337Z } +2025-11-24T09:52:56.3841712Z } +2025-11-24T09:52:56.3842116Z ok: [elasticsearch-amusing-pup] => { +2025-11-24T09:52:56.3842600Z "es_config": { +2025-11-24T09:52:56.3843322Z "cluster.name": "elasticsearch-directory", +2025-11-24T09:52:56.3843873Z "discovery.zen.minimum_master_nodes": "2", +2025-11-24T09:52:56.3844490Z "discovery.zen.ping.unicast.hosts": "10.1.1.3:9300,10.1.1.12:9300", +2025-11-24T09:52:56.3845092Z "http.port": 9200, +2025-11-24T09:52:56.3845525Z "network.bind_host": [ +2025-11-24T09:52:56.3845948Z "_enp7s0_", +2025-11-24T09:52:56.3846704Z "_local_" +2025-11-24T09:52:56.3847089Z ], +2025-11-24T09:52:56.3847472Z "network.publish_host": "_enp7s0_", +2025-11-24T09:52:56.3847934Z "node.data": true, +2025-11-24T09:52:56.3848347Z "node.master": true, +2025-11-24T09:52:56.3848772Z "transport.tcp.port": 9300 +2025-11-24T09:52:56.3849202Z } +2025-11-24T09:52:56.3849559Z } +2025-11-24T09:52:56.3849746Z +2025-11-24T09:52:56.3850035Z TASK [ensure man directory exist] ********************************************** +2025-11-24T09:52:56.8716404Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:56.8716974Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:56.8717276Z +2025-11-24T09:52:56.8717573Z TASK [elasticsearch : set_fact] ************************************************ +2025-11-24T09:52:56.9418204Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:56.9418786Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:56.9419065Z +2025-11-24T09:52:56.9419381Z TASK [elasticsearch : os-specific vars] **************************************** +2025-11-24T09:52:57.0227640Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.0228205Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.0228527Z +2025-11-24T09:52:57.0228867Z TASK [elasticsearch : Set fact oss_version when using es_enable_xpack] ********* +2025-11-24T09:52:57.1041923Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.1049931Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.1050279Z +2025-11-24T09:52:57.1050641Z TASK [elasticsearch : Warn about deprecated es_enable_xpack variable] ********** +2025-11-24T09:52:57.1790508Z ok: [elasticsearch-amusing-pup] => { +2025-11-24T09:52:57.1791932Z "msg": "WARNING: es_enable_xpack variable is now deprecated. You should use oss_version instead" +2025-11-24T09:52:57.1793050Z } +2025-11-24T09:52:57.1793563Z ok: [elasticsearch-renewing-bear] => { +2025-11-24T09:52:57.1794399Z "msg": "WARNING: es_enable_xpack variable is now deprecated. You should use oss_version instead" +2025-11-24T09:52:57.1795172Z } +2025-11-24T09:52:57.1795413Z +2025-11-24T09:52:57.1795985Z TASK [elasticsearch : Set the defaults here otherwise they can't be overriden in the same play if the role is called twice] *** +2025-11-24T09:52:57.2425333Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.2425996Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.2426364Z +2025-11-24T09:52:57.2426757Z TASK [elasticsearch : Use the oss repo and package] **************************** +2025-11-24T09:52:57.3137401Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.3138060Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.3138419Z +2025-11-24T09:52:57.3138848Z TASK [elasticsearch : Set the URL scheme to https if SSL/TLS is enabled] ******* +2025-11-24T09:52:57.3609684Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.3610309Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.3610655Z +2025-11-24T09:52:57.3610988Z TASK [elasticsearch : Warn about deprecated es_xpack_features variable] ******* +2025-11-24T09:52:57.3879843Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.3880552Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.3880952Z +2025-11-24T09:52:57.3881356Z TASK [elasticsearch : fail when es_proxy_port is not defined or is blank] ****** +2025-11-24T09:52:57.4264525Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.4265215Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.4265611Z +2025-11-24T09:52:57.4266054Z TASK [elasticsearch : fail when heap size is not specified when using memory lock] *** +2025-11-24T09:52:57.5120135Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.5120781Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.5121124Z +2025-11-24T09:52:57.5121502Z TASK [elasticsearch : fail when api credentials are not declared when using security] *** +2025-11-24T09:52:57.5385725Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.5386314Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.5386645Z +2025-11-24T09:52:57.5387019Z TASK [elasticsearch : fail when ssl enabled without defining a key and certificate] *** +2025-11-24T09:52:57.5724867Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.5725583Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.5725993Z +2025-11-24T09:52:57.5726374Z TASK [elasticsearch : set fact file_reserved_users] **************************** +2025-11-24T09:52:57.6516162Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.6516896Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.6517291Z +2025-11-24T09:52:57.6517695Z TASK [elasticsearch : fail when changing users through file realm] ************* +2025-11-24T09:52:57.7080067Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.7080794Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.7081182Z +2025-11-24T09:52:57.7081568Z TASK [elasticsearch : set fact m_lock_enabled] ********************************* +2025-11-24T09:52:57.8009945Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.8010544Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.8010863Z +2025-11-24T09:52:57.8011190Z TASK [elasticsearch : set fact use_system_d] *********************************** +2025-11-24T09:52:57.8736782Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.8737477Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.8737861Z +2025-11-24T09:52:57.8738251Z TASK [elasticsearch : use snapshot release] ************************************ +2025-11-24T09:52:57.8997739Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:57.8998462Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:57.8998844Z +2025-11-24T09:52:57.8999669Z TASK [elasticsearch : include java.yml] **************************************** +2025-11-24T09:52:58.0345998Z included: /wire-server-deploy/ansible/roles-external/elasticsearch/tasks/java.yml for elasticsearch-amusing-pup, elasticsearch-renewing-bear +2025-11-24T09:52:58.0346787Z +2025-11-24T09:52:58.0347122Z TASK [elasticsearch : set fact java_state to present] ************************** +2025-11-24T09:52:58.0962190Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:58.0963138Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:58.0963484Z +2025-11-24T09:52:58.0963870Z TASK [elasticsearch : set fact java_state to latest] *************************** +2025-11-24T09:52:58.1288413Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:58.1289002Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:58.1289316Z +2025-11-24T09:52:58.1289646Z TASK [elasticsearch : RedHat - Ensure Java is installed] *********************** +2025-11-24T09:52:58.1616479Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:58.1617080Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:58.1617424Z +2025-11-24T09:52:58.1617738Z TASK [elasticsearch : Get the installed java path] ***************************** +2025-11-24T09:52:58.1843156Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:58.1843863Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:58.1844247Z +2025-11-24T09:52:58.1844631Z TASK [elasticsearch : correct java version selected] *************************** +2025-11-24T09:52:58.2180916Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:52:58.2181533Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:52:58.2181875Z +2025-11-24T09:52:58.2182198Z TASK [elasticsearch : Refresh java repo] *************************************** +2025-11-24T09:52:59.4100590Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:52:59.4101277Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:52:59.4101617Z +2025-11-24T09:52:59.4102023Z TASK [elasticsearch : Debian - Ensure Java is installed] *********************** +2025-11-24T09:53:00.3679960Z Still deploying... +2025-11-24T09:53:10.3696233Z Still deploying... +2025-11-24T09:53:11.6147414Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:11.6148061Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:11.6148410Z +2025-11-24T09:53:11.6148736Z TASK [elasticsearch : register open_jdk version] ******************************* +2025-11-24T09:53:12.0982596Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:12.0983808Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:12.0984108Z +2025-11-24T09:53:12.0984448Z TASK [elasticsearch : refresh the java ca-certificates] ************************ +2025-11-24T09:53:13.7816262Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:13.7816852Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:13.7817141Z +2025-11-24T09:53:13.7817514Z TASK [elasticsearch : Include specific Elasticsearch] ************************** +2025-11-24T09:53:13.8440736Z included: /wire-server-deploy/ansible/roles-external/elasticsearch/tasks/elasticsearch-Debian.yml for elasticsearch-amusing-pup, elasticsearch-renewing-bear +2025-11-24T09:53:13.8441673Z +2025-11-24T09:53:13.8442062Z TASK [elasticsearch : set fact force_install to no] **************************** +2025-11-24T09:53:13.9180207Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:13.9180922Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:13.9181264Z +2025-11-24T09:53:13.9181651Z TASK [elasticsearch : set fact force_install to yes] *************************** +2025-11-24T09:53:13.9425615Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:13.9426327Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:13.9426710Z +2025-11-24T09:53:13.9427141Z TASK [elasticsearch : Check if the elasticsearch package is installed] ********* +2025-11-24T09:53:14.2624922Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.2625507Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.2625810Z +2025-11-24T09:53:14.2626254Z TASK [elasticsearch : unhold elasticsearch package when switching to a different package type] *** +2025-11-24T09:53:14.2986027Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.2987095Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.2987457Z +2025-11-24T09:53:14.2987849Z TASK [elasticsearch : stop elasticsearch] ************************************** +2025-11-24T09:53:14.3342397Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.3343237Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.3343600Z +2025-11-24T09:53:14.3344106Z TASK [elasticsearch : Debian - Remove elasticsearch package if we are switching to a different package type] *** +2025-11-24T09:53:14.3776125Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.3777072Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.3777401Z +2025-11-24T09:53:14.3777832Z TASK [elasticsearch : Debian - Install apt-transport-https to support https APT downloads] *** +2025-11-24T09:53:14.4222578Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.4223388Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.4223742Z +2025-11-24T09:53:14.4224161Z TASK [elasticsearch : Debian - Add Elasticsearch repository key] *************** +2025-11-24T09:53:14.4537789Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.4538428Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.4538752Z +2025-11-24T09:53:14.4539103Z TASK [elasticsearch : Debian - Add elasticsearch repository] ******************* +2025-11-24T09:53:14.5111116Z skipping: [elasticsearch-amusing-pup] => (item={'repo': 'deb http://packages.elastic.co/elasticsearch/oss-6.x/debian stable main', 'state': 'absent'}) +2025-11-24T09:53:14.5112502Z skipping: [elasticsearch-amusing-pup] => (item={'repo': 'deb https://artifacts.elastic.co/packages/oss-6.x/apt stable main', 'state': 'present'}) +2025-11-24T09:53:14.5113956Z skipping: [elasticsearch-amusing-pup] => (item={'repo': 'deb https://artifacts.elastic.co/packages/6.x/apt stable main', 'state': 'absent'}) +2025-11-24T09:53:14.5114818Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.5115745Z skipping: [elasticsearch-renewing-bear] => (item={'repo': 'deb http://packages.elastic.co/elasticsearch/oss-6.x/debian stable main', 'state': 'absent'}) +2025-11-24T09:53:14.5117020Z skipping: [elasticsearch-renewing-bear] => (item={'repo': 'deb https://artifacts.elastic.co/packages/oss-6.x/apt stable main', 'state': 'present'}) +2025-11-24T09:53:14.5118245Z skipping: [elasticsearch-renewing-bear] => (item={'repo': 'deb https://artifacts.elastic.co/packages/6.x/apt stable main', 'state': 'absent'}) +2025-11-24T09:53:14.5119427Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.5119772Z +2025-11-24T09:53:14.5120111Z TASK [elasticsearch : Include optional user and group creation.] *************** +2025-11-24T09:53:14.5503401Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.5504014Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.5504350Z +2025-11-24T09:53:14.5504710Z TASK [elasticsearch : Debian - Get installed elasticsearch version] ************ +2025-11-24T09:53:14.8646984Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.8647613Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.8647942Z +2025-11-24T09:53:14.8648286Z TASK [elasticsearch : Debian - unhold elasticsearch version] ******************* +2025-11-24T09:53:14.9095873Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.9096528Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.9096861Z +2025-11-24T09:53:14.9097207Z TASK [elasticsearch : Debian - Ensure elasticsearch is installed] ************** +2025-11-24T09:53:14.9448544Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:14.9449265Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:14.9449676Z +2025-11-24T09:53:14.9450077Z TASK [elasticsearch : Debian - Download elasticsearch from url] **************** +2025-11-24T09:53:16.0233598Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:16.0234248Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:16.0234582Z +2025-11-24T09:53:16.0235038Z TASK [elasticsearch : Debian - Ensure elasticsearch is installed from downloaded package] *** +2025-11-24T09:53:19.4043734Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:19.4044424Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:19.4044794Z +2025-11-24T09:53:19.4045135Z TASK [elasticsearch : Include specific Elasticsearch] ************************** +2025-11-24T09:53:19.4459195Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:19.4459970Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:19.4460325Z +2025-11-24T09:53:19.4460666Z TASK [elasticsearch : Create Configuration Directory] ************************** +2025-11-24T09:53:19.7783743Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:19.7784790Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:19.7785107Z +2025-11-24T09:53:19.7785444Z TASK [elasticsearch : Create PID Directory] ************************************ +2025-11-24T09:53:20.1058748Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:20.1059323Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:20.1059638Z +2025-11-24T09:53:20.1059985Z TASK [elasticsearch : Create Others Directories] ******************************* +2025-11-24T09:53:20.3709026Z Still deploying... +2025-11-24T09:53:20.7995308Z ok: [elasticsearch-renewing-bear] => (item=/var/log/elasticsearch) +2025-11-24T09:53:20.7996223Z ok: [elasticsearch-amusing-pup] => (item=/var/log/elasticsearch) +2025-11-24T09:53:20.7997017Z ok: [elasticsearch-renewing-bear] => (item=/var/lib/elasticsearch) +2025-11-24T09:53:20.7997805Z ok: [elasticsearch-amusing-pup] => (item=/var/lib/elasticsearch) +2025-11-24T09:53:20.7998267Z +2025-11-24T09:53:20.7998611Z TASK [elasticsearch : Copy Configuration File] ********************************* +2025-11-24T09:53:21.8869761Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:21.8870530Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:21.8870854Z +2025-11-24T09:53:21.8871176Z TASK [elasticsearch : Copy Default File] *************************************** +2025-11-24T09:53:22.7040521Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:22.7041372Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:22.7041719Z +2025-11-24T09:53:22.7042104Z TASK [elasticsearch : Make sure destination dir exists] ************************ +2025-11-24T09:53:23.1057975Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:23.1058911Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:23.1059301Z +2025-11-24T09:53:23.1059716Z TASK [elasticsearch : Copy specific ElasticSearch Systemd config file] ********* +2025-11-24T09:53:23.8757848Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:23.8758565Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:23.8758882Z +2025-11-24T09:53:23.8759240Z TASK [elasticsearch : Copy jvm.options File] *********************************** +2025-11-24T09:53:24.6825993Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:24.6826779Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:24.6827153Z +2025-11-24T09:53:24.6827534Z TASK [elasticsearch : Copy log4j2.properties File] ***************************** +2025-11-24T09:53:24.7316748Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:24.7317517Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:24.7317875Z +2025-11-24T09:53:24.7318245Z TASK [elasticsearch : include elasticsearch-plugins.yml] *********************** +2025-11-24T09:53:24.7928642Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:24.7929443Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:24.7929792Z +2025-11-24T09:53:24.7930190Z TASK [elasticsearch : include security/elasticsearch-security.yml] ************* +2025-11-24T09:53:24.8243841Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:24.8244594Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:24.8244944Z +2025-11-24T09:53:24.8245288Z TASK [elasticsearch : Set elasticsearch.keystore Permissions] ****************** +2025-11-24T09:53:25.1886768Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:25.1887495Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:25.1887802Z +2025-11-24T09:53:25.1888135Z TASK [elasticsearch : include elasticsearch-ssl.yml] *************************** +2025-11-24T09:53:25.2626251Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:25.2627061Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:25.2627499Z +2025-11-24T09:53:25.2627881Z TASK [elasticsearch : flush handlers] ****************************************** +2025-11-24T09:53:25.2628315Z +2025-11-24T09:53:25.2628621Z TASK [elasticsearch : flush handlers] ****************************************** +2025-11-24T09:53:25.2629050Z +2025-11-24T09:53:25.2629380Z RUNNING HANDLER [elasticsearch : reload systemd configuration] ***************** +2025-11-24T09:53:26.5201990Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:26.5203359Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:26.5203670Z +2025-11-24T09:53:26.5204031Z RUNNING HANDLER [elasticsearch : restart elasticsearch] ************************ +2025-11-24T09:53:28.2413961Z changed: [elasticsearch-renewing-bear] +2025-11-24T09:53:28.2414906Z changed: [elasticsearch-amusing-pup] +2025-11-24T09:53:28.2415289Z +2025-11-24T09:53:28.2415744Z TASK [elasticsearch : Make sure elasticsearch is started] ********************** +2025-11-24T09:53:28.8326947Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:28.8327639Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:28.8327924Z +2025-11-24T09:53:28.8328250Z TASK [elasticsearch : Wait for elasticsearch to startup] *********************** +2025-11-24T09:53:30.3730285Z Still deploying... +2025-11-24T09:53:40.3743295Z Still deploying... +2025-11-24T09:53:45.3567660Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:45.3568370Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:45.3568718Z +2025-11-24T09:53:45.3577488Z TASK [elasticsearch : set fact manage_native_realm to false] ******************* +2025-11-24T09:53:45.4331958Z ok: [elasticsearch-renewing-bear] +2025-11-24T09:53:45.4332526Z ok: [elasticsearch-amusing-pup] +2025-11-24T09:53:45.4333004Z +2025-11-24T09:53:45.4333333Z TASK [elasticsearch : set fact manage_native_realm to true] ******************** +2025-11-24T09:53:45.4712392Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:45.4713342Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:45.4713752Z +2025-11-24T09:53:45.4714298Z TASK [elasticsearch : Wait 15 seconds for the Native Realm to come up] ********* +2025-11-24T09:53:45.5339682Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:45.5340413Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:45.5340810Z +2025-11-24T09:53:45.5341235Z TASK [elasticsearch : activate-license] **************************************** +2025-11-24T09:53:45.5658691Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:45.5659088Z +2025-11-24T09:53:45.5659455Z TASK [elasticsearch : activate-trial] ****************************************** +2025-11-24T09:53:45.5848076Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:45.5848526Z +2025-11-24T09:53:45.5848982Z TASK [elasticsearch : include xpack/security/elasticsearch-security-native.yml] *** +2025-11-24T09:53:45.6323331Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:45.6323746Z +2025-11-24T09:53:45.6324127Z TASK [elasticsearch : include elasticsearch-template.yml] ********************** +2025-11-24T09:53:45.7497196Z skipping: [elasticsearch-renewing-bear] +2025-11-24T09:53:45.7497837Z skipping: [elasticsearch-amusing-pup] +2025-11-24T09:53:45.7498167Z +2025-11-24T09:53:45.7498459Z PLAY RECAP ********************************************************************* +2025-11-24T09:53:45.7499299Z elasticsearch-amusing-pup : ok=37 changed=9 unreachable=0 failed=0 skipped=34 rescued=0 ignored=0 +2025-11-24T09:53:45.7500311Z elasticsearch-renewing-bear : ok=37 changed=9 unreachable=0 failed=0 skipped=31 rescued=0 ignored=0 +2025-11-24T09:53:45.7500892Z +2025-11-24T09:53:45.8545696Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/minio.yml +2025-11-24T09:53:46.3171862Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:53:46.3173375Z -vvvv to see details +2025-11-24T09:53:46.3174403Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:53:46.3175184Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:53:46.4724612Z +2025-11-24T09:53:46.4725431Z PLAY [minio] ******************************************************************* +2025-11-24T09:53:46.4725922Z +2025-11-24T09:53:46.4726289Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:53:49.6538989Z ok: [minio-striking-malamute] +2025-11-24T09:53:49.6539532Z ok: [minio-aware-zebra] +2025-11-24T09:53:49.6539791Z +2025-11-24T09:53:49.6540488Z TASK [ansible-minio : Add sni support to legacy python installations] ********** +2025-11-24T09:53:49.6935130Z skipping: [minio-aware-zebra] +2025-11-24T09:53:49.6935682Z skipping: [minio-striking-malamute] +2025-11-24T09:53:49.6935985Z +2025-11-24T09:53:49.6936287Z TASK [ansible-minio : include_tasks] ******************************************* +2025-11-24T09:53:49.7430836Z included: /wire-server-deploy/ansible/roles-external/ansible-minio/tasks/install-server.yml for minio-aware-zebra, minio-striking-malamute +2025-11-24T09:53:49.7432096Z +2025-11-24T09:53:49.7432521Z TASK [ansible-minio : Determine format files of existing deployments] ********** +2025-11-24T09:53:49.8035022Z ok: [minio-striking-malamute] +2025-11-24T09:53:49.8035702Z ok: [minio-aware-zebra] +2025-11-24T09:53:49.8035959Z +2025-11-24T09:53:49.8036575Z TASK [ansible-minio : Stat format files·] ************************************** +2025-11-24T09:53:50.3760618Z Still deploying... +2025-11-24T09:53:50.5717557Z ok: [minio-aware-zebra] => (item=/var/lib/minio-server1/.minio.sys/format.json) +2025-11-24T09:53:50.5718598Z ok: [minio-striking-malamute] => (item=/var/lib/minio-server1/.minio.sys/format.json) +2025-11-24T09:53:50.5719505Z ok: [minio-aware-zebra] => (item=/var/lib/minio-server2/.minio.sys/format.json) +2025-11-24T09:53:50.5720382Z ok: [minio-striking-malamute] => (item=/var/lib/minio-server2/.minio.sys/format.json) +2025-11-24T09:53:50.5720909Z +2025-11-24T09:53:50.5721303Z TASK [ansible-minio : Read format files] *************************************** +2025-11-24T09:53:50.6346239Z skipping: [minio-aware-zebra] => (item=/var/lib/minio-server1/.minio.sys/format.json) +2025-11-24T09:53:50.6347291Z skipping: [minio-aware-zebra] => (item=/var/lib/minio-server2/.minio.sys/format.json) +2025-11-24T09:53:50.6348085Z skipping: [minio-aware-zebra] +2025-11-24T09:53:50.6348870Z skipping: [minio-striking-malamute] => (item=/var/lib/minio-server1/.minio.sys/format.json) +2025-11-24T09:53:50.6349925Z skipping: [minio-striking-malamute] => (item=/var/lib/minio-server2/.minio.sys/format.json) +2025-11-24T09:53:50.6350766Z skipping: [minio-striking-malamute] +2025-11-24T09:53:50.6351128Z +2025-11-24T09:53:50.6351487Z TASK [ansible-minio : Read format] ********************************************* +2025-11-24T09:53:50.7100088Z ok: [minio-striking-malamute] +2025-11-24T09:53:50.7100689Z ok: [minio-aware-zebra] +2025-11-24T09:53:50.7100992Z +2025-11-24T09:53:50.7101395Z TASK [ansible-minio : Assert xl format] **************************************** +2025-11-24T09:53:50.7373376Z skipping: [minio-aware-zebra] +2025-11-24T09:53:50.7373983Z skipping: [minio-striking-malamute] +2025-11-24T09:53:50.7374310Z +2025-11-24T09:53:50.7374665Z TASK [ansible-minio : Set the Minio server download url to default] ************ +2025-11-24T09:53:50.7965741Z ok: [minio-striking-malamute] +2025-11-24T09:53:50.7966487Z ok: [minio-aware-zebra] +2025-11-24T09:53:50.7966827Z +2025-11-24T09:53:50.7967287Z TASK [ansible-minio : Compose the Minio server download url with release] ****** +2025-11-24T09:53:50.8403311Z skipping: [minio-aware-zebra] +2025-11-24T09:53:50.8403899Z skipping: [minio-striking-malamute] +2025-11-24T09:53:50.8404216Z +2025-11-24T09:53:50.8404549Z TASK [ansible-minio : Override the Minio server download url] ****************** +2025-11-24T09:53:50.9635591Z ok: [minio-aware-zebra] +2025-11-24T09:53:50.9636230Z ok: [minio-striking-malamute] +2025-11-24T09:53:50.9636600Z +2025-11-24T09:53:50.9637431Z TASK [ansible-minio : Get the Minio server checksum for amd64 architecture] **** +2025-11-24T09:53:50.9968134Z skipping: [minio-aware-zebra] +2025-11-24T09:53:50.9968784Z skipping: [minio-striking-malamute] +2025-11-24T09:53:50.9969171Z +2025-11-24T09:53:50.9969585Z TASK [ansible-minio : Override the Minio server checksum] ********************** +2025-11-24T09:53:51.0462457Z ok: [minio-aware-zebra] +2025-11-24T09:53:51.0463362Z ok: [minio-striking-malamute] +2025-11-24T09:53:51.0463703Z +2025-11-24T09:53:51.0464092Z TASK [ansible-minio : Stat existing server binary] ***************************** +2025-11-24T09:53:51.4003730Z ok: [minio-aware-zebra] +2025-11-24T09:53:51.4004260Z ok: [minio-striking-malamute] +2025-11-24T09:53:51.4004550Z +2025-11-24T09:53:51.4004885Z TASK [ansible-minio : Check existing server binary] **************************** +2025-11-24T09:53:51.4407224Z skipping: [minio-aware-zebra] +2025-11-24T09:53:51.4407799Z skipping: [minio-striking-malamute] +2025-11-24T09:53:51.4408112Z +2025-11-24T09:53:51.4408462Z TASK [ansible-minio : Set service name] **************************************** +2025-11-24T09:53:51.4907990Z ok: [minio-striking-malamute] +2025-11-24T09:53:51.6157758Z ok: [minio-aware-zebra] +2025-11-24T09:53:51.6158096Z +2025-11-24T09:53:51.6158480Z TASK [ansible-minio : Override cluster nodes based on given layouts] *********** +2025-11-24T09:53:51.6159169Z ok: [minio-aware-zebra] +2025-11-24T09:53:51.6159638Z ok: [minio-striking-malamute] +2025-11-24T09:53:51.6159922Z +2025-11-24T09:53:51.6160283Z TASK [ansible-minio : Override environment file if layout name is defined] ***** +2025-11-24T09:53:51.6570062Z ok: [minio-aware-zebra] +2025-11-24T09:53:51.6570601Z ok: [minio-striking-malamute] +2025-11-24T09:53:51.6570882Z +2025-11-24T09:53:51.6571227Z TASK [ansible-minio : Override server address if layout name is defined] ******* +2025-11-24T09:53:51.7015339Z ok: [minio-aware-zebra] +2025-11-24T09:53:51.7015884Z ok: [minio-striking-malamute] +2025-11-24T09:53:51.7016170Z +2025-11-24T09:53:51.7016536Z TASK [ansible-minio : Override data directories if layout name is defined] ***** +2025-11-24T09:53:51.7442469Z ok: [minio-aware-zebra] +2025-11-24T09:53:51.7443572Z ok: [minio-striking-malamute] +2025-11-24T09:53:51.7443935Z +2025-11-24T09:53:51.7444346Z TASK [ansible-minio : Check whether minio runs in distributed mode] ************ +2025-11-24T09:53:51.8061937Z ok: [minio-aware-zebra] => { +2025-11-24T09:53:51.8063095Z "changed": false, +2025-11-24T09:53:51.8063666Z "msg": "All assertions passed" +2025-11-24T09:53:51.8064257Z } +2025-11-24T09:53:51.8064757Z ok: [minio-striking-malamute] => { +2025-11-24T09:53:51.8065369Z "changed": false, +2025-11-24T09:53:51.8065902Z "msg": "All assertions passed" +2025-11-24T09:53:51.8066479Z } +2025-11-24T09:53:51.8066719Z +2025-11-24T09:53:51.8067052Z TASK [ansible-minio : Create Minio group] ************************************** +2025-11-24T09:53:52.2710439Z changed: [minio-aware-zebra] +2025-11-24T09:53:52.2711292Z changed: [minio-striking-malamute] +2025-11-24T09:53:52.2711657Z +2025-11-24T09:53:52.2712061Z TASK [ansible-minio : Create Minio user] *************************************** +2025-11-24T09:53:52.8640799Z changed: [minio-striking-malamute] +2025-11-24T09:53:52.8641479Z changed: [minio-aware-zebra] +2025-11-24T09:53:52.8641767Z +2025-11-24T09:53:52.8642108Z TASK [ansible-minio : Create the Minio data storage directories] *************** +2025-11-24T09:53:53.3890617Z changed: [minio-aware-zebra] => (item=/var/lib/minio-server1) +2025-11-24T09:53:53.3891600Z changed: [minio-striking-malamute] => (item=/var/lib/minio-server1) +2025-11-24T09:53:53.3892314Z +2025-11-24T09:53:53.3893023Z TASK [ansible-minio : Download the Minio server] ******************************* +2025-11-24T09:53:55.0549661Z changed: [minio-striking-malamute] +2025-11-24T09:53:55.0550541Z changed: [minio-aware-zebra] +2025-11-24T09:53:55.0550874Z +2025-11-24T09:53:55.0551265Z TASK [ansible-minio : cluster dump] ******************************************** +2025-11-24T09:53:55.1080120Z ok: [minio-aware-zebra] => { +2025-11-24T09:53:55.1082112Z "msg": "using cluster map ['http://10.1.1.6:9000/var/lib/minio-server1', 'http://10.1.1.7:9000/var/lib/minio-server1', 'http://10.1.1.6:9092/var/lib/minio-server2', 'http://10.1.1.7:9092/var/lib/minio-server2']." +2025-11-24T09:53:55.1083576Z } +2025-11-24T09:53:55.1084053Z ok: [minio-striking-malamute] => { +2025-11-24T09:53:55.1085242Z "msg": "using cluster map ['http://10.1.1.6:9000/var/lib/minio-server1', 'http://10.1.1.7:9000/var/lib/minio-server1', 'http://10.1.1.6:9092/var/lib/minio-server2', 'http://10.1.1.7:9092/var/lib/minio-server2']." +2025-11-24T09:53:55.1086501Z } +2025-11-24T09:53:55.1086760Z +2025-11-24T09:53:55.1087142Z TASK [ansible-minio : Generate the Minio server envfile] *********************** +2025-11-24T09:53:55.9595469Z changed: [minio-striking-malamute] +2025-11-24T09:53:55.9596206Z changed: [minio-aware-zebra] +2025-11-24T09:53:55.9596497Z +2025-11-24T09:53:55.9596835Z TASK [ansible-minio : Create the Minio server systemd config] ****************** +2025-11-24T09:53:56.6579656Z changed: [minio-aware-zebra] +2025-11-24T09:53:56.6580525Z changed: [minio-striking-malamute] +2025-11-24T09:53:56.6581299Z +2025-11-24T09:53:56.6581715Z TASK [ansible-minio : Create the Minio server init.d config] ******************* +2025-11-24T09:53:56.6848537Z skipping: [minio-aware-zebra] +2025-11-24T09:53:56.6849315Z skipping: [minio-striking-malamute] +2025-11-24T09:53:56.6849643Z +2025-11-24T09:53:56.6849983Z TASK [ansible-minio : Enable and start the Minio service] ********************** +2025-11-24T09:53:58.0423087Z changed: [minio-aware-zebra] +2025-11-24T09:53:58.0423828Z changed: [minio-striking-malamute] +2025-11-24T09:53:58.0424141Z +2025-11-24T09:53:58.0424458Z TASK [ansible-minio : include_tasks] ******************************************* +2025-11-24T09:53:58.1067685Z included: /wire-server-deploy/ansible/roles-external/ansible-minio/tasks/install-client.yml for minio-aware-zebra, minio-striking-malamute +2025-11-24T09:53:58.1068615Z +2025-11-24T09:53:58.1069052Z TASK [ansible-minio : Set the Minio client download url to default] ************ +2025-11-24T09:53:58.1604667Z ok: [minio-aware-zebra] +2025-11-24T09:53:58.1605499Z ok: [minio-striking-malamute] +2025-11-24T09:53:58.1605882Z +2025-11-24T09:53:58.1606340Z TASK [ansible-minio : Compose the Minio client download url with release] ****** +2025-11-24T09:53:58.1856279Z skipping: [minio-aware-zebra] +2025-11-24T09:53:58.1857055Z skipping: [minio-striking-malamute] +2025-11-24T09:53:58.1857441Z +2025-11-24T09:53:58.1857841Z TASK [ansible-minio : Override the Minio client download url] ****************** +2025-11-24T09:53:58.2585444Z ok: [minio-aware-zebra] +2025-11-24T09:53:58.2586265Z ok: [minio-striking-malamute] +2025-11-24T09:53:58.2586598Z +2025-11-24T09:53:58.2586992Z TASK [ansible-minio : Get the Minio client checksum for amd64 architecture] **** +2025-11-24T09:53:58.2917664Z skipping: [minio-aware-zebra] +2025-11-24T09:53:58.2918545Z skipping: [minio-striking-malamute] +2025-11-24T09:53:58.2918935Z +2025-11-24T09:53:58.2919372Z TASK [ansible-minio : Override the Minio client checksum] ********************* +2025-11-24T09:53:58.3380950Z ok: [minio-aware-zebra] +2025-11-24T09:53:58.3381662Z ok: [minio-striking-malamute] +2025-11-24T09:53:58.3381949Z +2025-11-24T09:53:58.3382283Z TASK [ansible-minio : Stat existing client binary] ***************************** +2025-11-24T09:53:58.6250161Z ok: [minio-striking-malamute] +2025-11-24T09:53:58.6250977Z ok: [minio-aware-zebra] +2025-11-24T09:53:58.6251285Z +2025-11-24T09:53:58.6251691Z TASK [ansible-minio : Check existing client binary] **************************** +2025-11-24T09:53:58.6627378Z skipping: [minio-aware-zebra] +2025-11-24T09:53:58.6628231Z skipping: [minio-striking-malamute] +2025-11-24T09:53:58.6628608Z +2025-11-24T09:53:58.6629025Z TASK [ansible-minio : Download the Minio client] ******************************* +2025-11-24T09:53:59.5180293Z changed: [minio-striking-malamute] +2025-11-24T09:53:59.5181264Z changed: [minio-aware-zebra] +2025-11-24T09:53:59.5181602Z +2025-11-24T09:53:59.5182331Z TASK [ansible-minio : meta] **************************************************** +2025-11-24T09:53:59.5183024Z +2025-11-24T09:53:59.5183322Z TASK [ansible-minio : meta] **************************************************** +2025-11-24T09:53:59.5183727Z +2025-11-24T09:53:59.5184051Z RUNNING HANDLER [ansible-minio : reload minio systemd] ************************* +2025-11-24T09:54:00.3776463Z Still deploying... +2025-11-24T09:54:00.4303634Z ok: [minio-striking-malamute] +2025-11-24T09:54:00.4304503Z ok: [minio-aware-zebra] +2025-11-24T09:54:00.4304813Z +2025-11-24T09:54:00.4305210Z RUNNING HANDLER [ansible-minio : restart minio] ******************************** +2025-11-24T09:54:01.5156290Z changed: [minio-aware-zebra] +2025-11-24T09:54:01.5156984Z changed: [minio-striking-malamute] +2025-11-24T09:54:01.5157316Z +2025-11-24T09:54:01.5157662Z RUNNING HANDLER [ansible-minio : verify minio is responsive] ******************* +2025-11-24T09:54:02.1797799Z ok: [minio-striking-malamute] +2025-11-24T09:54:02.1798681Z ok: [minio-aware-zebra] +2025-11-24T09:54:02.1798988Z +2025-11-24T09:54:02.1799424Z RUNNING HANDLER [ansible-minio : rewrite previous credentials] ***************** +2025-11-24T09:54:02.8728931Z changed: [minio-striking-malamute] +2025-11-24T09:54:02.8729793Z changed: [minio-aware-zebra] +2025-11-24T09:54:02.8730175Z +2025-11-24T09:54:02.8730630Z TASK [ansible-minio : Add sni support to legacy python installations] ********** +2025-11-24T09:54:02.9250201Z skipping: [minio-aware-zebra] +2025-11-24T09:54:02.9251096Z skipping: [minio-striking-malamute] +2025-11-24T09:54:02.9251486Z +2025-11-24T09:54:02.9251878Z TASK [ansible-minio : include_tasks] ******************************************* +2025-11-24T09:54:02.9776113Z included: /wire-server-deploy/ansible/roles-external/ansible-minio/tasks/install-server.yml for minio-aware-zebra, minio-striking-malamute +2025-11-24T09:54:02.9777031Z +2025-11-24T09:54:02.9777463Z TASK [ansible-minio : Determine format files of existing deployments] ********** +2025-11-24T09:54:03.0325543Z ok: [minio-aware-zebra] +2025-11-24T09:54:03.0326213Z ok: [minio-striking-malamute] +2025-11-24T09:54:03.0326504Z +2025-11-24T09:54:03.0327134Z TASK [ansible-minio : Stat format files·] ************************************** +2025-11-24T09:54:03.5588332Z ok: [minio-striking-malamute] => (item=/var/lib/minio-server1/.minio.sys/format.json) +2025-11-24T09:54:03.5589307Z ok: [minio-aware-zebra] => (item=/var/lib/minio-server1/.minio.sys/format.json) +2025-11-24T09:54:03.5590104Z ok: [minio-striking-malamute] => (item=/var/lib/minio-server2/.minio.sys/format.json) +2025-11-24T09:54:03.5590865Z ok: [minio-aware-zebra] => (item=/var/lib/minio-server2/.minio.sys/format.json) +2025-11-24T09:54:03.5591301Z +2025-11-24T09:54:03.5591613Z TASK [ansible-minio : Read format files] *************************************** +2025-11-24T09:54:03.6035230Z skipping: [minio-aware-zebra] => (item=/var/lib/minio-server1/.minio.sys/format.json) +2025-11-24T09:54:03.6036228Z skipping: [minio-aware-zebra] => (item=/var/lib/minio-server2/.minio.sys/format.json) +2025-11-24T09:54:03.6036946Z skipping: [minio-aware-zebra] +2025-11-24T09:54:03.6037620Z skipping: [minio-striking-malamute] => (item=/var/lib/minio-server1/.minio.sys/format.json) +2025-11-24T09:54:03.6038497Z skipping: [minio-striking-malamute] => (item=/var/lib/minio-server2/.minio.sys/format.json) +2025-11-24T09:54:03.6039194Z skipping: [minio-striking-malamute] +2025-11-24T09:54:03.6039498Z +2025-11-24T09:54:03.6039803Z TASK [ansible-minio : Read format] ********************************************* +2025-11-24T09:54:03.6566413Z ok: [minio-striking-malamute] +2025-11-24T09:54:03.6567317Z ok: [minio-aware-zebra] +2025-11-24T09:54:03.6567633Z +2025-11-24T09:54:03.6568057Z TASK [ansible-minio : Assert xl format] **************************************** +2025-11-24T09:54:03.6849448Z skipping: [minio-aware-zebra] +2025-11-24T09:54:03.6850181Z skipping: [minio-striking-malamute] +2025-11-24T09:54:03.6850495Z +2025-11-24T09:54:03.6850818Z TASK [ansible-minio : Set the Minio server download url to default] ************ +2025-11-24T09:54:03.7430358Z ok: [minio-aware-zebra] +2025-11-24T09:54:03.7430972Z ok: [minio-striking-malamute] +2025-11-24T09:54:03.7431284Z +2025-11-24T09:54:03.7431655Z TASK [ansible-minio : Compose the Minio server download url with release] ****** +2025-11-24T09:54:03.7751425Z skipping: [minio-aware-zebra] +2025-11-24T09:54:03.7752127Z skipping: [minio-striking-malamute] +2025-11-24T09:54:03.7752445Z +2025-11-24T09:54:03.7752975Z TASK [ansible-minio : Override the Minio server download url] ****************** +2025-11-24T09:54:03.8313413Z ok: [minio-striking-malamute] +2025-11-24T09:54:03.8314395Z ok: [minio-aware-zebra] +2025-11-24T09:54:03.8314675Z +2025-11-24T09:54:03.8315036Z TASK [ansible-minio : Get the Minio server checksum for amd64 architecture] **** +2025-11-24T09:54:03.8623441Z skipping: [minio-aware-zebra] +2025-11-24T09:54:03.8624133Z skipping: [minio-striking-malamute] +2025-11-24T09:54:03.8624444Z +2025-11-24T09:54:03.8624764Z TASK [ansible-minio : Override the Minio server checksum] ********************** +2025-11-24T09:54:03.9197626Z ok: [minio-aware-zebra] +2025-11-24T09:54:03.9198271Z ok: [minio-striking-malamute] +2025-11-24T09:54:03.9198888Z +2025-11-24T09:54:03.9199239Z TASK [ansible-minio : Stat existing server binary] ***************************** +2025-11-24T09:54:04.6088550Z ok: [minio-striking-malamute] +2025-11-24T09:54:04.6089216Z ok: [minio-aware-zebra] +2025-11-24T09:54:04.6089484Z +2025-11-24T09:54:04.6089824Z TASK [ansible-minio : Check existing server binary] **************************** +2025-11-24T09:54:04.6567849Z ok: [minio-aware-zebra] => { +2025-11-24T09:54:04.6568555Z "changed": false, +2025-11-24T09:54:04.6569055Z "msg": "Installed servery binary may be upgraded from." +2025-11-24T09:54:04.6569610Z } +2025-11-24T09:54:04.6570019Z ok: [minio-striking-malamute] => { +2025-11-24T09:54:04.6570509Z "changed": false, +2025-11-24T09:54:04.6570983Z "msg": "Installed servery binary may be upgraded from." +2025-11-24T09:54:04.6571523Z } +2025-11-24T09:54:04.6571727Z +2025-11-24T09:54:04.6572065Z TASK [ansible-minio : Set service name] **************************************** +2025-11-24T09:54:04.6965651Z ok: [minio-aware-zebra] +2025-11-24T09:54:04.6966433Z ok: [minio-striking-malamute] +2025-11-24T09:54:04.6966771Z +2025-11-24T09:54:04.6967151Z TASK [ansible-minio : Override cluster nodes based on given layouts] *********** +2025-11-24T09:54:04.8336877Z ok: [minio-aware-zebra] +2025-11-24T09:54:04.8337559Z ok: [minio-striking-malamute] +2025-11-24T09:54:04.8337856Z +2025-11-24T09:54:04.8338217Z TASK [ansible-minio : Override environment file if layout name is defined] ***** +2025-11-24T09:54:04.8786584Z ok: [minio-aware-zebra] +2025-11-24T09:54:04.8787247Z ok: [minio-striking-malamute] +2025-11-24T09:54:04.8787533Z +2025-11-24T09:54:04.8787877Z TASK [ansible-minio : Override server address if layout name is defined] ******* +2025-11-24T09:54:04.9300390Z ok: [minio-aware-zebra] +2025-11-24T09:54:04.9301048Z ok: [minio-striking-malamute] +2025-11-24T09:54:04.9301342Z +2025-11-24T09:54:04.9301720Z TASK [ansible-minio : Override data directories if layout name is defined] ***** +2025-11-24T09:54:04.9808957Z ok: [minio-aware-zebra] +2025-11-24T09:54:04.9816828Z ok: [minio-striking-malamute] +2025-11-24T09:54:04.9817198Z +2025-11-24T09:54:04.9817562Z TASK [ansible-minio : Check whether minio runs in distributed mode] ************ +2025-11-24T09:54:05.0343090Z ok: [minio-aware-zebra] => { +2025-11-24T09:54:05.0343761Z "changed": false, +2025-11-24T09:54:05.0344222Z "msg": "All assertions passed" +2025-11-24T09:54:05.0344710Z } +2025-11-24T09:54:05.0345115Z ok: [minio-striking-malamute] => { +2025-11-24T09:54:05.0345627Z "changed": false, +2025-11-24T09:54:05.0346076Z "msg": "All assertions passed" +2025-11-24T09:54:05.0346533Z } +2025-11-24T09:54:05.0346737Z +2025-11-24T09:54:05.0347059Z TASK [ansible-minio : Create Minio group] ************************************** +2025-11-24T09:54:05.2935890Z ok: [minio-striking-malamute] +2025-11-24T09:54:05.2936574Z ok: [minio-aware-zebra] +2025-11-24T09:54:05.2936855Z +2025-11-24T09:54:05.2937594Z TASK [ansible-minio : Create Minio user] *************************************** +2025-11-24T09:54:05.6460328Z ok: [minio-aware-zebra] +2025-11-24T09:54:05.6461126Z ok: [minio-striking-malamute] +2025-11-24T09:54:05.6461453Z +2025-11-24T09:54:05.6461823Z TASK [ansible-minio : Create the Minio data storage directories] *************** +2025-11-24T09:54:05.9848053Z changed: [minio-aware-zebra] => (item=/var/lib/minio-server2) +2025-11-24T09:54:05.9848920Z changed: [minio-striking-malamute] => (item=/var/lib/minio-server2) +2025-11-24T09:54:05.9849349Z +2025-11-24T09:54:05.9850041Z TASK [ansible-minio : Download the Minio server] ******************************* +2025-11-24T09:54:06.7432273Z ok: [minio-aware-zebra] +2025-11-24T09:54:06.7433526Z ok: [minio-striking-malamute] +2025-11-24T09:54:06.7433894Z +2025-11-24T09:54:06.7434280Z TASK [ansible-minio : cluster dump] ******************************************** +2025-11-24T09:54:06.7944434Z ok: [minio-aware-zebra] => { +2025-11-24T09:54:06.7945721Z "msg": "using cluster map ['http://10.1.1.6:9000/var/lib/minio-server1', 'http://10.1.1.7:9000/var/lib/minio-server1', 'http://10.1.1.6:9092/var/lib/minio-server2', 'http://10.1.1.7:9092/var/lib/minio-server2']." +2025-11-24T09:54:06.7947100Z } +2025-11-24T09:54:06.7947494Z ok: [minio-striking-malamute] => { +2025-11-24T09:54:06.7948460Z "msg": "using cluster map ['http://10.1.1.6:9000/var/lib/minio-server1', 'http://10.1.1.7:9000/var/lib/minio-server1', 'http://10.1.1.6:9092/var/lib/minio-server2', 'http://10.1.1.7:9092/var/lib/minio-server2']." +2025-11-24T09:54:06.7949396Z } +2025-11-24T09:54:06.7949586Z +2025-11-24T09:54:06.7949902Z TASK [ansible-minio : Generate the Minio server envfile] *********************** +2025-11-24T09:54:07.5320537Z changed: [minio-striking-malamute] +2025-11-24T09:54:07.5321210Z changed: [minio-aware-zebra] +2025-11-24T09:54:07.5321488Z +2025-11-24T09:54:07.5321864Z TASK [ansible-minio : Create the Minio server systemd config] ****************** +2025-11-24T09:54:08.2477337Z changed: [minio-striking-malamute] +2025-11-24T09:54:08.2478036Z changed: [minio-aware-zebra] +2025-11-24T09:54:08.2478333Z +2025-11-24T09:54:08.2478694Z TASK [ansible-minio : Create the Minio server init.d config] ******************* +2025-11-24T09:54:08.2835235Z skipping: [minio-aware-zebra] +2025-11-24T09:54:08.2836140Z skipping: [minio-striking-malamute] +2025-11-24T09:54:08.2836528Z +2025-11-24T09:54:08.2836925Z TASK [ansible-minio : Enable and start the Minio service] ********************** +2025-11-24T09:54:09.2627220Z changed: [minio-striking-malamute] +2025-11-24T09:54:09.2628124Z changed: [minio-aware-zebra] +2025-11-24T09:54:09.2628463Z +2025-11-24T09:54:09.2628843Z TASK [ansible-minio : include_tasks] ******************************************* +2025-11-24T09:54:09.3579620Z included: /wire-server-deploy/ansible/roles-external/ansible-minio/tasks/install-client.yml for minio-aware-zebra, minio-striking-malamute +2025-11-24T09:54:09.3580571Z +2025-11-24T09:54:09.3581028Z TASK [ansible-minio : Set the Minio client download url to default] ************ +2025-11-24T09:54:09.4046644Z ok: [minio-aware-zebra] +2025-11-24T09:54:09.4047402Z ok: [minio-striking-malamute] +2025-11-24T09:54:09.4047762Z +2025-11-24T09:54:09.4048174Z TASK [ansible-minio : Compose the Minio client download url with release] ****** +2025-11-24T09:54:09.4338002Z skipping: [minio-aware-zebra] +2025-11-24T09:54:09.4338693Z skipping: [minio-striking-malamute] +2025-11-24T09:54:09.4339016Z +2025-11-24T09:54:09.4339361Z TASK [ansible-minio : Override the Minio client download url] ****************** +2025-11-24T09:54:09.4901294Z ok: [minio-striking-malamute] +2025-11-24T09:54:09.4901986Z ok: [minio-aware-zebra] +2025-11-24T09:54:09.4902261Z +2025-11-24T09:54:09.4902868Z TASK [ansible-minio : Get the Minio client checksum for amd64 architecture] **** +2025-11-24T09:54:09.5196152Z skipping: [minio-aware-zebra] +2025-11-24T09:54:09.5196910Z skipping: [minio-striking-malamute] +2025-11-24T09:54:09.5197247Z +2025-11-24T09:54:09.5198048Z TASK [ansible-minio : Override the Minio client checksum] ********************* +2025-11-24T09:54:09.5612893Z ok: [minio-aware-zebra] +2025-11-24T09:54:09.5613591Z ok: [minio-striking-malamute] +2025-11-24T09:54:09.5613931Z +2025-11-24T09:54:09.5614271Z TASK [ansible-minio : Stat existing client binary] ***************************** +2025-11-24T09:54:09.9602011Z ok: [minio-aware-zebra] +2025-11-24T09:54:09.9602846Z ok: [minio-striking-malamute] +2025-11-24T09:54:09.9603159Z +2025-11-24T09:54:09.9603507Z TASK [ansible-minio : Check existing client binary] **************************** +2025-11-24T09:54:10.0300719Z ok: [minio-aware-zebra] => { +2025-11-24T09:54:10.0301445Z "changed": false, +2025-11-24T09:54:10.0301975Z "msg": "Installed client binary may be upgraded from." +2025-11-24T09:54:10.0302569Z } +2025-11-24T09:54:10.0303224Z ok: [minio-striking-malamute] => { +2025-11-24T09:54:10.0303729Z "changed": false, +2025-11-24T09:54:10.0304234Z "msg": "Installed client binary may be upgraded from." +2025-11-24T09:54:10.0304803Z } +2025-11-24T09:54:10.0305018Z +2025-11-24T09:54:10.0305426Z TASK [ansible-minio : Download the Minio client] ******************************* +2025-11-24T09:54:10.3792085Z Still deploying... +2025-11-24T09:54:10.6306986Z ok: [minio-aware-zebra] +2025-11-24T09:54:10.6307703Z ok: [minio-striking-malamute] +2025-11-24T09:54:10.6308028Z +2025-11-24T09:54:10.6308371Z TASK [ansible-minio : meta] **************************************************** +2025-11-24T09:54:10.6308838Z +2025-11-24T09:54:10.6309170Z TASK [ansible-minio : meta] **************************************************** +2025-11-24T09:54:10.6309643Z +2025-11-24T09:54:10.6310023Z RUNNING HANDLER [ansible-minio : reload minio systemd] ************************* +2025-11-24T09:54:11.6653784Z ok: [minio-aware-zebra] +2025-11-24T09:54:11.6654448Z ok: [minio-striking-malamute] +2025-11-24T09:54:11.6654757Z +2025-11-24T09:54:11.6655119Z RUNNING HANDLER [ansible-minio : restart minio] ******************************** +2025-11-24T09:54:12.7369685Z changed: [minio-aware-zebra] +2025-11-24T09:54:12.7370305Z changed: [minio-striking-malamute] +2025-11-24T09:54:12.7370620Z +2025-11-24T09:54:13.2451202Z RUNNING HANDLER [ansible-minio : verify minio is responsive] ******************* +2025-11-24T09:54:13.2452082Z ok: [minio-striking-malamute] +2025-11-24T09:54:13.2452963Z ok: [minio-aware-zebra] +2025-11-24T09:54:13.2453306Z +2025-11-24T09:54:13.2453727Z RUNNING HANDLER [ansible-minio : rewrite previous credentials] ***************** +2025-11-24T09:54:13.9667687Z changed: [minio-aware-zebra] +2025-11-24T09:54:13.9668270Z changed: [minio-striking-malamute] +2025-11-24T09:54:13.9668606Z +2025-11-24T09:54:13.9668924Z TASK [check which buckets exists] ********************************************** +2025-11-24T09:54:14.8747797Z changed: [minio-aware-zebra] +2025-11-24T09:54:14.8748172Z +2025-11-24T09:54:14.8748473Z TASK [create bucket] *********************************************************** +2025-11-24T09:54:16.7180776Z changed: [minio-aware-zebra] => (item=dummy-bucket) +2025-11-24T09:54:16.7181495Z changed: [minio-aware-zebra] => (item=assets) +2025-11-24T09:54:16.7182054Z changed: [minio-aware-zebra] => (item=public) +2025-11-24T09:54:16.7182819Z changed: [minio-aware-zebra] => (item=k8ssandra-backups) +2025-11-24T09:54:16.7183211Z +2025-11-24T09:54:16.7183540Z TASK [add 'local' mc config alias with correct credentials] ******************** +2025-11-24T09:54:17.1987595Z changed: [minio-aware-zebra] +2025-11-24T09:54:17.1988469Z changed: [minio-striking-malamute] +2025-11-24T09:54:17.1988844Z +2025-11-24T09:54:17.1989237Z TASK [make the 'public' bucket world-accessible] ******************************* +2025-11-24T09:54:17.5624829Z changed: [minio-aware-zebra] +2025-11-24T09:54:17.5625308Z +2025-11-24T09:54:17.5625659Z TASK [Create cargohold policy file] ******************************************** +2025-11-24T09:54:18.2056974Z changed: [minio-aware-zebra] +2025-11-24T09:54:18.2057452Z +2025-11-24T09:54:18.2057814Z TASK [Add cargohold policy to MinIO] ******************************************* +2025-11-24T09:54:18.5845217Z changed: [minio-aware-zebra] +2025-11-24T09:54:18.5845628Z +2025-11-24T09:54:18.5846024Z TASK [Generate random password for cargohold user] ***************************** +2025-11-24T09:54:18.6254106Z ok: [minio-aware-zebra] +2025-11-24T09:54:18.6254602Z +2025-11-24T09:54:18.6254938Z TASK [Create cargohold IAM user] *********************************************** +2025-11-24T09:54:19.4292892Z changed: [minio-aware-zebra] +2025-11-24T09:54:19.4293512Z +2025-11-24T09:54:19.4293926Z TASK [Attach policy to cargohold user] ***************************************** +2025-11-24T09:54:20.3816820Z Still deploying... +2025-11-24T09:54:20.7038934Z changed: [minio-aware-zebra] +2025-11-24T09:54:20.7039450Z +2025-11-24T09:54:20.7039842Z TASK [Create service account for cargohold with specific access key] *********** +2025-11-24T09:54:21.7999166Z changed: [minio-aware-zebra] +2025-11-24T09:54:21.7999649Z +2025-11-24T09:54:21.8000036Z TASK [Verify cargohold service account] **************************************** +2025-11-24T09:54:22.4281844Z changed: [minio-aware-zebra] +2025-11-24T09:54:22.4282461Z +2025-11-24T09:54:22.4283530Z TASK [List cargohold service accounts] ***************************************** +2025-11-24T09:54:22.4734152Z ok: [minio-aware-zebra] => { +2025-11-24T09:54:22.4735229Z "cargohold_svcacct_list.stdout": " Access Key | Expiry \nJLT27ronrGCtJFFz6jRc | no-expiry " +2025-11-24T09:54:22.4736053Z } +2025-11-24T09:54:22.4736483Z ok: [minio-striking-malamute] => { +2025-11-24T09:54:22.4737333Z "cargohold_svcacct_list.stdout": " Access Key | Expiry \nJLT27ronrGCtJFFz6jRc | no-expiry " +2025-11-24T09:54:22.4738139Z } +2025-11-24T09:54:22.4738354Z +2025-11-24T09:54:22.4738702Z TASK [remove unneeded config aliases added by default] ************************* +2025-11-24T09:54:23.7487374Z changed: [minio-aware-zebra] => (item=gcs) +2025-11-24T09:54:23.7488145Z changed: [minio-striking-malamute] => (item=gcs) +2025-11-24T09:54:23.7488759Z changed: [minio-aware-zebra] => (item=s3) +2025-11-24T09:54:23.7489348Z changed: [minio-striking-malamute] => (item=s3) +2025-11-24T09:54:23.7489958Z changed: [minio-aware-zebra] => (item=play) +2025-11-24T09:54:23.7490545Z changed: [minio-striking-malamute] => (item=play) +2025-11-24T09:54:23.7490903Z +2025-11-24T09:54:23.7491171Z PLAY [minio] ******************************************************************* +2025-11-24T09:54:23.7491560Z +2025-11-24T09:54:23.7491908Z TASK [minio-static-files : create deeplink template files] ********************* +2025-11-24T09:54:25.0954552Z changed: [minio-aware-zebra] => (item=deeplink.html) +2025-11-24T09:54:25.0955278Z changed: [minio-aware-zebra] => (item=deeplink.json) +2025-11-24T09:54:25.0955706Z +2025-11-24T09:54:25.0956070Z TASK [minio-static-files : Add deeplink files to minio] ************************ +2025-11-24T09:54:25.9706974Z changed: [minio-aware-zebra] => (item=deeplink.html) +2025-11-24T09:54:25.9707834Z changed: [minio-aware-zebra] => (item=deeplink.json) +2025-11-24T09:54:25.9708311Z +2025-11-24T09:54:25.9708645Z TASK [minio-static-files : copy blacklist files] ******************************* +2025-11-24T09:54:27.2769080Z changed: [minio-aware-zebra] => (item=android.json) +2025-11-24T09:54:27.2769722Z changed: [minio-aware-zebra] => (item=ios.json) +2025-11-24T09:54:27.2770052Z +2025-11-24T09:54:27.2770387Z TASK [minio-static-files : Add blacklist files to minio] *********************** +2025-11-24T09:54:28.2298782Z changed: [minio-aware-zebra] => (item=android.json) +2025-11-24T09:54:28.2299438Z changed: [minio-aware-zebra] => (item=ios.json) +2025-11-24T09:54:28.2299773Z +2025-11-24T09:54:28.2300026Z PLAY RECAP ********************************************************************* +2025-11-24T09:54:28.2300810Z minio-aware-zebra : ok=84 changed=31 unreachable=0 failed=0 skipped=18 rescued=0 ignored=0 +2025-11-24T09:54:28.2301929Z minio-striking-malamute : ok=70 changed=18 unreachable=0 failed=0 skipped=18 rescued=0 ignored=0 +2025-11-24T09:54:28.2303239Z +2025-11-24T09:54:28.3552422Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/postgresql-deploy.yml +2025-11-24T09:54:28.8326069Z [WARNING]: Invalid characters were found in group names but not replaced, use +2025-11-24T09:54:28.8326798Z -vvvv to see details +2025-11-24T09:54:28.8333979Z [WARNING]: Found both group and host with same name: assethost +2025-11-24T09:54:28.8334670Z [WARNING]: Found both group and host with same name: adminhost +2025-11-24T09:54:29.0824891Z +2025-11-24T09:54:29.0826106Z PLAY [Clean previous deployment state] ***************************************** +2025-11-24T09:54:29.0826694Z +2025-11-24T09:54:29.0827043Z TASK [Gathering Facts] ********************************************************* +2025-11-24T09:54:30.3826425Z Still deploying... +2025-11-24T09:54:32.5769603Z ok: [postgresql3] +2025-11-24T09:54:32.5770103Z ok: [postgresql1] +2025-11-24T09:54:32.5770529Z ok: [postgresql2] +2025-11-24T09:54:32.5770764Z +2025-11-24T09:54:32.5771119Z TASK [Check if PostgreSQL is installed] **************************************** +2025-11-24T09:54:33.0685673Z ok: [postgresql3] +2025-11-24T09:54:33.0686167Z ok: [postgresql1] +2025-11-24T09:54:33.0686594Z ok: [postgresql2] +2025-11-24T09:54:33.0686830Z +2025-11-24T09:54:33.0687176Z TASK [Check if PostgreSQL data directory exists] ******************************* +2025-11-24T09:54:33.4675631Z ok: [postgresql1] +2025-11-24T09:54:33.4676194Z ok: [postgresql3] +2025-11-24T09:54:33.4676683Z ok: [postgresql2] +2025-11-24T09:54:33.4676981Z +2025-11-24T09:54:33.4677383Z TASK [Check if repmgr configuration exists] ************************************ +2025-11-24T09:54:33.8022447Z ok: [postgresql3] +2025-11-24T09:54:33.8023163Z ok: [postgresql1] +2025-11-24T09:54:33.8023589Z ok: [postgresql2] +2025-11-24T09:54:33.8023819Z +2025-11-24T09:54:33.8024150Z TASK [Determine if this is a fresh installation] ******************************* +2025-11-24T09:54:33.8763735Z ok: [postgresql1] +2025-11-24T09:54:33.8764377Z ok: [postgresql2] +2025-11-24T09:54:33.8764879Z ok: [postgresql3] +2025-11-24T09:54:33.8765160Z +2025-11-24T09:54:33.8765549Z TASK [Display installation type] *********************************************** +2025-11-24T09:54:33.9447923Z ok: [postgresql1] => { +2025-11-24T09:54:33.9448645Z "msg": "postgresql1: Fresh installation detected - skipping most cleanup tasks\n" +2025-11-24T09:54:33.9449333Z } +2025-11-24T09:54:33.9449726Z ok: [postgresql3] => { +2025-11-24T09:54:33.9450324Z "msg": "postgresql3: Fresh installation detected - skipping most cleanup tasks\n" +2025-11-24T09:54:33.9450968Z } +2025-11-24T09:54:33.9451350Z ok: [postgresql2] => { +2025-11-24T09:54:33.9451928Z "msg": "postgresql2: Fresh installation detected - skipping most cleanup tasks\n" +2025-11-24T09:54:33.9452546Z } +2025-11-24T09:54:33.9453006Z +2025-11-24T09:54:33.9453342Z TASK [Ensure basic directories exist for fresh install] ************************ +2025-11-24T09:54:33.9732838Z skipping: [postgresql1] => (item=/etc/repmgr/17-main) +2025-11-24T09:54:33.9733677Z skipping: [postgresql1] => (item=/opt/repmgr/scripts) +2025-11-24T09:54:33.9734424Z skipping: [postgresql1] => (item=/var/log/postgresql) +2025-11-24T09:54:33.9735110Z skipping: [postgresql2] => (item=/etc/repmgr/17-main) +2025-11-24T09:54:33.9735770Z skipping: [postgresql2] => (item=/opt/repmgr/scripts) +2025-11-24T09:54:33.9736427Z skipping: [postgresql2] => (item=/var/log/postgresql) +2025-11-24T09:54:33.9994867Z skipping: [postgresql1] +2025-11-24T09:54:33.9995406Z skipping: [postgresql2] +2025-11-24T09:54:33.9995924Z skipping: [postgresql3] => (item=/etc/repmgr/17-main) +2025-11-24T09:54:33.9996540Z skipping: [postgresql3] => (item=/opt/repmgr/scripts) +2025-11-24T09:54:33.9997133Z skipping: [postgresql3] => (item=/var/log/postgresql) +2025-11-24T09:54:33.9997682Z skipping: [postgresql3] +2025-11-24T09:54:33.9997932Z +2025-11-24T09:54:33.9998254Z TASK [Skip cleanup message for fresh install] ********************************** +2025-11-24T09:54:34.0526858Z ok: [postgresql1] => { +2025-11-24T09:54:34.0527883Z "msg": "Fresh installation - cleanup tasks skipped" +2025-11-24T09:54:34.0528440Z } +2025-11-24T09:54:34.0528828Z ok: [postgresql2] => { +2025-11-24T09:54:34.0529307Z "msg": "Fresh installation - cleanup tasks skipped" +2025-11-24T09:54:34.0529823Z } +2025-11-24T09:54:34.0530210Z ok: [postgresql3] => { +2025-11-24T09:54:34.0530664Z "msg": "Fresh installation - cleanup tasks skipped" +2025-11-24T09:54:34.0531166Z } +2025-11-24T09:54:34.0531368Z +2025-11-24T09:54:34.0531697Z TASK [Check if PostgreSQL service exists] ************************************** +2025-11-24T09:54:34.0697309Z skipping: [postgresql1] +2025-11-24T09:54:34.0855655Z skipping: [postgresql2] +2025-11-24T09:54:34.0856253Z skipping: [postgresql3] +2025-11-24T09:54:34.0856566Z +2025-11-24T09:54:34.0856961Z TASK [Check if repmgr database exists] ***************************************** +2025-11-24T09:54:34.1298794Z skipping: [postgresql1] +2025-11-24T09:54:34.1299394Z skipping: [postgresql2] +2025-11-24T09:54:34.1299955Z skipping: [postgresql3] +2025-11-24T09:54:34.1300244Z +2025-11-24T09:54:34.1300980Z TASK [Drop repmgr database completely (if exists)] ***************************** +2025-11-24T09:54:34.1726095Z skipping: [postgresql1] +2025-11-24T09:54:34.1726615Z skipping: [postgresql2] +2025-11-24T09:54:34.1727040Z skipping: [postgresql3] +2025-11-24T09:54:34.1727275Z +2025-11-24T09:54:34.1727599Z TASK [Stop any existing split-brain monitoring timer] ************************** +2025-11-24T09:54:34.1949672Z skipping: [postgresql1] +2025-11-24T09:54:34.2134713Z skipping: [postgresql2] +2025-11-24T09:54:34.2135317Z skipping: [postgresql3] +2025-11-24T09:54:34.2135617Z +2025-11-24T09:54:34.2136020Z TASK [Stop any existing split-brain monitoring service] ************************ +2025-11-24T09:54:34.2490723Z skipping: [postgresql1] +2025-11-24T09:54:34.2491212Z skipping: [postgresql2] +2025-11-24T09:54:34.2491643Z skipping: [postgresql3] +2025-11-24T09:54:34.2491877Z +2025-11-24T09:54:34.2492208Z TASK [Stop any existing repmgrd service] *************************************** +2025-11-24T09:54:34.2862259Z skipping: [postgresql1] +2025-11-24T09:54:34.2862895Z skipping: [postgresql2] +2025-11-24T09:54:34.2863340Z skipping: [postgresql3] +2025-11-24T09:54:34.2863583Z +2025-11-24T09:54:34.2863933Z TASK [Unmask PostgreSQL services from previous deployments] ******************** +2025-11-24T09:54:34.3043861Z skipping: [postgresql1] +2025-11-24T09:54:34.3218624Z skipping: [postgresql2] +2025-11-24T09:54:34.3219218Z skipping: [postgresql3] +2025-11-24T09:54:34.3219523Z +2025-11-24T09:54:34.3219950Z TASK [Stop PostgreSQL service for clean state] ********************************* +2025-11-24T09:54:34.3544139Z skipping: [postgresql1] +2025-11-24T09:54:34.3550478Z skipping: [postgresql2] +2025-11-24T09:54:34.3550954Z skipping: [postgresql3] +2025-11-24T09:54:34.3551213Z +2025-11-24T09:54:34.3551570Z TASK [Remove repmgr configuration files, scripts, and systemd units] *********** +2025-11-24T09:54:34.3732553Z skipping: [postgresql1] => (item=/etc/repmgr/17-main/repmgr.conf) +2025-11-24T09:54:34.3733531Z skipping: [postgresql1] => (item=/etc/repmgr/17) +2025-11-24T09:54:34.3734246Z skipping: [postgresql1] => (item=/etc/repmgr/17-main) +2025-11-24T09:54:34.4281193Z skipping: [postgresql1] => (item=/var/lib/postgresql/17/main/recovery.conf) +2025-11-24T09:54:34.4283130Z skipping: [postgresql2] => (item=/etc/repmgr/17-main/repmgr.conf) +2025-11-24T09:54:34.4284015Z skipping: [postgresql1] => (item=/var/lib/postgresql/17/main/standby.signal) +2025-11-24T09:54:34.4284982Z skipping: [postgresql2] => (item=/etc/repmgr/17) +2025-11-24T09:54:34.4286088Z skipping: [postgresql1] => (item=/opt/repmgr/scripts) +2025-11-24T09:54:34.4286785Z skipping: [postgresql2] => (item=/etc/repmgr/17-main) +2025-11-24T09:54:34.4287485Z skipping: [postgresql1] => (item=/usr/local/bin/repmgr) +2025-11-24T09:54:34.4288142Z skipping: [postgresql2] => (item=/var/lib/postgresql/17/main/recovery.conf) +2025-11-24T09:54:34.4288796Z skipping: [postgresql1] => (item=/usr/local/bin/repmgrd) +2025-11-24T09:54:34.4289806Z skipping: [postgresql2] => (item=/var/lib/postgresql/17/main/standby.signal) +2025-11-24T09:54:34.4290523Z skipping: [postgresql1] => (item=/usr/local/bin/detect_rogue_primary.sh) +2025-11-24T09:54:34.4291157Z skipping: [postgresql2] => (item=/opt/repmgr/scripts) +2025-11-24T09:54:34.4291828Z skipping: [postgresql1] => (item=/etc/systemd/system/detect-rogue-primary.service) +2025-11-24T09:54:34.4292546Z skipping: [postgresql3] => (item=/etc/repmgr/17-main/repmgr.conf) +2025-11-24T09:54:34.4293291Z skipping: [postgresql2] => (item=/usr/local/bin/repmgr) +2025-11-24T09:54:34.4299739Z skipping: [postgresql1] => (item=/etc/systemd/system/detect-rogue-primary.timer) +2025-11-24T09:54:34.4300426Z skipping: [postgresql3] => (item=/etc/repmgr/17) +2025-11-24T09:54:34.4300998Z skipping: [postgresql2] => (item=/usr/local/bin/repmgrd) +2025-11-24T09:54:34.4301648Z skipping: [postgresql1] => (item=/etc/systemd/system/repmgrd@.service) +2025-11-24T09:54:34.4302366Z skipping: [postgresql2] => (item=/usr/local/bin/detect_rogue_primary.sh) +2025-11-24T09:54:34.4303134Z skipping: [postgresql3] => (item=/etc/repmgr/17-main) +2025-11-24T09:54:34.4303883Z skipping: [postgresql1] => (item=/etc/systemd/system/repmgrd@17-main.service) +2025-11-24T09:54:34.4304597Z skipping: [postgresql2] => (item=/etc/systemd/system/detect-rogue-primary.service) +2025-11-24T09:54:34.4305318Z skipping: [postgresql3] => (item=/var/lib/postgresql/17/main/recovery.conf) +2025-11-24T09:54:34.4305989Z skipping: [postgresql1] => (item=/etc/systemd/system/repmgrd@17.service) +2025-11-24T09:54:34.4306687Z skipping: [postgresql2] => (item=/etc/systemd/system/detect-rogue-primary.timer) +2025-11-24T09:54:34.4307423Z skipping: [postgresql1] => (item=/etc/sudoers.d/postgres-postgresql-management) +2025-11-24T09:54:34.4308131Z skipping: [postgresql3] => (item=/var/lib/postgresql/17/main/standby.signal) +2025-11-24T09:54:34.4308799Z skipping: [postgresql2] => (item=/etc/systemd/system/repmgrd@.service) +2025-11-24T09:54:34.4309484Z skipping: [postgresql1] => (item=/etc/sudoers.d/postgres-postgresql-service) +2025-11-24T09:54:34.4310114Z skipping: [postgresql3] => (item=/opt/repmgr/scripts) +2025-11-24T09:54:34.4310738Z skipping: [postgresql2] => (item=/etc/systemd/system/repmgrd@17-main.service) +2025-11-24T09:54:34.4311412Z skipping: [postgresql2] => (item=/etc/systemd/system/repmgrd@17.service) +2025-11-24T09:54:34.4312030Z skipping: [postgresql3] => (item=/usr/local/bin/repmgr) +2025-11-24T09:54:34.4312555Z skipping: [postgresql1] +2025-11-24T09:54:34.4313202Z skipping: [postgresql2] => (item=/etc/sudoers.d/postgres-postgresql-management) +2025-11-24T09:54:34.4313846Z skipping: [postgresql3] => (item=/usr/local/bin/repmgrd) +2025-11-24T09:54:34.4314478Z skipping: [postgresql3] => (item=/usr/local/bin/detect_rogue_primary.sh) +2025-11-24T09:54:34.4315157Z skipping: [postgresql2] => (item=/etc/sudoers.d/postgres-postgresql-service) +2025-11-24T09:54:34.4315731Z skipping: [postgresql2] +2025-11-24T09:54:34.4316284Z skipping: [postgresql3] => (item=/etc/systemd/system/detect-rogue-primary.service) +2025-11-24T09:54:34.4317016Z skipping: [postgresql3] => (item=/etc/systemd/system/detect-rogue-primary.timer) +2025-11-24T09:54:34.4317706Z skipping: [postgresql3] => (item=/etc/systemd/system/repmgrd@.service) +2025-11-24T09:54:34.4318373Z skipping: [postgresql3] => (item=/etc/systemd/system/repmgrd@17-main.service) +2025-11-24T09:54:34.4319038Z skipping: [postgresql3] => (item=/etc/systemd/system/repmgrd@17.service) +2025-11-24T09:54:34.4319722Z skipping: [postgresql3] => (item=/etc/sudoers.d/postgres-postgresql-management) +2025-11-24T09:54:34.4320427Z skipping: [postgresql3] => (item=/etc/sudoers.d/postgres-postgresql-service) +2025-11-24T09:54:34.4321001Z skipping: [postgresql3] +2025-11-24T09:54:34.4321234Z +2025-11-24T09:54:34.4321532Z TASK [Find rogue split-brain service files] ************************************ +2025-11-24T09:54:34.4713867Z skipping: [postgresql1] +2025-11-24T09:54:34.4714465Z skipping: [postgresql2] +2025-11-24T09:54:34.4715360Z skipping: [postgresql3] +2025-11-24T09:54:34.4715660Z +2025-11-24T09:54:34.4716059Z TASK [Remove rogue split-brain service files] ********************************** +2025-11-24T09:54:34.5075854Z skipping: [postgresql1] +2025-11-24T09:54:34.5076462Z skipping: [postgresql2] +2025-11-24T09:54:34.5076985Z skipping: [postgresql3] +2025-11-24T09:54:34.5077263Z +2025-11-24T09:54:34.5077652Z TASK [Reload systemd daemon after cleanup] ************************************* +2025-11-24T09:54:35.8783670Z ok: [postgresql1] +2025-11-24T09:54:35.8784256Z ok: [postgresql3] +2025-11-24T09:54:35.8785124Z ok: [postgresql2] +2025-11-24T09:54:35.8785390Z +2025-11-24T09:54:35.8785762Z TASK [Display cleanup status] ************************************************** +2025-11-24T09:54:36.0408330Z ok: [postgresql1] => { +2025-11-24T09:54:36.0409995Z "msg": "Cleanup completed for postgresql1:\n- Installation type: Fresh\n- PostgreSQL installed: False\n- PostgreSQL data exists: False\n- repmgr config exists: False\n- Action taken: Minimal setup (directories created)\n- Ready for deployment: ✅\n" +2025-11-24T09:54:36.0411214Z } +2025-11-24T09:54:36.0411929Z ok: [postgresql2] => { +2025-11-24T09:54:36.0413535Z "msg": "Cleanup completed for postgresql2:\n- Installation type: Fresh\n- PostgreSQL installed: False\n- PostgreSQL data exists: False\n- repmgr config exists: False\n- Action taken: Minimal setup (directories created)\n- Ready for deployment: ✅\n" +2025-11-24T09:54:36.0414754Z } +2025-11-24T09:54:36.0415140Z ok: [postgresql3] => { +2025-11-24T09:54:36.0416454Z "msg": "Cleanup completed for postgresql3:\n- Installation type: Fresh\n- PostgreSQL installed: False\n- PostgreSQL data exists: False\n- repmgr config exists: False\n- Action taken: Minimal setup (directories created)\n- Ready for deployment: ✅\n" +2025-11-24T09:54:36.0417638Z } +2025-11-24T09:54:36.0417834Z +2025-11-24T09:54:36.0418158Z PLAY [Install PostgreSQL packages] ********************************************* +2025-11-24T09:54:36.0418556Z +2025-11-24T09:54:36.0418857Z TASK [Install system dependencies] ********************************************* +2025-11-24T09:54:40.3840680Z Still deploying... +2025-11-24T09:54:50.3862516Z Still deploying... +2025-11-24T09:54:52.1953923Z changed: [postgresql1] +2025-11-24T09:54:52.1954528Z changed: [postgresql3] +2025-11-24T09:54:52.1955044Z changed: [postgresql2] +2025-11-24T09:54:52.1955321Z +2025-11-24T09:54:52.1955725Z TASK [Install PostgreSQL from repository] ************************************** +2025-11-24T09:54:52.2435769Z skipping: [postgresql1] +2025-11-24T09:54:52.2436274Z skipping: [postgresql2] +2025-11-24T09:54:52.2436730Z skipping: [postgresql3] +2025-11-24T09:54:52.2436971Z +2025-11-24T09:54:52.2437321Z TASK [Check PostgreSQL package installation status] **************************** +2025-11-24T09:54:54.6826999Z ok: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:54:54.6829860Z ok: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:54:54.6831895Z ok: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:54:54.6834274Z ok: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:54:54.6836417Z ok: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:54:54.6838710Z ok: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:54:54.6840371Z ok: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:54:54.6841978Z ok: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:54:54.6843970Z ok: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:54:54.6845558Z ok: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:54:54.6847225Z ok: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:54:54.6848788Z ok: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:54:54.6850350Z ok: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:54:54.6851927Z ok: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:54:54.6853694Z ok: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:54:54.6855218Z ok: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:54:54.6856698Z ok: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:54:54.6858163Z ok: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:54:54.6859680Z ok: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:54:54.6861275Z ok: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:54:54.6863234Z ok: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:54:54.6864147Z +2025-11-24T09:54:54.6864487Z TASK [Identify PostgreSQL packages to install] ********************************* +2025-11-24T09:54:54.7998827Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.285767', 'end': '2025-11-24 09:54:52.305303', 'delta': '0:00:00.019536', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8007047Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.579203', 'end': '2025-11-24 09:54:52.596455', 'delta': '0:00:00.017252', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8014225Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.860341', 'end': '2025-11-24 09:54:52.884707', 'delta': '0:00:00.024366', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8020842Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:51.892663', 'end': '2025-11-24 09:54:51.920881', 'delta': '0:00:00.028218', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8027422Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.137564', 'end': '2025-11-24 09:54:53.164730', 'delta': '0:00:00.027166', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8033938Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.721110', 'end': '2025-11-24 09:54:52.744068', 'delta': '0:00:00.022958', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8040563Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.240555', 'end': '2025-11-24 09:54:52.260025', 'delta': '0:00:00.019470', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8047360Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.440088', 'end': '2025-11-24 09:54:53.465967', 'delta': '0:00:00.025879', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8871782Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.009700', 'end': '2025-11-24 09:54:53.034784', 'delta': '0:00:00.025084', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8879994Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.572823', 'end': '2025-11-24 09:54:52.596153', 'delta': '0:00:00.023330', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8887370Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.728342', 'end': '2025-11-24 09:54:53.749075', 'delta': '0:00:00.020733', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8894172Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.285533', 'end': '2025-11-24 09:54:53.301438', 'delta': '0:00:00.015905', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8900903Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.890574', 'end': '2025-11-24 09:54:52.909289', 'delta': '0:00:00.018715', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8907726Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.989651', 'end': '2025-11-24 09:54:54.004455', 'delta': '0:00:00.014804', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8914441Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.547236', 'end': '2025-11-24 09:54:53.570848', 'delta': '0:00:00.023612', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8921153Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.229245', 'end': '2025-11-24 09:54:53.246569', 'delta': '0:00:00.017324', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8927895Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.846879', 'end': '2025-11-24 09:54:53.870220', 'delta': '0:00:00.023341', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8934622Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.520719', 'end': '2025-11-24 09:54:53.538707', 'delta': '0:00:00.017988', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8941080Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:54.121488', 'end': '2025-11-24 09:54:54.138283', 'delta': '0:00:00.016795', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8947613Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.819967', 'end': '2025-11-24 09:54:53.846954', 'delta': '0:00:00.026987', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8954362Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:54.424390', 'end': '2025-11-24 09:54:54.449504', 'delta': '0:00:00.025114', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:54:54.8957846Z +2025-11-24T09:54:54.8958162Z TASK [Display PostgreSQL installation plan] ************************************ +2025-11-24T09:54:54.9444525Z ok: [postgresql2] => { +2025-11-24T09:54:54.9445653Z "msg": "PostgreSQL Installation Plan:\n- Total packages: 7\n- Already installed: 0\n- To install: 7\n" +2025-11-24T09:54:54.9446527Z } +2025-11-24T09:54:54.9447029Z ok: [postgresql1] => { +2025-11-24T09:54:54.9447850Z "msg": "PostgreSQL Installation Plan:\n- Total packages: 7\n- Already installed: 0\n- To install: 7\n" +2025-11-24T09:54:54.9449010Z } +2025-11-24T09:54:54.9449495Z ok: [postgresql3] => { +2025-11-24T09:54:54.9450298Z "msg": "PostgreSQL Installation Plan:\n- Total packages: 7\n- Already installed: 0\n- To install: 7\n" +2025-11-24T09:54:54.9451141Z } +2025-11-24T09:54:54.9451387Z +2025-11-24T09:54:54.9451783Z TASK [Download PostgreSQL packages] ******************************************** +2025-11-24T09:54:58.5938301Z changed: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:54:58.5940527Z changed: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:54:58.5942386Z changed: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:54:58.5944442Z changed: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:54:58.5946437Z changed: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:54:58.5948413Z changed: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:54:58.5950360Z changed: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:54:58.5952192Z changed: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:54:58.5953934Z changed: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:54:58.5955934Z changed: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:54:58.5957554Z changed: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:54:58.5959119Z changed: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:54:58.5960821Z changed: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:54:58.5962525Z changed: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:54:58.5964342Z changed: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:54:58.5965910Z changed: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:54:58.5967440Z changed: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:54:58.5968962Z changed: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:54:58.5970531Z changed: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:54:58.5972133Z changed: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:54:58.5973820Z changed: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:54:58.5974661Z +2025-11-24T09:54:58.5974967Z TASK [Install PostgreSQL packages] ********************************************* +2025-11-24T09:55:00.3881826Z Still deploying... +2025-11-24T09:55:10.3906636Z Still deploying... +2025-11-24T09:55:18.8142228Z changed: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:18.8144574Z changed: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:18.8146137Z changed: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:18.8148149Z changed: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:18.8149898Z changed: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:18.8151598Z changed: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:18.8153537Z changed: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:18.8155182Z changed: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:18.8156964Z changed: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:18.8158584Z changed: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:18.8160167Z changed: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:18.8161765Z changed: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:18.8163510Z changed: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:18.8165137Z changed: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:18.8166750Z changed: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:18.8168310Z changed: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:18.8169825Z changed: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:18.8171388Z changed: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:18.8173224Z changed: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:18.8174784Z changed: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:18.8176332Z changed: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:18.8177252Z +2025-11-24T09:55:18.8177560Z TASK [Clean up PostgreSQL package files] *************************************** +2025-11-24T09:55:20.3930436Z Still deploying... +2025-11-24T09:55:21.1160671Z changed: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:21.1162450Z changed: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:21.1164702Z changed: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:21.1166534Z changed: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:21.1168552Z changed: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:21.1170536Z changed: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:21.1172493Z changed: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:21.1174569Z changed: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:21.1176211Z changed: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:21.1178261Z changed: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:21.1180221Z changed: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:21.1182107Z changed: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:21.1184615Z changed: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:21.1186327Z changed: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:21.1187966Z changed: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:21.1189784Z changed: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:21.1191336Z changed: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:21.1193093Z changed: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:21.1194678Z changed: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:21.1196279Z changed: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:21.1197875Z changed: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:21.1198725Z +2025-11-24T09:55:21.1199032Z TASK [Install repmgr from repository] ****************************************** +2025-11-24T09:55:21.1524055Z skipping: [postgresql1] +2025-11-24T09:55:21.1524596Z skipping: [postgresql2] +2025-11-24T09:55:21.1525045Z skipping: [postgresql3] +2025-11-24T09:55:21.1525290Z +2025-11-24T09:55:21.1525621Z TASK [Get repmgr packages in correct order] ************************************ +2025-11-24T09:55:21.2875144Z skipping: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:21.2877230Z skipping: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:21.2878861Z skipping: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:21.2880406Z skipping: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:21.2882023Z skipping: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) +2025-11-24T09:55:21.2884181Z skipping: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:21.2885876Z skipping: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:21.2887576Z skipping: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) +2025-11-24T09:55:21.2895796Z skipping: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:21.2897529Z skipping: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:21.2899366Z skipping: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) +2025-11-24T09:55:21.2901012Z skipping: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:21.2902599Z skipping: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:21.2904553Z skipping: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) +2025-11-24T09:55:21.2906205Z skipping: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:21.2907863Z skipping: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:21.2909445Z skipping: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:21.2911061Z skipping: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) +2025-11-24T09:55:21.2913263Z skipping: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:21.2915066Z skipping: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) +2025-11-24T09:55:21.2917053Z skipping: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) +2025-11-24T09:55:21.2918832Z ok: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:21.2920579Z ok: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:21.2922314Z ok: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:21.2924093Z ok: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:21.2925725Z ok: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:21.2927506Z ok: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:21.2929142Z ok: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:21.2930693Z ok: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:21.2932356Z ok: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:21.2933401Z +2025-11-24T09:55:21.2933717Z TASK [Sort repmgr packages by dependency order] ******************************** +2025-11-24T09:55:21.3569340Z ok: [postgresql1] +2025-11-24T09:55:21.3569862Z ok: [postgresql2] +2025-11-24T09:55:21.3570339Z ok: [postgresql3] +2025-11-24T09:55:21.3570582Z +2025-11-24T09:55:21.3570982Z TASK [Check repmgr package installation status] ******************************** +2025-11-24T09:55:22.2976951Z ok: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:22.2979096Z ok: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:22.2981089Z ok: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:22.2983450Z ok: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:22.2986029Z ok: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:22.2987800Z ok: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:22.2989401Z ok: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:22.2990965Z ok: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:22.2992412Z ok: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:22.2993300Z +2025-11-24T09:55:22.2993710Z TASK [Identify repmgr packages to install] ************************************* +2025-11-24T09:55:22.3736880Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:20.823059', 'end': '2025-11-24 09:55:20.842773', 'delta': '0:00:00.019714', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3744877Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.272862', 'end': '2025-11-24 09:55:21.289981', 'delta': '0:00:00.017119', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3752271Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.705346', 'end': '2025-11-24 09:55:21.729952', 'delta': '0:00:00.024606', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3759110Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.137986', 'end': '2025-11-24 09:55:21.157380', 'delta': '0:00:00.019394', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3765981Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.970597', 'end': '2025-11-24 09:55:21.994682', 'delta': '0:00:00.024085', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3772987Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.544582', 'end': '2025-11-24 09:55:21.566854', 'delta': '0:00:00.022272', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3779617Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.444336', 'end': '2025-11-24 09:55:21.468284', 'delta': '0:00:00.023948', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3786297Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:22.236246', 'end': '2025-11-24 09:55:22.250477', 'delta': '0:00:00.014231', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3833043Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.832235', 'end': '2025-11-24 09:55:21.851157', 'delta': '0:00:00.018922', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}, 'ansible_loop_var': 'item'}) +2025-11-24T09:55:22.3837233Z +2025-11-24T09:55:22.3837622Z TASK [Display repmgr installation plan] **************************************** +2025-11-24T09:55:22.4525337Z ok: [postgresql1] => { +2025-11-24T09:55:22.4527455Z "msg": "repmgr Installation Plan:\n- Installation order: repmgr-common → postgresql-17-repmgr → repmgr\n- To install: repmgr-common, postgresql-17-repmgr, repmgr\n" +2025-11-24T09:55:22.4528860Z } +2025-11-24T09:55:22.4529776Z ok: [postgresql2] => { +2025-11-24T09:55:22.4530897Z "msg": "repmgr Installation Plan:\n- Installation order: repmgr-common → postgresql-17-repmgr → repmgr\n- To install: repmgr-common, postgresql-17-repmgr, repmgr\n" +2025-11-24T09:55:22.4531986Z } +2025-11-24T09:55:22.4532385Z ok: [postgresql3] => { +2025-11-24T09:55:22.4533724Z "msg": "repmgr Installation Plan:\n- Installation order: repmgr-common → postgresql-17-repmgr → repmgr\n- To install: repmgr-common, postgresql-17-repmgr, repmgr\n" +2025-11-24T09:55:22.4534767Z } +2025-11-24T09:55:22.4534971Z +2025-11-24T09:55:22.4535301Z TASK [Download repmgr packages] ************************************************ +2025-11-24T09:55:23.8343155Z changed: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:23.8345102Z changed: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:23.8347088Z changed: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:23.8348770Z changed: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:23.8350612Z changed: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:23.8352391Z changed: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:23.8354208Z changed: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:23.8355708Z changed: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:23.8357174Z changed: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:23.8357965Z +2025-11-24T09:55:23.8358290Z TASK [Install repmgr packages in dependency order] ***************************** +2025-11-24T09:55:27.0639361Z changed: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:27.0641548Z changed: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:27.0643965Z changed: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:27.0646548Z changed: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:27.0648570Z changed: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:27.0650546Z changed: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:27.0652503Z changed: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:27.0654380Z changed: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:27.0656185Z changed: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:27.0657003Z +2025-11-24T09:55:27.0657318Z TASK [Clean up repmgr package files] ******************************************* +2025-11-24T09:55:28.0907753Z changed: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:28.0909946Z changed: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:28.0911967Z changed: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) +2025-11-24T09:55:28.0914329Z changed: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:28.0916470Z changed: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:28.0918469Z changed: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) +2025-11-24T09:55:28.0920353Z changed: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:28.0922067Z changed: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:28.0924046Z changed: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) +2025-11-24T09:55:28.0924961Z +2025-11-24T09:55:28.0925717Z TASK [Create repmgr directory structure] *************************************** +2025-11-24T09:55:29.3225206Z changed: [postgresql1] => (item={'path': '/etc/repmgr/17', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3226494Z changed: [postgresql3] => (item={'path': '/etc/repmgr/17', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3227604Z changed: [postgresql2] => (item={'path': '/etc/repmgr/17', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3229063Z changed: [postgresql1] => (item={'path': '/opt/repmgr/scripts', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3230075Z changed: [postgresql3] => (item={'path': '/opt/repmgr/scripts', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3231062Z changed: [postgresql2] => (item={'path': '/opt/repmgr/scripts', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3232054Z changed: [postgresql1] => (item={'path': '/var/log/postgresql', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3233392Z changed: [postgresql3] => (item={'path': '/var/log/postgresql', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3234370Z changed: [postgresql2] => (item={'path': '/var/log/postgresql', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) +2025-11-24T09:55:29.3235452Z changed: [postgresql1] => (item={'path': '/etc/systemd/system/postgresql@17-main.service.d', 'owner': 'root', 'group': 'root', 'mode': '0755'}) +2025-11-24T09:55:29.3236642Z changed: [postgresql3] => (item={'path': '/etc/systemd/system/postgresql@17-main.service.d', 'owner': 'root', 'group': 'root', 'mode': '0755'}) +2025-11-24T09:55:29.3237796Z changed: [postgresql2] => (item={'path': '/etc/systemd/system/postgresql@17-main.service.d', 'owner': 'root', 'group': 'root', 'mode': '0755'}) +2025-11-24T09:55:29.3238424Z +2025-11-24T09:55:29.3238753Z TASK [Deploy repmgrd systemd service template] ********************************* +2025-11-24T09:55:30.2385229Z changed: [postgresql1] +2025-11-24T09:55:30.2385851Z changed: [postgresql2] +2025-11-24T09:55:30.2386377Z changed: [postgresql3] +2025-11-24T09:55:30.2386683Z +2025-11-24T09:55:30.2387074Z TASK [Check PostgreSQL packages] *********************************************** +2025-11-24T09:55:30.3928514Z Still deploying... +2025-11-24T09:55:30.5866926Z ok: [postgresql2] +2025-11-24T09:55:30.5867522Z ok: [postgresql3] +2025-11-24T09:55:30.5868020Z ok: [postgresql1] +2025-11-24T09:55:30.5868325Z +2025-11-24T09:55:30.5868705Z TASK [Check repmgr packages] *************************************************** +2025-11-24T09:55:31.0789755Z ok: [postgresql3] +2025-11-24T09:55:31.0790463Z ok: [postgresql1] +2025-11-24T09:55:31.0790994Z ok: [postgresql2] +2025-11-24T09:55:31.0791241Z +2025-11-24T09:55:31.0791596Z TASK [Check PostgreSQL binaries] *********************************************** +2025-11-24T09:55:31.4467771Z ok: [postgresql3] +2025-11-24T09:55:31.4468363Z ok: [postgresql1] +2025-11-24T09:55:31.4468792Z ok: [postgresql2] +2025-11-24T09:55:31.4469021Z +2025-11-24T09:55:31.4469342Z TASK [Check repmgr binary] ***************************************************** +2025-11-24T09:55:31.8633587Z ok: [postgresql1] +2025-11-24T09:55:31.8634138Z ok: [postgresql3] +2025-11-24T09:55:31.8634622Z ok: [postgresql2] +2025-11-24T09:55:31.8634887Z +2025-11-24T09:55:31.8635286Z TASK [Display installation summary] ******************************************** +2025-11-24T09:55:32.0298825Z ok: [postgresql1] => { +2025-11-24T09:55:32.0302958Z "msg": "===== INSTALLATION COMPLETE =====\n\nPostgreSQL Packages:\n=== PostgreSQL Packages ===\npostgresql-17: ii\npostgresql-17-repmgr: ii\n\nrepmgr Packages:\n=== repmgr Packages ===\npostgresql-17-repmgr: ii\nrepmgr: ii\nrepmgr-common: ii\n\nBinaries:\n=== PostgreSQL Binaries ===\n-rwxr-xr-x 1 root root 11056864 May 6 2025 /usr/lib/postgresql/17/bin/postgres\npostgres: FOUND\n-rwxr-xr-x 1 root root 786008 May 6 2025 /usr/lib/postgresql/17/bin/psql\npsql: FOUND\n=== repmgr Binary ===\nlrwxrwxrwx 1 root root 37 Jan 2 2025 /usr/bin/repmgr -> ../share/postgresql-common/pg_wrapper\nrepmgr: FOUND\n\nNote: Version checks will work after cluster configuration.\nThis is an installation-only playbook; cluster setup comes next.\n" +2025-11-24T09:55:32.0306404Z } +2025-11-24T09:55:32.0306866Z ok: [postgresql2] => { +2025-11-24T09:55:32.0309893Z "msg": "===== INSTALLATION COMPLETE =====\n\nPostgreSQL Packages:\n=== PostgreSQL Packages ===\npostgresql-17: ii\npostgresql-17-repmgr: ii\n\nrepmgr Packages:\n=== repmgr Packages ===\npostgresql-17-repmgr: ii\nrepmgr: ii\nrepmgr-common: ii\n\nBinaries:\n=== PostgreSQL Binaries ===\n-rwxr-xr-x 1 root root 11056864 May 6 2025 /usr/lib/postgresql/17/bin/postgres\npostgres: FOUND\n-rwxr-xr-x 1 root root 786008 May 6 2025 /usr/lib/postgresql/17/bin/psql\npsql: FOUND\n=== repmgr Binary ===\nlrwxrwxrwx 1 root root 37 Jan 2 2025 /usr/bin/repmgr -> ../share/postgresql-common/pg_wrapper\nrepmgr: FOUND\n\nNote: Version checks will work after cluster configuration.\nThis is an installation-only playbook; cluster setup comes next.\n" +2025-11-24T09:55:32.0312878Z } +2025-11-24T09:55:32.0313269Z ok: [postgresql3] => { +2025-11-24T09:55:32.0315957Z "msg": "===== INSTALLATION COMPLETE =====\n\nPostgreSQL Packages:\n=== PostgreSQL Packages ===\npostgresql-17: ii\npostgresql-17-repmgr: ii\n\nrepmgr Packages:\n=== repmgr Packages ===\npostgresql-17-repmgr: ii\nrepmgr: ii\nrepmgr-common: ii\n\nBinaries:\n=== PostgreSQL Binaries ===\n-rwxr-xr-x 1 root root 11056864 May 6 2025 /usr/lib/postgresql/17/bin/postgres\npostgres: FOUND\n-rwxr-xr-x 1 root root 786008 May 6 2025 /usr/lib/postgresql/17/bin/psql\npsql: FOUND\n=== repmgr Binary ===\nlrwxrwxrwx 1 root root 37 Jan 2 2025 /usr/bin/repmgr -> ../share/postgresql-common/pg_wrapper\nrepmgr: FOUND\n\nNote: Version checks will work after cluster configuration.\nThis is an installation-only playbook; cluster setup comes next.\n" +2025-11-24T09:55:32.0318670Z } +2025-11-24T09:55:32.0318872Z +2025-11-24T09:55:32.0321214Z PLAY [Manage PostgreSQL passwords in Kubernetes Secrets] *********************** +2025-11-24T09:55:32.0321672Z +2025-11-24T09:55:32.0321983Z TASK [Validate kubectl is accessible] ****************************************** +2025-11-24T09:55:40.3945332Z Still deploying... +2025-11-24T09:55:50.4006075Z Still deploying... +2025-11-24T09:56:00.3978037Z Still deploying... +2025-11-24T09:56:10.3992015Z Still deploying... +2025-11-24T09:56:20.4004007Z Still deploying... +2025-11-24T09:56:30.4021996Z Still deploying... +2025-11-24T09:56:40.4042931Z Still deploying... +2025-11-24T09:56:50.4056863Z Still deploying... +2025-11-24T09:57:00.4072308Z Still deploying... +2025-11-24T09:57:10.4086268Z Still deploying... +2025-11-24T09:57:20.4115119Z Still deploying... +2025-11-24T09:57:30.4119578Z Still deploying... +2025-11-24T09:57:40.4134334Z Still deploying... +2025-11-24T09:57:50.4149920Z Still deploying... +2025-11-24T09:58:00.4168354Z Still deploying... +2025-11-24T09:58:02.5136716Z ok: [postgresql1 -> localhost] +2025-11-24T09:58:02.5138234Z +2025-11-24T09:58:02.5138995Z TASK [Fail if kubectl is not accessible] *************************************** +2025-11-24T09:58:02.5459762Z fatal: [postgresql1 -> localhost]: FAILED! => {"changed": false, "msg": "ERROR: Cannot access Kubernetes cluster!\n\nPlease ensure:\n1. kubectl is installed and accessible\n2. KUBECONFIG is set: export KUBECONFIG=/path/to/kubeconfig\n3. kubectl can connect: kubectl cluster-info\n\nCurrent KUBECONFIG: /wire-server-deploy/ansible/inventory/offline/artifacts/admin.conf\nError: E1124 09:56:02.388577 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nE1124 09:56:32.389206 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nE1124 09:57:02.389849 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nE1124 09:57:32.391151 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nE1124 09:58:02.392592 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nUnable to connect to the server: dial tcp 10.1.1.254:6443: i/o timeout\n"} +2025-11-24T09:58:02.5464855Z +2025-11-24T09:58:02.5465131Z NO MORE HOSTS LEFT ************************************************************* +2025-11-24T09:58:02.5465530Z +2025-11-24T09:58:02.5465783Z PLAY RECAP ********************************************************************* +2025-11-24T09:58:02.5466540Z postgresql1 : ok=32 changed=9 unreachable=0 failed=1 skipped=14 rescued=0 ignored=0 +2025-11-24T09:58:02.5467436Z postgresql2 : ok=31 changed=9 unreachable=0 failed=0 skipped=14 rescued=0 ignored=0 +2025-11-24T09:58:02.5468467Z postgresql3 : ok=31 changed=9 unreachable=0 failed=0 skipped=14 rescued=0 ignored=0 +2025-11-24T09:58:02.5468958Z +2025-11-24T09:58:11.0535265Z random_pet.adminhost: Refreshing state... [id=relative-moray] +2025-11-24T09:58:11.0538166Z tls_private_key.admin: Refreshing state... [id=9a5802b646d18231eda9b090be5144478e6bd632] +2025-11-24T09:58:11.0539979Z random_pet.minio[1]: Refreshing state... [id=striking-malamute] +2025-11-24T09:58:11.0543540Z random_pet.cassandra[2]: Refreshing state... [id=improved-teal] +2025-11-24T09:58:11.0553665Z random_pet.postgresql[0]: Refreshing state... [id=glorious-calf] +2025-11-24T09:58:11.0557319Z random_pet.assethost: Refreshing state... [id=settling-barnacle] +2025-11-24T09:58:11.0569860Z random_pet.postgresql[1]: Refreshing state... [id=hardy-glider] +2025-11-24T09:58:11.0605675Z random_pet.cassandra[1]: Refreshing state... [id=noted-manatee] +2025-11-24T09:58:11.0607461Z random_pet.cassandra[0]: Refreshing state... [id=tops-fowl] +2025-11-24T09:58:11.0611000Z random_pet.minio[0]: Refreshing state... [id=aware-zebra] +2025-11-24T09:58:11.0685130Z random_pet.postgresql[2]: Refreshing state... [id=sound-marten] +2025-11-24T09:58:11.0696573Z random_pet.kubenode[0]: Refreshing state... [id=super-marlin] +2025-11-24T09:58:11.0730426Z random_pet.elasticsearch[1]: Refreshing state... [id=renewing-bear] +2025-11-24T09:58:11.0732076Z random_pet.elasticsearch[0]: Refreshing state... [id=amusing-pup] +2025-11-24T09:58:11.0777050Z data.hcloud_datacenters.available: Reading... +2025-11-24T09:58:11.0811912Z random_pet.kubenode[1]: Refreshing state... [id=teaching-gobbler] +2025-11-24T09:58:11.0820787Z random_pet.kubenode[2]: Refreshing state... [id=renewed-asp] +2025-11-24T09:58:11.0849228Z data.hcloud_server_types.available: Reading... +2025-11-24T09:58:11.0863798Z hcloud_ssh_key.adminhost: Refreshing state... [id=104061702] +2025-11-24T09:58:11.6096396Z data.hcloud_datacenters.available: Read complete after 1s [id=5dd4ebdac62609c834f7768f02286b798bd82a38] +2025-11-24T09:58:11.7338545Z data.hcloud_server_types.available: Read complete after 1s [id=166277662d9b7990b1711b6545d691c4fc52eb3f] +2025-11-24T09:58:11.7412866Z null_resource.deployment_info: Refreshing state... [id=6097919591817865521] +2025-11-24T09:58:11.7463501Z random_pet.main: Refreshing state... [id=guided-octopus] +2025-11-24T09:58:11.7521449Z hcloud_network.main: Refreshing state... [id=11673781] +2025-11-24T09:58:11.8811966Z hcloud_network_subnet.main: Refreshing state... [id=11673781-10.1.1.0/24] +2025-11-24T09:58:12.0124178Z hcloud_server.assethost: Refreshing state... [id=113859098] +2025-11-24T09:58:12.0190915Z hcloud_server.adminhost: Refreshing state... [id=113859097] +2025-11-24T09:58:12.0192602Z hcloud_server.cassandra[2]: Refreshing state... [id=113859135] +2025-11-24T09:58:12.0194254Z hcloud_server.postgresql[0]: Refreshing state... [id=113859092] +2025-11-24T09:58:12.0195858Z hcloud_server.elasticsearch[1]: Refreshing state... [id=113859143] +2025-11-24T09:58:12.0197374Z hcloud_server.cassandra[0]: Refreshing state... [id=113859095] +2025-11-24T09:58:12.0198907Z hcloud_server.elasticsearch[0]: Refreshing state... [id=113859093] +2025-11-24T09:58:12.0200608Z hcloud_server.postgresql[2]: Refreshing state... [id=113859145] +2025-11-24T09:58:12.0215501Z hcloud_server.cassandra[1]: Refreshing state... [id=113859144] +2025-11-24T09:58:12.0221939Z hcloud_server.postgresql[1]: Refreshing state... [id=113859131] +2025-11-24T09:58:12.1632318Z hcloud_server.kubenode[0]: Refreshing state... [id=113859101] +2025-11-24T09:58:12.1767625Z hcloud_server.kubenode[2]: Refreshing state... [id=113859096] +2025-11-24T09:58:12.1805649Z hcloud_server.kubenode[1]: Refreshing state... [id=113859100] +2025-11-24T09:58:12.1815792Z hcloud_server.minio[0]: Refreshing state... [id=113859094] +2025-11-24T09:58:12.1826406Z hcloud_server.minio[1]: Refreshing state... [id=113859099] +2025-11-24T09:58:12.5365814Z +2025-11-24T09:58:12.5366965Z Terraform used the selected providers to generate the following execution +2025-11-24T09:58:12.5368564Z plan. Resource actions are indicated with the following symbols: +2025-11-24T09:58:12.5369818Z - destroy +2025-11-24T09:58:12.5370237Z +2025-11-24T09:58:12.5370609Z Terraform will perform the following actions: +2025-11-24T09:58:12.5371166Z +2025-11-24T09:58:12.5371704Z  # hcloud_network.main will be destroyed +2025-11-24T09:58:12.5373072Z  - resource "hcloud_network" "main" { +2025-11-24T09:58:12.5374242Z - delete_protection = false -> null +2025-11-24T09:58:12.5375452Z - expose_routes_to_vswitch = false -> null +2025-11-24T09:58:12.5376590Z - id = "11673781" -> null +2025-11-24T09:58:12.5377721Z - ip_range = "10.1.0.0/16" -> null +2025-11-24T09:58:12.5378858Z - labels = {} -> null +2025-11-24T09:58:12.5380058Z - name = "main-guided-octopus" -> null +2025-11-24T09:58:12.5380996Z } +2025-11-24T09:58:12.5381343Z +2025-11-24T09:58:12.5381938Z  # hcloud_network_subnet.main will be destroyed +2025-11-24T09:58:12.5383246Z  - resource "hcloud_network_subnet" "main" { +2025-11-24T09:58:12.5384361Z - gateway = "10.1.0.1" -> null +2025-11-24T09:58:12.5385481Z - id = "11673781-10.1.1.0/24" -> null +2025-11-24T09:58:12.5386592Z - ip_range = "10.1.1.0/24" -> null +2025-11-24T09:58:12.5387683Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5388789Z - network_zone = "eu-central" -> null +2025-11-24T09:58:12.5389880Z - type = "cloud" -> null +2025-11-24T09:58:12.5390732Z } +2025-11-24T09:58:12.5391162Z +2025-11-24T09:58:12.5391738Z  # hcloud_server.adminhost will be destroyed +2025-11-24T09:58:12.5393156Z  - resource "hcloud_server" "adminhost" { +2025-11-24T09:58:12.5394340Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5395516Z - backups = false -> null +2025-11-24T09:58:12.5397125Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5398356Z - delete_protection = false -> null +2025-11-24T09:58:12.5399520Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5400635Z - id = "113859097" -> null +2025-11-24T09:58:12.5401780Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5403157Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5404562Z - ipv4_address = "23.88.33.8" -> null +2025-11-24T09:58:12.5408665Z - ipv6_address = "2a01:4f8:c17:1e5a::1" -> null +2025-11-24T09:58:12.5410134Z - ipv6_network = "2a01:4f8:c17:1e5a::/64" -> null +2025-11-24T09:58:12.5411338Z - keep_disk = false -> null +2025-11-24T09:58:12.5412497Z - labels = {} -> null +2025-11-24T09:58:12.5414064Z - location = "fsn1" -> null +2025-11-24T09:58:12.5415316Z - name = "adminhost-relative-moray" -> null +2025-11-24T09:58:12.5416418Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5417590Z - primary_disk_size = 80 -> null +2025-11-24T09:58:12.5418763Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5419906Z - server_type = "cx33" -> null +2025-11-24T09:58:12.5421036Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5422086Z - ssh_keys = [ +2025-11-24T09:58:12.5423287Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5424230Z ] -> null +2025-11-24T09:58:12.5425190Z - status = "running" -> null +2025-11-24T09:58:12.5426210Z # (1 unchanged attribute hidden) +2025-11-24T09:58:12.5426747Z +2025-11-24T09:58:12.5427122Z - network { +2025-11-24T09:58:12.5427996Z - alias_ips = [] -> null +2025-11-24T09:58:12.5429048Z - ip = "10.1.1.10" -> null +2025-11-24T09:58:12.5430164Z - mac_address = "86:00:00:90:80:81" -> null +2025-11-24T09:58:12.5431266Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5432183Z } +2025-11-24T09:58:12.5432944Z } +2025-11-24T09:58:12.5433273Z +2025-11-24T09:58:12.5433796Z  # hcloud_server.assethost will be destroyed +2025-11-24T09:58:12.5434895Z  - resource "hcloud_server" "assethost" { +2025-11-24T09:58:12.5436023Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5437185Z - backups = false -> null +2025-11-24T09:58:12.5438357Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5439529Z - delete_protection = false -> null +2025-11-24T09:58:12.5440671Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5441785Z - id = "113859098" -> null +2025-11-24T09:58:12.5443098Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5444287Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5445434Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5446830Z - keep_disk = false -> null +2025-11-24T09:58:12.5447954Z - labels = {} -> null +2025-11-24T09:58:12.5449023Z - location = "fsn1" -> null +2025-11-24T09:58:12.5450248Z - name = "assethost-settling-barnacle" -> null +2025-11-24T09:58:12.5451399Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5452486Z - primary_disk_size = 80 -> null +2025-11-24T09:58:12.5453940Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5455091Z - server_type = "cx33" -> null +2025-11-24T09:58:12.5456241Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5457267Z - ssh_keys = [ +2025-11-24T09:58:12.5458197Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5459320Z ] -> null +2025-11-24T09:58:12.5460264Z - status = "running" -> null +2025-11-24T09:58:12.5461315Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5461852Z +2025-11-24T09:58:12.5462217Z - network { +2025-11-24T09:58:12.5463342Z - alias_ips = [] -> null +2025-11-24T09:58:12.5464396Z - ip = "10.1.1.1" -> null +2025-11-24T09:58:12.5465520Z - mac_address = "86:00:00:90:80:8a" -> null +2025-11-24T09:58:12.5466594Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5467447Z } +2025-11-24T09:58:12.5467783Z +2025-11-24T09:58:12.5468165Z - public_net { +2025-11-24T09:58:12.5469053Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5470088Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5471111Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5472134Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5473142Z } +2025-11-24T09:58:12.5473762Z } +2025-11-24T09:58:12.5474092Z +2025-11-24T09:58:12.5474676Z  # hcloud_server.cassandra[0] will be destroyed +2025-11-24T09:58:12.5475780Z  - resource "hcloud_server" "cassandra" { +2025-11-24T09:58:12.5476908Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5478051Z - backups = false -> null +2025-11-24T09:58:12.5479211Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5480376Z - delete_protection = false -> null +2025-11-24T09:58:12.5481505Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5482611Z - id = "113859095" -> null +2025-11-24T09:58:12.5483892Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5485086Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5486235Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5487361Z - keep_disk = false -> null +2025-11-24T09:58:12.5488457Z - labels = {} -> null +2025-11-24T09:58:12.5489572Z - location = "fsn1" -> null +2025-11-24T09:58:12.5490765Z - name = "cassandra-tops-fowl" -> null +2025-11-24T09:58:12.5492204Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5493519Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5494631Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5495784Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5496933Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5497957Z - ssh_keys = [ +2025-11-24T09:58:12.5499045Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5499946Z ] -> null +2025-11-24T09:58:12.5500892Z - status = "running" -> null +2025-11-24T09:58:12.5501928Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5502477Z +2025-11-24T09:58:12.5503108Z - network { +2025-11-24T09:58:12.5504016Z - alias_ips = [] -> null +2025-11-24T09:58:12.5505213Z - ip = "10.1.1.5" -> null +2025-11-24T09:58:12.5506277Z - mac_address = "86:00:00:90:80:86" -> null +2025-11-24T09:58:12.5507364Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5508222Z } +2025-11-24T09:58:12.5508564Z +2025-11-24T09:58:12.5508947Z - public_net { +2025-11-24T09:58:12.5509864Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5510915Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5511923Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5513120Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5513954Z } +2025-11-24T09:58:12.5514572Z } +2025-11-24T09:58:12.5514903Z +2025-11-24T09:58:12.5515484Z  # hcloud_server.cassandra[1] will be destroyed +2025-11-24T09:58:12.5516523Z  - resource "hcloud_server" "cassandra" { +2025-11-24T09:58:12.5517653Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5518802Z - backups = false -> null +2025-11-24T09:58:12.5519978Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5521145Z - delete_protection = false -> null +2025-11-24T09:58:12.5522006Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5522835Z - id = "113859144" -> null +2025-11-24T09:58:12.5523547Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5524235Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5524915Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5525568Z - keep_disk = false -> null +2025-11-24T09:58:12.5526202Z - labels = {} -> null +2025-11-24T09:58:12.5526843Z - location = "fsn1" -> null +2025-11-24T09:58:12.5527536Z - name = "cassandra-noted-manatee" -> null +2025-11-24T09:58:12.5528215Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5528863Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5529517Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5530176Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5531047Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5531660Z - ssh_keys = [ +2025-11-24T09:58:12.5532260Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5532983Z ] -> null +2025-11-24T09:58:12.5533550Z - status = "running" -> null +2025-11-24T09:58:12.5534159Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5534473Z +2025-11-24T09:58:12.5534686Z - network { +2025-11-24T09:58:12.5535287Z - alias_ips = [] -> null +2025-11-24T09:58:12.5535888Z - ip = "10.1.1.15" -> null +2025-11-24T09:58:12.5536524Z - mac_address = "86:00:00:90:80:68" -> null +2025-11-24T09:58:12.5537155Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5537655Z } +2025-11-24T09:58:12.5537853Z +2025-11-24T09:58:12.5538070Z - public_net { +2025-11-24T09:58:12.5538680Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5539278Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5539859Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5540433Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5540916Z } +2025-11-24T09:58:12.5541279Z } +2025-11-24T09:58:12.5541474Z +2025-11-24T09:58:12.5541804Z  # hcloud_server.cassandra[2] will be destroyed +2025-11-24T09:58:12.5542430Z  - resource "hcloud_server" "cassandra" { +2025-11-24T09:58:12.5543277Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5543947Z - backups = false -> null +2025-11-24T09:58:12.5544617Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5545284Z - delete_protection = false -> null +2025-11-24T09:58:12.5545935Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5546559Z - id = "113859135" -> null +2025-11-24T09:58:12.5547199Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5547859Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5548522Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5549150Z - keep_disk = false -> null +2025-11-24T09:58:12.5549769Z - labels = {} -> null +2025-11-24T09:58:12.5550393Z - location = "fsn1" -> null +2025-11-24T09:58:12.5551076Z - name = "cassandra-improved-teal" -> null +2025-11-24T09:58:12.5551750Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5552392Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5553213Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5553861Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5554505Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5555095Z - ssh_keys = [ +2025-11-24T09:58:12.5555643Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5556170Z ] -> null +2025-11-24T09:58:12.5556722Z - status = "running" -> null +2025-11-24T09:58:12.5557319Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5557777Z +2025-11-24T09:58:12.5557994Z - network { +2025-11-24T09:58:12.5558487Z - alias_ips = [] -> null +2025-11-24T09:58:12.5559090Z - ip = "10.1.1.14" -> null +2025-11-24T09:58:12.5559723Z - mac_address = "86:00:00:90:80:6c" -> null +2025-11-24T09:58:12.5560353Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5560838Z } +2025-11-24T09:58:12.5561035Z +2025-11-24T09:58:12.5561329Z - public_net { +2025-11-24T09:58:12.5561847Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5562436Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5563452Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5564441Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5565261Z } +2025-11-24T09:58:12.5565855Z } +2025-11-24T09:58:12.5566280Z +2025-11-24T09:58:12.5566865Z  # hcloud_server.elasticsearch[0] will be destroyed +2025-11-24T09:58:12.5567976Z  - resource "hcloud_server" "elasticsearch" { +2025-11-24T09:58:12.5569024Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5570082Z - backups = false -> null +2025-11-24T09:58:12.5571143Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5572235Z - delete_protection = false -> null +2025-11-24T09:58:12.5573444Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5574468Z - id = "113859093" -> null +2025-11-24T09:58:12.5575518Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5576638Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5577720Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5578772Z - keep_disk = false -> null +2025-11-24T09:58:12.5579789Z - labels = {} -> null +2025-11-24T09:58:12.5580820Z - location = "fsn1" -> null +2025-11-24T09:58:12.5581972Z - name = "elasticsearch-amusing-pup" -> null +2025-11-24T09:58:12.5583259Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5584328Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5585429Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5586551Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5587649Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5588665Z - ssh_keys = [ +2025-11-24T09:58:12.5589581Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5590462Z ] -> null +2025-11-24T09:58:12.5591359Z - status = "running" -> null +2025-11-24T09:58:12.5592338Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5593043Z +2025-11-24T09:58:12.5593402Z - network { +2025-11-24T09:58:12.5594205Z - alias_ips = [] -> null +2025-11-24T09:58:12.5595222Z - ip = "10.1.1.3" -> null +2025-11-24T09:58:12.5596298Z - mac_address = "86:00:00:90:80:88" -> null +2025-11-24T09:58:12.5597181Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5597862Z } +2025-11-24T09:58:12.5598098Z +2025-11-24T09:58:12.5598502Z - public_net { +2025-11-24T09:58:12.5599276Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5600171Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5601188Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5601922Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5602593Z } +2025-11-24T09:58:12.5603244Z } +2025-11-24T09:58:12.5603449Z +2025-11-24T09:58:12.5603933Z  # hcloud_server.elasticsearch[1] will be destroyed +2025-11-24T09:58:12.5604809Z  - resource "hcloud_server" "elasticsearch" { +2025-11-24T09:58:12.5605489Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5606156Z - backups = false -> null +2025-11-24T09:58:12.5606937Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5607613Z - delete_protection = false -> null +2025-11-24T09:58:12.5608264Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5608886Z - id = "113859143" -> null +2025-11-24T09:58:12.5609526Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5610202Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5611266Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5612091Z - keep_disk = false -> null +2025-11-24T09:58:12.5622947Z - labels = {} -> null +2025-11-24T09:58:12.5624155Z - location = "fsn1" -> null +2025-11-24T09:58:12.5625461Z - name = "elasticsearch-renewing-bear" -> null +2025-11-24T09:58:12.5626773Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5627934Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5629107Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5630355Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5631572Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5632823Z - ssh_keys = [ +2025-11-24T09:58:12.5633821Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5634782Z ] -> null +2025-11-24T09:58:12.5635779Z - status = "running" -> null +2025-11-24T09:58:12.5636836Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5637393Z +2025-11-24T09:58:12.5637775Z - network { +2025-11-24T09:58:12.5638615Z - alias_ips = [] -> null +2025-11-24T09:58:12.5639685Z - ip = "10.1.1.12" -> null +2025-11-24T09:58:12.5640794Z - mac_address = "86:00:00:90:80:70" -> null +2025-11-24T09:58:12.5641954Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5643010Z } +2025-11-24T09:58:12.5643394Z +2025-11-24T09:58:12.5643824Z - public_net { +2025-11-24T09:58:12.5644779Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5645867Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5647259Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5648372Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5649298Z } +2025-11-24T09:58:12.5649939Z } +2025-11-24T09:58:12.5650302Z +2025-11-24T09:58:12.5650887Z  # hcloud_server.kubenode[0] will be destroyed +2025-11-24T09:58:12.5652046Z  - resource "hcloud_server" "kubenode" { +2025-11-24T09:58:12.5653392Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5654557Z - backups = false -> null +2025-11-24T09:58:12.5655895Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5657080Z - delete_protection = false -> null +2025-11-24T09:58:12.5658262Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5659450Z - id = "113859101" -> null +2025-11-24T09:58:12.5660612Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5661917Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5663248Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5664379Z - keep_disk = false -> null +2025-11-24T09:58:12.5665547Z - labels = {} -> null +2025-11-24T09:58:12.5666726Z - location = "fsn1" -> null +2025-11-24T09:58:12.5667996Z - name = "kubenode-super-marlin" -> null +2025-11-24T09:58:12.5669196Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5670398Z - primary_disk_size = 80 -> null +2025-11-24T09:58:12.5671648Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5672983Z - server_type = "cx33" -> null +2025-11-24T09:58:12.5674150Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5675245Z - ssh_keys = [ +2025-11-24T09:58:12.5676232Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5677199Z ] -> null +2025-11-24T09:58:12.5678199Z - status = "running" -> null +2025-11-24T09:58:12.5679251Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5679787Z +2025-11-24T09:58:12.5680150Z - network { +2025-11-24T09:58:12.5681010Z - alias_ips = [] -> null +2025-11-24T09:58:12.5682123Z - ip = "10.1.1.8" -> null +2025-11-24T09:58:12.5683574Z - mac_address = "86:00:00:90:80:83" -> null +2025-11-24T09:58:12.5684785Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5685619Z } +2025-11-24T09:58:12.5685963Z +2025-11-24T09:58:12.5686364Z - public_net { +2025-11-24T09:58:12.5687313Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5688373Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5689362Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5690398Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5691235Z } +2025-11-24T09:58:12.5691833Z } +2025-11-24T09:58:12.5692158Z +2025-11-24T09:58:12.5692904Z  # hcloud_server.kubenode[1] will be destroyed +2025-11-24T09:58:12.5693994Z  - resource "hcloud_server" "kubenode" { +2025-11-24T09:58:12.5695383Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5696548Z - backups = false -> null +2025-11-24T09:58:12.5697673Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5698825Z - delete_protection = false -> null +2025-11-24T09:58:12.5699936Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5701012Z - id = "113859100" -> null +2025-11-24T09:58:12.5702224Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5703573Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5704706Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5705804Z - keep_disk = false -> null +2025-11-24T09:58:12.5706871Z - labels = {} -> null +2025-11-24T09:58:12.5708131Z - location = "fsn1" -> null +2025-11-24T09:58:12.5709359Z - name = "kubenode-teaching-gobbler" -> null +2025-11-24T09:58:12.5710524Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5711626Z - primary_disk_size = 80 -> null +2025-11-24T09:58:12.5712900Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5714044Z - server_type = "cx33" -> null +2025-11-24T09:58:12.5715166Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5716176Z - ssh_keys = [ +2025-11-24T09:58:12.5717097Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5717986Z ] -> null +2025-11-24T09:58:12.5718924Z - status = "running" -> null +2025-11-24T09:58:12.5719942Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5720472Z +2025-11-24T09:58:12.5720831Z - network { +2025-11-24T09:58:12.5721665Z - alias_ips = [] -> null +2025-11-24T09:58:12.5722818Z - ip = "10.1.1.9" -> null +2025-11-24T09:58:12.5723907Z - mac_address = "86:00:00:90:80:82" -> null +2025-11-24T09:58:12.5724973Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5725808Z } +2025-11-24T09:58:12.5726139Z +2025-11-24T09:58:12.5726504Z - public_net { +2025-11-24T09:58:12.5727367Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5728373Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5729363Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5730361Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5731185Z } +2025-11-24T09:58:12.5731781Z } +2025-11-24T09:58:12.5732301Z +2025-11-24T09:58:12.5733079Z  # hcloud_server.kubenode[2] will be destroyed +2025-11-24T09:58:12.5734157Z  - resource "hcloud_server" "kubenode" { +2025-11-24T09:58:12.5735273Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5736401Z - backups = false -> null +2025-11-24T09:58:12.5737534Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5738687Z - delete_protection = false -> null +2025-11-24T09:58:12.5740024Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5741109Z - id = "113859096" -> null +2025-11-24T09:58:12.5742209Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5743533Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5744657Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5745755Z - keep_disk = false -> null +2025-11-24T09:58:12.5746940Z - labels = {} -> null +2025-11-24T09:58:12.5748020Z - location = "fsn1" -> null +2025-11-24T09:58:12.5749182Z - name = "kubenode-renewed-asp" -> null +2025-11-24T09:58:12.5750311Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5751394Z - primary_disk_size = 80 -> null +2025-11-24T09:58:12.5752797Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5753899Z - server_type = "cx33" -> null +2025-11-24T09:58:12.5755003Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5756023Z - ssh_keys = [ +2025-11-24T09:58:12.5756957Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5757841Z ] -> null +2025-11-24T09:58:12.5758750Z - status = "running" -> null +2025-11-24T09:58:12.5759835Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5760419Z +2025-11-24T09:58:12.5760830Z - network { +2025-11-24T09:58:12.5761733Z - alias_ips = [] -> null +2025-11-24T09:58:12.5763015Z - ip = "10.1.1.4" -> null +2025-11-24T09:58:12.5764169Z - mac_address = "86:00:00:90:80:87" -> null +2025-11-24T09:58:12.5764906Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5765758Z } +2025-11-24T09:58:12.5766096Z +2025-11-24T09:58:12.5766425Z - public_net { +2025-11-24T09:58:12.5766968Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5767584Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5768180Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5768773Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5769264Z } +2025-11-24T09:58:12.5769632Z } +2025-11-24T09:58:12.5769832Z +2025-11-24T09:58:12.5770141Z  # hcloud_server.minio[0] will be destroyed +2025-11-24T09:58:12.5770766Z  - resource "hcloud_server" "minio" { +2025-11-24T09:58:12.5771416Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5772100Z - backups = false -> null +2025-11-24T09:58:12.5773010Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5773718Z - delete_protection = false -> null +2025-11-24T09:58:12.5774378Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5775020Z - id = "113859094" -> null +2025-11-24T09:58:12.5775671Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5776356Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5777204Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5777869Z - keep_disk = false -> null +2025-11-24T09:58:12.5778502Z - labels = {} -> null +2025-11-24T09:58:12.5779137Z - location = "fsn1" -> null +2025-11-24T09:58:12.5779807Z - name = "minio-aware-zebra" -> null +2025-11-24T09:58:12.5780474Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5781216Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5781870Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5782526Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5783403Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5784011Z - ssh_keys = [ +2025-11-24T09:58:12.5784572Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5785309Z ] -> null +2025-11-24T09:58:12.5785870Z - status = "running" -> null +2025-11-24T09:58:12.5786485Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5786802Z +2025-11-24T09:58:12.5787018Z - network { +2025-11-24T09:58:12.5787516Z - alias_ips = [] -> null +2025-11-24T09:58:12.5788135Z - ip = "10.1.1.6" -> null +2025-11-24T09:58:12.5788775Z - mac_address = "86:00:00:90:80:85" -> null +2025-11-24T09:58:12.5789413Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5789919Z } +2025-11-24T09:58:12.5790117Z +2025-11-24T09:58:12.5790338Z - public_net { +2025-11-24T09:58:12.5790864Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5791470Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5792058Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5792760Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5793265Z } +2025-11-24T09:58:12.5793634Z } +2025-11-24T09:58:12.5793836Z +2025-11-24T09:58:12.5794141Z  # hcloud_server.minio[1] will be destroyed +2025-11-24T09:58:12.5794756Z  - resource "hcloud_server" "minio" { +2025-11-24T09:58:12.5795399Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5796067Z - backups = false -> null +2025-11-24T09:58:12.5796729Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5797410Z - delete_protection = false -> null +2025-11-24T09:58:12.5798063Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5798699Z - id = "113859099" -> null +2025-11-24T09:58:12.5799348Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5800017Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5800684Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5801334Z - keep_disk = false -> null +2025-11-24T09:58:12.5801962Z - labels = {} -> null +2025-11-24T09:58:12.5802589Z - location = "fsn1" -> null +2025-11-24T09:58:12.5803381Z - name = "minio-striking-malamute" -> null +2025-11-24T09:58:12.5804202Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5804867Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5805518Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5806170Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5806831Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5807430Z - ssh_keys = [ +2025-11-24T09:58:12.5808055Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5808587Z ] -> null +2025-11-24T09:58:12.5809141Z - status = "running" -> null +2025-11-24T09:58:12.5809748Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5810070Z +2025-11-24T09:58:12.5810278Z - network { +2025-11-24T09:58:12.5810783Z - alias_ips = [] -> null +2025-11-24T09:58:12.5811476Z - ip = "10.1.1.7" -> null +2025-11-24T09:58:12.5812114Z - mac_address = "86:00:00:90:80:84" -> null +2025-11-24T09:58:12.5812954Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5813466Z } +2025-11-24T09:58:12.5813669Z +2025-11-24T09:58:12.5813896Z - public_net { +2025-11-24T09:58:12.5814423Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5815026Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5815608Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5816202Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5816701Z } +2025-11-24T09:58:12.5817064Z } +2025-11-24T09:58:12.5817261Z +2025-11-24T09:58:12.5817603Z  # hcloud_server.postgresql[0] will be destroyed +2025-11-24T09:58:12.5818251Z  - resource "hcloud_server" "postgresql" { +2025-11-24T09:58:12.5818903Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5819560Z - backups = false -> null +2025-11-24T09:58:12.5820223Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5820897Z - delete_protection = false -> null +2025-11-24T09:58:12.5821555Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5822182Z - id = "113859092" -> null +2025-11-24T09:58:12.5822949Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5823635Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5824303Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5824949Z - keep_disk = false -> null +2025-11-24T09:58:12.5825576Z - labels = {} -> null +2025-11-24T09:58:12.5826209Z - location = "fsn1" -> null +2025-11-24T09:58:12.5826907Z - name = "postgresql-glorious-calf" -> null +2025-11-24T09:58:12.5827595Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5828236Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5828886Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5829542Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5830336Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5830944Z - ssh_keys = [ +2025-11-24T09:58:12.5831493Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5832062Z ] -> null +2025-11-24T09:58:12.5832722Z - status = "running" -> null +2025-11-24T09:58:12.5833333Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5833654Z +2025-11-24T09:58:12.5833868Z - network { +2025-11-24T09:58:12.5834451Z - alias_ips = [] -> null +2025-11-24T09:58:12.5835063Z - ip = "10.1.1.2" -> null +2025-11-24T09:58:12.5835695Z - mac_address = "86:00:00:90:80:89" -> null +2025-11-24T09:58:12.5836327Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5836825Z } +2025-11-24T09:58:12.5837030Z +2025-11-24T09:58:12.5837251Z - public_net { +2025-11-24T09:58:12.5837846Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5838442Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5839024Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5839613Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5840100Z } +2025-11-24T09:58:12.5840468Z } +2025-11-24T09:58:12.5840665Z +2025-11-24T09:58:12.5841002Z  # hcloud_server.postgresql[1] will be destroyed +2025-11-24T09:58:12.5841646Z  - resource "hcloud_server" "postgresql" { +2025-11-24T09:58:12.5842293Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5843060Z - backups = false -> null +2025-11-24T09:58:12.5843728Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5844409Z - delete_protection = false -> null +2025-11-24T09:58:12.5845058Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5845689Z - id = "113859131" -> null +2025-11-24T09:58:12.5846335Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5853195Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5853960Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5854631Z - keep_disk = false -> null +2025-11-24T09:58:12.5855269Z - labels = {} -> null +2025-11-24T09:58:12.5856025Z - location = "fsn1" -> null +2025-11-24T09:58:12.5856988Z - name = "postgresql-hardy-glider" -> null +2025-11-24T09:58:12.5858161Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5859189Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5860082Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5861253Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5862370Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5863260Z - ssh_keys = [ +2025-11-24T09:58:12.5864001Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5864553Z ] -> null +2025-11-24T09:58:12.5865240Z - status = "running" -> null +2025-11-24T09:58:12.5866078Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5866419Z +2025-11-24T09:58:12.5866654Z - network { +2025-11-24T09:58:12.5867185Z - alias_ips = [] -> null +2025-11-24T09:58:12.5867812Z - ip = "10.1.1.11" -> null +2025-11-24T09:58:12.5868456Z - mac_address = "86:00:00:90:80:76" -> null +2025-11-24T09:58:12.5869099Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5869698Z } +2025-11-24T09:58:12.5869905Z +2025-11-24T09:58:12.5870133Z - public_net { +2025-11-24T09:58:12.5870663Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5871283Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5871878Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5872470Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5873310Z } +2025-11-24T09:58:12.5873788Z } +2025-11-24T09:58:12.5873992Z +2025-11-24T09:58:12.5874368Z  # hcloud_server.postgresql[2] will be destroyed +2025-11-24T09:58:12.5875037Z  - resource "hcloud_server" "postgresql" { +2025-11-24T09:58:12.5875707Z - allow_deprecated_images = false -> null +2025-11-24T09:58:12.5876805Z - backups = false -> null +2025-11-24T09:58:12.5877935Z - datacenter = "fsn1-dc14" -> null +2025-11-24T09:58:12.5879103Z - delete_protection = false -> null +2025-11-24T09:58:12.5880211Z - firewall_ids = [] -> null +2025-11-24T09:58:12.5881294Z - id = "113859145" -> null +2025-11-24T09:58:12.5882391Z - ignore_remote_firewall_ids = false -> null +2025-11-24T09:58:12.5883787Z - image = "ubuntu-22.04" -> null +2025-11-24T09:58:12.5884893Z - ipv6_network = "" -> null +2025-11-24T09:58:12.5885964Z - keep_disk = false -> null +2025-11-24T09:58:12.5886999Z - labels = {} -> null +2025-11-24T09:58:12.5888056Z - location = "fsn1" -> null +2025-11-24T09:58:12.5889230Z - name = "postgresql-sound-marten" -> null +2025-11-24T09:58:12.5890359Z - placement_group_id = 0 -> null +2025-11-24T09:58:12.5891431Z - primary_disk_size = 40 -> null +2025-11-24T09:58:12.5892527Z - rebuild_protection = false -> null +2025-11-24T09:58:12.5893894Z - server_type = "cx23" -> null +2025-11-24T09:58:12.5895026Z - shutdown_before_deletion = false -> null +2025-11-24T09:58:12.5896031Z - ssh_keys = [ +2025-11-24T09:58:12.5896945Z - "adminhost-relative-moray", +2025-11-24T09:58:12.5897826Z ] -> null +2025-11-24T09:58:12.5898753Z - status = "running" -> null +2025-11-24T09:58:12.5899783Z # (3 unchanged attributes hidden) +2025-11-24T09:58:12.5900308Z +2025-11-24T09:58:12.5900665Z - network { +2025-11-24T09:58:12.5901497Z - alias_ips = [] -> null +2025-11-24T09:58:12.5902521Z - ip = "10.1.1.13" -> null +2025-11-24T09:58:12.5903738Z - mac_address = "86:00:00:90:80:6f" -> null +2025-11-24T09:58:12.5905059Z - network_id = 11673781 -> null +2025-11-24T09:58:12.5905910Z } +2025-11-24T09:58:12.5906243Z +2025-11-24T09:58:12.5906623Z - public_net { +2025-11-24T09:58:12.5907501Z - ipv4 = 0 -> null +2025-11-24T09:58:12.5908502Z - ipv4_enabled = false -> null +2025-11-24T09:58:12.5909486Z - ipv6 = 0 -> null +2025-11-24T09:58:12.5910474Z - ipv6_enabled = false -> null +2025-11-24T09:58:12.5911521Z } +2025-11-24T09:58:12.5912115Z } +2025-11-24T09:58:12.5912439Z +2025-11-24T09:58:12.5913125Z  # hcloud_ssh_key.adminhost will be destroyed +2025-11-24T09:58:12.5914194Z  - resource "hcloud_ssh_key" "adminhost" { +2025-11-24T09:58:12.5915437Z - fingerprint = "60:2a:1d:30:36:ac:3d:7b:8c:ae:1a:fb:49:a6:91:45" -> null +2025-11-24T09:58:12.5916592Z - id = "104061702" -> null +2025-11-24T09:58:12.5917669Z - labels = {} -> null +2025-11-24T09:58:12.5918758Z - name = "adminhost-relative-moray" -> null +2025-11-24T09:58:12.5919776Z - public_key = <<-EOT +2025-11-24T09:58:12.5921602Z ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLr5tFcLJ4nkYuItFtaaJzbLYo62Fj6S2Vlk4/pLjLCw3TWyp1MRl2JE+JaGpfiZqSXj7Ua+TnJSN4kWe9VAtBM= +2025-11-24T09:58:12.5923599Z EOT -> null +2025-11-24T09:58:12.5924308Z } +2025-11-24T09:58:12.5924635Z +2025-11-24T09:58:12.5925211Z  # null_resource.deployment_info will be destroyed +2025-11-24T09:58:12.5926336Z  - resource "null_resource" "deployment_info" { +2025-11-24T09:58:12.5927390Z - id = "6097919591817865521" -> null +2025-11-24T09:58:12.5928217Z } +2025-11-24T09:58:12.5928550Z +2025-11-24T09:58:12.5929038Z  # random_pet.adminhost will be destroyed +2025-11-24T09:58:12.5930073Z  - resource "random_pet" "adminhost" { +2025-11-24T09:58:12.5931061Z - id = "relative-moray" -> null +2025-11-24T09:58:12.5932080Z - length = 2 -> null +2025-11-24T09:58:12.5933166Z - separator = "-" -> null +2025-11-24T09:58:12.5933969Z } +2025-11-24T09:58:12.5934279Z +2025-11-24T09:58:12.5934776Z  # random_pet.assethost will be destroyed +2025-11-24T09:58:12.5935771Z  - resource "random_pet" "assethost" { +2025-11-24T09:58:12.5936792Z - id = "settling-barnacle" -> null +2025-11-24T09:58:12.5937761Z - length = 2 -> null +2025-11-24T09:58:12.5938677Z - separator = "-" -> null +2025-11-24T09:58:12.5939468Z } +2025-11-24T09:58:12.5939791Z +2025-11-24T09:58:12.5940308Z  # random_pet.cassandra[0] will be destroyed +2025-11-24T09:58:12.5941344Z  - resource "random_pet" "cassandra" { +2025-11-24T09:58:12.5942322Z - id = "tops-fowl" -> null +2025-11-24T09:58:12.5943452Z - length = 2 -> null +2025-11-24T09:58:12.5944377Z - separator = "-" -> null +2025-11-24T09:58:12.5945197Z } +2025-11-24T09:58:12.5945515Z +2025-11-24T09:58:12.5946013Z  # random_pet.cassandra[1] will be destroyed +2025-11-24T09:58:12.5947015Z  - resource "random_pet" "cassandra" { +2025-11-24T09:58:12.5947834Z - id = "noted-manatee" -> null +2025-11-24T09:58:12.5948437Z - length = 2 -> null +2025-11-24T09:58:12.5948997Z - separator = "-" -> null +2025-11-24T09:58:12.5949710Z } +2025-11-24T09:58:12.5949917Z +2025-11-24T09:58:12.5950247Z  # random_pet.cassandra[2] will be destroyed +2025-11-24T09:58:12.5950876Z  - resource "random_pet" "cassandra" { +2025-11-24T09:58:12.5951503Z - id = "improved-teal" -> null +2025-11-24T09:58:12.5952098Z - length = 2 -> null +2025-11-24T09:58:12.5952946Z - separator = "-" -> null +2025-11-24T09:58:12.5953531Z } +2025-11-24T09:58:12.5953842Z +2025-11-24T09:58:12.5954206Z  # random_pet.elasticsearch[0] will be destroyed +2025-11-24T09:58:12.5954849Z  - resource "random_pet" "elasticsearch" { +2025-11-24T09:58:12.5955471Z - id = "amusing-pup" -> null +2025-11-24T09:58:12.5956060Z - length = 2 -> null +2025-11-24T09:58:12.5956617Z - separator = "-" -> null +2025-11-24T09:58:12.5957112Z } +2025-11-24T09:58:12.5957310Z +2025-11-24T09:58:12.5957733Z  # random_pet.elasticsearch[1] will be destroyed +2025-11-24T09:58:12.5958372Z  - resource "random_pet" "elasticsearch" { +2025-11-24T09:58:12.5958985Z - id = "renewing-bear" -> null +2025-11-24T09:58:12.5959570Z - length = 2 -> null +2025-11-24T09:58:12.5960124Z - separator = "-" -> null +2025-11-24T09:58:12.5960603Z } +2025-11-24T09:58:12.5960795Z +2025-11-24T09:58:12.5961102Z  # random_pet.kubenode[0] will be destroyed +2025-11-24T09:58:12.5961708Z  - resource "random_pet" "kubenode" { +2025-11-24T09:58:12.5962311Z - id = "super-marlin" -> null +2025-11-24T09:58:12.5963131Z - length = 2 -> null +2025-11-24T09:58:12.5963697Z - separator = "-" -> null +2025-11-24T09:58:12.5964180Z } +2025-11-24T09:58:12.5964378Z +2025-11-24T09:58:12.5964680Z  # random_pet.kubenode[1] will be destroyed +2025-11-24T09:58:12.5965286Z  - resource "random_pet" "kubenode" { +2025-11-24T09:58:12.5965907Z - id = "teaching-gobbler" -> null +2025-11-24T09:58:12.5966493Z - length = 2 -> null +2025-11-24T09:58:12.5967043Z - separator = "-" -> null +2025-11-24T09:58:12.5967526Z } +2025-11-24T09:58:12.5967718Z +2025-11-24T09:58:12.5968018Z  # random_pet.kubenode[2] will be destroyed +2025-11-24T09:58:12.5968622Z  - resource "random_pet" "kubenode" { +2025-11-24T09:58:12.5969216Z - id = "renewed-asp" -> null +2025-11-24T09:58:12.5969790Z - length = 2 -> null +2025-11-24T09:58:12.5970340Z - separator = "-" -> null +2025-11-24T09:58:12.5970819Z } +2025-11-24T09:58:12.5971018Z +2025-11-24T09:58:12.5971292Z  # random_pet.main will be destroyed +2025-11-24T09:58:12.5971869Z  - resource "random_pet" "main" { +2025-11-24T09:58:12.5972467Z - id = "guided-octopus" -> null +2025-11-24T09:58:12.5973277Z - length = 2 -> null +2025-11-24T09:58:12.5973842Z - separator = "-" -> null +2025-11-24T09:58:12.5974327Z } +2025-11-24T09:58:12.5974517Z +2025-11-24T09:58:12.5974805Z  # random_pet.minio[0] will be destroyed +2025-11-24T09:58:12.5975405Z  - resource "random_pet" "minio" { +2025-11-24T09:58:12.5976010Z - id = "aware-zebra" -> null +2025-11-24T09:58:12.5976591Z - length = 2 -> null +2025-11-24T09:58:12.5977292Z - separator = "-" -> null +2025-11-24T09:58:12.5977781Z } +2025-11-24T09:58:12.5978100Z +2025-11-24T09:58:12.5978588Z  # random_pet.minio[1] will be destroyed +2025-11-24T09:58:12.5979623Z  - resource "random_pet" "minio" { +2025-11-24T09:58:12.5980644Z - id = "striking-malamute" -> null +2025-11-24T09:58:12.5981482Z - length = 2 -> null +2025-11-24T09:58:12.5982353Z - separator = "-" -> null +2025-11-24T09:58:12.5983395Z } +2025-11-24T09:58:12.5983916Z +2025-11-24T09:58:12.5984495Z  # random_pet.postgresql[0] will be destroyed +2025-11-24T09:58:12.5985347Z  - resource "random_pet" "postgresql" { +2025-11-24T09:58:12.5986443Z - id = "glorious-calf" -> null +2025-11-24T09:58:12.5987441Z - length = 2 -> null +2025-11-24T09:58:12.5988424Z - separator = "-" -> null +2025-11-24T09:58:12.5989256Z } +2025-11-24T09:58:12.5989720Z +2025-11-24T09:58:12.5990260Z  # random_pet.postgresql[1] will be destroyed +2025-11-24T09:58:12.5991297Z  - resource "random_pet" "postgresql" { +2025-11-24T09:58:12.5992375Z - id = "hardy-glider" -> null +2025-11-24T09:58:12.5993597Z - length = 2 -> null +2025-11-24T09:58:12.5994531Z - separator = "-" -> null +2025-11-24T09:58:12.5995355Z } +2025-11-24T09:58:12.5995687Z +2025-11-24T09:58:12.5996258Z  # random_pet.postgresql[2] will be destroyed +2025-11-24T09:58:12.5997336Z  - resource "random_pet" "postgresql" { +2025-11-24T09:58:12.5998351Z - id = "sound-marten" -> null +2025-11-24T09:58:12.5999297Z - length = 2 -> null +2025-11-24T09:58:12.6000197Z - separator = "-" -> null +2025-11-24T09:58:12.6000977Z } +2025-11-24T09:58:12.6001285Z +2025-11-24T09:58:12.6001783Z  # tls_private_key.admin will be destroyed +2025-11-24T09:58:12.6003030Z  - resource "tls_private_key" "admin" { +2025-11-24T09:58:12.6004142Z - algorithm = "ECDSA" -> null +2025-11-24T09:58:12.6005350Z - ecdsa_curve = "P256" -> null +2025-11-24T09:58:12.6006198Z - id = "9a5802b646d18231eda9b090be5144478e6bd632" -> null +2025-11-24T09:58:12.6007013Z - private_key_openssh = (sensitive value) -> null +2025-11-24T09:58:12.6007762Z - private_key_pem = (sensitive value) -> null +2025-11-24T09:58:12.6008490Z - private_key_pem_pkcs8 = (sensitive value) -> null +2025-11-24T09:58:12.6009313Z - public_key_fingerprint_md5 = "60:2a:1d:30:36:ac:3d:7b:8c:ae:1a:fb:49:a6:91:45" -> null +2025-11-24T09:58:12.6010298Z - public_key_fingerprint_sha256 = "SHA256:ry6JtkVMwWncPeAIV+lcbFBnHpwkiOsy8ThYEvrwW9E" -> null +2025-11-24T09:58:12.6011091Z - public_key_openssh = <<-EOT +2025-11-24T09:58:12.6012165Z ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLr5tFcLJ4nkYuItFtaaJzbLYo62Fj6S2Vlk4/pLjLCw3TWyp1MRl2JE+JaGpfiZqSXj7Ua+TnJSN4kWe9VAtBM= +2025-11-24T09:58:12.6013483Z EOT -> null +2025-11-24T09:58:12.6014020Z - public_key_pem = <<-EOT +2025-11-24T09:58:12.6014552Z -----BEGIN PUBLIC KEY----- +2025-11-24T09:58:12.6015180Z MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuvm0VwsnieRi4i0W1ponNstijrYW +2025-11-24T09:58:12.6015925Z PpLZWWTj+kuMsLDdNbKnUxGXYkT4loal+JmpJePtRr5OclI3iRZ71UC0Ew== +2025-11-24T09:58:12.6016780Z -----END PUBLIC KEY----- +2025-11-24T09:58:12.6017317Z EOT -> null +2025-11-24T09:58:12.6017894Z - rsa_bits = 2048 -> null +2025-11-24T09:58:12.6018439Z } +2025-11-24T09:58:12.6018638Z +2025-11-24T09:58:12.6018922Z Plan: 0 to add, 0 to change, 36 to destroy. +2025-11-24T09:58:12.6019249Z +2025-11-24T09:58:12.6019438Z Changes to Outputs: +2025-11-24T09:58:12.6019993Z - adminhost = (sensitive value) -> null +2025-11-24T09:58:12.6020700Z - resource_fallback_info = { +2025-11-24T09:58:12.6021241Z - available_locations = [ +2025-11-24T09:58:12.6021752Z - "nbg1", +2025-11-24T09:58:12.6022212Z - "hel1", +2025-11-24T09:58:12.6022797Z - "fsn1", +2025-11-24T09:58:12.6023273Z - "ash", +2025-11-24T09:58:12.6023727Z - "hil", +2025-11-24T09:58:12.6024180Z - "sin", +2025-11-24T09:58:12.6024677Z ] +2025-11-24T09:58:12.6025121Z - available_medium_types = [ +2025-11-24T09:58:12.6025618Z - "cx33", +2025-11-24T09:58:12.6026070Z - "cx43", +2025-11-24T09:58:12.6026527Z - "cpx32", +2025-11-24T09:58:12.6026953Z ] +2025-11-24T09:58:12.6027383Z - available_small_types = [ +2025-11-24T09:58:12.6027875Z - "cx23", +2025-11-24T09:58:12.6028333Z - "cx33", +2025-11-24T09:58:12.6028783Z - "cpx22", +2025-11-24T09:58:12.6029205Z ] +2025-11-24T09:58:12.6029639Z - requested_locations = [ +2025-11-24T09:58:12.6030132Z - "fsn1", +2025-11-24T09:58:12.6030578Z - "hel1", +2025-11-24T09:58:12.6031030Z - "nbg1", +2025-11-24T09:58:12.6031444Z ] +2025-11-24T09:58:12.6032265Z - requested_medium_types = [ +2025-11-24T09:58:12.6032996Z - "cx33", +2025-11-24T09:58:12.6033468Z - "cx43", +2025-11-24T09:58:12.6033928Z - "cpx32", +2025-11-24T09:58:12.6034350Z ] +2025-11-24T09:58:12.6034789Z - requested_small_types = [ +2025-11-24T09:58:12.6035285Z - "cx23", +2025-11-24T09:58:12.6035740Z - "cx33", +2025-11-24T09:58:12.6036195Z - "cpx22", +2025-11-24T09:58:12.6036620Z ] +2025-11-24T09:58:12.6037067Z - selected_location = "fsn1" +2025-11-24T09:58:12.6037626Z - selected_medium_type = "cx33" +2025-11-24T09:58:12.6038173Z - selected_small_type = "cx23" +2025-11-24T09:58:12.6038682Z } -> null +2025-11-24T09:58:12.6039231Z - selected_location = "fsn1" -> null +2025-11-24T09:58:12.6039825Z - selected_server_types = { +2025-11-24T09:58:12.6040354Z - medium_server_type = "cx33" +2025-11-24T09:58:12.6040885Z - small_server_type = "cx23" +2025-11-24T09:58:12.6041377Z } -> null +2025-11-24T09:58:12.6041929Z - ssh_private_key = (sensitive value) -> null +2025-11-24T09:58:12.6042778Z - static-inventory = (sensitive value) -> null +2025-11-24T09:58:12.7174966Z hcloud_server.cassandra[1]: Destroying... [id=113859144] +2025-11-24T09:58:12.7176238Z hcloud_server.kubenode[0]: Destroying... [id=113859101] +2025-11-24T09:58:12.7177511Z hcloud_server.minio[1]: Destroying... [id=113859099] +2025-11-24T09:58:12.7178754Z hcloud_server.kubenode[2]: Destroying... [id=113859096] +2025-11-24T09:58:12.7180037Z hcloud_server.kubenode[1]: Destroying... [id=113859100] +2025-11-24T09:58:12.7181804Z hcloud_server.elasticsearch[0]: Destroying... [id=113859093] +2025-11-24T09:58:12.7183327Z hcloud_server.minio[0]: Destroying... [id=113859094] +2025-11-24T09:58:12.7184570Z hcloud_server.postgresql[2]: Destroying... [id=113859145] +2025-11-24T09:58:12.7185824Z hcloud_server.adminhost: Destroying... [id=113859097] +2025-11-24T09:58:12.7187060Z hcloud_server.postgresql[0]: Destroying... [id=113859092] +2025-11-24T09:58:22.7164450Z hcloud_server.elasticsearch[0]: Still destroying... [id=113859093, 00m10s elapsed] +2025-11-24T09:58:22.7166107Z hcloud_server.postgresql[2]: Still destroying... [id=113859145, 00m10s elapsed] +2025-11-24T09:58:22.7167323Z hcloud_server.kubenode[1]: Still destroying... [id=113859100, 00m10s elapsed] +2025-11-24T09:58:22.7168325Z hcloud_server.kubenode[0]: Still destroying... [id=113859101, 00m10s elapsed] +2025-11-24T09:58:22.7169325Z hcloud_server.cassandra[1]: Still destroying... [id=113859144, 00m10s elapsed] +2025-11-24T09:58:22.7170559Z hcloud_server.minio[1]: Still destroying... [id=113859099, 00m10s elapsed] +2025-11-24T09:58:22.7171511Z hcloud_server.adminhost: Still destroying... [id=113859097, 00m10s elapsed] +2025-11-24T09:58:22.7172869Z hcloud_server.kubenode[2]: Still destroying... [id=113859096, 00m10s elapsed] +2025-11-24T09:58:22.7174374Z hcloud_server.minio[0]: Still destroying... [id=113859094, 00m10s elapsed] +2025-11-24T09:58:22.7175413Z hcloud_server.postgresql[0]: Still destroying... [id=113859092, 00m10s elapsed] +2025-11-24T09:58:29.2961684Z hcloud_server.adminhost: Destruction complete after 16s +2025-11-24T09:58:29.3107170Z hcloud_server.assethost: Destroying... [id=113859098] +2025-11-24T09:58:32.7167983Z hcloud_server.kubenode[0]: Still destroying... [id=113859101, 00m20s elapsed] +2025-11-24T09:58:32.7169250Z hcloud_server.postgresql[2]: Still destroying... [id=113859145, 00m20s elapsed] +2025-11-24T09:58:32.7170359Z hcloud_server.kubenode[2]: Still destroying... [id=113859096, 00m20s elapsed] +2025-11-24T09:58:32.7171320Z hcloud_server.kubenode[1]: Still destroying... [id=113859100, 00m20s elapsed] +2025-11-24T09:58:32.7172229Z hcloud_server.elasticsearch[0]: Still destroying... [id=113859093, 00m20s elapsed] +2025-11-24T09:58:32.7173398Z hcloud_server.cassandra[1]: Still destroying... [id=113859144, 00m20s elapsed] +2025-11-24T09:58:32.7174253Z hcloud_server.minio[1]: Still destroying... [id=113859099, 00m20s elapsed] +2025-11-24T09:58:32.7175085Z hcloud_server.minio[0]: Still destroying... [id=113859094, 00m20s elapsed] +2025-11-24T09:58:32.7178224Z hcloud_server.postgresql[0]: Still destroying... [id=113859092, 00m20s elapsed] +2025-11-24T09:58:39.3120463Z hcloud_server.assethost: Still destroying... [id=113859098, 00m10s elapsed] +2025-11-24T09:58:42.7171362Z hcloud_server.cassandra[1]: Still destroying... [id=113859144, 00m30s elapsed] +2025-11-24T09:58:42.7173070Z hcloud_server.kubenode[2]: Still destroying... [id=113859096, 00m30s elapsed] +2025-11-24T09:58:42.7174714Z hcloud_server.postgresql[2]: Still destroying... [id=113859145, 00m30s elapsed] +2025-11-24T09:58:42.7175780Z hcloud_server.minio[1]: Still destroying... [id=113859099, 00m30s elapsed] +2025-11-24T09:58:42.7176850Z hcloud_server.kubenode[0]: Still destroying... [id=113859101, 00m30s elapsed] +2025-11-24T09:58:42.7177954Z hcloud_server.elasticsearch[0]: Still destroying... [id=113859093, 00m30s elapsed] +2025-11-24T09:58:42.7179025Z hcloud_server.kubenode[1]: Still destroying... [id=113859100, 00m30s elapsed] +2025-11-24T09:58:42.7180301Z hcloud_server.minio[0]: Still destroying... [id=113859094, 00m30s elapsed] +2025-11-24T09:58:42.7181620Z hcloud_server.postgresql[0]: Still destroying... [id=113859092, 00m30s elapsed] +2025-11-24T09:58:45.4174260Z hcloud_server.kubenode[1]: Destruction complete after 32s +2025-11-24T09:58:45.4220741Z hcloud_server.kubenode[2]: Destruction complete after 32s +2025-11-24T09:58:45.4267037Z hcloud_server.elasticsearch[0]: Destruction complete after 32s +2025-11-24T09:58:45.4291721Z hcloud_server.postgresql[1]: Destroying... [id=113859131] +2025-11-24T09:58:45.4296484Z hcloud_server.cassandra[0]: Destroying... [id=113859095] +2025-11-24T09:58:45.4344660Z hcloud_server.postgresql[2]: Destruction complete after 32s +2025-11-24T09:58:45.4387085Z hcloud_server.kubenode[0]: Destruction complete after 32s +2025-11-24T09:58:45.4400945Z hcloud_server.cassandra[2]: Destroying... [id=113859135] +2025-11-24T09:58:45.4407722Z hcloud_server.elasticsearch[1]: Destroying... [id=113859143] +2025-11-24T09:58:45.4448746Z random_pet.kubenode[1]: Destroying... [id=teaching-gobbler] +2025-11-24T09:58:45.4457765Z random_pet.kubenode[1]: Destruction complete after 0s +2025-11-24T09:58:45.4506845Z random_pet.kubenode[2]: Destroying... [id=renewed-asp] +2025-11-24T09:58:45.4517665Z random_pet.kubenode[2]: Destruction complete after 0s +2025-11-24T09:58:45.4562388Z random_pet.kubenode[0]: Destroying... [id=super-marlin] +2025-11-24T09:58:45.4567914Z random_pet.kubenode[0]: Destruction complete after 0s +2025-11-24T09:58:45.4883180Z hcloud_server.postgresql[0]: Destruction complete after 32s +2025-11-24T09:58:45.5263954Z hcloud_server.minio[0]: Destruction complete after 33s +2025-11-24T09:58:45.5315942Z hcloud_server.cassandra[1]: Destruction complete after 33s +2025-11-24T09:58:45.5355418Z hcloud_server.minio[1]: Destruction complete after 33s +2025-11-24T09:58:45.5402012Z random_pet.minio[1]: Destroying... [id=striking-malamute] +2025-11-24T09:58:45.5403452Z random_pet.minio[0]: Destroying... [id=aware-zebra] +2025-11-24T09:58:45.5408424Z random_pet.minio[1]: Destruction complete after 0s +2025-11-24T09:58:45.5469640Z random_pet.minio[0]: Destruction complete after 0s +2025-11-24T09:58:45.6377881Z hcloud_server.assethost: Destruction complete after 17s +2025-11-24T09:58:45.6423274Z random_pet.assethost: Destroying... [id=settling-barnacle] +2025-11-24T09:58:45.6430615Z random_pet.assethost: Destruction complete after 0s +2025-11-24T09:58:55.4299536Z hcloud_server.postgresql[1]: Still destroying... [id=113859131, 00m10s elapsed] +2025-11-24T09:58:55.4308968Z hcloud_server.cassandra[0]: Still destroying... [id=113859095, 00m10s elapsed] +2025-11-24T09:58:55.4412278Z hcloud_server.elasticsearch[1]: Still destroying... [id=113859143, 00m10s elapsed] +2025-11-24T09:58:55.4413531Z hcloud_server.cassandra[2]: Still destroying... [id=113859135, 00m10s elapsed] +2025-11-24T09:59:01.7772975Z hcloud_server.elasticsearch[1]: Destruction complete after 17s +2025-11-24T09:59:01.7819114Z random_pet.elasticsearch[0]: Destroying... [id=amusing-pup] +2025-11-24T09:59:01.7820512Z random_pet.elasticsearch[1]: Destroying... [id=renewing-bear] +2025-11-24T09:59:01.7827073Z random_pet.elasticsearch[1]: Destruction complete after 0s +2025-11-24T09:59:01.7828390Z random_pet.elasticsearch[0]: Destruction complete after 0s +2025-11-24T09:59:05.4320748Z hcloud_server.cassandra[0]: Still destroying... [id=113859095, 00m20s elapsed] +2025-11-24T09:59:05.4321850Z hcloud_server.postgresql[1]: Still destroying... [id=113859131, 00m20s elapsed] +2025-11-24T09:59:05.4422224Z hcloud_server.cassandra[2]: Still destroying... [id=113859135, 00m20s elapsed] +2025-11-24T09:59:15.4322956Z hcloud_server.cassandra[0]: Still destroying... [id=113859095, 00m30s elapsed] +2025-11-24T09:59:15.4324128Z hcloud_server.postgresql[1]: Still destroying... [id=113859131, 00m30s elapsed] +2025-11-24T09:59:15.4423293Z hcloud_server.cassandra[2]: Still destroying... [id=113859135, 00m30s elapsed] +2025-11-24T09:59:17.9024734Z hcloud_server.cassandra[0]: Destruction complete after 33s +2025-11-24T09:59:17.9065394Z hcloud_server.cassandra[2]: Destruction complete after 33s +2025-11-24T09:59:17.9100901Z hcloud_server.postgresql[1]: Destruction complete after 33s +2025-11-24T09:59:17.9157060Z hcloud_ssh_key.adminhost: Destroying... [id=104061702] +2025-11-24T09:59:17.9161212Z hcloud_network_subnet.main: Destroying... [id=11673781-10.1.1.0/24] +2025-11-24T09:59:17.9162823Z random_pet.cassandra[2]: Destroying... [id=improved-teal] +2025-11-24T09:59:17.9172590Z random_pet.postgresql[0]: Destroying... [id=glorious-calf] +2025-11-24T09:59:17.9174382Z random_pet.cassandra[0]: Destroying... [id=tops-fowl] +2025-11-24T09:59:17.9175690Z random_pet.postgresql[2]: Destroying... [id=sound-marten] +2025-11-24T09:59:17.9176968Z random_pet.postgresql[1]: Destroying... [id=hardy-glider] +2025-11-24T09:59:17.9178223Z random_pet.cassandra[1]: Destroying... [id=noted-manatee] +2025-11-24T09:59:17.9179538Z random_pet.postgresql[1]: Destruction complete after 0s +2025-11-24T09:59:17.9180753Z random_pet.cassandra[0]: Destruction complete after 0s +2025-11-24T09:59:17.9208413Z random_pet.postgresql[0]: Destruction complete after 0s +2025-11-24T09:59:17.9209268Z random_pet.postgresql[2]: Destruction complete after 0s +2025-11-24T09:59:17.9273366Z random_pet.cassandra[1]: Destruction complete after 0s +2025-11-24T09:59:17.9364466Z random_pet.cassandra[2]: Destruction complete after 0s +2025-11-24T09:59:18.0459614Z hcloud_ssh_key.adminhost: Destruction complete after 0s +2025-11-24T09:59:18.0521482Z random_pet.adminhost: Destroying... [id=relative-moray] +2025-11-24T09:59:18.0531652Z random_pet.adminhost: Destruction complete after 0s +2025-11-24T09:59:18.0535647Z tls_private_key.admin: Destroying... [id=9a5802b646d18231eda9b090be5144478e6bd632] +2025-11-24T09:59:18.0567425Z tls_private_key.admin: Destruction complete after 0s +2025-11-24T09:59:18.2081801Z hcloud_network_subnet.main: Destruction complete after 0s +2025-11-24T09:59:18.2158325Z hcloud_network.main: Destroying... [id=11673781] +2025-11-24T09:59:18.3985860Z hcloud_network.main: Destruction complete after 0s +2025-11-24T09:59:18.4060599Z random_pet.main: Destroying... [id=guided-octopus] +2025-11-24T09:59:18.4084810Z random_pet.main: Destruction complete after 0s +2025-11-24T09:59:18.4168437Z null_resource.deployment_info: Destroying... [id=6097919591817865521] +2025-11-24T09:59:18.4178123Z null_resource.deployment_info: Destruction complete after 0s +2025-11-24T09:59:18.4287166Z  +2025-11-24T09:59:18.4287831Z Destroy complete! Resources: 36 destroyed. +2025-11-24T09:59:18.4324730Z Cleanup completed +2025-11-24T09:59:18.4343908Z ##[error]Process completed with exit code 2. +2025-11-24T09:59:18.4398826Z ##[group]Run (cd terraform/examples/wire-server-deploy-offline-hetzner ; terraform init && terraform destroy -auto-approve) +2025-11-24T09:59:18.4399976Z (cd terraform/examples/wire-server-deploy-offline-hetzner ; terraform init && terraform destroy -auto-approve) +2025-11-24T09:59:18.4469462Z shell: /usr/bin/bash -e {0} +2025-11-24T09:59:18.4469925Z env: +2025-11-24T09:59:18.4470327Z TMPDIR: /home/runner/work/_temp +2025-11-24T09:59:18.4471183Z CACHIX_SIGNING_KEY: *** +2025-11-24T09:59:18.4471952Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf +2025-11-24T09:59:18.4473080Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ +2025-11-24T09:59:18.4473843Z HCLOUD_TOKEN: *** +2025-11-24T09:59:18.4474249Z ##[endgroup] +2025-11-24T09:59:18.4817504Z Initializing the backend... +2025-11-24T09:59:18.5400614Z Initializing provider plugins... +2025-11-24T09:59:18.5401439Z - Reusing previous version of hashicorp/random from the dependency lock file +2025-11-24T09:59:18.5790453Z - Reusing previous version of hashicorp/tls from the dependency lock file +2025-11-24T09:59:18.5911834Z - Reusing previous version of hetznercloud/hcloud from the dependency lock file +2025-11-24T09:59:18.6024977Z - Reusing previous version of hashicorp/null from the dependency lock file +2025-11-24T09:59:18.6249952Z - Using previously-installed hashicorp/random v3.7.2 +2025-11-24T09:59:18.6390216Z - Using previously-installed hashicorp/tls v4.1.0 +2025-11-24T09:59:18.6580734Z - Using previously-installed hetznercloud/hcloud v1.56.0 +2025-11-24T09:59:18.6696506Z - Using previously-installed hashicorp/null v3.2.4 +2025-11-24T09:59:18.6697180Z +2025-11-24T09:59:18.6697777Z Terraform has been successfully initialized! +2025-11-24T09:59:18.6698446Z  +2025-11-24T09:59:18.6699022Z You may now begin working with Terraform. Try running "terraform plan" to see +2025-11-24T09:59:18.6699855Z any changes that are required for your infrastructure. All Terraform commands +2025-11-24T09:59:18.6700510Z should now work. +2025-11-24T09:59:18.6700810Z +2025-11-24T09:59:18.6701141Z If you ever set or change modules or backend configuration for Terraform, +2025-11-24T09:59:18.6701931Z rerun this command to reinitialize your working directory. If you forget, other +2025-11-24T09:59:18.6703035Z commands will detect it and remind you to do so if necessary. +2025-11-24T09:59:19.1191649Z +2025-11-24T09:59:19.1194407Z No changes. No objects need to be destroyed. +2025-11-24T09:59:19.1195217Z +2025-11-24T09:59:19.1198164Z Either you have not created any objects yet or the existing objects were +2025-11-24T09:59:19.1199375Z already deleted outside of Terraform. +2025-11-24T09:59:19.1228448Z  +2025-11-24T09:59:19.1230385Z Destroy complete! Resources: 0 destroyed. +2025-11-24T09:59:19.1337276Z Post job cleanup. +2025-11-24T09:59:19.1796910Z ##[group]Cachix: push +2025-11-24T09:59:19.1857588Z [command]/home/runner/.nix-profile/bin/cachix daemon stop --socket /home/runner/work/_temp/cachix-daemon-lB7wlJ/daemon.sock +2025-11-24T09:59:19.1910600Z [2025-11-24 08:24:02][Info] Starting Cachix Daemon +2025-11-24T09:59:19.1911511Z [2025-11-24 08:24:02][Info] Configuration: +2025-11-24T09:59:19.1912306Z PID: 3680 +2025-11-24T09:59:19.1913304Z Socket: /home/runner/work/_temp/cachix-daemon-lB7wlJ/daemon.sock +2025-11-24T09:59:19.1914287Z Workers: 8 +2025-11-24T09:59:19.1914944Z Cache name: wire-server +2025-11-24T09:59:19.1915701Z Cache URI: https://wire-server.cachix.org +2025-11-24T09:59:19.1916909Z Cache public keys: ["wire-server.cachix.org-1:fVWmRcvdsqzKek3X5Ad8nYNsBSjKZ9Um2NMLfMLS77Y="] +2025-11-24T09:59:19.1918058Z Cache is public: True +2025-11-24T09:59:19.1918745Z Compression: ZSTD +2025-11-24T09:59:19.2677724Z [2025-11-24 09:59:19][Info] Shutting down daemon... +2025-11-24T09:59:19.2685049Z [2025-11-24 09:59:19][Info] Daemon shut down. Exiting. +2025-11-24T09:59:20.2892355Z ##[endgroup] +2025-11-24T09:59:20.2993733Z Post job cleanup. +2025-11-24T09:59:20.3968813Z [command]/usr/bin/git version +2025-11-24T09:59:20.4013574Z git version 2.51.2 +2025-11-24T09:59:20.4063484Z Temporarily overriding HOME='/home/runner/work/_temp/8477a919-a2c2-4ecb-8fc9-899a9202a326' before making global git config changes +2025-11-24T09:59:20.4064856Z Adding repository directory to the temporary git global config as a safe directory +2025-11-24T09:59:20.4068639Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/wire-server-deploy/wire-server-deploy +2025-11-24T09:59:20.4128216Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-11-24T09:59:20.4157932Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-11-24T09:59:20.4450454Z Entering 'ansible/roles-external/ANXS.apt' +2025-11-24T09:59:20.4504796Z Entering 'ansible/roles-external/admin_users' +2025-11-24T09:59:20.4556222Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' +2025-11-24T09:59:20.4605768Z Entering 'ansible/roles-external/ansible-cassandra' +2025-11-24T09:59:20.4655671Z Entering 'ansible/roles-external/ansible-minio' +2025-11-24T09:59:20.4705811Z Entering 'ansible/roles-external/ansible-ntp-verify' +2025-11-24T09:59:20.4757500Z Entering 'ansible/roles-external/ansible-role-java' +2025-11-24T09:59:20.4808868Z Entering 'ansible/roles-external/ansible-role-ntp' +2025-11-24T09:59:20.4860919Z Entering 'ansible/roles-external/ansible-tinc' +2025-11-24T09:59:20.4912376Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' +2025-11-24T09:59:20.4963834Z Entering 'ansible/roles-external/elasticsearch' +2025-11-24T09:59:20.5015674Z Entering 'ansible/roles-external/hostname' +2025-11-24T09:59:20.5069899Z Entering 'ansible/roles-external/kubespray' +2025-11-24T09:59:20.5130607Z Entering 'ansible/roles-external/logrotate' +2025-11-24T09:59:20.5181882Z Entering 'ansible/roles-external/sft' +2025-11-24T09:59:20.5254323Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-11-24T09:59:20.5285181Z http.https://github.com/.extraheader +2025-11-24T09:59:20.5300898Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-11-24T09:59:20.5339356Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-11-24T09:59:20.5601708Z Entering 'ansible/roles-external/ANXS.apt' +2025-11-24T09:59:20.5626585Z http.https://github.com/.extraheader +2025-11-24T09:59:20.5661789Z Entering 'ansible/roles-external/admin_users' +2025-11-24T09:59:20.5687586Z http.https://github.com/.extraheader +2025-11-24T09:59:20.5723687Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' +2025-11-24T09:59:20.5762184Z http.https://github.com/.extraheader +2025-11-24T09:59:20.5802198Z Entering 'ansible/roles-external/ansible-cassandra' +2025-11-24T09:59:20.5827640Z http.https://github.com/.extraheader +2025-11-24T09:59:20.5861961Z Entering 'ansible/roles-external/ansible-minio' +2025-11-24T09:59:20.5887517Z http.https://github.com/.extraheader +2025-11-24T09:59:20.5923054Z Entering 'ansible/roles-external/ansible-ntp-verify' +2025-11-24T09:59:20.5948824Z http.https://github.com/.extraheader +2025-11-24T09:59:20.5984715Z Entering 'ansible/roles-external/ansible-role-java' +2025-11-24T09:59:20.6009609Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6045419Z Entering 'ansible/roles-external/ansible-role-ntp' +2025-11-24T09:59:20.6071151Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6106215Z Entering 'ansible/roles-external/ansible-tinc' +2025-11-24T09:59:20.6131287Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6165266Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' +2025-11-24T09:59:20.6191701Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6227788Z Entering 'ansible/roles-external/elasticsearch' +2025-11-24T09:59:20.6254000Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6290079Z Entering 'ansible/roles-external/hostname' +2025-11-24T09:59:20.6320767Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6356562Z Entering 'ansible/roles-external/kubespray' +2025-11-24T09:59:20.6383034Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6423026Z Entering 'ansible/roles-external/logrotate' +2025-11-24T09:59:20.6448246Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6483191Z Entering 'ansible/roles-external/sft' +2025-11-24T09:59:20.6509387Z http.https://github.com/.extraheader +2025-11-24T09:59:20.6711410Z Evaluate and set job outputs +2025-11-24T09:59:20.6717070Z Set output 'upload_name' +2025-11-24T09:59:20.6719217Z Cleaning up orphan processes diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index 3cdfcd91f..b7d43f48c 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -108,7 +108,9 @@ output "static-inventory" { kube_vip_controlplane_enabled = true kube_vip_arp_enabled = true kube_vip_services_enabled = false - kube_vip_interface = "enp7s0" + # Note: kube_vip_interface is intentionally NOT set to allow auto-detection + # kube-vip will automatically detect the interface containing the VIP subnet + # Hardcoding interface names (like "enp7s0") causes failures on Hetzner Cloud # VIP within the Hetzner private network subnet (second-to-last IP) kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, -2) kube_proxy_strict_arp = true From 16fe249edad8c52aded3b9f56994074731fec657 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Mon, 24 Nov 2025 16:42:43 +0100 Subject: [PATCH 14/23] try with availability check --- bin/offline-cluster.sh | 38 +++++++++++++++++++ .../outputs.tf | 12 +++--- 2 files changed, 43 insertions(+), 7 deletions(-) diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index 33d46400c..3a2ed3858 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -76,8 +76,46 @@ if [ -n "$VIP_ADDRESS" ] && [ "$VIP_ADDRESS" != "null" ]; then -e "apiserver_loadbalancer_domain_name=$VIP_ADDRESS" \ -e "loadbalancer_apiserver_localhost=false" \ -e "{\"supplementary_addresses_in_ssl_keys\": [\"$VIP_ADDRESS\"]}" + + # Wait for VIP to become reachable before continuing + echo "Waiting for VIP $VIP_ADDRESS:6443 to become reachable..." + MAX_WAIT=180 # 3 minutes + ELAPSED=0 + while ! timeout 2 bash -c "cat < /dev/null > /dev/tcp/$VIP_ADDRESS/6443" 2>/dev/null; do + if [ $ELAPSED -ge $MAX_WAIT ]; then + echo "ERROR: VIP $VIP_ADDRESS:6443 did not become reachable after ${MAX_WAIT}s" + echo "This may indicate:" + echo " 1. kube-vip pod failed to start - check: kubectl -n kube-system logs kube-vip-" + echo " 2. Network does not support ARP-based VIPs (e.g., Hetzner Cloud Layer 3 networks)" + echo " 3. VIP interface detection failed - check kube-vip pod logs" + exit 1 + fi + sleep 2 + ELAPSED=$((ELAPSED + 2)) + echo " Still waiting... (${ELAPSED}s/${MAX_WAIT}s)" + done + echo "✓ VIP $VIP_ADDRESS:6443 is reachable!" + + # Export KUBECONFIG and verify kubectl access + export KUBECONFIG="$ANSIBLE_DIR/inventory/offline/artifacts/admin.conf" + echo "Exported KUBECONFIG=$KUBECONFIG" + + # Verify kubectl can connect + echo "Verifying kubectl access to cluster..." + if kubectl cluster-info 2>/dev/null | head -1; then + echo "✓ kubectl successfully connected to cluster via VIP" + kubectl get nodes -o wide || true + else + echo "WARNING: kubectl cannot connect to cluster" + echo "KUBECONFIG content:" + grep "server:" "$KUBECONFIG" || true + fi else echo "No VIP configured, skipping kube-vip deployment" + + # Still export KUBECONFIG for nginx localhost load balancer + export KUBECONFIG="$ANSIBLE_DIR/inventory/offline/artifacts/admin.conf" + echo "Exported KUBECONFIG=$KUBECONFIG (using nginx localhost load balancer)" fi # Deploy all other services which don't run in kubernetes. diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index b7d43f48c..5b9fd1891 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -100,17 +100,15 @@ output "static-inventory" { upstream_dns_servers = [tolist(hcloud_server.adminhost.network)[0].ip] # kube-vip configuration for control plane HA - # Enabled for CI to test the production deployment path - # See: offline/kube-vip-ha-setup.md and ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml - # Following kubespray's test approach: kube-vip vars only, NO loadbalancer_apiserver - # This avoids bootstrap chicken-and-egg problem. kubeadm uses node IP, kube-vip provides VIP. + # Network: 10.1.1.0/24 (Hetzner Cloud private network) + # VIP: 10.1.1.254 (second-to-last IP in subnet) + # + # Note: No interface specified - kube-vip will auto-detect the interface + # with an IP in the VIP's subnet (10.1.1.0/24) kube_vip_enabled = true kube_vip_controlplane_enabled = true kube_vip_arp_enabled = true kube_vip_services_enabled = false - # Note: kube_vip_interface is intentionally NOT set to allow auto-detection - # kube-vip will automatically detect the interface containing the VIP subnet - # Hardcoding interface names (like "enp7s0") causes failures on Hetzner Cloud # VIP within the Hetzner private network subnet (second-to-last IP) kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, -2) kube_proxy_strict_arp = true From 3a5518cc84a211e4695c13d93c811751d8a3e9ae Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Tue, 25 Nov 2025 13:23:11 +0100 Subject: [PATCH 15/23] try with fixed alias IP --- 1_Build default profile.txt | 68419 ---------------- .../main.tf | 3 + .../outputs.tf | 10 +- 3 files changed, 10 insertions(+), 68422 deletions(-) delete mode 100644 1_Build default profile.txt diff --git a/1_Build default profile.txt b/1_Build default profile.txt deleted file mode 100644 index dfb0c749a..000000000 --- a/1_Build default profile.txt +++ /dev/null @@ -1,68419 +0,0 @@ -2025-11-24T08:23:41.5351671Z Current runner version: '2.329.0' -2025-11-24T08:23:41.5361091Z Runner name: 'U22.04-4CPU-16Gig-150GB_719a4ce43e84' -2025-11-24T08:23:41.5363147Z Runner group name: 'wire-server-deploy' -2025-11-24T08:23:41.5365042Z Machine name: 'runnervmg1sw1' -2025-11-24T08:23:41.5389330Z ##[group]Operating System -2025-11-24T08:23:41.5391674Z Ubuntu -2025-11-24T08:23:41.5394441Z 24.04.3 -2025-11-24T08:23:41.5396681Z LTS -2025-11-24T08:23:41.5398833Z ##[endgroup] -2025-11-24T08:23:41.5401112Z ##[group]Runner Image -2025-11-24T08:23:41.5403585Z Image: ubuntu-24.04 -2025-11-24T08:23:41.5405718Z Version: 20251112.124.1 -2025-11-24T08:23:41.5408958Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20251112.124/images/ubuntu/Ubuntu2404-Readme.md -2025-11-24T08:23:41.5413346Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20251112.124 -2025-11-24T08:23:41.5416328Z ##[endgroup] -2025-11-24T08:23:41.5423462Z ##[group]GITHUB_TOKEN Permissions -2025-11-24T08:23:41.5428316Z Actions: write -2025-11-24T08:23:41.5430618Z ArtifactMetadata: write -2025-11-24T08:23:41.5433133Z Attestations: write -2025-11-24T08:23:41.5435384Z Checks: write -2025-11-24T08:23:41.5437534Z Contents: write -2025-11-24T08:23:41.5439740Z Deployments: write -2025-11-24T08:23:41.5441943Z Discussions: write -2025-11-24T08:23:41.5444254Z Issues: write -2025-11-24T08:23:41.5446354Z Metadata: read -2025-11-24T08:23:41.5448572Z Models: read -2025-11-24T08:23:41.5450612Z Packages: write -2025-11-24T08:23:41.5453060Z Pages: write -2025-11-24T08:23:41.5455485Z PullRequests: write -2025-11-24T08:23:41.5457755Z RepositoryProjects: write -2025-11-24T08:23:41.5460190Z SecurityEvents: write -2025-11-24T08:23:41.5462973Z Statuses: write -2025-11-24T08:23:41.5465078Z ##[endgroup] -2025-11-24T08:23:41.5469621Z Secret source: Actions -2025-11-24T08:23:41.5471909Z Prepare workflow directory -2025-11-24T08:23:41.5975371Z Prepare all required actions -2025-11-24T08:23:41.6098863Z Getting action download info -2025-11-24T08:23:41.9732286Z Download action repository 'actions/checkout@v2' (SHA:ee0669bd1cc54295c223e0bb666b733df41de1c5) -2025-11-24T08:23:42.1218218Z Download action repository 'cachix/install-nix-action@v27' (SHA:ba0dd844c9180cbf77aa72a116d6fbc515d0e87b) -2025-11-24T08:23:42.4076815Z Download action repository 'cachix/cachix-action@v15' (SHA:ad2ddac53f961de1989924296a1f236fcfbaa4fc) -2025-11-24T08:23:42.6744009Z Download action repository 'hashicorp/setup-terraform@v3' (SHA:b9cd54a3c349d3f38e8881555d616ced269862dd) -2025-11-24T08:23:43.3129306Z Complete job name: Build default profile -2025-11-24T08:23:43.4145490Z ##[group]Run actions/checkout@v2 -2025-11-24T08:23:43.4147997Z with: -2025-11-24T08:23:43.4149859Z submodules: true -2025-11-24T08:23:43.4151862Z repository: wireapp/wire-server-deploy -2025-11-24T08:23:43.4154756Z token: *** -2025-11-24T08:23:43.4156632Z ssh-strict: true -2025-11-24T08:23:43.4158604Z persist-credentials: true -2025-11-24T08:23:43.4160625Z clean: true -2025-11-24T08:23:43.4162461Z fetch-depth: 1 -2025-11-24T08:23:43.4164462Z lfs: false -2025-11-24T08:23:43.4166420Z set-safe-directory: true -2025-11-24T08:23:43.4168711Z ##[endgroup] -2025-11-24T08:23:43.5279858Z Syncing repository: wireapp/wire-server-deploy -2025-11-24T08:23:43.5287203Z ##[group]Getting Git version info -2025-11-24T08:23:43.5291868Z Working directory is '/home/runner/work/wire-server-deploy/wire-server-deploy' -2025-11-24T08:23:43.5298809Z [command]/usr/bin/git version -2025-11-24T08:23:43.6194719Z git version 2.51.2 -2025-11-24T08:23:43.6224605Z ##[endgroup] -2025-11-24T08:23:43.6238706Z Temporarily overriding HOME='/home/runner/work/_temp/357a22b0-977a-416c-855a-80702ff35157' before making global git config changes -2025-11-24T08:23:43.6243680Z Adding repository directory to the temporary git global config as a safe directory -2025-11-24T08:23:43.6247728Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/wire-server-deploy/wire-server-deploy -2025-11-24T08:23:43.6334147Z Deleting the contents of '/home/runner/work/wire-server-deploy/wire-server-deploy' -2025-11-24T08:23:43.6342355Z ##[group]Initializing the repository -2025-11-24T08:23:43.6347281Z [command]/usr/bin/git init /home/runner/work/wire-server-deploy/wire-server-deploy -2025-11-24T08:23:43.7259561Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-11-24T08:23:43.7263468Z hint: is subject to change. To configure the initial branch name to use in all -2025-11-24T08:23:43.7266710Z hint: of your new repositories, which will suppress this warning, call: -2025-11-24T08:23:43.7269288Z hint: -2025-11-24T08:23:43.7271355Z hint: git config --global init.defaultBranch -2025-11-24T08:23:43.7273964Z hint: -2025-11-24T08:23:43.7276223Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-11-24T08:23:43.7279288Z hint: 'development'. The just-created branch can be renamed via this command: -2025-11-24T08:23:43.7281847Z hint: -2025-11-24T08:23:43.7283940Z hint: git branch -m -2025-11-24T08:23:43.7285917Z hint: -2025-11-24T08:23:43.7288227Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-11-24T08:23:43.7306773Z Initialized empty Git repository in /home/runner/work/wire-server-deploy/wire-server-deploy/.git/ -2025-11-24T08:23:43.7318803Z [command]/usr/bin/git remote add origin https://github.com/wireapp/wire-server-deploy -2025-11-24T08:23:43.7440899Z ##[endgroup] -2025-11-24T08:23:43.7447116Z ##[group]Disabling automatic garbage collection -2025-11-24T08:23:43.7451372Z [command]/usr/bin/git config --local gc.auto 0 -2025-11-24T08:23:43.7457955Z ##[endgroup] -2025-11-24T08:23:43.7463670Z ##[group]Setting up auth -2025-11-24T08:23:43.7468173Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-11-24T08:23:43.7498153Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-11-24T08:23:44.0075254Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-11-24T08:23:44.0109691Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-11-24T08:23:44.0347225Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-11-24T08:23:44.0384868Z ##[endgroup] -2025-11-24T08:23:44.0387847Z ##[group]Fetching the repository -2025-11-24T08:23:44.0393834Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +8e9551337084771742ec8fc44c4955baa28a8a5c:refs/remotes/pull/829/merge -2025-11-24T08:23:44.3645256Z remote: Enumerating objects: 621, done. -2025-11-24T08:23:44.3648993Z remote: Counting objects: 0% (1/621) -2025-11-24T08:23:44.3651970Z remote: Counting objects: 1% (7/621) -2025-11-24T08:23:44.3655056Z remote: Counting objects: 2% (13/621) -2025-11-24T08:23:44.3657408Z remote: Counting objects: 3% (19/621) -2025-11-24T08:23:44.3659770Z remote: Counting objects: 4% (25/621) -2025-11-24T08:23:44.3662055Z remote: Counting objects: 5% (32/621) -2025-11-24T08:23:44.3664598Z remote: Counting objects: 6% (38/621) -2025-11-24T08:23:44.3666891Z remote: Counting objects: 7% (44/621) -2025-11-24T08:23:44.3669116Z remote: Counting objects: 8% (50/621) -2025-11-24T08:23:44.3671413Z remote: Counting objects: 9% (56/621) -2025-11-24T08:23:44.3673823Z remote: Counting objects: 10% (63/621) -2025-11-24T08:23:44.3676052Z remote: Counting objects: 11% (69/621) -2025-11-24T08:23:44.3678272Z remote: Counting objects: 12% (75/621) -2025-11-24T08:23:44.3680525Z remote: Counting objects: 13% (81/621) -2025-11-24T08:23:44.3682947Z remote: Counting objects: 14% (87/621) -2025-11-24T08:23:44.3685216Z remote: Counting objects: 15% (94/621) -2025-11-24T08:23:44.3687899Z remote: Counting objects: 16% (100/621) -2025-11-24T08:23:44.3690173Z remote: Counting objects: 17% (106/621) -2025-11-24T08:23:44.3692422Z remote: Counting objects: 18% (112/621) -2025-11-24T08:23:44.3695004Z remote: Counting objects: 19% (118/621) -2025-11-24T08:23:44.3697259Z remote: Counting objects: 20% (125/621) -2025-11-24T08:23:44.3699520Z remote: Counting objects: 21% (131/621) -2025-11-24T08:23:44.3701823Z remote: Counting objects: 22% (137/621) -2025-11-24T08:23:44.3704299Z remote: Counting objects: 23% (143/621) -2025-11-24T08:23:44.3706609Z remote: Counting objects: 24% (150/621) -2025-11-24T08:23:44.3708846Z remote: Counting objects: 25% (156/621) -2025-11-24T08:23:44.3711080Z remote: Counting objects: 26% (162/621) -2025-11-24T08:23:44.3713476Z remote: Counting objects: 27% (168/621) -2025-11-24T08:23:44.3715717Z remote: Counting objects: 28% (174/621) -2025-11-24T08:23:44.3717974Z remote: Counting objects: 29% (181/621) -2025-11-24T08:23:44.3720196Z remote: Counting objects: 30% (187/621) -2025-11-24T08:23:44.3722430Z remote: Counting objects: 31% (193/621) -2025-11-24T08:23:44.3724861Z remote: Counting objects: 32% (199/621) -2025-11-24T08:23:44.3727127Z remote: Counting objects: 33% (205/621) -2025-11-24T08:23:44.3729358Z remote: Counting objects: 34% (212/621) -2025-11-24T08:23:44.3731587Z remote: Counting objects: 35% (218/621) -2025-11-24T08:23:44.3733993Z remote: Counting objects: 36% (224/621) -2025-11-24T08:23:44.3736226Z remote: Counting objects: 37% (230/621) -2025-11-24T08:23:44.3738463Z remote: Counting objects: 38% (236/621) -2025-11-24T08:23:44.3740691Z remote: Counting objects: 39% (243/621) -2025-11-24T08:23:44.3743117Z remote: Counting objects: 40% (249/621) -2025-11-24T08:23:44.3745365Z remote: Counting objects: 41% (255/621) -2025-11-24T08:23:44.3747615Z remote: Counting objects: 42% (261/621) -2025-11-24T08:23:44.3749827Z remote: Counting objects: 43% (268/621) -2025-11-24T08:23:44.3752049Z remote: Counting objects: 44% (274/621) -2025-11-24T08:23:44.3754469Z remote: Counting objects: 45% (280/621) -2025-11-24T08:23:44.3756731Z remote: Counting objects: 46% (286/621) -2025-11-24T08:23:44.3758947Z remote: Counting objects: 47% (292/621) -2025-11-24T08:23:44.3761178Z remote: Counting objects: 48% (299/621) -2025-11-24T08:23:44.3763875Z remote: Counting objects: 49% (305/621) -2025-11-24T08:23:44.3766177Z remote: Counting objects: 50% (311/621) -2025-11-24T08:23:44.3768404Z remote: Counting objects: 51% (317/621) -2025-11-24T08:23:44.3770607Z remote: Counting objects: 52% (323/621) -2025-11-24T08:23:44.3773065Z remote: Counting objects: 53% (330/621) -2025-11-24T08:23:44.3775310Z remote: Counting objects: 54% (336/621) -2025-11-24T08:23:44.3777518Z remote: Counting objects: 55% (342/621) -2025-11-24T08:23:44.3779751Z remote: Counting objects: 56% (348/621) -2025-11-24T08:23:44.3781958Z remote: Counting objects: 57% (354/621) -2025-11-24T08:23:44.3784342Z remote: Counting objects: 58% (361/621) -2025-11-24T08:23:44.3786572Z remote: Counting objects: 59% (367/621) -2025-11-24T08:23:44.3788785Z remote: Counting objects: 60% (373/621) -2025-11-24T08:23:44.3791005Z remote: Counting objects: 61% (379/621) -2025-11-24T08:23:44.3794394Z remote: Counting objects: 62% (386/621) -2025-11-24T08:23:44.3797927Z remote: Counting objects: 63% (392/621) -2025-11-24T08:23:44.3801712Z remote: Counting objects: 64% (398/621) -2025-11-24T08:23:44.3805136Z remote: Counting objects: 65% (404/621) -2025-11-24T08:23:44.3807431Z remote: Counting objects: 66% (410/621) -2025-11-24T08:23:44.3809668Z remote: Counting objects: 67% (417/621) -2025-11-24T08:23:44.3813892Z remote: Counting objects: 68% (423/621) -2025-11-24T08:23:44.3817219Z remote: Counting objects: 69% (429/621) -2025-11-24T08:23:44.3821234Z remote: Counting objects: 70% (435/621) -2025-11-24T08:23:44.3823669Z remote: Counting objects: 71% (441/621) -2025-11-24T08:23:44.3826815Z remote: Counting objects: 72% (448/621) -2025-11-24T08:23:44.3828887Z remote: Counting objects: 73% (454/621) -2025-11-24T08:23:44.3832016Z remote: Counting objects: 74% (460/621) -2025-11-24T08:23:44.3835911Z remote: Counting objects: 75% (466/621) -2025-11-24T08:23:44.3838811Z remote: Counting objects: 76% (472/621) -2025-11-24T08:23:44.3841610Z remote: Counting objects: 77% (479/621) -2025-11-24T08:23:44.3843996Z remote: Counting objects: 78% (485/621) -2025-11-24T08:23:44.3846046Z remote: Counting objects: 79% (491/621) -2025-11-24T08:23:44.3848922Z remote: Counting objects: 80% (497/621) -2025-11-24T08:23:44.3851904Z remote: Counting objects: 81% (504/621) -2025-11-24T08:23:44.3855063Z remote: Counting objects: 82% (510/621) -2025-11-24T08:23:44.3857352Z remote: Counting objects: 83% (516/621) -2025-11-24T08:23:44.3859375Z remote: Counting objects: 84% (522/621) -2025-11-24T08:23:44.3861375Z remote: Counting objects: 85% (528/621) -2025-11-24T08:23:44.3864627Z remote: Counting objects: 86% (535/621) -2025-11-24T08:23:44.3867780Z remote: Counting objects: 87% (541/621) -2025-11-24T08:23:44.3870752Z remote: Counting objects: 88% (547/621) -2025-11-24T08:23:44.3873202Z remote: Counting objects: 89% (553/621) -2025-11-24T08:23:44.3875248Z remote: Counting objects: 90% (559/621) -2025-11-24T08:23:44.3877384Z remote: Counting objects: 91% (566/621) -2025-11-24T08:23:44.3879391Z remote: Counting objects: 92% (572/621) -2025-11-24T08:23:44.3881403Z remote: Counting objects: 93% (578/621) -2025-11-24T08:23:44.3883680Z remote: Counting objects: 94% (584/621) -2025-11-24T08:23:44.3885731Z remote: Counting objects: 95% (590/621) -2025-11-24T08:23:44.3887746Z remote: Counting objects: 96% (597/621) -2025-11-24T08:23:44.3889783Z remote: Counting objects: 97% (603/621) -2025-11-24T08:23:44.3891783Z remote: Counting objects: 98% (609/621) -2025-11-24T08:23:44.3893913Z remote: Counting objects: 99% (615/621) -2025-11-24T08:23:44.3895912Z remote: Counting objects: 100% (621/621) -2025-11-24T08:23:44.3898294Z remote: Counting objects: 100% (621/621), done. -2025-11-24T08:23:44.3900526Z remote: Compressing objects: 0% (1/513) -2025-11-24T08:23:44.3902571Z remote: Compressing objects: 1% (6/513) -2025-11-24T08:23:44.3904848Z remote: Compressing objects: 2% (11/513) -2025-11-24T08:23:44.3906828Z remote: Compressing objects: 3% (16/513) -2025-11-24T08:23:44.3908794Z remote: Compressing objects: 4% (21/513) -2025-11-24T08:23:44.3910751Z remote: Compressing objects: 5% (26/513) -2025-11-24T08:23:44.3912874Z remote: Compressing objects: 6% (31/513) -2025-11-24T08:23:44.3914835Z remote: Compressing objects: 7% (36/513) -2025-11-24T08:23:44.3916792Z remote: Compressing objects: 8% (42/513) -2025-11-24T08:23:44.3918739Z remote: Compressing objects: 9% (47/513) -2025-11-24T08:23:44.3920686Z remote: Compressing objects: 10% (52/513) -2025-11-24T08:23:44.3922798Z remote: Compressing objects: 11% (57/513) -2025-11-24T08:23:44.3924848Z remote: Compressing objects: 12% (62/513) -2025-11-24T08:23:44.3926819Z remote: Compressing objects: 13% (67/513) -2025-11-24T08:23:44.3928761Z remote: Compressing objects: 14% (72/513) -2025-11-24T08:23:44.3930706Z remote: Compressing objects: 15% (77/513) -2025-11-24T08:23:44.3932773Z remote: Compressing objects: 16% (83/513) -2025-11-24T08:23:44.3934739Z remote: Compressing objects: 17% (88/513) -2025-11-24T08:23:44.3936691Z remote: Compressing objects: 18% (93/513) -2025-11-24T08:23:44.3938884Z remote: Compressing objects: 19% (98/513) -2025-11-24T08:23:44.3940834Z remote: Compressing objects: 20% (103/513) -2025-11-24T08:23:44.3943052Z remote: Compressing objects: 21% (108/513) -2025-11-24T08:23:44.3945045Z remote: Compressing objects: 22% (113/513) -2025-11-24T08:23:44.3947221Z remote: Compressing objects: 23% (118/513) -2025-11-24T08:23:44.3950460Z remote: Compressing objects: 24% (124/513) -2025-11-24T08:23:44.3954145Z remote: Compressing objects: 25% (129/513) -2025-11-24T08:23:44.3957662Z remote: Compressing objects: 26% (134/513) -2025-11-24T08:23:44.3959794Z remote: Compressing objects: 27% (139/513) -2025-11-24T08:23:44.3961770Z remote: Compressing objects: 28% (144/513) -2025-11-24T08:23:44.3964006Z remote: Compressing objects: 29% (149/513) -2025-11-24T08:23:44.3967217Z remote: Compressing objects: 30% (154/513) -2025-11-24T08:23:44.3970085Z remote: Compressing objects: 31% (160/513) -2025-11-24T08:23:44.3972084Z remote: Compressing objects: 32% (165/513) -2025-11-24T08:23:44.3974190Z remote: Compressing objects: 33% (170/513) -2025-11-24T08:23:44.3976152Z remote: Compressing objects: 34% (175/513) -2025-11-24T08:23:44.3978176Z remote: Compressing objects: 35% (180/513) -2025-11-24T08:23:44.3980066Z remote: Compressing objects: 36% (185/513) -2025-11-24T08:23:44.3981942Z remote: Compressing objects: 37% (190/513) -2025-11-24T08:23:44.3984051Z remote: Compressing objects: 38% (195/513) -2025-11-24T08:23:44.3986644Z remote: Compressing objects: 39% (201/513) -2025-11-24T08:23:44.3988909Z remote: Compressing objects: 40% (206/513) -2025-11-24T08:23:44.3990795Z remote: Compressing objects: 41% (211/513) -2025-11-24T08:23:44.3992877Z remote: Compressing objects: 42% (216/513) -2025-11-24T08:23:44.3994748Z remote: Compressing objects: 43% (221/513) -2025-11-24T08:23:44.3996635Z remote: Compressing objects: 44% (226/513) -2025-11-24T08:23:44.3998493Z remote: Compressing objects: 45% (231/513) -2025-11-24T08:23:44.4000350Z remote: Compressing objects: 46% (236/513) -2025-11-24T08:23:44.4002195Z remote: Compressing objects: 47% (242/513) -2025-11-24T08:23:44.4004670Z remote: Compressing objects: 48% (247/513) -2025-11-24T08:23:44.4007161Z remote: Compressing objects: 49% (252/513) -2025-11-24T08:23:44.4009332Z remote: Compressing objects: 50% (257/513) -2025-11-24T08:23:44.4012120Z remote: Compressing objects: 51% (262/513) -2025-11-24T08:23:44.4014228Z remote: Compressing objects: 52% (267/513) -2025-11-24T08:23:44.4016106Z remote: Compressing objects: 53% (272/513) -2025-11-24T08:23:44.4017956Z remote: Compressing objects: 54% (278/513) -2025-11-24T08:23:44.4019804Z remote: Compressing objects: 55% (283/513) -2025-11-24T08:23:44.4023346Z remote: Compressing objects: 56% (288/513) -2025-11-24T08:23:44.4026473Z remote: Compressing objects: 57% (293/513) -2025-11-24T08:23:44.4028844Z remote: Compressing objects: 58% (298/513) -2025-11-24T08:23:44.4031746Z remote: Compressing objects: 59% (303/513) -2025-11-24T08:23:44.4035017Z remote: Compressing objects: 60% (308/513) -2025-11-24T08:23:44.4037447Z remote: Compressing objects: 61% (313/513) -2025-11-24T08:23:44.4040960Z remote: Compressing objects: 62% (319/513) -2025-11-24T08:23:44.4043582Z remote: Compressing objects: 63% (324/513) -2025-11-24T08:23:44.4047133Z remote: Compressing objects: 64% (329/513) -2025-11-24T08:23:44.4050702Z remote: Compressing objects: 65% (334/513) -2025-11-24T08:23:44.4054245Z remote: Compressing objects: 66% (339/513) -2025-11-24T08:23:44.4056205Z remote: Compressing objects: 67% (344/513) -2025-11-24T08:23:44.4058057Z remote: Compressing objects: 68% (349/513) -2025-11-24T08:23:44.4060629Z remote: Compressing objects: 69% (354/513) -2025-11-24T08:23:44.4063856Z remote: Compressing objects: 70% (360/513) -2025-11-24T08:23:44.4067010Z remote: Compressing objects: 71% (365/513) -2025-11-24T08:23:44.4069909Z remote: Compressing objects: 72% (370/513) -2025-11-24T08:23:44.4073231Z remote: Compressing objects: 73% (375/513) -2025-11-24T08:23:44.4076290Z remote: Compressing objects: 74% (380/513) -2025-11-24T08:23:44.4078871Z remote: Compressing objects: 75% (385/513) -2025-11-24T08:23:44.4081593Z remote: Compressing objects: 76% (390/513) -2025-11-24T08:23:44.4084291Z remote: Compressing objects: 77% (396/513) -2025-11-24T08:23:44.4085933Z remote: Compressing objects: 78% (401/513) -2025-11-24T08:23:44.4087607Z remote: Compressing objects: 79% (406/513) -2025-11-24T08:23:44.4089284Z remote: Compressing objects: 80% (411/513) -2025-11-24T08:23:44.4090923Z remote: Compressing objects: 81% (416/513) -2025-11-24T08:23:44.4092883Z remote: Compressing objects: 82% (421/513) -2025-11-24T08:23:44.4094599Z remote: Compressing objects: 83% (426/513) -2025-11-24T08:23:44.4096264Z remote: Compressing objects: 84% (431/513) -2025-11-24T08:23:44.4097498Z remote: Compressing objects: 85% (437/513) -2025-11-24T08:23:44.4098657Z remote: Compressing objects: 86% (442/513) -2025-11-24T08:23:44.4099853Z remote: Compressing objects: 87% (447/513) -2025-11-24T08:23:44.4101024Z remote: Compressing objects: 88% (452/513) -2025-11-24T08:23:44.4102467Z remote: Compressing objects: 89% (457/513) -2025-11-24T08:23:44.4103953Z remote: Compressing objects: 90% (462/513) -2025-11-24T08:23:44.4105116Z remote: Compressing objects: 91% (467/513) -2025-11-24T08:23:44.4106280Z remote: Compressing objects: 92% (472/513) -2025-11-24T08:23:44.4107424Z remote: Compressing objects: 93% (478/513) -2025-11-24T08:23:44.4108504Z remote: Compressing objects: 94% (483/513) -2025-11-24T08:23:44.4109808Z remote: Compressing objects: 95% (488/513) -2025-11-24T08:23:44.4110825Z remote: Compressing objects: 96% (493/513) -2025-11-24T08:23:44.4111712Z remote: Compressing objects: 97% (498/513) -2025-11-24T08:23:44.4112609Z remote: Compressing objects: 98% (503/513) -2025-11-24T08:23:44.4113831Z remote: Compressing objects: 99% (508/513) -2025-11-24T08:23:44.4114978Z remote: Compressing objects: 100% (513/513) -2025-11-24T08:23:44.4115920Z remote: Compressing objects: 100% (513/513), done. -2025-11-24T08:23:44.4267908Z Receiving objects: 0% (1/621) -2025-11-24T08:23:44.4269015Z Receiving objects: 1% (7/621) -2025-11-24T08:23:44.4273131Z Receiving objects: 2% (13/621) -2025-11-24T08:23:44.4275166Z Receiving objects: 3% (19/621) -2025-11-24T08:23:44.4280975Z Receiving objects: 4% (25/621) -2025-11-24T08:23:44.4283336Z Receiving objects: 5% (32/621) -2025-11-24T08:23:44.4286401Z Receiving objects: 6% (38/621) -2025-11-24T08:23:44.4287468Z Receiving objects: 7% (44/621) -2025-11-24T08:23:44.4292131Z Receiving objects: 8% (50/621) -2025-11-24T08:23:44.4293762Z Receiving objects: 9% (56/621) -2025-11-24T08:23:44.4295107Z Receiving objects: 10% (63/621) -2025-11-24T08:23:44.4296177Z Receiving objects: 11% (69/621) -2025-11-24T08:23:44.4297212Z Receiving objects: 12% (75/621) -2025-11-24T08:23:44.4303328Z Receiving objects: 13% (81/621) -2025-11-24T08:23:44.4305830Z Receiving objects: 14% (87/621) -2025-11-24T08:23:44.4308284Z Receiving objects: 15% (94/621) -2025-11-24T08:23:44.4309291Z Receiving objects: 16% (100/621) -2025-11-24T08:23:44.4310278Z Receiving objects: 17% (106/621) -2025-11-24T08:23:44.4311221Z Receiving objects: 18% (112/621) -2025-11-24T08:23:44.4330180Z Receiving objects: 19% (118/621) -2025-11-24T08:23:44.4331255Z Receiving objects: 20% (125/621) -2025-11-24T08:23:44.4332240Z Receiving objects: 21% (131/621) -2025-11-24T08:23:44.4333516Z Receiving objects: 22% (137/621) -2025-11-24T08:23:44.4334931Z Receiving objects: 23% (143/621) -2025-11-24T08:23:44.4335939Z Receiving objects: 24% (150/621) -2025-11-24T08:23:44.4336963Z Receiving objects: 25% (156/621) -2025-11-24T08:23:44.4337988Z Receiving objects: 26% (162/621) -2025-11-24T08:23:44.4339001Z Receiving objects: 27% (168/621) -2025-11-24T08:23:44.4340012Z Receiving objects: 28% (174/621) -2025-11-24T08:23:44.4341348Z Receiving objects: 29% (181/621) -2025-11-24T08:23:44.4343188Z Receiving objects: 30% (187/621) -2025-11-24T08:23:44.4344786Z Receiving objects: 31% (193/621) -2025-11-24T08:23:44.4346355Z Receiving objects: 32% (199/621) -2025-11-24T08:23:44.4347918Z Receiving objects: 33% (205/621) -2025-11-24T08:23:44.4349499Z Receiving objects: 34% (212/621) -2025-11-24T08:23:44.4351068Z Receiving objects: 35% (218/621) -2025-11-24T08:23:44.4353017Z Receiving objects: 36% (224/621) -2025-11-24T08:23:44.4372473Z Receiving objects: 37% (230/621) -2025-11-24T08:23:44.4373707Z Receiving objects: 38% (236/621) -2025-11-24T08:23:44.4374679Z Receiving objects: 39% (243/621) -2025-11-24T08:23:44.4375605Z Receiving objects: 40% (249/621) -2025-11-24T08:23:44.4376508Z Receiving objects: 41% (255/621) -2025-11-24T08:23:44.4377408Z Receiving objects: 42% (261/621) -2025-11-24T08:23:44.4378379Z Receiving objects: 43% (268/621) -2025-11-24T08:23:44.4379376Z Receiving objects: 44% (274/621) -2025-11-24T08:23:44.4380360Z Receiving objects: 45% (280/621) -2025-11-24T08:23:44.4405434Z Receiving objects: 46% (286/621) -2025-11-24T08:23:44.4409035Z Receiving objects: 47% (292/621) -2025-11-24T08:23:44.4427764Z Receiving objects: 48% (299/621) -2025-11-24T08:23:44.4431334Z Receiving objects: 49% (305/621) -2025-11-24T08:23:44.4434911Z Receiving objects: 50% (311/621) -2025-11-24T08:23:44.4435786Z Receiving objects: 51% (317/621) -2025-11-24T08:23:44.4440147Z Receiving objects: 52% (323/621) -2025-11-24T08:23:44.4441294Z Receiving objects: 53% (330/621) -2025-11-24T08:23:44.4442261Z Receiving objects: 54% (336/621) -2025-11-24T08:23:44.4443534Z Receiving objects: 55% (342/621) -2025-11-24T08:23:44.4444724Z Receiving objects: 56% (348/621) -2025-11-24T08:23:44.4452234Z Receiving objects: 57% (354/621) -2025-11-24T08:23:44.4454198Z Receiving objects: 58% (361/621) -2025-11-24T08:23:44.4479257Z Receiving objects: 59% (367/621) -2025-11-24T08:23:44.4485047Z Receiving objects: 60% (373/621) -2025-11-24T08:23:44.4512588Z Receiving objects: 61% (379/621) -2025-11-24T08:23:44.4518517Z Receiving objects: 62% (386/621) -2025-11-24T08:23:44.4520309Z Receiving objects: 63% (392/621) -2025-11-24T08:23:44.4522165Z Receiving objects: 64% (398/621) -2025-11-24T08:23:44.4526173Z Receiving objects: 65% (404/621) -2025-11-24T08:23:44.4527504Z Receiving objects: 66% (410/621) -2025-11-24T08:23:44.4528985Z Receiving objects: 67% (417/621) -2025-11-24T08:23:44.4529929Z Receiving objects: 68% (423/621) -2025-11-24T08:23:44.4531445Z Receiving objects: 69% (429/621) -2025-11-24T08:23:44.4533207Z Receiving objects: 70% (435/621) -2025-11-24T08:23:44.4534192Z Receiving objects: 71% (441/621) -2025-11-24T08:23:44.4536112Z Receiving objects: 72% (448/621) -2025-11-24T08:23:44.4537126Z Receiving objects: 73% (454/621) -2025-11-24T08:23:44.4538218Z Receiving objects: 74% (460/621) -2025-11-24T08:23:44.4539137Z Receiving objects: 75% (466/621) -2025-11-24T08:23:44.4540201Z Receiving objects: 76% (472/621) -2025-11-24T08:23:44.4541021Z Receiving objects: 77% (479/621) -2025-11-24T08:23:44.4542092Z Receiving objects: 78% (485/621) -2025-11-24T08:23:44.4543223Z Receiving objects: 79% (491/621) -2025-11-24T08:23:44.4544403Z Receiving objects: 80% (497/621) -2025-11-24T08:23:44.4545370Z Receiving objects: 81% (504/621) -2025-11-24T08:23:44.4556369Z Receiving objects: 82% (510/621) -2025-11-24T08:23:44.4559484Z Receiving objects: 83% (516/621) -2025-11-24T08:23:44.4560478Z Receiving objects: 84% (522/621) -2025-11-24T08:23:44.4561695Z remote: Total 621 (delta 71), reused 404 (delta 57), pack-reused 0 (from 0) -2025-11-24T08:23:44.4574614Z Receiving objects: 85% (528/621) -2025-11-24T08:23:44.4576588Z Receiving objects: 86% (535/621) -2025-11-24T08:23:44.4577778Z Receiving objects: 87% (541/621) -2025-11-24T08:23:44.4578735Z Receiving objects: 88% (547/621) -2025-11-24T08:23:44.4579677Z Receiving objects: 89% (553/621) -2025-11-24T08:23:44.4580642Z Receiving objects: 90% (559/621) -2025-11-24T08:23:44.4581564Z Receiving objects: 91% (566/621) -2025-11-24T08:23:44.4582479Z Receiving objects: 92% (572/621) -2025-11-24T08:23:44.4583592Z Receiving objects: 93% (578/621) -2025-11-24T08:23:44.4584564Z Receiving objects: 94% (584/621) -2025-11-24T08:23:44.4585474Z Receiving objects: 95% (590/621) -2025-11-24T08:23:44.4586411Z Receiving objects: 96% (597/621) -2025-11-24T08:23:44.4587340Z Receiving objects: 97% (603/621) -2025-11-24T08:23:44.4588319Z Receiving objects: 98% (609/621) -2025-11-24T08:23:44.4589304Z Receiving objects: 99% (615/621) -2025-11-24T08:23:44.4590238Z Receiving objects: 100% (621/621) -2025-11-24T08:23:44.4591313Z Receiving objects: 100% (621/621), 552.60 KiB | 13.16 MiB/s, done. -2025-11-24T08:23:44.4592509Z Resolving deltas: 0% (0/71) -2025-11-24T08:23:44.4593599Z Resolving deltas: 1% (1/71) -2025-11-24T08:23:44.4594524Z Resolving deltas: 2% (2/71) -2025-11-24T08:23:44.4600693Z Resolving deltas: 4% (3/71) -2025-11-24T08:23:44.4601933Z Resolving deltas: 5% (4/71) -2025-11-24T08:23:44.4603486Z Resolving deltas: 7% (5/71) -2025-11-24T08:23:44.4610489Z Resolving deltas: 8% (6/71) -2025-11-24T08:23:44.4615651Z Resolving deltas: 11% (8/71) -2025-11-24T08:23:44.4616812Z Resolving deltas: 12% (9/71) -2025-11-24T08:23:44.4623294Z Resolving deltas: 14% (10/71) -2025-11-24T08:23:44.4624345Z Resolving deltas: 15% (11/71) -2025-11-24T08:23:44.4625268Z Resolving deltas: 16% (12/71) -2025-11-24T08:23:44.4626199Z Resolving deltas: 18% (13/71) -2025-11-24T08:23:44.4627098Z Resolving deltas: 19% (14/71) -2025-11-24T08:23:44.4628004Z Resolving deltas: 21% (15/71) -2025-11-24T08:23:44.4635360Z Resolving deltas: 22% (16/71) -2025-11-24T08:23:44.4636386Z Resolving deltas: 23% (17/71) -2025-11-24T08:23:44.4637333Z Resolving deltas: 25% (18/71) -2025-11-24T08:23:44.4638236Z Resolving deltas: 26% (19/71) -2025-11-24T08:23:44.4639125Z Resolving deltas: 28% (20/71) -2025-11-24T08:23:44.4640132Z Resolving deltas: 29% (21/71) -2025-11-24T08:23:44.4641092Z Resolving deltas: 30% (22/71) -2025-11-24T08:23:44.4641987Z Resolving deltas: 32% (23/71) -2025-11-24T08:23:44.4643120Z Resolving deltas: 33% (24/71) -2025-11-24T08:23:44.4644087Z Resolving deltas: 35% (25/71) -2025-11-24T08:23:44.4645310Z Resolving deltas: 36% (26/71) -2025-11-24T08:23:44.4646229Z Resolving deltas: 38% (27/71) -2025-11-24T08:23:44.4647116Z Resolving deltas: 39% (28/71) -2025-11-24T08:23:44.4648007Z Resolving deltas: 40% (29/71) -2025-11-24T08:23:44.4648912Z Resolving deltas: 42% (30/71) -2025-11-24T08:23:44.4649832Z Resolving deltas: 43% (31/71) -2025-11-24T08:23:44.4653514Z Resolving deltas: 46% (33/71) -2025-11-24T08:23:44.4655134Z Resolving deltas: 47% (34/71) -2025-11-24T08:23:44.4656040Z Resolving deltas: 49% (35/71) -2025-11-24T08:23:44.4656964Z Resolving deltas: 50% (36/71) -2025-11-24T08:23:44.4662209Z Resolving deltas: 53% (38/71) -2025-11-24T08:23:44.4664010Z Resolving deltas: 56% (40/71) -2025-11-24T08:23:44.4665160Z Resolving deltas: 57% (41/71) -2025-11-24T08:23:44.4670783Z Resolving deltas: 59% (42/71) -2025-11-24T08:23:44.4672002Z Resolving deltas: 60% (43/71) -2025-11-24T08:23:44.4674406Z Resolving deltas: 61% (44/71) -2025-11-24T08:23:44.4676656Z Resolving deltas: 63% (45/71) -2025-11-24T08:23:44.4681262Z Resolving deltas: 64% (46/71) -2025-11-24T08:23:44.4684676Z Resolving deltas: 66% (47/71) -2025-11-24T08:23:44.4685383Z Resolving deltas: 67% (48/71) -2025-11-24T08:23:44.4686277Z Resolving deltas: 69% (49/71) -2025-11-24T08:23:44.4687238Z Resolving deltas: 71% (51/71) -2025-11-24T08:23:44.4688096Z Resolving deltas: 73% (52/71) -2025-11-24T08:23:44.4688953Z Resolving deltas: 74% (53/71) -2025-11-24T08:23:44.4689878Z Resolving deltas: 76% (54/71) -2025-11-24T08:23:44.4690750Z Resolving deltas: 77% (55/71) -2025-11-24T08:23:44.4691983Z Resolving deltas: 78% (56/71) -2025-11-24T08:23:44.4693090Z Resolving deltas: 80% (57/71) -2025-11-24T08:23:44.4694009Z Resolving deltas: 81% (58/71) -2025-11-24T08:23:44.4694882Z Resolving deltas: 83% (59/71) -2025-11-24T08:23:44.4695754Z Resolving deltas: 84% (60/71) -2025-11-24T08:23:44.4696568Z Resolving deltas: 85% (61/71) -2025-11-24T08:23:44.4697248Z Resolving deltas: 87% (62/71) -2025-11-24T08:23:44.4697837Z Resolving deltas: 88% (63/71) -2025-11-24T08:23:44.4698389Z Resolving deltas: 90% (64/71) -2025-11-24T08:23:44.4698938Z Resolving deltas: 91% (65/71) -2025-11-24T08:23:44.4699472Z Resolving deltas: 92% (66/71) -2025-11-24T08:23:44.4699994Z Resolving deltas: 94% (67/71) -2025-11-24T08:23:44.4700512Z Resolving deltas: 95% (68/71) -2025-11-24T08:23:44.4701036Z Resolving deltas: 97% (69/71) -2025-11-24T08:23:44.4701560Z Resolving deltas: 98% (70/71) -2025-11-24T08:23:44.4702080Z Resolving deltas: 100% (71/71) -2025-11-24T08:23:44.4702619Z Resolving deltas: 100% (71/71), done. -2025-11-24T08:23:44.4973702Z From https://github.com/wireapp/wire-server-deploy -2025-11-24T08:23:44.4975169Z * [new ref] 8e9551337084771742ec8fc44c4955baa28a8a5c -> pull/829/merge -2025-11-24T08:23:44.5056846Z ##[endgroup] -2025-11-24T08:23:44.5058031Z ##[group]Determining the checkout info -2025-11-24T08:23:44.5059238Z ##[endgroup] -2025-11-24T08:23:44.5060101Z ##[group]Checking out the ref -2025-11-24T08:23:44.5062362Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/829/merge -2025-11-24T08:23:44.5812471Z Note: switching to 'refs/remotes/pull/829/merge'. -2025-11-24T08:23:44.5813481Z -2025-11-24T08:23:44.5814072Z You are in 'detached HEAD' state. You can look around, make experimental -2025-11-24T08:23:44.5815370Z changes and commit them, and you can discard any commits you make in this -2025-11-24T08:23:44.5816651Z state without impacting any branches by switching back to a branch. -2025-11-24T08:23:44.5817385Z -2025-11-24T08:23:44.5817925Z If you want to create a new branch to retain commits you create, you may -2025-11-24T08:23:44.5818884Z do so (now or later) by using -c with the switch command. Example: -2025-11-24T08:23:44.5819321Z -2025-11-24T08:23:44.5819628Z git switch -c -2025-11-24T08:23:44.5819966Z -2025-11-24T08:23:44.5820216Z Or undo this operation with: -2025-11-24T08:23:44.5820529Z -2025-11-24T08:23:44.5820764Z git switch - -2025-11-24T08:23:44.5821038Z -2025-11-24T08:23:44.5821400Z Turn off this advice by setting config variable advice.detachedHead to false -2025-11-24T08:23:44.5822137Z -2025-11-24T08:23:44.5822987Z HEAD is now at 8e95513 Merge a8eefba2f51f455bd3d0cddab9ff7be95b6663c8 into e2a440009efcf0576da4d1161d44d740132b873b -2025-11-24T08:23:44.5824845Z ##[endgroup] -2025-11-24T08:23:44.5825706Z ##[group]Setting up auth for fetching submodules -2025-11-24T08:23:44.5829284Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-11-24T08:23:44.5870721Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf -2025-11-24T08:23:44.5898505Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: -2025-11-24T08:23:44.5927207Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-16047324@github.com: -2025-11-24T08:23:44.5953055Z ##[endgroup] -2025-11-24T08:23:44.5953925Z ##[group]Fetching submodules -2025-11-24T08:23:44.5956038Z [command]/usr/bin/git submodule sync -2025-11-24T08:23:44.6201151Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 -2025-11-24T08:23:44.6445807Z Submodule 'ansible/roles-external/ANXS.apt' (https://github.com/ANXS/apt.git) registered for path 'ansible/roles-external/ANXS.apt' -2025-11-24T08:23:44.6448666Z Submodule 'ansible/roles-external/admin_users' (https://github.com/cchurch/ansible-role-admin-users.git) registered for path 'ansible/roles-external/admin_users' -2025-11-24T08:23:44.6456733Z Submodule 'ansible/roles-external/andrewrothstein.unarchive-deps' (https://github.com/andrewrothstein/ansible-unarchive-deps) registered for path 'ansible/roles-external/andrewrothstein.unarchive-deps' -2025-11-24T08:23:44.6461783Z Submodule 'ansible/roles-external/ansible-cassandra' (https://github.com/wireapp/ansible-cassandra.git) registered for path 'ansible/roles-external/ansible-cassandra' -2025-11-24T08:23:44.6466631Z Submodule 'ansible/roles-external/ansible-minio' (https://github.com/wireapp/ansible-minio.git) registered for path 'ansible/roles-external/ansible-minio' -2025-11-24T08:23:44.6470952Z Submodule 'ansible/roles-external/ansible-ntp-verify' (https://github.com/wireapp/ansible-ntp-verify.git) registered for path 'ansible/roles-external/ansible-ntp-verify' -2025-11-24T08:23:44.6477740Z Submodule 'ansible/roles-external/ansible-role-java' (https://github.com/geerlingguy/ansible-role-java.git) registered for path 'ansible/roles-external/ansible-role-java' -2025-11-24T08:23:44.6482531Z Submodule 'ansible/roles-external/ansible-role-ntp' (https://github.com/geerlingguy/ansible-role-ntp.git) registered for path 'ansible/roles-external/ansible-role-ntp' -2025-11-24T08:23:44.6487758Z Submodule 'ansible/roles-external/ansible-tinc' (https://github.com/wireapp/ansible-tinc.git) registered for path 'ansible/roles-external/ansible-tinc' -2025-11-24T08:23:44.6494044Z Submodule 'ansible/roles-external/cloudalchemy.node-exporter' (https://github.com/cloudalchemy/ansible-node-exporter) registered for path 'ansible/roles-external/cloudalchemy.node-exporter' -2025-11-24T08:23:44.6498242Z Submodule 'ansible/roles-external/elasticsearch' (https://github.com/wireapp/wire-elasticsearch-fork.git) registered for path 'ansible/roles-external/elasticsearch' -2025-11-24T08:23:44.6504537Z Submodule 'ansible/roles-external/hostname' (https://github.com/ANXS/hostname.git) registered for path 'ansible/roles-external/hostname' -2025-11-24T08:23:44.6510178Z Submodule 'ansible/roles-external/kubespray' (https://github.com/kubernetes-sigs/kubespray.git) registered for path 'ansible/roles-external/kubespray' -2025-11-24T08:23:44.6514752Z Submodule 'ansible/roles-external/logrotate' (https://github.com/nickhammond/ansible-logrotate.git) registered for path 'ansible/roles-external/logrotate' -2025-11-24T08:23:44.6521003Z Submodule 'ansible/roles-external/sft' (https://github.com/wireapp/ansible-sft.git) registered for path 'ansible/roles-external/sft' -2025-11-24T08:23:44.6553624Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ANXS.apt'... -2025-11-24T08:23:44.9085309Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/admin_users'... -2025-11-24T08:23:45.1746651Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/andrewrothstein.unarchive-deps'... -2025-11-24T08:23:45.4294007Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-cassandra'... -2025-11-24T08:23:45.7354714Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-minio'... -2025-11-24T08:23:46.0183155Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-ntp-verify'... -2025-11-24T08:23:46.3202324Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-role-java'... -2025-11-24T08:23:46.6110983Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-role-ntp'... -2025-11-24T08:23:46.8576432Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/ansible-tinc'... -2025-11-24T08:23:47.1347237Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/cloudalchemy.node-exporter'... -2025-11-24T08:23:47.3936021Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/elasticsearch'... -2025-11-24T08:23:47.6835373Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/hostname'... -2025-11-24T08:23:47.9438993Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/kubespray'... -2025-11-24T08:23:48.4016288Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/logrotate'... -2025-11-24T08:23:48.6544526Z Cloning into '/home/runner/work/wire-server-deploy/wire-server-deploy/ansible/roles-external/sft'... -2025-11-24T08:23:49.4815883Z From https://github.com/ANXS/apt -2025-11-24T08:23:49.4817119Z * branch f602ba7e88abfbb3af6679a8ca47207dc3e9d9c4 -> FETCH_HEAD -2025-11-24T08:23:49.4943041Z Submodule path 'ansible/roles-external/ANXS.apt': checked out 'f602ba7e88abfbb3af6679a8ca47207dc3e9d9c4' -2025-11-24T08:23:50.1113290Z From https://github.com/cchurch/ansible-role-admin-users -2025-11-24T08:23:50.1512211Z * branch d5bcef7e925ee1acf4e42359f0a95ed788eea58f -> FETCH_HEAD -2025-11-24T08:23:50.1513945Z Submodule path 'ansible/roles-external/admin_users': checked out 'd5bcef7e925ee1acf4e42359f0a95ed788eea58f' -2025-11-24T08:23:50.7038181Z From https://github.com/andrewrothstein/ansible-unarchive-deps -2025-11-24T08:23:50.7039308Z * branch 4485543262cfe04170d1ec02c8ccb95c44a7a222 -> FETCH_HEAD -2025-11-24T08:23:50.7109381Z Submodule path 'ansible/roles-external/andrewrothstein.unarchive-deps': checked out '4485543262cfe04170d1ec02c8ccb95c44a7a222' -2025-11-24T08:23:51.2072138Z From https://github.com/wireapp/ansible-cassandra -2025-11-24T08:23:51.2073829Z * branch f5c2467f5df08361769603e4571bbf65b1267e53 -> FETCH_HEAD -2025-11-24T08:23:51.2149582Z Submodule path 'ansible/roles-external/ansible-cassandra': checked out 'f5c2467f5df08361769603e4571bbf65b1267e53' -2025-11-24T08:23:51.7210598Z From https://github.com/wireapp/ansible-minio -2025-11-24T08:23:51.7211824Z * branch 89803b5d0ed638ccf8e99f46f0dd4cc4f4bf5dcb -> FETCH_HEAD -2025-11-24T08:23:51.7316306Z Submodule path 'ansible/roles-external/ansible-minio': checked out '89803b5d0ed638ccf8e99f46f0dd4cc4f4bf5dcb' -2025-11-24T08:23:52.3053175Z From https://github.com/wireapp/ansible-ntp-verify -2025-11-24T08:23:52.3054712Z * branch 4c3d0c67d32d2d74444f4db45b2a4d2efdc7d590 -> FETCH_HEAD -2025-11-24T08:23:52.3126754Z Submodule path 'ansible/roles-external/ansible-ntp-verify': checked out '4c3d0c67d32d2d74444f4db45b2a4d2efdc7d590' -2025-11-24T08:23:52.8814380Z From https://github.com/geerlingguy/ansible-role-java -2025-11-24T08:23:52.8896175Z * branch e715e3c4b9bef3fc7716b7787daf95eafd8205fb -> FETCH_HEAD -2025-11-24T08:23:52.8897414Z Submodule path 'ansible/roles-external/ansible-role-java': checked out 'e715e3c4b9bef3fc7716b7787daf95eafd8205fb' -2025-11-24T08:23:53.4268206Z From https://github.com/geerlingguy/ansible-role-ntp -2025-11-24T08:23:53.4269402Z * branch af1ec62385c899a3e3f24407d8417adcdc9eea60 -> FETCH_HEAD -2025-11-24T08:23:53.4343199Z Submodule path 'ansible/roles-external/ansible-role-ntp': checked out 'af1ec62385c899a3e3f24407d8417adcdc9eea60' -2025-11-24T08:23:53.4422599Z Submodule path 'ansible/roles-external/ansible-tinc': checked out '42951a951f6381e387174178bf3bff228b6a5dc5' -2025-11-24T08:23:53.9803209Z From https://github.com/cloudalchemy/ansible-node-exporter -2025-11-24T08:23:53.9804496Z * branch 8dc13ae077e3da1a71c268b114cd4fb8103ced80 -> FETCH_HEAD -2025-11-24T08:23:53.9905517Z Submodule path 'ansible/roles-external/cloudalchemy.node-exporter': checked out '8dc13ae077e3da1a71c268b114cd4fb8103ced80' -2025-11-24T08:23:54.0201538Z Submodule path 'ansible/roles-external/elasticsearch': checked out '48ec1993336d1368f5915c0f0e5ba9e1df882b8a' -2025-11-24T08:23:54.0305098Z Submodule path 'ansible/roles-external/hostname': checked out 'da6f329b2984e84d2248d4251e0c679c53dfbb30' -2025-11-24T08:23:54.8075573Z From https://github.com/kubernetes-sigs/kubespray -2025-11-24T08:23:54.8076650Z * branch 781f02fddab7700817949c2adfd9dbda21cc68d8 -> FETCH_HEAD -2025-11-24T08:23:54.9065671Z Submodule path 'ansible/roles-external/kubespray': checked out '781f02fddab7700817949c2adfd9dbda21cc68d8' -2025-11-24T08:23:54.9150974Z Submodule path 'ansible/roles-external/logrotate': checked out '91d570f68c44261d2051a99a2b3c7d736306bf0d' -2025-11-24T08:23:55.4363918Z From https://github.com/wireapp/ansible-sft -2025-11-24T08:23:55.4365112Z * branch a11e1d91826ea3d8ffee2e1ba23eb0dfe7c333b5 -> FETCH_HEAD -2025-11-24T08:23:55.4446437Z Submodule path 'ansible/roles-external/sft': checked out 'a11e1d91826ea3d8ffee2e1ba23eb0dfe7c333b5' -2025-11-24T08:23:55.4460392Z [command]/usr/bin/git submodule foreach git config --local gc.auto 0 -2025-11-24T08:23:55.4690870Z Entering 'ansible/roles-external/ANXS.apt' -2025-11-24T08:23:55.4718568Z Entering 'ansible/roles-external/admin_users' -2025-11-24T08:23:55.4743240Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' -2025-11-24T08:23:55.4767650Z Entering 'ansible/roles-external/ansible-cassandra' -2025-11-24T08:23:55.4791447Z Entering 'ansible/roles-external/ansible-minio' -2025-11-24T08:23:55.4815754Z Entering 'ansible/roles-external/ansible-ntp-verify' -2025-11-24T08:23:55.4857251Z Entering 'ansible/roles-external/ansible-role-java' -2025-11-24T08:23:55.4864905Z Entering 'ansible/roles-external/ansible-role-ntp' -2025-11-24T08:23:55.4889101Z Entering 'ansible/roles-external/ansible-tinc' -2025-11-24T08:23:55.4913264Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' -2025-11-24T08:23:55.4936831Z Entering 'ansible/roles-external/elasticsearch' -2025-11-24T08:23:55.4960491Z Entering 'ansible/roles-external/hostname' -2025-11-24T08:23:55.4986225Z Entering 'ansible/roles-external/kubespray' -2025-11-24T08:23:55.5009977Z Entering 'ansible/roles-external/logrotate' -2025-11-24T08:23:55.5033908Z Entering 'ansible/roles-external/sft' -2025-11-24T08:23:55.5076704Z ##[endgroup] -2025-11-24T08:23:55.5077963Z ##[group]Persisting credentials for submodules -2025-11-24T08:23:55.5084223Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" -2025-11-24T08:23:55.5317900Z Entering 'ansible/roles-external/ANXS.apt' -2025-11-24T08:23:55.5364756Z Entering 'ansible/roles-external/admin_users' -2025-11-24T08:23:55.5415014Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' -2025-11-24T08:23:55.5459996Z Entering 'ansible/roles-external/ansible-cassandra' -2025-11-24T08:23:55.5503980Z Entering 'ansible/roles-external/ansible-minio' -2025-11-24T08:23:55.5548252Z Entering 'ansible/roles-external/ansible-ntp-verify' -2025-11-24T08:23:55.5593276Z Entering 'ansible/roles-external/ansible-role-java' -2025-11-24T08:23:55.5637476Z Entering 'ansible/roles-external/ansible-role-ntp' -2025-11-24T08:23:55.5681489Z Entering 'ansible/roles-external/ansible-tinc' -2025-11-24T08:23:55.5725964Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' -2025-11-24T08:23:55.5769129Z Entering 'ansible/roles-external/elasticsearch' -2025-11-24T08:23:55.5816026Z Entering 'ansible/roles-external/hostname' -2025-11-24T08:23:55.5860594Z Entering 'ansible/roles-external/kubespray' -2025-11-24T08:23:55.5910481Z Entering 'ansible/roles-external/logrotate' -2025-11-24T08:23:55.5953954Z Entering 'ansible/roles-external/sft' -2025-11-24T08:23:55.6010466Z [command]/usr/bin/git submodule foreach sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" -2025-11-24T08:23:55.6233113Z Entering 'ansible/roles-external/ANXS.apt' -2025-11-24T08:23:55.6271994Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ANXS.apt/config remote.origin.url -2025-11-24T08:23:55.6276483Z Entering 'ansible/roles-external/admin_users' -2025-11-24T08:23:55.6316758Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/admin_users/config remote.origin.url -2025-11-24T08:23:55.6321087Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' -2025-11-24T08:23:55.6361624Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/andrewrothstein.unarchive-deps/config remote.origin.url -2025-11-24T08:23:55.6365960Z Entering 'ansible/roles-external/ansible-cassandra' -2025-11-24T08:23:55.6410253Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-cassandra/config remote.origin.url -2025-11-24T08:23:55.6415181Z Entering 'ansible/roles-external/ansible-minio' -2025-11-24T08:23:55.6457171Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-minio/config remote.origin.url -2025-11-24T08:23:55.6461560Z Entering 'ansible/roles-external/ansible-ntp-verify' -2025-11-24T08:23:55.6503213Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-ntp-verify/config remote.origin.url -2025-11-24T08:23:55.6507044Z Entering 'ansible/roles-external/ansible-role-java' -2025-11-24T08:23:55.6546499Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-role-java/config remote.origin.url -2025-11-24T08:23:55.6550355Z Entering 'ansible/roles-external/ansible-role-ntp' -2025-11-24T08:23:55.6590224Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-role-ntp/config remote.origin.url -2025-11-24T08:23:55.6594279Z Entering 'ansible/roles-external/ansible-tinc' -2025-11-24T08:23:55.6634162Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/ansible-tinc/config remote.origin.url -2025-11-24T08:23:55.6638059Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' -2025-11-24T08:23:55.6678396Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/cloudalchemy.node-exporter/config remote.origin.url -2025-11-24T08:23:55.6682291Z Entering 'ansible/roles-external/elasticsearch' -2025-11-24T08:23:55.6721700Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/elasticsearch/config remote.origin.url -2025-11-24T08:23:55.6726703Z Entering 'ansible/roles-external/hostname' -2025-11-24T08:23:55.6765514Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/hostname/config remote.origin.url -2025-11-24T08:23:55.6769758Z Entering 'ansible/roles-external/kubespray' -2025-11-24T08:23:55.6808494Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/kubespray/config remote.origin.url -2025-11-24T08:23:55.6813571Z Entering 'ansible/roles-external/logrotate' -2025-11-24T08:23:55.6852064Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/logrotate/config remote.origin.url -2025-11-24T08:23:55.6855990Z Entering 'ansible/roles-external/sft' -2025-11-24T08:23:55.6895403Z file:/home/runner/work/wire-server-deploy/wire-server-deploy/.git/modules/ansible/roles-external/sft/config remote.origin.url -2025-11-24T08:23:55.6996016Z [command]/usr/bin/git submodule foreach git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' -2025-11-24T08:23:55.7221523Z Entering 'ansible/roles-external/ANXS.apt' -2025-11-24T08:23:55.7247394Z Entering 'ansible/roles-external/admin_users' -2025-11-24T08:23:55.7308588Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' -2025-11-24T08:23:55.7333139Z Entering 'ansible/roles-external/ansible-cassandra' -2025-11-24T08:23:55.7357073Z Entering 'ansible/roles-external/ansible-minio' -2025-11-24T08:23:55.7380634Z Entering 'ansible/roles-external/ansible-ntp-verify' -2025-11-24T08:23:55.7404030Z Entering 'ansible/roles-external/ansible-role-java' -2025-11-24T08:23:55.7427475Z Entering 'ansible/roles-external/ansible-role-ntp' -2025-11-24T08:23:55.7451817Z Entering 'ansible/roles-external/ansible-tinc' -2025-11-24T08:23:55.7475834Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' -2025-11-24T08:23:55.7499340Z Entering 'ansible/roles-external/elasticsearch' -2025-11-24T08:23:55.7523040Z Entering 'ansible/roles-external/hostname' -2025-11-24T08:23:55.7547842Z Entering 'ansible/roles-external/kubespray' -2025-11-24T08:23:55.7571788Z Entering 'ansible/roles-external/logrotate' -2025-11-24T08:23:55.7596024Z Entering 'ansible/roles-external/sft' -2025-11-24T08:23:55.7635646Z [command]/usr/bin/git submodule foreach git config --local --add 'url.https://github.com/.insteadOf' 'org-16047324@github.com:' -2025-11-24T08:23:55.7861295Z Entering 'ansible/roles-external/ANXS.apt' -2025-11-24T08:23:55.7888985Z Entering 'ansible/roles-external/admin_users' -2025-11-24T08:23:55.7911324Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' -2025-11-24T08:23:55.7936282Z Entering 'ansible/roles-external/ansible-cassandra' -2025-11-24T08:23:55.7961469Z Entering 'ansible/roles-external/ansible-minio' -2025-11-24T08:23:55.7989037Z Entering 'ansible/roles-external/ansible-ntp-verify' -2025-11-24T08:23:55.8013672Z Entering 'ansible/roles-external/ansible-role-java' -2025-11-24T08:23:55.8037498Z Entering 'ansible/roles-external/ansible-role-ntp' -2025-11-24T08:23:55.8063192Z Entering 'ansible/roles-external/ansible-tinc' -2025-11-24T08:23:55.8088459Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' -2025-11-24T08:23:55.8112552Z Entering 'ansible/roles-external/elasticsearch' -2025-11-24T08:23:55.8137184Z Entering 'ansible/roles-external/hostname' -2025-11-24T08:23:55.8161545Z Entering 'ansible/roles-external/kubespray' -2025-11-24T08:23:55.8186023Z Entering 'ansible/roles-external/logrotate' -2025-11-24T08:23:55.8209716Z Entering 'ansible/roles-external/sft' -2025-11-24T08:23:55.8244292Z ##[endgroup] -2025-11-24T08:23:55.8281883Z [command]/usr/bin/git log -1 --format='%H' -2025-11-24T08:23:55.8308788Z '8e9551337084771742ec8fc44c4955baa28a8a5c' -2025-11-24T08:23:55.8532582Z ##[group]Run cachix/install-nix-action@v27 -2025-11-24T08:23:55.8533338Z with: -2025-11-24T08:23:55.8533737Z enable_kvm: true -2025-11-24T08:23:55.8534148Z ##[endgroup] -2025-11-24T08:23:55.8632845Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh -2025-11-24T08:23:55.8633515Z ${GITHUB_ACTION_PATH}/install-nix.sh -2025-11-24T08:23:55.8672856Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-11-24T08:23:55.8673445Z env: -2025-11-24T08:23:55.8673846Z INPUT_EXTRA_NIX_CONFIG: -2025-11-24T08:23:55.8674281Z INPUT_GITHUB_ACCESS_TOKEN: -2025-11-24T08:23:55.8674711Z INPUT_INSTALL_OPTIONS: -2025-11-24T08:23:55.8675129Z INPUT_INSTALL_URL: -2025-11-24T08:23:55.8675527Z INPUT_NIX_PATH: -2025-11-24T08:23:55.8675937Z INPUT_ENABLE_KVM: true -2025-11-24T08:23:55.8676637Z GITHUB_TOKEN: *** -2025-11-24T08:23:55.8677053Z ##[endgroup] -2025-11-24T08:23:55.8787585Z ##[group]Enabling KVM support -2025-11-24T08:23:55.8856232Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" -2025-11-24T08:23:55.9181697Z Enabled KVM -2025-11-24T08:23:55.9183757Z ##[endgroup] -2025-11-24T08:23:55.9184789Z ##[group]Installing Nix -2025-11-24T08:23:55.9481397Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.OluKA9IjIC/nix.conf --daemon --daemon-user-count 8 -2025-11-24T08:23:56.0559377Z * Host releases.nixos.org:443 was resolved. -2025-11-24T08:23:56.0564653Z * IPv6: 2a04:4e42:83::347 -2025-11-24T08:23:56.0565192Z * IPv4: 146.75.77.91 -2025-11-24T08:23:56.0565628Z * Trying 146.75.77.91:443... -2025-11-24T08:23:56.0575265Z * Connected to releases.nixos.org (146.75.77.91) port 443 -2025-11-24T08:23:56.0589591Z * ALPN: curl offers h2,http/1.1 -2025-11-24T08:23:56.0590853Z } [5 bytes data] -2025-11-24T08:23:56.0591600Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): -2025-11-24T08:23:56.0592417Z } [512 bytes data] -2025-11-24T08:23:56.0806700Z * CAfile: /etc/ssl/certs/ca-certificates.crt -2025-11-24T08:23:56.0807626Z * CApath: /etc/ssl/certs -2025-11-24T08:23:56.0808320Z { [5 bytes data] -2025-11-24T08:23:56.0809205Z * TLSv1.3 (IN), TLS handshake, Server hello (2): -2025-11-24T08:23:56.0810029Z { [122 bytes data] -2025-11-24T08:23:56.0810802Z * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): -2025-11-24T08:23:56.0811912Z { [19 bytes data] -2025-11-24T08:23:56.0812422Z * TLSv1.3 (IN), TLS handshake, Certificate (11): -2025-11-24T08:23:56.0813265Z { [2591 bytes data] -2025-11-24T08:23:56.0815329Z * TLSv1.3 (IN), TLS handshake, CERT verify (15): -2025-11-24T08:23:56.0816200Z { [264 bytes data] -2025-11-24T08:23:56.0816930Z * TLSv1.3 (IN), TLS handshake, Finished (20): -2025-11-24T08:23:56.0817728Z { [36 bytes data] -2025-11-24T08:23:56.0818516Z * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): -2025-11-24T08:23:56.0819403Z } [1 bytes data] -2025-11-24T08:23:56.0820125Z * TLSv1.3 (OUT), TLS handshake, Finished (20): -2025-11-24T08:23:56.0820940Z } [36 bytes data] -2025-11-24T08:23:56.0821824Z * SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 / X25519 / RSASSA-PSS -2025-11-24T08:23:56.0822988Z * ALPN: server accepted h2 -2025-11-24T08:23:56.0823735Z * Server certificate: -2025-11-24T08:23:56.0824200Z * subject: CN=releases.nixos.org -2025-11-24T08:23:56.0824660Z * start date: Nov 14 02:53:58 2025 GMT -2025-11-24T08:23:56.0825153Z * expire date: Feb 12 02:53:57 2026 GMT -2025-11-24T08:23:56.0825776Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" -2025-11-24T08:23:56.0826399Z * issuer: C=US; O=Let's Encrypt; CN=R13 -2025-11-24T08:23:56.0826874Z * SSL certificate verify ok. -2025-11-24T08:23:56.0844734Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-11-24T08:23:56.0846076Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-11-24T08:23:56.0846992Z * Certificate level 2: Public key type RSA (4096/152 Bits/secBits), signed using sha256WithRSAEncryption -2025-11-24T08:23:56.0848069Z { [5 bytes data] -2025-11-24T08:23:56.0848586Z * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): -2025-11-24T08:23:56.0849130Z { [201 bytes data] -2025-11-24T08:23:56.0849547Z * using HTTP/2 -2025-11-24T08:23:56.0850116Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.22.1/install -2025-11-24T08:23:56.0850741Z * [HTTP/2] [1] [:method: GET] -2025-11-24T08:23:56.0851184Z * [HTTP/2] [1] [:scheme: https] -2025-11-24T08:23:56.0851654Z * [HTTP/2] [1] [:authority: releases.nixos.org] -2025-11-24T08:23:56.0852172Z * [HTTP/2] [1] [:path: /nix/nix-2.22.1/install] -2025-11-24T08:23:56.0852905Z * [HTTP/2] [1] [user-agent: curl/8.5.0] -2025-11-24T08:23:56.0853448Z * [HTTP/2] [1] [accept: */*] -2025-11-24T08:23:56.0853882Z } [5 bytes data] -2025-11-24T08:23:56.0854296Z > GET /nix/nix-2.22.1/install HTTP/2 -2025-11-24T08:23:56.0854781Z > Host: releases.nixos.org -2025-11-24T08:23:56.0855226Z > User-Agent: curl/8.5.0 -2025-11-24T08:23:56.0855646Z > Accept: */* -2025-11-24T08:23:56.0856045Z > -2025-11-24T08:23:56.0856433Z { [5 bytes data] -2025-11-24T08:23:56.0856833Z < HTTP/2 200 -2025-11-24T08:23:56.0857254Z < last-modified: Fri, 10 May 2024 09:28:12 GMT -2025-11-24T08:23:56.0857772Z < etag: "d07247c3fa419cb02a37dcf14819c05a" -2025-11-24T08:23:56.0858522Z < x-amz-server-side-encryption: AES256 -2025-11-24T08:23:56.0859043Z < content-type: text/plain -2025-11-24T08:23:56.0859474Z < server: AmazonS3 -2025-11-24T08:23:56.0859894Z < via: 1.1 varnish, 1.1 varnish -2025-11-24T08:23:56.0860348Z < access-control-allow-origin: * -2025-11-24T08:23:56.0860812Z < accept-ranges: bytes -2025-11-24T08:23:56.0861232Z < date: Mon, 24 Nov 2025 08:23:56 GMT -2025-11-24T08:23:56.0861689Z < age: 88644 -2025-11-24T08:23:56.0862157Z < x-served-by: cache-dub4340-DUB, cache-chi-kigq8000118-CHI -2025-11-24T08:23:56.0862901Z < x-cache: HIT, HIT -2025-11-24T08:23:56.0863316Z < x-cache-hits: 10, 2 -2025-11-24T08:23:56.0863731Z < content-length: 4052 -2025-11-24T08:23:56.0864133Z < -2025-11-24T08:23:56.0864505Z { [4052 bytes data] -2025-11-24T08:23:56.0864968Z * Connection #0 to host releases.nixos.org left intact -2025-11-24T08:23:56.0929758Z downloading Nix 2.22.1 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.22.1/nix-2.22.1-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.zhh6lroztm'... -2025-11-24T08:23:56.0976715Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-11-24T08:23:56.0977690Z Dload Upload Total Spent Left Speed -2025-11-24T08:23:56.0978304Z -2025-11-24T08:23:56.1486238Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-11-24T08:23:56.2291438Z 20 21.9M 20 4494k 0 0 85.9M 0 --:--:-- --:--:-- --:--:-- 86.0M -2025-11-24T08:23:56.2292310Z 100 21.9M 100 21.9M 0 0 166M 0 --:--:-- --:--:-- --:--:-- 165M -2025-11-24T08:23:57.8070652Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation -2025-11-24T08:23:57.8081213Z Warning: the flag --darwin-use-unencrypted-nix-store-volume -2025-11-24T08:23:57.8082293Z is no longer needed and will be removed in the future. -2025-11-24T08:23:57.8083063Z -2025-11-24T08:23:57.8092352Z Switching to the Multi-user Installer -2025-11-24T08:23:57.8198582Z Welcome to the Multi-User Nix Installation -2025-11-24T08:23:57.8207944Z  -2025-11-24T08:23:57.8208669Z This installation tool will set up your computer with the Nix package -2025-11-24T08:23:57.8209731Z manager. This will happen in a few stages: -2025-11-24T08:23:57.8210267Z -2025-11-24T08:23:57.8210749Z 1. Make sure your computer doesn't already have Nix. If it does, I -2025-11-24T08:23:57.8211849Z will show you instructions on how to clean up your old install. -2025-11-24T08:23:57.8212401Z -2025-11-24T08:23:57.8212911Z 2. Show you what I am going to install and where. Then I will ask -2025-11-24T08:23:57.8213501Z if you are ready to continue. -2025-11-24T08:23:57.8213772Z -2025-11-24T08:23:57.8214555Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) -2025-11-24T08:23:57.8215255Z that the Nix daemon uses to run builds. To create system users -2025-11-24T08:23:57.8215868Z in a different range, exit and run this tool again with -2025-11-24T08:23:57.8216430Z NIX_FIRST_BUILD_UID set. -2025-11-24T08:23:57.8216682Z -2025-11-24T08:23:57.8216940Z 4. Perform the basic installation of the Nix files daemon. -2025-11-24T08:23:57.8217304Z -2025-11-24T08:23:57.8217594Z 5. Configure your shell to import special Nix Profile files, so you -2025-11-24T08:23:57.8218150Z can use Nix. -2025-11-24T08:23:57.8218369Z -2025-11-24T08:23:57.8218550Z 6. Start the Nix daemon. -2025-11-24T08:23:57.8218785Z -2025-11-24T08:23:57.8219288Z Would you like to see a more detailed list of what I will do? -2025-11-24T08:23:57.8219912Z No TTY, assuming you would say yes :) -2025-11-24T08:23:57.8220854Z -2025-11-24T08:23:57.8221152Z I will: -2025-11-24T08:23:57.8221497Z -2025-11-24T08:23:57.8221915Z - make sure your computer doesn't already have Nix files -2025-11-24T08:23:57.8223124Z (if it does, I will tell you how to clean them up.) -2025-11-24T08:23:57.8224137Z - create local users (see the list above for the users I'll make) -2025-11-24T08:23:57.8225098Z - create a local group (nixbld) -2025-11-24T08:23:57.8225857Z - install Nix in to /nix -2025-11-24T08:23:57.8226430Z - create a configuration file in /etc/nix -2025-11-24T08:23:57.8227062Z - set up the "default profile" by creating some Nix-related files in -2025-11-24T08:23:57.8227634Z /root -2025-11-24T08:23:57.8241940Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix -2025-11-24T08:23:57.8242913Z - update /etc/bash.bashrc to include some Nix configuration -2025-11-24T08:23:57.8254100Z - load and start a service (at /etc/systemd/system/nix-daemon.service -2025-11-24T08:23:57.8254870Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon -2025-11-24T08:23:57.8255484Z -2025-11-24T08:23:57.8256537Z Ready to continue? -2025-11-24T08:23:57.8257454Z No TTY, assuming you would say yes :) -2025-11-24T08:23:57.8286857Z -2025-11-24T08:23:57.8287677Z ---- let's talk about sudo ----------------------------------------------------- -2025-11-24T08:23:57.8298529Z This script is going to call sudo a lot. Normally, it would show you -2025-11-24T08:23:57.8300010Z exactly what commands it is running and why. However, the script is -2025-11-24T08:23:57.8301039Z run in a headless fashion, like this: -2025-11-24T08:23:57.8301537Z -2025-11-24T08:23:57.8301927Z $ curl -L https://nixos.org/nix/install | sh -2025-11-24T08:23:57.8302472Z -2025-11-24T08:23:57.8303114Z or maybe in a CI pipeline. Because of that, I'm going to skip the -2025-11-24T08:23:57.8304103Z verbose output in the interest of brevity. -2025-11-24T08:23:57.8304632Z -2025-11-24T08:23:57.8304936Z If you would like to -2025-11-24T08:23:57.8305631Z see the output, try like this: -2025-11-24T08:23:57.8306070Z -2025-11-24T08:23:57.8306487Z $ curl -L -o install-nix https://nixos.org/nix/install -2025-11-24T08:23:57.8307395Z $ sh ./install-nix -2025-11-24T08:23:57.8307848Z -2025-11-24T08:23:57.8307876Z -2025-11-24T08:23:57.8308438Z ~~> Checking for artifacts of previous installs -2025-11-24T08:23:57.8313812Z Before I try to install, I'll check for signs Nix already is or has -2025-11-24T08:23:57.8314472Z been installed on this system. -2025-11-24T08:23:57.8348473Z -2025-11-24T08:23:57.8349591Z ---- Nix config report --------------------------------------------------------- -2025-11-24T08:23:57.8350924Z  Temp Dir: /tmp/tmp.Iy8Dqx8k0A -2025-11-24T08:23:57.8351664Z  Nix Root: /nix -2025-11-24T08:23:57.8352473Z  Build Users: 8 -2025-11-24T08:23:57.8353463Z  Build Group ID: 30000 -2025-11-24T08:23:57.8354271Z Build Group Name: nixbld -2025-11-24T08:23:57.8354727Z -2025-11-24T08:23:57.8355086Z build users: -2025-11-24T08:23:57.8355801Z  Username: UID -2025-11-24T08:23:57.8717416Z  nixbld1: 30001 -2025-11-24T08:23:57.8726524Z  nixbld2: 30002 -2025-11-24T08:23:57.8736568Z  nixbld3: 30003 -2025-11-24T08:23:57.8746537Z  nixbld4: 30004 -2025-11-24T08:23:57.8756542Z  nixbld5: 30005 -2025-11-24T08:23:57.8766676Z  nixbld6: 30006 -2025-11-24T08:23:57.8776703Z  nixbld7: 30007 -2025-11-24T08:23:57.8786604Z  nixbld8: 30008 -2025-11-24T08:23:57.8787080Z -2025-11-24T08:23:57.8787492Z Ready to continue? -2025-11-24T08:23:57.8788341Z No TTY, assuming you would say yes :) -2025-11-24T08:23:57.8788831Z -2025-11-24T08:23:57.8789243Z ~~> Setting up the build group nixbld -2025-11-24T08:23:57.9092591Z  Created: Yes -2025-11-24T08:23:57.9120129Z -2025-11-24T08:23:57.9120711Z ~~> Setting up the build user nixbld1 -2025-11-24T08:23:57.9271607Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 -2025-11-24T08:23:57.9376898Z  Created: Yes -2025-11-24T08:23:57.9384215Z  Hidden: Yes -2025-11-24T08:23:57.9408088Z  Home Directory: /var/empty -2025-11-24T08:23:57.9428971Z  Note: Nix build user 1 -2025-11-24T08:23:57.9447870Z  Logins Disabled: Yes -2025-11-24T08:23:57.9477773Z  Member of nixbld: Yes -2025-11-24T08:23:57.9496989Z  PrimaryGroupID: 30000 -2025-11-24T08:23:57.9507986Z -2025-11-24T08:23:57.9508580Z ~~> Setting up the build user nixbld2 -2025-11-24T08:23:57.9651389Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 -2025-11-24T08:23:57.9757181Z  Created: Yes -2025-11-24T08:23:57.9762398Z  Hidden: Yes -2025-11-24T08:23:57.9785211Z  Home Directory: /var/empty -2025-11-24T08:23:57.9805844Z  Note: Nix build user 2 -2025-11-24T08:23:57.9824480Z  Logins Disabled: Yes -2025-11-24T08:23:57.9845684Z  Member of nixbld: Yes -2025-11-24T08:23:57.9864458Z  PrimaryGroupID: 30000 -2025-11-24T08:23:57.9876201Z -2025-11-24T08:23:57.9876678Z ~~> Setting up the build user nixbld3 -2025-11-24T08:23:58.0015295Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 -2025-11-24T08:23:58.0116298Z  Created: Yes -2025-11-24T08:23:58.0121755Z  Hidden: Yes -2025-11-24T08:23:58.0142257Z  Home Directory: /var/empty -2025-11-24T08:23:58.0163510Z  Note: Nix build user 3 -2025-11-24T08:23:58.0182867Z  Logins Disabled: Yes -2025-11-24T08:23:58.0203105Z  Member of nixbld: Yes -2025-11-24T08:23:58.0221957Z  PrimaryGroupID: 30000 -2025-11-24T08:23:58.0235989Z -2025-11-24T08:23:58.0236592Z ~~> Setting up the build user nixbld4 -2025-11-24T08:23:58.0375106Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 -2025-11-24T08:23:58.0483968Z  Created: Yes -2025-11-24T08:23:58.0489386Z  Hidden: Yes -2025-11-24T08:23:58.0510919Z  Home Directory: /var/empty -2025-11-24T08:23:58.0532284Z  Note: Nix build user 4 -2025-11-24T08:23:58.0551184Z  Logins Disabled: Yes -2025-11-24T08:23:58.0571985Z  Member of nixbld: Yes -2025-11-24T08:23:58.0592076Z  PrimaryGroupID: 30000 -2025-11-24T08:23:58.0603226Z -2025-11-24T08:23:58.0603971Z ~~> Setting up the build user nixbld5 -2025-11-24T08:23:58.0750735Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 -2025-11-24T08:23:58.0856053Z  Created: Yes -2025-11-24T08:23:58.0861508Z  Hidden: Yes -2025-11-24T08:23:58.0882864Z  Home Directory: /var/empty -2025-11-24T08:23:58.0903838Z  Note: Nix build user 5 -2025-11-24T08:23:58.0923188Z  Logins Disabled: Yes -2025-11-24T08:23:58.0943508Z  Member of nixbld: Yes -2025-11-24T08:23:58.0961544Z  PrimaryGroupID: 30000 -2025-11-24T08:23:58.0973276Z -2025-11-24T08:23:58.0974232Z ~~> Setting up the build user nixbld6 -2025-11-24T08:23:58.1111394Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 -2025-11-24T08:23:58.1219561Z  Created: Yes -2025-11-24T08:23:58.1224964Z  Hidden: Yes -2025-11-24T08:23:58.1245762Z  Home Directory: /var/empty -2025-11-24T08:23:58.1266994Z  Note: Nix build user 6 -2025-11-24T08:23:58.1286008Z  Logins Disabled: Yes -2025-11-24T08:23:58.1306561Z  Member of nixbld: Yes -2025-11-24T08:23:58.1325246Z  PrimaryGroupID: 30000 -2025-11-24T08:23:58.1336322Z -2025-11-24T08:23:58.1337081Z ~~> Setting up the build user nixbld7 -2025-11-24T08:23:58.1479869Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 -2025-11-24T08:23:58.1578169Z  Created: Yes -2025-11-24T08:23:58.1583585Z  Hidden: Yes -2025-11-24T08:23:58.1605726Z  Home Directory: /var/empty -2025-11-24T08:23:58.1626682Z  Note: Nix build user 7 -2025-11-24T08:23:58.1645983Z  Logins Disabled: Yes -2025-11-24T08:23:58.1669465Z  Member of nixbld: Yes -2025-11-24T08:23:58.1692473Z  PrimaryGroupID: 30000 -2025-11-24T08:23:58.1709372Z -2025-11-24T08:23:58.1710074Z ~~> Setting up the build user nixbld8 -2025-11-24T08:23:58.1852298Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 -2025-11-24T08:23:58.1953192Z  Created: Yes -2025-11-24T08:23:58.1958649Z  Hidden: Yes -2025-11-24T08:23:58.1979550Z  Home Directory: /var/empty -2025-11-24T08:23:58.2000556Z  Note: Nix build user 8 -2025-11-24T08:23:58.2033352Z  Logins Disabled: Yes -2025-11-24T08:23:58.2048664Z  Member of nixbld: Yes -2025-11-24T08:23:58.2067384Z  PrimaryGroupID: 30000 -2025-11-24T08:23:58.2067878Z -2025-11-24T08:23:58.2068311Z ~~> Setting up the basic directory structure -2025-11-24T08:23:58.2455690Z install: creating directory '/nix' -2025-11-24T08:23:58.2456549Z install: creating directory '/nix/var' -2025-11-24T08:23:58.2457099Z install: creating directory '/nix/var/log' -2025-11-24T08:23:58.2457673Z install: creating directory '/nix/var/log/nix' -2025-11-24T08:23:58.2458498Z install: creating directory '/nix/var/log/nix/drvs' -2025-11-24T08:23:58.2459568Z install: creating directory '/nix/var/nix' -2025-11-24T08:23:58.2460108Z install: creating directory '/nix/var/nix/db' -2025-11-24T08:23:58.2460662Z install: creating directory '/nix/var/nix/gcroots' -2025-11-24T08:23:58.2461234Z install: creating directory '/nix/var/nix/profiles' -2025-11-24T08:23:58.2461805Z install: creating directory '/nix/var/nix/temproots' -2025-11-24T08:23:58.2462340Z install: creating directory '/nix/var/nix/userpool' -2025-11-24T08:23:58.2463229Z install: creating directory '/nix/var/nix/daemon-socket' -2025-11-24T08:23:58.2463855Z install: creating directory '/nix/var/nix/gcroots/per-user' -2025-11-24T08:23:58.2464493Z install: creating directory '/nix/var/nix/profiles/per-user' -2025-11-24T08:23:58.2542820Z install: creating directory '/nix/store' -2025-11-24T08:23:58.2622429Z install: creating directory '/etc/nix' -2025-11-24T08:23:58.2632427Z -2025-11-24T08:23:58.2633305Z ~~> Installing Nix -2025-11-24T08:23:58.4655366Z  Alright! We have our first nix at /nix/store/6sfq258683sg0idsm9c5877pfm3q4y27-nix-2.22.1 -2025-11-24T08:23:58.5106097Z Just finished getting the nix database ready. -2025-11-24T08:23:58.5108704Z -2025-11-24T08:23:58.5110333Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc -2025-11-24T08:23:58.5273712Z  -2025-11-24T08:23:58.5274160Z # Nix -2025-11-24T08:23:58.5274988Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-11-24T08:23:58.5276207Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-11-24T08:23:58.5277163Z fi -2025-11-24T08:23:58.5277792Z # End Nix -2025-11-24T08:23:58.5278146Z -2025-11-24T08:23:58.5453911Z -2025-11-24T08:23:58.5454665Z # Nix -2025-11-24T08:23:58.5455670Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-11-24T08:23:58.5456872Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-11-24T08:23:58.5457790Z fi -2025-11-24T08:23:58.5458438Z # End Nix -2025-11-24T08:23:58.5458773Z -2025-11-24T08:23:58.5626147Z -2025-11-24T08:23:58.5626646Z # Nix -2025-11-24T08:23:58.5627481Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-11-24T08:23:58.5628692Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-11-24T08:23:58.5629653Z fi -2025-11-24T08:23:58.5630278Z # End Nix -2025-11-24T08:23:58.5630630Z -2025-11-24T08:23:58.5817146Z -2025-11-24T08:23:58.5817637Z # Nix -2025-11-24T08:23:58.5818394Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-11-24T08:23:58.5819628Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-11-24T08:23:58.5820588Z fi -2025-11-24T08:23:58.5821233Z # End Nix -2025-11-24T08:23:58.5821616Z -2025-11-24T08:23:58.5845026Z -2025-11-24T08:23:58.5846534Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish -2025-11-24T08:23:58.5932178Z  -2025-11-24T08:23:58.5933053Z ~~> Setting up the default profile -2025-11-24T08:23:58.6238490Z installing 'nix-2.22.1' -2025-11-24T08:23:58.6375887Z building '/nix/store/x8hfibkpb6as4rji91ln5xp5lnj02gn8-user-environment.drv'... -2025-11-24T08:23:58.6799671Z installing 'nss-cacert-3.95' -2025-11-24T08:23:58.6930822Z building '/nix/store/587h5kr3yj9bbsmjfqhagc94pp9kj2b7-user-environment.drv'... -2025-11-24T08:23:58.7148826Z  -2025-11-24T08:23:58.7149493Z ~~> Setting up the nix-daemon systemd service -2025-11-24T08:23:58.7436278Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. -2025-11-24T08:23:59.0236822Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-11-24T08:23:59.0239285Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-11-24T08:23:59.5979928Z Alright! We're done! -2025-11-24T08:23:59.6004238Z Try it! Open a new terminal, and type: -2025-11-24T08:23:59.6004837Z -2025-11-24T08:23:59.6005226Z $ nix-shell -p nix-info --run "nix-info -m" -2025-11-24T08:23:59.6025183Z -2025-11-24T08:23:59.6025739Z Thank you for using this installer. If you have any feedback or need -2025-11-24T08:23:59.6027228Z help, don't hesitate: -2025-11-24T08:23:59.6027505Z -2025-11-24T08:23:59.6027709Z You can open an issue at -2025-11-24T08:23:59.6028348Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md -2025-11-24T08:23:59.6028868Z -2025-11-24T08:23:59.6029255Z Or get in touch with the community: https://nixos.org/community -2025-11-24T08:23:59.6030279Z -2025-11-24T08:23:59.6032298Z ---- Reminders ----------------------------------------------------------------- -2025-11-24T08:23:59.6033541Z [ 1 ] -2025-11-24T08:23:59.6034308Z Nix won't work in active shell sessions until you restart them. -2025-11-24T08:23:59.6034896Z -2025-11-24T08:23:59.6757520Z ##[endgroup] -2025-11-24T08:23:59.6874790Z ##[group]Run cachix/cachix-action@v15 -2025-11-24T08:23:59.6875319Z with: -2025-11-24T08:23:59.6875721Z name: wire-server -2025-11-24T08:23:59.6876514Z signingKey: *** -2025-11-24T08:23:59.6876928Z skipPush: false -2025-11-24T08:23:59.6877343Z skipAddingSubstituter: false -2025-11-24T08:23:59.6877780Z useDaemon: true -2025-11-24T08:23:59.6878170Z env: -2025-11-24T08:23:59.6878562Z TMPDIR: /home/runner/work/_temp -2025-11-24T08:23:59.6879005Z ##[endgroup] -2025-11-24T08:23:59.7345374Z ##[group]Cachix: installing -2025-11-24T08:23:59.7389731Z [command]/usr/bin/bash -c nix-env --quiet -j8 -iA cachix -f https://cachix.org/api/v1/install -2025-11-24T08:24:01.9733282Z ##[endgroup] -2025-11-24T08:24:01.9734436Z ##[group]Cachix: checking version -2025-11-24T08:24:01.9741497Z [command]/home/runner/.nix-profile/bin/cachix --version -2025-11-24T08:24:02.0181290Z cachix 1.9.1 -2025-11-24T08:24:02.0229034Z ##[endgroup] -2025-11-24T08:24:02.0231839Z ##[group]Cachix: using cache wire-server -2025-11-24T08:24:02.0234148Z [command]/home/runner/.nix-profile/bin/cachix use wire-server -2025-11-24T08:24:02.2226224Z No config at /home/runner/.config/nix/nix.conf: -2025-11-24T08:24:02.2226857Z -2025-11-24T08:24:02.2227464Z /home/runner/.config/nix/nix.conf: openFile: does not exist (No such file or directory) -2025-11-24T08:24:02.2228226Z -2025-11-24T08:24:02.2229420Z Configured https://wire-server.cachix.org binary cache in /home/runner/.config/nix/nix.conf -2025-11-24T08:24:02.2330592Z ##[endgroup] -2025-11-24T08:24:02.2872293Z ##[group]Run nix-env -f default.nix -iA env -2025-11-24T08:24:02.2873996Z nix-env -f default.nix -iA env -2025-11-24T08:24:02.2923774Z shell: /usr/bin/bash -e {0} -2025-11-24T08:24:02.2924494Z env: -2025-11-24T08:24:02.2925170Z TMPDIR: /home/runner/work/_temp -2025-11-24T08:24:02.2926927Z CACHIX_SIGNING_KEY: *** -2025-11-24T08:24:02.2928233Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf -2025-11-24T08:24:02.2929746Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ -2025-11-24T08:24:02.2930688Z ##[endgroup] -2025-11-24T08:24:22.7655322Z installing 'wire-server-deploy' -2025-11-24T08:24:48.9979089Z these 612 paths will be fetched (747.43 MiB download, 3966.35 MiB unpacked): -2025-11-24T08:24:48.9980328Z /nix/store/ipwigvayp8b69rq24zkb4wfhix4a16zr-SDL-1.2.15 -2025-11-24T08:24:48.9981206Z /nix/store/rbr2xn0qjw8xl7vgmwssy3y2xsn250c9-SDL2-2.30.2 -2025-11-24T08:24:48.9982396Z /nix/store/3cbspxvq1fbgfp0wd9zvjbv14fn9aafm-aalib-1.4rc5 -2025-11-24T08:24:48.9983705Z /nix/store/mmy4fc1arb2ig642chgprgms27vk9hgn-acl-2.3.1 -2025-11-24T08:24:48.9984786Z /nix/store/80kzdbnl1bmnd8r8hphh1xzmgsvyyf6w-acl-2.3.2 -2025-11-24T08:24:48.9985846Z /nix/store/9r2if8vhzvzqlx6n5knx2ckjfcjpd3yr-alsa-lib-1.2.11 -2025-11-24T08:24:48.9987102Z /nix/store/iqga1xby2s1l6lx9riqicsqa2f88hnrj-alsa-topology-conf-1.2.5.1 -2025-11-24T08:24:48.9988169Z /nix/store/mlkzgivx42k092w0icqj2jdlldyni1vk-alsa-ucm-conf-1.2.11 -2025-11-24T08:24:48.9989877Z /nix/store/x73z9aq2iqzhwcvlxvs3y8mxqdkj93rx-apache-httpd-2.4.62 -2025-11-24T08:24:48.9991118Z /nix/store/irlvq4wkmbm2x94j843qg5qjbx8k9sm0-apache-httpd-2.4.62-man -2025-11-24T08:24:48.9992248Z /nix/store/ffimzi11j2zzj4d9s2h9cdy76nh754j6-apr-1.7.5 -2025-11-24T08:24:48.9993509Z /nix/store/qgy3d8m6d6sz3anf1bvp80kbjaima2g5-apr-util-1.6.3 -2025-11-24T08:24:48.9994569Z /nix/store/f8nqqxv0nzvwfwxyirf2k5y96y0g64zs-aptly-1.5.0 -2025-11-24T08:24:48.9995660Z /nix/store/am54j7wy47l77ssr2q84sr9xzmfi9n5l-at-spi2-core-2.52.0 -2025-11-24T08:24:48.9996693Z /nix/store/vbb1l2krfp75m5w3y2h52l0pbq6fydz8-attr-2.5.1 -2025-11-24T08:24:48.9997690Z /nix/store/s894wa8wzbf841myjr7dm4m85177f8rl-attr-2.5.2 -2025-11-24T08:24:48.9998746Z /nix/store/v5hzzgpnjwyaflp8cha905zs9pq1lx9b-audiofile-0.3.6 -2025-11-24T08:24:48.9999815Z /nix/store/a8vav5wzx1fd1zizxxr0vn4knhm8gmhr-audit-3.1.2 -2025-11-24T08:24:49.0000925Z /nix/store/26s529dd6j0dsl4z360zl5czr7kkf2s6-avahi-0.8 -2025-11-24T08:24:49.0002018Z /nix/store/9szvf186kqykdvy20h10958zk2rzngiy-aws-c-auth-0.7.18 -2025-11-24T08:24:49.0003350Z /nix/store/jk9x1h83240a9jdphqlyg6hvs07f43h9-aws-c-cal-0.6.12 -2025-11-24T08:24:49.0004549Z /nix/store/xjrmsmrg0i7bqkv3rwxrw7m7mhgy5c0b-aws-c-common-0.9.17 -2025-11-24T08:24:49.0005855Z /nix/store/yhkrb1hfbncqyrzras9jgdlp14c89jwp-aws-c-compression-0.2.18 -2025-11-24T08:24:49.0007618Z /nix/store/2r02maby1pwc1p04gjvpv2z0v488iksl-aws-c-event-stream-0.4.2 -2025-11-24T08:24:49.0008873Z /nix/store/rsgrkw4w2r9fbfc0f8xfgw6pvmff8apd-aws-c-http-0.8.1 -2025-11-24T08:24:49.0010063Z /nix/store/jgxc4mj836sfxzbyrk3p38ml162kr1gq-aws-c-io-0.14.7 -2025-11-24T08:24:49.0011614Z /nix/store/c5qjis3cm0qsp5vcji0b2m1sfx5r5dsc-aws-c-mqtt-0.10.4 -2025-11-24T08:24:49.0012947Z /nix/store/4xgqbqyg263kkf69mm2h792v9ahlsvj0-aws-c-s3-0.5.7 -2025-11-24T08:24:49.0014086Z /nix/store/3bkv1455nixz55fzjpmz2zs0mdwsb3q5-aws-c-sdkutils-0.1.16 -2025-11-24T08:24:49.0015264Z /nix/store/h0d1vp09i1riahbsjcvdq6fxh5f231a3-aws-checksums-0.1.18 -2025-11-24T08:24:49.0016479Z /nix/store/yvxndkfdzpv3y7bq6ndxny0yhqnvs2h7-aws-crt-cpp-0.26.8 -2025-11-24T08:24:49.0017268Z /nix/store/9vr5awg1y41akmi295cbf025b8m1k054-aws-sdk-cpp-1.11.318 -2025-11-24T08:24:49.0018321Z /nix/store/lamn5scbjgwq2n9qg1ai2kvyjvw6kjd2-awscli2-2.15.43 -2025-11-24T08:24:49.0019361Z /nix/store/q1c2flcykgr4wwg5a6h450hxbk4ch589-bash-5.2-p15 -2025-11-24T08:24:49.0020250Z /nix/store/1jzhbwq5rjjaqa75z88ws2b424vh7m53-bash-5.2p32 -2025-11-24T08:24:49.0021896Z /nix/store/hix5711xrj6fwg23qs03w8w7zy29whfw-bash-interactive-5.2p32 -2025-11-24T08:24:49.0043121Z /nix/store/bh5ifiy3iwvfqfxw5gf14y1235cp7d97-bcg729-1.1.1 -2025-11-24T08:24:49.0044220Z /nix/store/dyr7xzspc0z1ark0lc5ncxk676iqna42-blas-3 -2025-11-24T08:24:49.0045176Z /nix/store/3yv2aq8wkgal8m9m2ibnngkzdvsav0x7-blas-3-dev -2025-11-24T08:24:49.0046158Z /nix/store/79pgx9z1bylfrilpbrmscn7gafydnfv5-bluez-5.75 -2025-11-24T08:24:49.0047182Z /nix/store/ww46hbf56wlmcg5kbgk8bz9jsbxx88hy-boehm-gc-8.2.6 -2025-11-24T08:24:49.0048248Z /nix/store/nmkjwwbqbsa4nx3ljjxrp746kp53by51-brotli-1.1.0-lib -2025-11-24T08:24:49.0049566Z /nix/store/x11lxi08rrif8arf4j88hlcfivvag558-busybox-static-x86_64-unknown-linux-musl-1.36.1 -2025-11-24T08:24:49.0050849Z /nix/store/0s4k9fh17m2sx8ifj9xdflnjfgxrvbgp-bzip2-1.0.8 -2025-11-24T08:24:49.0051960Z /nix/store/155qsyx1mv11fsi48nz4dlc0vh1a3drx-bzip2-1.0.8 -2025-11-24T08:24:49.0053307Z /nix/store/8krchn3igfzz62fnirxj47l2hrz11sj9-bzip2-1.0.8-bin -2025-11-24T08:24:49.0054473Z /nix/store/7nyb4srcp8a2sij2dp2ajm8dam2vzl30-c-ares-1.27.0 -2025-11-24T08:24:49.0055628Z /nix/store/vppn7lhz5ljvydmbdppibfjg6xrfh0vx-cairo-1.18.0 -2025-11-24T08:24:49.0056868Z /nix/store/0zyxzx4g9knbqg9rjh4gs3dda57ir3lj-cdparanoia-III-10.2 -2025-11-24T08:24:49.0057968Z /nix/store/03365nil7n0s83mib1a0m04yj1r1s0b8-celt-0.11.3 -2025-11-24T08:24:49.0058757Z /nix/store/9qm1fssgi7s1sw397y4mdf0w2ii33sn0-chromaprint-1.5.1 -2025-11-24T08:24:49.0059869Z /nix/store/ii6k60vb5k7xfasw5zr7ckaym7fdsywd-containerd-1.7.16 -2025-11-24T08:24:49.0060965Z /nix/store/n9gh8gxx5xx51ihgll2l20ar9b2vmgzy-coreutils-9.5 -2025-11-24T08:24:49.0062457Z /nix/store/950jxlcd0zi3p0sjifs3v8i8y0nin140-cracklib-2.9.11 -2025-11-24T08:24:49.0063756Z /nix/store/pxl1pq9wl45cwp3q787gq62rz9gl1g35-create-build-entry -2025-11-24T08:24:49.0064930Z /nix/store/crk54hd03zf54g50441z386blj47rqbw-create-container-dump -2025-11-24T08:24:49.0066064Z /nix/store/87xgc04881wzdx7wnfn0d05gdx66jw73-cryptsetup-2.7.3 -2025-11-24T08:24:49.0067172Z /nix/store/aykqqwb1xmv2hfmswv7fgmlij28my0q0-cups-2.4.8-lib -2025-11-24T08:24:49.0068240Z /nix/store/fv1plv85qylnw87dlnxaqkgl06drgr1r-curl-8.7.1 -2025-11-24T08:24:49.0069201Z /nix/store/jaapy8mk67cbflvmj7gjpylgahl0pj69-curl-8.7.1-bin -2025-11-24T08:24:49.0070180Z /nix/store/fwnm0vr8bylbgwpmzic6xg07kl4prqzc-curl-8.7.1-man -2025-11-24T08:24:49.0071266Z /nix/store/svf1rly63z1wivpzm7q7d1xkb48pm3l2-cyrus-sasl-2.1.28 -2025-11-24T08:24:49.0072317Z /nix/store/28q4r7zcrl59qaxrbrfl65kx1wgkkay5-dav1d-1.4.1 -2025-11-24T08:24:49.0073572Z /nix/store/2cbbwpr4awcw7h5zys1vdsv5jyaizkbs-db-4.8.30 -2025-11-24T08:24:49.0074585Z /nix/store/0nl55z21knp8fq18zcyfkgra0i2hijyv-db-5.3.28 -2025-11-24T08:24:49.0075582Z /nix/store/i4rg4244x7fqvsbh6qbx848lfrhy3x3c-dbus-1.14.10 -2025-11-24T08:24:49.0076664Z /nix/store/dvrxm99hwicvwf8mg4b0gx6kpd6qxvdk-dbus-1.14.10-dev -2025-11-24T08:24:49.0077753Z /nix/store/c1pvi36v9d02by7s9fcx204qg3ic9xgh-dbus-1.14.10-lib -2025-11-24T08:24:49.0078826Z /nix/store/nb06pbh9j1b44ply234vvkaar1w3gvgi-dconf-0.40.0-lib -2025-11-24T08:24:49.0080000Z /nix/store/1mjlla0fc468wl9cphnn2ivpfx02mr7j-dejavu-fonts-minimal-2.37 -2025-11-24T08:24:49.0081152Z /nix/store/5kac9hw6x00l883wa4371da27na10mdv-directfb-1.7.7 -2025-11-24T08:24:49.0082314Z /nix/store/zr2gp0yli9vjsqfp28526jcajcivq2ag-dns-root-data-2023-11-27 -2025-11-24T08:24:49.0083813Z /nix/store/zcjkcknxsqafyx2y3f5x988pkb0fwclm-double-conversion-3.3.0 -2025-11-24T08:24:49.0084947Z /nix/store/i7190zhkrx6l6iqjqfdcsjblisqi5zn7-duktape-2.7.0 -2025-11-24T08:24:49.0086033Z /nix/store/vanxcdgcyw9racn9dphs67f0qxfb2bkd-editline-1.17.1 -2025-11-24T08:24:49.0087141Z /nix/store/jsizfglsm40vsjc81xnm3wa0rxshpnz0-elfutils-0.191 -2025-11-24T08:24:49.0088183Z /nix/store/b5d4fldmq2rf44ffml37m0zl3fdz2mkg-ell-0.64 -2025-11-24T08:24:49.0089205Z /nix/store/nbbg70f6gihj51p65kv19m0fnq8ik5kh-expat-2.6.4 -2025-11-24T08:24:49.0090314Z /nix/store/lvkrfaynswav193jkqc6vg7c6fijrbi4-expat-2.6.4-dev -2025-11-24T08:24:49.0091424Z /nix/store/zxa67zidllxq02wa2jcpdjs6a24c50gc-faad2-2.11.1 -2025-11-24T08:24:49.0093113Z /nix/store/5jm8r2l3axkpcsygz5hxz0h1jcc3p7c7-fdk-aac-2.0.3 -2025-11-24T08:24:49.0094206Z /nix/store/5fhcjl8ygadpn1vmmcv94y5xdj87ijvg-ffado-2.4.8 -2025-11-24T08:24:49.0095326Z /nix/store/4749l0nkfysbi06gq6arznxy0zb4ymvf-ffmpeg-6.1.2-data -2025-11-24T08:24:49.0096473Z /nix/store/995bvqfapid0yzx0jnqaq8l89pp2hd6w-ffmpeg-6.1.2-lib -2025-11-24T08:24:49.0097724Z /nix/store/lcrda0r4xylppfgmazzln221bxdk652m-ffmpeg-headless-6.1.2-data -2025-11-24T08:24:49.0099052Z /nix/store/aj3rs5lixcbvja00ypfbfy1ynqg3krk5-ffmpeg-headless-6.1.2-lib -2025-11-24T08:24:49.0100349Z /nix/store/pn1sn53pyp2vz9jhy0vb5pfbgk3fw16b-fftw-single-3.3.10 -2025-11-24T08:24:49.0101467Z /nix/store/1b4si7qr8f04lqpy5m7iis3w8jxhc2vq-file-5.45 -2025-11-24T08:24:49.0102453Z /nix/store/qdk6ds72q8xf5fzi16x7736bwz8aydic-findutils-4.9.0 -2025-11-24T08:24:49.0103406Z /nix/store/9z2k8x5ja4jwb0facp7zn0hv59yyhfxp-flac-1.4.3 -2025-11-24T08:24:49.0104285Z /nix/store/4n9b0fwpzs9anb2ga0v7r1dsdix4k0jq-flite-2.2 -2025-11-24T08:24:49.0105290Z /nix/store/xcbcbhk8zimngwiafywap158qjiwv9sk-fluidsynth-2.3.5 -2025-11-24T08:24:49.0105979Z /nix/store/7r4nw8z7wrf07mxk3m71rav47xlmj50m-fontconfig-2.15.0 -2025-11-24T08:24:49.0106665Z /nix/store/jfp0nybgag72xd2y9i0z16m6w8hpj8n8-fontconfig-2.15.0-bin -2025-11-24T08:24:49.0107383Z /nix/store/35kyrfkzrm1am5l91iz0srdp2wh8j1an-fontconfig-2.15.0-lib -2025-11-24T08:24:49.0108066Z /nix/store/zdn6ss261z463m14qyyi9s8775mghx7h-freepats-20060219 -2025-11-24T08:24:49.0108722Z /nix/store/0npkjmcmq2zjmwfr8n9qiphikhi0h27n-freetype-2.13.2 -2025-11-24T08:24:49.0109585Z /nix/store/jalq9yqbfprgkfm64g7hm0qdjf1p0vn9-fribidi-1.0.13 -2025-11-24T08:24:49.0110223Z /nix/store/19ia8qwxsk5hn0jhmpxlggg29jan2kk3-fuse-3.16.2 -2025-11-24T08:24:49.0110892Z /nix/store/4i19nk1w31wr6fnwy2crzvyxdjzsmm25-fuse-overlayfs-1.13 -2025-11-24T08:24:49.0111601Z /nix/store/b2y89hps3wp9kni162477cnwn3v1s0vc-game-music-emu-0.6.3 -2025-11-24T08:24:49.0112264Z /nix/store/jziybc6yn78sf0bbh0kmmx50bxjsnr15-gawk-5.2.2 -2025-11-24T08:24:49.0113129Z /nix/store/pqjdzrpm68zznzbamq3kda12qfn4mmfg-gawk-5.2.2-man -2025-11-24T08:24:49.0113778Z /nix/store/90yn7340r8yab8kxpb0p7y0c9j3snjam-gcc-13.2.0-lib -2025-11-24T08:24:49.0114430Z /nix/store/dd13q38yxm9qppjclsvwn10dscsf0l9w-gcc-13.2.0-libgcc -2025-11-24T08:24:49.0115073Z /nix/store/z7hrcpmiv2kxcmwmsh430w6kikpgfl3l-gd-2.3.3 -2025-11-24T08:24:49.0115679Z /nix/store/y8fzwmygqh9rl5rc8rvcydcskgszldpn-gdbm-1.23 -2025-11-24T08:24:49.0116320Z /nix/store/484qnnssg3n2md24vpxw3qk0dspkppsb-gdk-pixbuf-2.42.12 -2025-11-24T08:24:49.0116995Z /nix/store/bhdbni2bwgiy88iyh07yq2pw9r9x4r4h-generate-gpg1-key -2025-11-24T08:24:49.0117683Z /nix/store/1bzgjxzx4c6ni628qhl9v2lj7b7rx1bw-getent-glibc-2.39-52 -2025-11-24T08:24:49.0118333Z /nix/store/frc6vkc5qggx3hyxd91f9r054z5ridar-getopt-1.1.6 -2025-11-24T08:24:49.0118955Z /nix/store/6ds32jlmhqjvbkp2pd20dz1wi9anszls-gettext-0.21.1 -2025-11-24T08:24:49.0119616Z /nix/store/7w7yin9a870lg40gap1r2qpx0dygwbll-gfortran-13.2.0-lib -2025-11-24T08:24:49.0120317Z /nix/store/shj3d9r31bhxbv0lnv9iwa147ldg86iw-gfortran-13.2.0-libgcc -2025-11-24T08:24:49.0121016Z /nix/store/xzcf7d64zqhpnk9lh3s73804fjvwdijn-giflib-5.2.2 -2025-11-24T08:24:49.0121625Z /nix/store/3c275grvmby79gqgnjych830sld6bziw-glib-2.80.2 -2025-11-24T08:24:49.0122249Z /nix/store/q1zjgn2pwl07vkgxgax0v453y40lxkyg-glib-2.80.2-bin -2025-11-24T08:24:49.0123134Z /nix/store/xq2isr2v4jlwjpmv9z8nd2vsys060kqf-glib-2.80.2-dev -2025-11-24T08:24:49.0123782Z /nix/store/qn3ggz5sf3hkjs2c797xf7nan3amdxmp-glibc-2.38-27 -2025-11-24T08:24:49.0124404Z /nix/store/pf5avvvl4ssd6kylcvg2g23hcjp71h19-glibc-2.39-52 -2025-11-24T08:24:49.0125059Z /nix/store/94gaw2ngsnpf3ybxjsg89lf3hf3d55y2-glibc-2.39-52-bin -2025-11-24T08:24:49.0125713Z /nix/store/jig62nn8174n4dlk05lqwsvs5wd2c64r-glibc-2.39-52-dev -2025-11-24T08:24:49.0126401Z /nix/store/mq2lm1hbxzsdyjk7admb17kzx3zwqcfv-glibc-2.39-52-getent -2025-11-24T08:24:49.0127080Z /nix/store/6cvlfg9drxk3mlr4pmf71zwg1fdpfsr3-glibc-iconv-2.39 -2025-11-24T08:24:49.0127728Z /nix/store/1hqv10fp1iyrjbrc02x2frchj89givpk-glibmm-2.66.7 -2025-11-24T08:24:49.0128492Z /nix/store/rsy0dx70bpz0lbdcdp7b1nzxri272jcv-glu-9.0.3 -2025-11-24T08:24:49.0129142Z /nix/store/0pkjhzncyjkvhq8lwmdkzvl4cs4vh0yb-gmp-with-cxx-6.3.0 -2025-11-24T08:24:49.0129809Z /nix/store/s8q3rch0wd3shdnznz9bcj8mj6pvz1gr-gmp-with-cxx-6.3.0 -2025-11-24T08:24:49.0130496Z /nix/store/mwqnsdm4kcx3b4zk23i8196j1y492kn3-gmp-with-cxx-6.3.0-dev -2025-11-24T08:24:49.0131153Z /nix/store/8nss7h1yk4jihkmr4xj5ihrbdkv4y1wy-gnugrep-3.11 -2025-11-24T08:24:49.0131773Z /nix/store/az1vlcldx7vaqq533a8x31vvqa6dvqgb-gnum4-1.4.19 -2025-11-24T08:24:49.0132405Z /nix/store/vqgpb0anqqfnhb5ww3y8rf1jaxpphqwg-gnumake-4.4.1 -2025-11-24T08:24:49.0133340Z /nix/store/s3ar5dw359pybk1zx4discj2v3yl8j66-gnumake-4.4.1-man -2025-11-24T08:24:49.0133979Z /nix/store/4jy677ypizvv6vnyn3j3nhzp7rg32a75-gnupg-1.4.23 -2025-11-24T08:24:49.0134598Z /nix/store/0filj1ph0ddsc6bnhdhcjrqdvhvjdjiw-gnupg-2.4.5 -2025-11-24T08:24:49.0135210Z /nix/store/vl4mvms46802yzsj59h314wf7l26gilw-gnupg-2.4.5 -2025-11-24T08:24:49.0135854Z /nix/store/64h8qw6865mkmws9jswhg7z5kq6rsrzw-gnupg1compat-2.4.5 -2025-11-24T08:24:49.0136490Z /nix/store/5jnr7m8y3gkd9559mf14sw43fb2s5w0m-gnuplot-6.0.0 -2025-11-24T08:24:49.0137093Z /nix/store/y8br765djcj51ls9lb3kylkrvc2wan3p-gnused-4.9 -2025-11-24T08:24:49.0137697Z /nix/store/llalnjlyrj2zv12q5bjy8cagqv70j73y-gnutar-1.35 -2025-11-24T08:24:49.0138310Z /nix/store/xpidksbd07in3nd4sjx79ybwwy81b338-gnutar-1.35 -2025-11-24T08:24:49.0138924Z /nix/store/hqll9vi4g6krj2yfxc4vqndvsfssas7x-gnutls-3.8.5 -2025-11-24T08:24:49.0139550Z /nix/store/j1vqg67pzqw44qnigcd3ra6kn5fr97cr-gnutls-3.8.5-bin -2025-11-24T08:24:49.0140382Z /nix/store/c3aszilvmbj96ln5a5mbhr80sr86nbvb-gnutls-3.8.5-dev -2025-11-24T08:24:49.0141093Z /nix/store/fhfza8gyfnrqn3q605w5cw327gn0hz5s-gobject-introspection-1.80.1 -2025-11-24T08:24:49.0141789Z /nix/store/0yrrqjkh0qj51wyaghwqzx0gc0l6lf5a-gpgme-1.23.2 -2025-11-24T08:24:49.0142419Z /nix/store/hxw38czbsfvnx1wl8vckv2b6k1rbmcpy-graphene-1.10.8 -2025-11-24T08:24:49.0143347Z /nix/store/9q6wjrav2m5ikwf3yznj96fxmxvdz02v-graphite2-1.3.14 -2025-11-24T08:24:49.0144005Z /nix/store/y21ngpz8djf6429rjml06pwwfibr0d87-graphviz-10.0.1 -2025-11-24T08:24:49.0144631Z /nix/store/0sq3jcykin6q788jgpma14n0sg8bwn7z-groff-1.23.0 -2025-11-24T08:24:49.0145333Z /nix/store/1rr497fk0jmibaj65983i7nipz2knmc8-gsettings-desktop-schemas-46.0 -2025-11-24T08:24:49.0146017Z /nix/store/xn47v1hva7pcfkim3lqly4ya0mkb1k2y-gsm-1.0.22 -2025-11-24T08:24:49.0146633Z /nix/store/66brm5ms6jb8ayp23j39k68kvfdjgbra-gssdp-1.4.1 -2025-11-24T08:24:49.0147270Z /nix/store/warlq6qs5s6q2s6xj7b3dsba70x3aq0c-gst-libav-1.24.10 -2025-11-24T08:24:49.0147989Z /nix/store/96jf0b3vnx0z05a4ny8z0sp1hws6gmcf-gst-plugins-bad-1.24.10 -2025-11-24T08:24:49.0148732Z /nix/store/vjbnls7fds0dn0dpbrql2ll64x1g3lc8-gst-plugins-base-1.24.10 -2025-11-24T08:24:49.0149497Z /nix/store/clx6j1x1dhi3bnj41cbsnggxisaz8sir-gst-plugins-good-1.24.10 -2025-11-24T08:24:49.0150196Z /nix/store/ss1mxd1xaajzkryys2nhjxri7bm4zlf5-gstreamer-1.24.10 -2025-11-24T08:24:49.0150893Z /nix/store/g2ym73n8p60pmz31i2cjzzc2maxsjnr2-gstreamer-vaapi-1.24.10 -2025-11-24T08:24:49.0151572Z /nix/store/hdn2gb5xa3amcpn4g90hscplwbnk56bz-gtk+3-3.24.43 -2025-11-24T08:24:49.0152185Z /nix/store/r467qyv4aamq2hg9xsq72vignslcrm5q-gts-0.7.6 -2025-11-24T08:24:49.0153140Z /nix/store/ymabnglmak4mdqfm7gis35j0glikxh0w-gupnp-1.4.4 -2025-11-24T08:24:49.0153913Z /nix/store/in5f9jxkky4xnhb9nvwxs70x0pdlr7gh-gupnp-igd-1.2.0 -2025-11-24T08:24:49.0154533Z /nix/store/r6apkwli4s0xhzn1bdi9nrkmvqc5arrj-gzip-1.13 -2025-11-24T08:24:49.0155150Z /nix/store/wazdn869j9x8g36w1mvpcpicd7p97lpw-harfbuzz-8.4.0 -2025-11-24T08:24:49.0155775Z /nix/store/mrfhd1z4dq1yn535pnn3j6ih70lbgxv9-helm-3.15.0 -2025-11-24T08:24:49.0156405Z /nix/store/9y4ha6gkpasclbz0ai4nxrxyadm5cm4k-helm-diff-3.9.5 -2025-11-24T08:24:49.0157095Z /nix/store/3nhbs4jxf6qayllzsbygjlsfam0fd5cf-helm-mapkubeapis-0.1.0 -2025-11-24T08:24:49.0157767Z /nix/store/24794mg7xgg2d6lra3ac2asw20vs39sw-helm-plugins -2025-11-24T08:24:49.0158393Z /nix/store/sk8n88qna3hscvlrczdg5cg4l2ychf8z-helm-s3-0.16.0 -2025-11-24T08:24:49.0159237Z /nix/store/c0nwsn94zwz38jmx533k3w5msd9qnwg5-helm-secrets-4.6.0 -2025-11-24T08:24:49.0159891Z /nix/store/44396d1dacgadwysbq3fqf9bd69jc9c8-helmfile-0.162.0 -2025-11-24T08:24:49.0160524Z /nix/store/xq62ams06wq8ix1qb5rd6ygjlwvw0q76-hwdata-0.382 -2025-11-24T08:24:49.0161162Z /nix/store/hwd8j670is918b951h0hwnapfzwr05ny-iana-etc-20240318 -2025-11-24T08:24:49.0161792Z /nix/store/a2qxya11zd3xdn5df34n6axfd6fhgzql-icu4c-73.2 -2025-11-24T08:24:49.0162400Z /nix/store/wlh7hfyvzz29qprxihwshada259awrdb-imath-3.1.11 -2025-11-24T08:24:49.0163268Z /nix/store/7yqrkq8ff0s9xysk3kj2lf76wvyjk2wn-iptables-1.8.10 -2025-11-24T08:24:49.0163915Z /nix/store/zx2wnh4wp39mkc9rx4jlzd3jljnhcwb5-iso-codes-4.16.0 -2025-11-24T08:24:49.0164530Z /nix/store/2b81ihj7pcsr6pkr02vaajprjx9gfpq6-jq-1.7.1 -2025-11-24T08:24:49.0165121Z /nix/store/xylb1pgqnnd2qj9lsy1w2r9p8lmir8qs-jq-1.7.1-bin -2025-11-24T08:24:49.0165734Z /nix/store/p3ks31bnd9fhvh2cp1wmcalm4bs2bkwq-jq-1.7.1-doc -2025-11-24T08:24:49.0166348Z /nix/store/bwxp1bkaa4cgz20mrk1hqm8azvv1skif-jq-1.7.1-lib -2025-11-24T08:24:49.0166957Z /nix/store/xrmh72ajmjxlgnncilm9mg6ww8nsff5m-jq-1.7.1-man -2025-11-24T08:24:49.0167559Z /nix/store/kh4996rfh9sm32l026igm88ipz34ivvb-json-c-0.17 -2025-11-24T08:24:49.0168183Z /nix/store/i7avvg2mbw505cd6jx9k5admny6v9k8d-json-glib-1.8.0 -2025-11-24T08:24:49.0168802Z /nix/store/mgrsh2jnmxwv384q810fkgm2bzp3fwvz-kbd-2.6.4 -2025-11-24T08:24:49.0169435Z /nix/store/afmksdmk6b1zvg6i0arpn3q9xkzsnd9v-kexec-tools-2.0.28 -2025-11-24T08:24:49.0170096Z /nix/store/0b5z0wf3k9y3s3qadnkwsm78avax4jlk-keyutils-1.6.3-lib -2025-11-24T08:24:49.0170851Z /nix/store/w6zi8q7la3f5vpl9gl81b0dvfq4wj8p0-kmod-31 -2025-11-24T08:24:49.0171453Z /nix/store/n9h67rrlpqq6lk7piw059ddxiydlfzbd-kmod-31-lib -2025-11-24T08:24:49.0172106Z /nix/store/g6xy81k0vwflzsjgrdj1ak7mniiq4g56-kubernetes-1.29.10 -2025-11-24T08:24:49.0172943Z /nix/store/9gbl10a8driqq6sbqgwqv3p3sgc4443q-kubernetes-helm-3.15.0 -2025-11-24T08:24:49.0173621Z /nix/store/1yhzp59gq3bfdfys8z2q9wkrc9mqh003-lame-3.100-lib -2025-11-24T08:24:49.0174634Z /nix/store/702y72g4yqmylqs1niks1dzm1vh6vaqh-lcms2-2.16 -2025-11-24T08:24:49.0175632Z /nix/store/dh60g7bp466jd3m1sb0y79mm15rg25gk-ldacBT-2.0.2.3 -2025-11-24T08:24:49.0176484Z /nix/store/rcazl4zhbdvc9w357vlwk95v8gcfjhr2-lerc-4.0.0 -2025-11-24T08:24:49.0177257Z /nix/store/0dna4dy4276xq9bfm6kapg56sb6xnmsp-less-643 -2025-11-24T08:24:49.0177976Z /nix/store/xc9l92rl3ndvhwi8a6yj01icn1d8vfp9-libGL-1.7.0 -2025-11-24T08:24:49.0178792Z /nix/store/qkcd83z90018bfkdimzq0yz00fw14c59-libICE-1.1.1 -2025-11-24T08:24:49.0179636Z /nix/store/fkxpblx53z0gbh5iripmciwwbcavp216-libSM-1.2.4 -2025-11-24T08:24:49.0180305Z /nix/store/5z1p38q7crvid944wrhmiiglvvald0j4-libX11-1.8.9 -2025-11-24T08:24:49.0181150Z /nix/store/vsknwh2l5cxipfpz84gl3bd774k43g17-libXScrnSaver-1.2.4 -2025-11-24T08:24:49.0181970Z /nix/store/hfy39pxmyvs4sjbwqv4si92ixmj2crx5-libXau-1.0.11 -2025-11-24T08:24:49.0182937Z /nix/store/ibc28k85i5va38ilqn44z9y7a174x9xs-libXcomposite-0.4.6 -2025-11-24T08:24:49.0183686Z /nix/store/l6cqv0aflnlvlshkxfchik6gnafqm24g-libXcursor-1.2.2 -2025-11-24T08:24:49.0184366Z /nix/store/wlfigacigim7vsr0j9macqgzga40wi51-libXdamage-1.1.6 -2025-11-24T08:24:49.0185020Z /nix/store/4b5w9n7781c99pwa0qvsg25my65i0zq9-libXdmcp-1.1.5 -2025-11-24T08:24:49.0185647Z /nix/store/298lasn37whh7042pbfz0jxp403pai76-libXext-1.3.6 -2025-11-24T08:24:49.0186289Z /nix/store/j3irb77rvrqsn57y88mjlppwsim5ldx4-libXfixes-6.0.1 -2025-11-24T08:24:49.0186922Z /nix/store/p4brhgwc11hfk13vwad4ix5xr7vkavhx-libXft-2.3.8 -2025-11-24T08:24:49.0187536Z /nix/store/r5j717nmw6yg894a885r3a9wb2kj8sk2-libXi-1.8.1 -2025-11-24T08:24:49.0188170Z /nix/store/d6w4gyllmnp26i2vjydylbz27x5mrbww-libXinerama-1.1.5 -2025-11-24T08:24:49.0188814Z /nix/store/qa0w8kji1jrkw2a8baxnd49dczci9bf8-libXpm-3.5.17 -2025-11-24T08:24:49.0189817Z /nix/store/acw4dh5a3dwbm5w8fdgiq9hxd7sd6a0v-libXrandr-1.5.4 -2025-11-24T08:24:49.0190846Z /nix/store/2ffppfzsjcp1q3bdxn96a2hqdlkijvr8-libXrender-0.9.11 -2025-11-24T08:24:49.0191641Z /nix/store/vl868md5gc199rcrfdc7cl4mi5kb9jq9-libXtst-1.2.4 -2025-11-24T08:24:49.0192994Z /nix/store/s9qgv87lgzw1mgkvn17sj6vcdhvg8ir5-libXv-1.0.12 -2025-11-24T08:24:49.0193794Z /nix/store/jscdp3lvxp32zp5v6isv041zzc763h6k-libXxf86vm-1.1.5 -2025-11-24T08:24:49.0194592Z /nix/store/jxzfajll1sk4pyhpnyfd35y7vh3w8c1g-libao-1.2.2 -2025-11-24T08:24:49.0195372Z /nix/store/bwcshjy7xk875nw3qd0zch639bfc2v3v-libaom-3.9.0 -2025-11-24T08:24:49.0196155Z /nix/store/l0v5pkl7cv999ns3jawq1hx53jj3p1qk-libapparmor-3.1.7 -2025-11-24T08:24:49.0197000Z /nix/store/fbkbkqb1cp46jwgk2lv6g28ik57r764i-libarchive-3.7.7-lib -2025-11-24T08:24:49.0198019Z /nix/store/czcrq1nad23isbaikj0qi6xyxv0b34vw-libargon2-20190702 -2025-11-24T08:24:49.0198854Z /nix/store/xy1iyna81kvjvpv3mhfpqr3vfh4p1kkl-libass-0.17.1 -2025-11-24T08:24:49.0199517Z /nix/store/xc1aw6cjm3hj8qdaj8x9g089lm4abrr9-libassuan-2.5.7 -2025-11-24T08:24:49.0200549Z /nix/store/rsb77bpsahd583rzqwf510d5mzd1sdln-libavc1394-0.5.4 -2025-11-24T08:24:49.0201496Z /nix/store/hw3hwpk0gmcmhajsjsvhxk2vn9h30bq7-libavif-1.0.4 -2025-11-24T08:24:49.0202271Z /nix/store/ywj3g79vpya72rw2xbrg656ir0x25hdi-libb2-0.98.1 -2025-11-24T08:24:49.0203049Z /nix/store/xs3gk42g7dlsndzwgx72c71h76clzfsv-libbpf-1.4.2 -2025-11-24T08:24:49.0203823Z /nix/store/gsi7vwam9z972mxrmrvkw08l864lfwvr-libbs2b-3.1.0 -2025-11-24T08:24:49.0204585Z /nix/store/k8f3hragii2jbkka3d59lamj6apvqrzz-libbsd-0.11.8 -2025-11-24T08:24:49.0205374Z /nix/store/sggw61w356qbggr7p22ndijhkw6nk6nc-libcaca-0.99.beta20 -2025-11-24T08:24:49.0206181Z /nix/store/0y447vkbnzkdm714dnfwmxa37lfxqj81-libcamera-0.2.0 -2025-11-24T08:24:49.0207455Z /nix/store/03b059n120bjy9czjkfhckyy16vxcff4-libcanberra-0.30 -2025-11-24T08:24:49.0208129Z /nix/store/j67whcybdcm598p442ja0x5idiknsvyc-libcap-2.69-lib -2025-11-24T08:24:49.0208770Z /nix/store/49jrxd6mcc6ckwrm5sk35gapva0zw221-libcap-ng-0.8.5 -2025-11-24T08:24:49.0209777Z /nix/store/s3w5cr4c4s6ydfgw17l4wgxs0yr0vxwd-libcbor-0.11.0 -2025-11-24T08:24:49.0210918Z /nix/store/d73x8ky2dlxa6ky50gj5f63gc3dvmhp3-libcerf-2.4 -2025-11-24T08:24:49.0211808Z /nix/store/isvmi5n4y67jikxrbwi9837920swcig6-libconfig-1.7.3 -2025-11-24T08:24:49.0212615Z /nix/store/ggzxnrg5a2zy0bdk9csby7mlbzyk1fc0-libcpuid-0.6.5 -2025-11-24T08:24:49.0213484Z /nix/store/y9qvkwvhaqvk5i4h82smlrlml8mkbk7x-libdaemon-0.14 -2025-11-24T08:24:49.0214279Z /nix/store/2g8q946s9ngv63ssh93i3p4mc0z5q054-libdatrie-2019-12-20-lib -2025-11-24T08:24:49.0215079Z /nix/store/1m2m6q2pjlhmhz4g589rfs91i8gmyrcf-libdc1394-2.2.7 -2025-11-24T08:24:49.0215818Z /nix/store/lhw8k224lnh45564770rira6f2fz7pkg-libde265-1.0.15 -2025-11-24T08:24:49.0216587Z /nix/store/3abb189d4igphsd7dj9iykmvz2wp0lif-libdecor-0.2.2 -2025-11-24T08:24:49.0217338Z /nix/store/dcdhs0cqc45ryd2836yvjv34z6jxfc3l-libdeflate-1.20 -2025-11-24T08:24:49.0217979Z /nix/store/vsfikrk5xcncbg89qx5a2n0jylkzx2cg-libdrm-2.4.120 -2025-11-24T08:24:49.0218610Z /nix/store/4z8r1xfr898z62dw8fz9fj2lzd0iq0wx-libdv-1.0.0 -2025-11-24T08:24:49.0219353Z /nix/store/mldlqbciwfv3ldvvwfyvj55x1fjv9pqh-libdvdcss-1.4.3 -2025-11-24T08:24:49.0220011Z /nix/store/63chsm1g9pbfqp072cc1kv5j4j5pmsna-libdvdnav-6.1.1 -2025-11-24T08:24:49.0220658Z /nix/store/ikpcy0aqjdlgn7j9m4291yy3fzk313vl-libdvdread-6.1.3 -2025-11-24T08:24:49.0221451Z /nix/store/g9h3w8nvry6ciwq6dbfiq4g0y2lmlsdd-libepoxy-1.5.10 -2025-11-24T08:24:49.0222201Z /nix/store/bfi5yfjprczappbx6z7shqsz4mckqr4s-libevdev-1.13.1 -2025-11-24T08:24:49.0223107Z /nix/store/pm7i9hd073plr28fppi417najx3vx2vv-libevent-2.1.12 -2025-11-24T08:24:49.0224254Z /nix/store/gniy4ab9wcijxjpcciddgpzdwq3v3dnb-libffi-3.4.6 -2025-11-24T08:24:49.0225059Z /nix/store/lhzxnmigwry6za5n0jwmzrc6mdmlss92-libffi-3.4.6-dev -2025-11-24T08:24:49.0226047Z /nix/store/71mk6wddlb93pwc36gw6qwssgf1xp0yn-libfido2-1.14.0 -2025-11-24T08:24:49.0226865Z /nix/store/zqy22zkr1a6xb9cf5rm38p26qgicis82-libfreeaptx-0.1.1 -2025-11-24T08:24:49.0227561Z /nix/store/pffh6d501fj27h886lmbj8x3l80y93d3-libgcrypt-1.10.3 -2025-11-24T08:24:49.0228370Z /nix/store/2bs7zc57z3lw3fmmvdbw1q3mchqyv6hr-libgcrypt-1.10.3-dev -2025-11-24T08:24:49.0229186Z /nix/store/6lzcb4zv3lysq4yjhmgi1dkc6fqrgphy-libglvnd-1.7.0 -2025-11-24T08:24:49.0230143Z /nix/store/p3ls8qj9db0zxqyh1yl1xhza2007ydyg-libgpg-error-1.48 -2025-11-24T08:24:49.0231022Z /nix/store/9anvd217j8v5skm2lpbv2wc1r4s422z9-libgpg-error-1.48-dev -2025-11-24T08:24:49.0231830Z /nix/store/pn7vakwcmzq4i7m4yjcjk4z9ylwx1mhr-libgudev-238 -2025-11-24T08:24:49.0232603Z /nix/store/bcy2747bv7g8hc10dx19plabi7gd4wgg-libical-3.0.18 -2025-11-24T08:24:49.0233534Z /nix/store/08n25j4vxyjidjf93fyc15icxwrxm2p8-libidn2-2.3.4 -2025-11-24T08:24:49.0234492Z /nix/store/9jivp79yv91fl1i6ayq2107a78q7k43i-libidn2-2.3.7 -2025-11-24T08:24:49.0235771Z /nix/store/52i0az8insvqdrg8q094xd9d89fx365s-libiec61883-1.2.0 -2025-11-24T08:24:49.0236936Z /nix/store/47jrm08jdl2ipwy2qs6378x4gwdgm5q5-libimagequant-4.3.0 -2025-11-24T08:24:49.0238748Z /nix/store/33l0xjnbva59rpq8v8msj14zws7867kr-libinput-1.25.0 -2025-11-24T08:24:49.0239960Z /nix/store/6k5ldmkp36y02gbk2qm83sfab4mh6mrj-libjack2-1.9.22 -2025-11-24T08:24:49.0240839Z /nix/store/rrw0d53ykhyzwbqayrqzx28hm53krb7i-libjpeg-turbo-3.0.3 -2025-11-24T08:24:49.0241575Z /nix/store/2vv5dpcgl9hzcpzf1syjnrld69kfhkfm-libkrb5-1.21.3 -2025-11-24T08:24:49.0242568Z /nix/store/877i4v0nlmsj8cgdmbqiszymplyvd5qx-libksba-1.6.6 -2025-11-24T08:24:49.0243635Z /nix/store/xbpmy64387amikknbh7dwfarggzqjgif-liblc3-1.1.1 -2025-11-24T08:24:49.0244305Z /nix/store/49lcgk66mgdlgn3vggh9yahqcsjvilcd-libmad-0.15.1b -2025-11-24T08:24:49.0245333Z /nix/store/1kvwypvmzkql34dlmq1fxnf736v67i7s-libmaxminddb-1.9.1 -2025-11-24T08:24:49.0246539Z /nix/store/r97fx69ff4awjpzh1q153mlyc5q58pbz-libmd-1.1.0 -2025-11-24T08:24:49.0248284Z /nix/store/4gzp3wr5mi1k4fvlynci0y7n6qip0kkv-libmicrohttpd-0.9.77 -2025-11-24T08:24:49.0249546Z /nix/store/dx0m5lpqxsfd6f96nwxb6zj08gq36jqg-libmnl-1.0.5 -2025-11-24T08:24:49.0250794Z /nix/store/wfr1j6ap7889zlfqjparrgkndj6dylp9-libmodplug-0.8.9.0 -2025-11-24T08:24:49.0252866Z /nix/store/lfj2avpyaf4f66icz7xnqxakwp0fvphb-libmpg123-1.32.9 -2025-11-24T08:24:49.0254744Z /nix/store/zh2fss3schzb6zxh1912ng9pqwg3g6ls-libmysofa-1.3.2 -2025-11-24T08:24:49.0256129Z /nix/store/w4rnk5xnvg07jlazglxzn2iikdvclj9m-libnetfilter_conntrack-1.0.9 -2025-11-24T08:24:49.0257435Z /nix/store/mwn21av99yxvf4jhs0xf6hq1dfd4fzky-libnfnetlink-1.0.2 -2025-11-24T08:24:49.0258577Z /nix/store/1rg4zjc4zqabzd3wa1l2inzvyj3s441p-libnftnl-1.2.6 -2025-11-24T08:24:49.0259940Z /nix/store/iq8a89wf8y9qbzj6z374b83v6z30kz5a-libnice-0.1.22 -2025-11-24T08:24:49.0261666Z /nix/store/i16ggyd7qbfwx0b9vyfjpay990lcjlc7-libnl-3.8.0 -2025-11-24T08:24:49.0262954Z /nix/store/gw29icd5xx6sj39xad9gg2bxr7r340hw-libogg-1.3.5 -2025-11-24T08:24:49.0264085Z /nix/store/d72g65ck8hym47pk33qj81bigx8aj33b-libopenmpt-0.7.9 -2025-11-24T08:24:49.0265409Z /nix/store/maayqcn0wnchzb5f47k6ykhb2x84bbmy-libopus-1.5.2 -2025-11-24T08:24:49.0266833Z /nix/store/ak0iy34rfd9r0x62gm7144gp15gisbwh-libossp-uuid-1.6.2 -2025-11-24T08:24:49.0268021Z /nix/store/707q2pscclhgmmfr33xhbr0qbw3p2hmg-libpcap-1.10.5 -2025-11-24T08:24:49.0269162Z /nix/store/lh0b381npmiyg4x6b7v3q487pz2nzk0y-libpcap-1.10.5 -2025-11-24T08:24:49.0270364Z /nix/store/10m6hxl5zxb1c3nbdnfgcmsyy49gw2rf-libpciaccess-0.18.1 -2025-11-24T08:24:49.0271580Z /nix/store/xz6qa1y8a7nm544iqkh3nx9pgysnpl0j-libpng-apng-1.6.43 -2025-11-24T08:24:49.0272936Z /nix/store/hka0v51svlrj0p8pfjv4q0jyif6blxiv-libproxy-0.5.6 -2025-11-24T08:24:49.0274534Z /nix/store/apjs9l6fsvv3d6d5dacinrhy8qj57jgx-libpsl-0.21.5 -2025-11-24T08:24:49.0276050Z /nix/store/3xkb74fkjrj00ivfxmzmx41d9ag889bg-libpulseaudio-17.0 -2025-11-24T08:24:49.0303020Z /nix/store/3jp4h3hmz4bqv3rrj439lpkzkmxqxdwi-libpwquality-1.4.5-lib -2025-11-24T08:24:49.0304335Z /nix/store/k2q0sl6rw1gzcipz98jswm6linvnk1k8-libraw1394-2.1.2 -2025-11-24T08:24:49.0305471Z /nix/store/z9s16g5zsywlnlv07gfg9qwkqvisrbk7-librsvg-2.58.1 -2025-11-24T08:24:49.0306629Z /nix/store/j6jdzd249rj80lvwbp22gj3f17mwv1z4-libsamplerate-0.2.2 -2025-11-24T08:24:49.0307839Z /nix/store/7ssrf0drpxh2dkg7y6q4l5fnscr9a7hn-libseccomp-2.5.5-lib -2025-11-24T08:24:49.0309005Z /nix/store/5vgxahzhcvsxvgq6qjw4f09bnc07mq3c-libselinux-3.6 -2025-11-24T08:24:49.0310330Z /nix/store/xd02d5pq9zlqizwjlxjbialw4lhccbjp-libshout-2.4.6 -2025-11-24T08:24:49.0311452Z /nix/store/hb209596gpyy93xias3rd0ig0pvcb9ya-libsigc++-2.12.1 -2025-11-24T08:24:49.0312540Z /nix/store/6wk140rmq7xcwk0qrri7cg2l3wqfnsf6-libsmi-0.5.0 -2025-11-24T08:24:49.0314051Z /nix/store/4d3k6g6sscr3xbpxybgwfrkx880kabas-libsndfile-1.2.2 -2025-11-24T08:24:49.0315236Z /nix/store/302ncx9jpsj9ip869nx98as9drlbjqpn-libsodium-1.0.19 -2025-11-24T08:24:49.0316394Z /nix/store/an0kn9gd4z0k4qr7mi9975fa2mqs9248-libsoup-2.74.3 -2025-11-24T08:24:49.0317535Z /nix/store/vwlfmr1i7idc0s32ay6r00wy4b8a4rx7-libsoup-3.4.4 -2025-11-24T08:24:49.0318689Z /nix/store/8jg3rj9hffzsrfh3kd1jf4syjx6py4sg-libsrtp-2.6.0 -2025-11-24T08:24:49.0319792Z /nix/store/n9a33c5kmnigl0m8dmpzbq0wziy69q69-libssh-0.10.6 -2025-11-24T08:24:49.0320957Z /nix/store/jcv2dm4lis9g72qh580am3sg1x9vl80b-libssh2-1.11.0 -2025-11-24T08:24:49.0322091Z /nix/store/9ll9fqfsdjqwy2ibrnd5sni1mg60lzah-libtasn1-4.19.0 -2025-11-24T08:24:49.0323393Z /nix/store/z04c92z7f7pp1r3g58fg8wcxjf4pak8w-libthai-0.1.29 -2025-11-24T08:24:49.0324511Z /nix/store/r2dsg8cxrn78jq83bdjgn1nihjw1r931-libtheora-1.1.1 -2025-11-24T08:24:49.0325620Z /nix/store/ass5rpw3li6xxyjp0cykfx5l6yjcj400-libtiff-4.6.0 -2025-11-24T08:24:49.0326783Z /nix/store/fv20wfhs3bh97mhrff67lvbdqn8v0k4y-libtool-2.4.7-lib -2025-11-24T08:24:49.0327949Z /nix/store/s2f1sqfsdi4pmh23nfnrh42v17zsvi5y-libunistring-1.1 -2025-11-24T08:24:49.0328891Z /nix/store/zvwpisszhpkkk8spqyya8n3bpm7wj39p-libunistring-1.1 -2025-11-24T08:24:49.0329565Z /nix/store/66aanq01bcmxzb4j9fj5j2slbbpr6n8r-libunwind-1.8.1 -2025-11-24T08:24:49.0330441Z /nix/store/82927nf2zj1h2skjdancji1i2dsnqc1g-libusb-1.0.27 -2025-11-24T08:24:49.0331092Z /nix/store/a4x20x15w3r6iic9pllkzsikdr1ci8zr-libuv-1.48.0 -2025-11-24T08:24:49.0331719Z /nix/store/66xxwyk14nyb0w92kblq2fvlyc80lajg-libva-2.21.0 -2025-11-24T08:24:49.0332615Z /nix/store/w96x630iywdwf7q161aphnli54szspwr-libva-minimal-2.21.0 -2025-11-24T08:24:49.0333546Z /nix/store/n02ac8gfyvcrvfp70x8ycxsk2w6n5avl-libvdpau-1.5 -2025-11-24T08:24:49.0334397Z /nix/store/idk29ffgl1gh0w9mqzflw5ih2qa746cr-libvisual-0.4.1 -2025-11-24T08:24:49.0335418Z /nix/store/3lanyd7681hn1mg7imzzbk9a3vvbd6w5-libvmaf-3.0.0 -2025-11-24T08:24:49.0336074Z /nix/store/k8j5p8d02fx0smh17zzxp87vg5clcn10-libvorbis-1.3.7 -2025-11-24T08:24:49.0337189Z /nix/store/6jlh2g3half9sbvvngr28aa15cajv0zs-libvpx-1.14.1 -2025-11-24T08:24:49.0337882Z /nix/store/25c315nh12y4qsb7ajdmxirrzvixk0sz-libwacom-2.11.0 -2025-11-24T08:24:49.0338508Z /nix/store/mdl97z9dp8dhjdim472qiqqwd94bhp0j-libwebp-1.4.0 -2025-11-24T08:24:49.0339662Z /nix/store/9dkh8lhl686qjdf364myq9haklz3qpzv-libxcb-1.17.0 -2025-11-24T08:24:49.0340347Z /nix/store/bb99dclcsv3r0a8q967bnvga02qicxsf-libxcrypt-4.4.36 -2025-11-24T08:24:49.0341278Z /nix/store/m4r9jmsvgv8k0vsb72vkq91667yjdf9h-libxkbcommon-1.7.0 -2025-11-24T08:24:49.0342013Z /nix/store/lgnp0aj260v73xfnp1cz236cg3lq2lzv-libxml++-3.0.1 -2025-11-24T08:24:49.0343281Z /nix/store/ssy9mnlc9pfkdn6msnirki0yfji4nqjv-libxml2-2.12.9 -2025-11-24T08:24:49.0343944Z /nix/store/fvl7p1xahc21wmzyzri4c515fzgyx516-libxslt-1.1.39 -2025-11-24T08:24:49.0344573Z /nix/store/5pd8825vnd563qbvbv0p5p29hqirvw5c-libyaml-0.2.5 -2025-11-24T08:24:49.0345185Z /nix/store/crl81hy8cnqs4g5gn68s8sjqd1b3r0ps-libyuv-1787 -2025-11-24T08:24:49.0345805Z /nix/store/2433idnxmkvd2xl7qgvn7gxi46jz072j-lilv-0.24.24 -2025-11-24T08:24:49.0346442Z /nix/store/d7vji37yjnbji14m4waa5rn35f10jzya-linux-headers-6.7 -2025-11-24T08:24:49.0347160Z /nix/store/falcaavkhml14j79g95mvqbd2ci4g12j-linux-pam-1.6.1 -2025-11-24T08:24:49.0347856Z /nix/store/l3di8ckamifz9kkv38i3krrr7iyczaab-list-helm-containers -2025-11-24T08:24:49.0348541Z /nix/store/8qjzrbbrgvpprwynj6lbdxznp16figxg-llhttp-9.2.1 -2025-11-24T08:24:49.0349209Z /nix/store/iq8y3vz3qmsa55g4vhhcd4d2zd8p37bf-lowdown-1.1.0-lib -2025-11-24T08:24:49.0349848Z /nix/store/c0jdcx8v5dw4p4bgwg4ql03r41m47jll-lrdf-0.6.1 -2025-11-24T08:24:49.0350577Z /nix/store/iq1sblpaznf0z8g3izg690nc2d5xghnv-lttng-ust-2.13.8 -2025-11-24T08:24:49.0351415Z /nix/store/kxf38s6127l98iwhwcjcclj8yy28k1p5-lua-5.2.4 -2025-11-24T08:24:49.0352208Z /nix/store/w3iakl1f2p0b9rj1kbr7ilh69jhq6jgz-lvm2-2.03.23-lib -2025-11-24T08:24:49.0353514Z /nix/store/38kw4yvj4v2irnwg47f9pkkq50wcldcz-lynx-2.9.0dev.12 -2025-11-24T08:24:49.0354163Z /nix/store/gms3c80sldm4r0pyxj987227y49lx1ks-lz4-1.9.4 -2025-11-24T08:24:49.0354781Z /nix/store/v68clh8wa74xxblx0b748vr50gl7xnzc-mailcap-2.1.53 -2025-11-24T08:24:49.0355907Z /nix/store/jwwrmilpbv6fbpvhf9mhwa79fgwh8l92-mariadb-connector-c-3.3.5 -2025-11-24T08:24:49.0356608Z /nix/store/qhmdwfb0c32rl9pjk7cv94lxc0c7rqgl-md4c-0.5.2-lib -2025-11-24T08:24:49.0357928Z /nix/store/pycn43wvdlpfaxc1lw8n80bxdf7swx2v-minizip-1.3.1 -2025-11-24T08:24:49.0358598Z /nix/store/j6rmgmg38fr1iglrf1qrsvi5sasz1mpr-mirror-apt-jammy -2025-11-24T08:24:49.0359305Z /nix/store/6ya2hs4s51k9sj3islgdnxx0nar66jzx-mjpegtools-2.2.1-lib -2025-11-24T08:24:49.0359982Z /nix/store/2zz1kvy3hx3ly067s9266ijnxnda682w-moreutils-0.69 -2025-11-24T08:24:49.0360618Z /nix/store/6x0n8ksnajz1kf7n6q0farmyrc6af4mz-mpdecimal-4.0.0 -2025-11-24T08:24:49.0361278Z /nix/store/hixcpq22ik94b0wfs0xng4r4q18pi687-mpg123-1.32.9 -2025-11-24T08:24:49.0361903Z /nix/store/31n6bq6cw25zhcv9mavavrvi560qd9gp-mtdev-1.1.7 -2025-11-24T08:24:49.0362524Z /nix/store/90nwq55nj0nr3qgrsrk396ziazzyjh06-ncompress-5.0 -2025-11-24T08:24:49.0363408Z /nix/store/5i51nfixxx3p3gshkfsjj4bzp7wajwxz-ncurses-6.4 -2025-11-24T08:24:49.0364019Z /nix/store/zmi2nlx42h1qrs2v7yn142dq4zjq30im-ncurses-6.4 -2025-11-24T08:24:49.0364631Z /nix/store/21fbki69x6a50az3pzdf99s17y4izzki-neon-0.32.5 -2025-11-24T08:24:49.0365416Z /nix/store/9yir03i6l4c3pv54q86k57p50mc3jnh4-nettle-3.9.1 -2025-11-24T08:24:49.0366060Z /nix/store/16y3mk7wpjxpkqd5nc0jh1k6rxk2pmyc-nettle-3.9.1-dev -2025-11-24T08:24:49.0366734Z /nix/store/j17zmzz6z8fi8rd2yqk36n5jy8whzfhy-nghttp2-1.61.0-lib -2025-11-24T08:24:49.0367383Z /nix/store/kg4y3flpnkcfhxvi9cin6c81xfivcc7g-nghttp3-1.2.0 -2025-11-24T08:24:49.0367999Z /nix/store/6l271354hyg3q634vfwgwrsq6x7r965g-niv-0.2.22-bin -2025-11-24T08:24:49.0368609Z /nix/store/l9xhiy5wqs3cflxsfhxk0isbjv96rhd1-nix-2.18.8 -2025-11-24T08:24:49.0369217Z /nix/store/h2cx0dl7zcq91l31bmbnv1774mwy6v0f-nix-2.18.8-man -2025-11-24T08:24:49.0369874Z /nix/store/fmi1wn75kn5dlay0njwfa965b6lyjgw5-nix-prefetch-docker -2025-11-24T08:24:49.0370520Z /nix/store/hw4kkx5bzx5srw17x9gkyakis1ipqcl7-npth-1.7 -2025-11-24T08:24:49.0371140Z /nix/store/jb2mh4asq1klvf3nzj9blr2q6dyhwkrb-nss-cacert-3.107 -2025-11-24T08:24:49.0371780Z /nix/store/a6prrfmmr6kkbkwk6v3vq4zd96mcc5g4-numactl-2.0.18 -2025-11-24T08:24:49.0372449Z /nix/store/925hihdxx9ybs57cxvh59flm8sxddimh-oniguruma-6.9.9-lib -2025-11-24T08:24:49.0373428Z /nix/store/z6ar801axm9vcxqmkvwfqmg51vwgj7hw-openal-soft-1.23.1 -2025-11-24T08:24:49.0374109Z /nix/store/mdaawsi6fs91dr8dn2ygig1mpsddqrg3-openblas-0.3.27 -2025-11-24T08:24:49.0374792Z /nix/store/nzbzmzr7njbvajwk9xv59iyrg3r7q187-opencore-amr-0.1.6 -2025-11-24T08:24:49.0375454Z /nix/store/28a8mqa7xax040vqk3hzyl174r8z7bpw-openexr-3.2.4 -2025-11-24T08:24:49.0376101Z /nix/store/4lwqz5vrb0dn4r78zr8sd56bnkri0rag-openfec-1.4.2.9 -2025-11-24T08:24:49.0376761Z /nix/store/mfmhl6hdwp77gqkm734zip34pw53gfcm-openh264-2.4.1 -2025-11-24T08:24:49.0377886Z /nix/store/9i494hk4xxsp2adah2yi31537hr8bzdy-openjpeg-2.5.2 -2025-11-24T08:24:49.0378524Z /nix/store/8sx26kvcn36kz7b3bimr9pdq2mc4ag0j-openldap-2.6.9 -2025-11-24T08:24:49.0379744Z /nix/store/p8hw2h465g0byxwpamnk6gv6mp5gnqn2-openssl-3.0.14 -2025-11-24T08:24:49.0380519Z /nix/store/i6phx7d2fzzjrp9cq3y95ysqn85cj1y4-openssl-3.0.14-bin -2025-11-24T08:24:49.0381195Z /nix/store/kbpgc9xng17b038b5avmnp8vdl5azwhx-openssl-3.0.14-man -2025-11-24T08:24:49.0381844Z /nix/store/m3c894cml080iz9bbs18b8ci6b40yk59-opentofu-1.7.1 -2025-11-24T08:24:49.0382474Z /nix/store/wml2l9ga9iphp6v7af300g6s50xn2466-opusfile-0.12 -2025-11-24T08:24:49.0383453Z /nix/store/r6v1j4l34i98fczx1pdjpy5jv67w4bwm-orc-0.4.39 -2025-11-24T08:24:49.0384076Z /nix/store/mk838fcw7xqf597q6milpp400fq2wrb5-p11-kit-0.25.3 -2025-11-24T08:24:49.0384706Z /nix/store/45alyjrs2xflv0fyy08ng2qy62klrash-pango-1.52.2 -2025-11-24T08:24:49.0387152Z /nix/store/jk99vx5dhv57zldl5j0id3n23igbj269-pcre2-10.43 -2025-11-24T08:24:49.0387867Z /nix/store/7iny0ax59ib0pgfgkcph49zxg8zym30w-pcsclite-2.1.0-lib -2025-11-24T08:24:49.0388522Z /nix/store/mdadnfhlp7m6778zhlmpbn9qy37xkrmh-perl-5.38.2 -2025-11-24T08:24:49.0389231Z /nix/store/9nn6ysg3jz7z1blskqysd27ximim8dqc-perl5.38.2-IO-Tty-1.17 -2025-11-24T08:24:49.0390000Z /nix/store/vrpm28prnm6ahcmcl1y333xp40fn6bk6-perl5.38.2-IPC-Run-20231003.0 -2025-11-24T08:24:49.0390784Z /nix/store/sgss28baa4r7kcz5fqvdr2vcdkr0rwq7-perl5.38.2-Time-Duration-1.21 -2025-11-24T08:24:49.0391550Z /nix/store/za4zp2sff6p86j0mmbd874qipbiads43-perl5.38.2-TimeDate-2.33 -2025-11-24T08:24:49.0392442Z /nix/store/3lix6srcn4i99gdxbwmgf4rsxg78i9r9-pipewire-1.0.9 -2025-11-24T08:24:49.0393667Z /nix/store/gv406dcs0265ydgc6nnjzhw8s3yl5bpa-pixman-0.43.4 -2025-11-24T08:24:49.0394355Z /nix/store/qhwavx7kpnazsmfdbbvvafs0vsnkn49p-pkg-config-0.29.2 -2025-11-24T08:24:49.0395644Z /nix/store/dr2969ydf41s2i345dg751cabi9wnksn-pkg-config-wrapper-0.29.2 -2025-11-24T08:24:49.0396374Z /nix/store/6qwg3xkr5b9j5hwjacn69652j769w1y7-popt-1.19 -2025-11-24T08:24:49.0397030Z /nix/store/rsxw8yx21701xp3x6n0yfg517k29s2qf-postgresql-15.10-lib -2025-11-24T08:24:49.0397681Z /nix/store/nl15aj2izjnq21jdn0wr8q5yqdln35xp-profile-env -2025-11-24T08:24:49.0398435Z /nix/store/bmjdb3wc1z2nh78k23p9akgqiabi2way-publicsuffix-list-0-unstable-2024-01-07 -2025-11-24T08:24:49.0399191Z /nix/store/s0p1kr5mvs0j42dq5r08kgqbi0k028f2-python3-3.11.10 -2025-11-24T08:24:49.0399850Z /nix/store/yqjvmy66v82yc5zzp8nkrx6cc470nq5v-python3-3.11.10-env -2025-11-24T08:24:49.0400795Z /nix/store/9yh3jkmkx04rw9j0k6sdnf00n9i67arp-python3.11-aiodns-3.2.0 -2025-11-24T08:24:49.0402983Z /nix/store/7v3brfiljp0cx7yp6s0va8rwi5cn3pvz-python3.11-aiohttp-3.9.5 -2025-11-24T08:24:49.0403742Z /nix/store/jspq5y3k8fbj22h6mngcca8cvihym60w-python3.11-aiosignal-1.3.1 -2025-11-24T08:24:49.0404505Z /nix/store/cjpsg9jpxys91x4plnais8v6sklpqzp9-python3.11-ansible-9.5.1 -2025-11-24T08:24:49.0405271Z /nix/store/7ic5w44dss0x88lx4r4c7k18z064jxc1-python3.11-ansible-core-2.16.5 -2025-11-24T08:24:49.0406064Z /nix/store/1x447rf8y43bs2w9rhad8dw09rj98v6s-python3.11-ansible-pylibssh-1.1.0 -2025-11-24T08:24:49.0408039Z /nix/store/ibjg6c4n6snpj4jcirkxxy8bixphq0pa-python3.11-appdirs-1.4.4 -2025-11-24T08:24:49.0408821Z /nix/store/6m8wv5c2r6hlyg3848nmbkly7zx4bp81-python3.11-async-timeout-4.0.3 -2025-11-24T08:24:49.0409599Z /nix/store/dqy4qig88gc2kx8lj35xx3vhy9imi0v2-python3.11-attrs-23.2.0 -2025-11-24T08:24:49.0411222Z /nix/store/lzw7mb26a78av1mak89kys985h3v033p-python3.11-awscrt-0.20.9 -2025-11-24T08:24:49.0412399Z /nix/store/2lkwl19dmy90zfazaq40khbmh2fdqz75-python3.11-bcdoc-0.16.0 -2025-11-24T08:24:49.0414162Z /nix/store/g4ls15szfimvi8pinpizlp5d2zbd887b-python3.11-bcrypt-4.1.2 -2025-11-24T08:24:49.0416245Z /nix/store/24c8m4saz1k6c6qd428n3wbwmz1q2ipa-python3.11-boto3-1.34.58 -2025-11-24T08:24:49.0417652Z /nix/store/bqh6p3pb0larlzxv4kcak10lrcl0is2g-python3.11-botocore-1.34.87 -2025-11-24T08:24:49.0420065Z /nix/store/k3ifaazz09vbb1kbcxg3p7l71zd3iypr-python3.11-botocore-1.34.87 -2025-11-24T08:24:49.0421732Z /nix/store/jf4p4n3gq44pvaxpfizvaq1nanbs5n96-python3.11-brotli-1.1.0 -2025-11-24T08:24:49.0424588Z /nix/store/n4zlr84jxb49dxkhdr1vvcdq89d88n7d-python3.11-brotlicffi-1.1.0.0 -2025-11-24T08:24:49.0426111Z /nix/store/bcdyrxykwil83yfy12apxwxig1khyky3-python3.11-cerberus-1.3.5 -2025-11-24T08:24:49.0427464Z /nix/store/1nk7nm700qa1c7zmsvs077v6h7d8ssx9-python3.11-certifi-2024.02.02 -2025-11-24T08:24:49.0429888Z /nix/store/74s9dw7ksnmlkwypk69hs01w5j4lc569-python3.11-cffi-1.16.0 -2025-11-24T08:24:49.0431815Z /nix/store/nknn7vcyaf982lv13zi1p15q3x02wm82-python3.11-charset-normalizer-3.3.2 -2025-11-24T08:24:49.0433786Z /nix/store/c9b2c5gakdnqakspr3phy0ld4b9p93z5-python3.11-click-8.1.7 -2025-11-24T08:24:49.0435032Z /nix/store/4vyv8rg50k6sz8hfnj7qj771abcnjkbf-python3.11-colorama-0.4.6 -2025-11-24T08:24:49.0436991Z /nix/store/agc5rqsjl4k52ywmrq39sahyg3gsqx5z-python3.11-configparser-6.0.1 -2025-11-24T08:24:49.0438508Z /nix/store/7kb58pc7vb0svbzqcs72mq4hv1jl0lfg-python3.11-contourpy-1.2.0 -2025-11-24T08:24:49.0440624Z /nix/store/7jnfmks5w5dgz2igpr4cag6p4j46vfyi-python3.11-cryptography-42.0.5 -2025-11-24T08:24:49.0443348Z /nix/store/b4j4n3sk20ra940lw04cr2v9r915q9pi-python3.11-cycler-0.12.1 -2025-11-24T08:24:49.0445262Z /nix/store/wk70gs18myaldgap2vjm0n7p1r3js0dh-python3.11-deepdiff-6.7.1 -2025-11-24T08:24:49.0447361Z /nix/store/wckh5hrr8va8sx714lwjbkg1cg2ijzmi-python3.11-defusedxml-0.7.1 -2025-11-24T08:24:49.0449377Z /nix/store/acrn3dsrwhmjblghgs4dj0pg272vs9mj-python3.11-distro-1.9.0 -2025-11-24T08:24:49.0451212Z /nix/store/j6jn7ba5mkjf5p21zfyj4rc2mxzajd3x-python3.11-docutils-0.21.2 -2025-11-24T08:24:49.0453000Z /nix/store/mgk6k7yaysrqpgm66aljjikdp35wzi2f-python3.11-elementpath-4.4.0 -2025-11-24T08:24:49.0454779Z /nix/store/mn2ccb2xmjbjr94kq6hb5f4nwl94vdvw-python3.11-et-xmlfile-1.1 -2025-11-24T08:24:49.0456063Z /nix/store/5hn9mx5nmhfsglx8x61yn3r0kvxjrqm7-python3.11-fonttools-4.51.0 -2025-11-24T08:24:49.0458115Z /nix/store/3q0jknp16h3jn44751dh19hsvk1igazx-python3.11-frozenlist-1.4.1 -2025-11-24T08:24:49.0459375Z /nix/store/gdd5rv6qvww712khiklk4jibp79ra8wl-python3.11-future-1.0.0 -2025-11-24T08:24:49.0460625Z /nix/store/p6xbq5nvlmgp9w2xwphp7ayf74a5ip5c-python3.11-geoip2-4.8.0 -2025-11-24T08:24:49.0461889Z /nix/store/adhq1qdhlbasy8cbbcg5bd0s9lsrqxnr-python3.11-idna-3.7 -2025-11-24T08:24:49.0463354Z /nix/store/a8mlb0kbbqysshbyxfkqgrkbn2vp049l-python3.11-jinja2-3.1.5 -2025-11-24T08:24:49.0464691Z /nix/store/19132c15q1fma85mmzqly21kmpk1x1ka-python3.11-jmespath-1.0.1 -2025-11-24T08:24:49.0466179Z /nix/store/i5vfc651q58m2ni0v41jfmizb2cf65ps-python3.11-jsonschema-4.21.1 -2025-11-24T08:24:49.0467733Z /nix/store/8ginfdrqzxq2xhv3mcdmp6rj4s7q8qar-python3.11-jsonschema-specifications-2023.12.1 -2025-11-24T08:24:49.0469246Z /nix/store/fnw7g76rmwnicy2a72isa6kmdpmmn1vj-python3.11-junit-xml-1.9 -2025-11-24T08:24:49.0470523Z /nix/store/2jjil1lrarm7sdj53wa8ri7lq2pk09yr-python3.11-jxmlease-1.0.3 -2025-11-24T08:24:49.0471805Z /nix/store/r1w71f7h4qv1kann93nh461mbh8wjfnl-python3.11-kiwisolver-1.4.5 -2025-11-24T08:24:49.0473212Z /nix/store/ldivr42wg9qa3z4jy4xka9ayfxnvgxcn-python3.11-lxml-5.1.0 -2025-11-24T08:24:49.0474907Z /nix/store/d0xn2r1x1904pdvbv1j52g2xi2h2m589-python3.11-markupsafe-2.1.5 -2025-11-24T08:24:49.0476858Z /nix/store/siad80zvk177vzqc8ykzp8xj9cr6j0db-python3.11-matplotlib-3.8.4 -2025-11-24T08:24:49.0478167Z /nix/store/0sp1psidkajzrp2xpci18sfhy3gaclcw-python3.11-maxminddb-2.6.1 -2025-11-24T08:24:49.0479452Z /nix/store/glynd0r4a83bvh4np68bns6pgf6m7238-python3.11-multidict-6.0.5 -2025-11-24T08:24:49.0480735Z /nix/store/qx2czf60f0r5awy5jlrgc1d1dngbkapv-python3.11-ncclient-0.6.15 -2025-11-24T08:24:49.0482010Z /nix/store/nijbfdbdhpch630cjk5vcmjj8ji0xqsx-python3.11-netaddr-1.2.1 -2025-11-24T08:24:49.0483424Z /nix/store/i393zgdy9dm3jlri8dv29p8jrbdm9g50-python3.11-netmiko-4.3.0 -2025-11-24T08:24:49.0484709Z /nix/store/igif2w5949flbj5j3dqmgh6xjm7fj9qv-python3.11-ntc-templates-4.4.0 -2025-11-24T08:24:49.0486010Z /nix/store/5yyizx1n2586v6k2jip2w1hw5qr5k78y-python3.11-numpy-1.26.4 -2025-11-24T08:24:49.0487243Z /nix/store/p270n0ac6dln5nnxz5mndqziw2mphvd3-python3.11-olefile-0.47 -2025-11-24T08:24:49.0488511Z /nix/store/4zil6nfl9fr9rjw7kswy6ymf6jp2mbys-python3.11-openpyxl-3.1.2 -2025-11-24T08:24:49.0489816Z /nix/store/g3x1fjwa1bdnzb3mcby713ygvswl763x-python3.11-ordered-set-4.1.0 -2025-11-24T08:24:49.0491094Z /nix/store/gb03knn5wp9ja25vki55vd32x4rxhs0x-python3.11-orjson-3.10.1 -2025-11-24T08:24:49.0492339Z /nix/store/dkphwn70lhdmazrl4zdnj63gy0yw4qfj-python3.11-packaging-24.0 -2025-11-24T08:24:49.0493770Z /nix/store/i5cq7lcc4xziddyk4dbjnj62mvndnvhb-python3.11-paramiko-3.4.0 -2025-11-24T08:24:49.0495035Z /nix/store/bhm6c6slxs1jf4dcki1kr2znjwl7vg6p-python3.11-passlib-1.7.4 -2025-11-24T08:24:49.0496290Z /nix/store/yb31qbgf96qysi6a0xs0fv9bcq1fyjqx-python3.11-pexpect-4.9.0 -2025-11-24T08:24:49.0497532Z /nix/store/xxyix63xkfs3xsm3nrvs7z4xzijmqryc-python3.11-pillow-10.3.0 -2025-11-24T08:24:49.0498813Z /nix/store/gcvwz821dqndjvssi82vkg5j8df6ix1j-python3.11-poetry-core-1.9.0 -2025-11-24T08:24:49.0500348Z /nix/store/2vsiqam9g9nx1g0icfwsqqrfkcrggbyq-python3.11-prompt-toolkit-3.0.43 -2025-11-24T08:24:49.0501683Z /nix/store/iicn1k28l5a3fqbsbl5xfh0nzah19djm-python3.11-psutil-5.9.8 -2025-11-24T08:24:49.0503140Z /nix/store/3kri9vcnscsrwpx1gyisycikf2cnyxbb-python3.11-ptyprocess-0.7.0 -2025-11-24T08:24:49.0504393Z /nix/store/hd285sw3n0vgnm5z2naf1z6518yz3071-python3.11-py-1.11.0 -2025-11-24T08:24:49.0505586Z /nix/store/0rxqk46midfpng871sqwm9wfq1r51qzn-python3.11-pyasn1-0.6.0 -2025-11-24T08:24:49.0506846Z /nix/store/7pgjxq3qpqypmdax6wasvzdd5vbx200p-python3.11-pycares-4.4.0 -2025-11-24T08:24:49.0508109Z /nix/store/hif151ccxw4yq0bshn36wb53z5rq0k91-python3.11-pycparser-2.22 -2025-11-24T08:24:49.0509383Z /nix/store/7igc74nhll3nsyxzb7yg7fajs3dhhzsm-python3.11-pycrypto-3.20.0 -2025-11-24T08:24:49.0510713Z /nix/store/2j0fjyjkl5l3b1rslif0p2gjapgvig0n-python3.11-pycryptodome-3.20.0 -2025-11-24T08:24:49.0512008Z /nix/store/cbjs14f3fwqzcjbawa3j980z96bfi1j2-python3.11-pynacl-1.5.0 -2025-11-24T08:24:49.0513457Z /nix/store/3mvrj72xmxxkln74dpx75nnycn2v5wpm-python3.11-pyparsing-3.1.2 -2025-11-24T08:24:49.0514743Z /nix/store/b01lghv79qpiz96zdifyi8hiix798c0g-python3.11-pyserial-3.5 -2025-11-24T08:24:49.0516030Z /nix/store/rk675ihaz563jvfnabw1px0mdcmz23bg-python3.11-pyshark-0.6 -2025-11-24T08:24:49.0517364Z /nix/store/23d61nnrgf4n4a0dnr32gv0mpkf0h0lv-python3.11-python-dateutil-2.8.2 -2025-11-24T08:24:49.0518859Z /nix/store/qfrngq5f1mywvwqw5hnzfywd9w1smbnz-python3.11-python-dateutil-2.9.0.post0 -2025-11-24T08:24:49.0520476Z /nix/store/mw95cn98zv3q2s43382x066zhh3kvq7h-python3.11-pyyaml-6.0.1 -2025-11-24T08:24:49.0521825Z /nix/store/47429mwg02qfk6fc3zxq09cl5a1194pn-python3.11-referencing-0.34.0 -2025-11-24T08:24:49.0523312Z /nix/store/d7kgb4kwyq1v6v4hgijwvab397h050ib-python3.11-requests-2.31.0 -2025-11-24T08:24:49.0524587Z /nix/store/hc04777l1g4n6s2h4vp5dn49dxdg3pk2-python3.11-resolvelib-1.0.1 -2025-11-24T08:24:49.0525859Z /nix/store/iy60xppafv2mq4mdrjkaavpyiw3lavah-python3.11-rpds-py-0.17.1 -2025-11-24T08:24:49.0527190Z /nix/store/pjh9mrhs2mlgy6z3wwbwy5jks2yxkgqf-python3.11-ruamel-base-1.0.0 -2025-11-24T08:24:49.0528527Z /nix/store/gjw08v4xpvs3mslqdwdvwfj3hqdvjpl2-python3.11-ruamel-yaml-0.18.6 -2025-11-24T08:24:49.0529894Z /nix/store/lrgiqzn4w85xld40ka0pvwsdl5608vw1-python3.11-ruamel-yaml-clib-0.2.7 -2025-11-24T08:24:49.0531237Z /nix/store/bwmaj4f9s7xyc3z88lcz12wi80pha5wm-python3.11-s3transfer-0.10.1 -2025-11-24T08:24:49.0532482Z /nix/store/3d3mwc3i8gcw7chv5ksf1icfs6nz0r40-python3.11-scp-0.14.5 -2025-11-24T08:24:49.0533912Z /nix/store/d4g6qjk1j8x3ir8ypsdrgyxw36hhsg09-python3.11-setuptools-69.5.1 -2025-11-24T08:24:49.0535154Z /nix/store/739k8d7canirs7pxhhyn7c4wgijdg8l7-python3.11-six-1.16.0 -2025-11-24T08:24:49.0536375Z /nix/store/jdh1q15l9bgvyn0qwghkb461k3wxxd97-python3.11-tabulate-0.9.0 -2025-11-24T08:24:49.0537642Z /nix/store/d02k3l4gpwmah8gf4jbjdrv7vg505cc1-python3.11-termcolor-2.4.0 -2025-11-24T08:24:49.0538915Z /nix/store/dyvj8cwfrjgjaxxkj2zrxws4qm9piwsl-python3.11-textfsm-1.1.3 -2025-11-24T08:24:49.0540591Z /nix/store/c2f2klzcyad5gbgg74632spacdna7a8k-python3.11-tkinter-3.11.10 -2025-11-24T08:24:49.0541814Z /nix/store/xk3h01xmv8zbbvxgrlw4g3mdjd2b2a2y-python3.11-ttp-0.9.5 -2025-11-24T08:24:49.0543276Z /nix/store/18yiwdazlwkndhqlg3zp0m2zf20qhxzw-python3.11-typing-extensions-4.11.0 -2025-11-24T08:24:49.0544655Z /nix/store/w1wxyra2cbpfzbl134fablnzmvv2s98h-python3.11-urllib3-1.26.18 -2025-11-24T08:24:49.0545908Z /nix/store/glkkwb0lzdf40a7828j0wa3ab65nh4l6-python3.11-urllib3-2.2.2 -2025-11-24T08:24:49.0547142Z /nix/store/nhbsgg6j1nd747r2410nvsz98s1xa3ac-python3.11-wcwidth-0.2.13 -2025-11-24T08:24:49.0548419Z /nix/store/kyvaa6038fvh70wmb6dafphdy64phwqr-python3.11-xmltodict-0.13.0 -2025-11-24T08:24:49.0549707Z /nix/store/rn3zszzcrqiqdkmnh276fpqxrzmi9p2q-python3.11-yangson-1.5.2 -2025-11-24T08:24:49.0550946Z /nix/store/bnr11wfr6inwb7dhcc24g085y5w4088j-python3.11-yarl-1.9.4 -2025-11-24T08:24:49.0552052Z /nix/store/gcrlngyxs3s7hvzha8aj5xfy3hcr90nn-qhull-2020.2 -2025-11-24T08:24:49.0553480Z /nix/store/a47zkhmy1lpql508q65vkxfm3c52hxhs-qrencode-4.1.1 -2025-11-24T08:24:49.0554599Z /nix/store/d0isvsqa3bh3lk8pmz3frjkq9ry7fmq1-qt5compat-6.7.2 -2025-11-24T08:24:49.0555673Z /nix/store/jz42kg5j7i4nkk968nsqxp8mcfsxg2j8-qtbase-6.7.2 -2025-11-24T08:24:49.0556780Z /nix/store/m6j2adssvl3fchxhr7qycz0jby2bb87n-qtdeclarative-6.7.2 -2025-11-24T08:24:49.0557979Z /nix/store/s19242qlqm08kk7ihnay8anpcrnfhslc-qtlanguageserver-6.7.2 -2025-11-24T08:24:49.0559153Z /nix/store/ff17xx8xcdff3lpljz0j67nggz0afs5l-qtmultimedia-6.7.2 -2025-11-24T08:24:49.0560280Z /nix/store/k79dvlj19fvcyylp0gy9ww5vyg7flcqg-qtquick3d-6.7.2 -2025-11-24T08:24:49.0561413Z /nix/store/fs4yrpbzh3znk63vsh03jmxc3fkxlpvz-qtshadertools-6.7.2 -2025-11-24T08:24:49.0562521Z /nix/store/asawim4b8sb0dxndxywln4fhxc7w9cpa-qtsvg-6.7.2 -2025-11-24T08:24:49.0563746Z /nix/store/fm0i918nrvqwg4zsrc8wzjbkaxskgpxw-qttools-6.7.2 -2025-11-24T08:24:49.0564889Z /nix/store/8mppawvvnrp44bsfx9w3hvz3b4gbf6cr-qttranslations-6.7.2 -2025-11-24T08:24:49.0566034Z /nix/store/amjqsmg6fqjmbkxqs1phxk05hj7zs0dn-qtwayland-6.7.2 -2025-11-24T08:24:49.0567252Z /nix/store/kbxpqmqbwq38rjiak7m7q5vp10h81l39-raptor2-unstable-2022-06-06 -2025-11-24T08:24:49.0568488Z /nix/store/yrml8d394c72yffxqwpm4wl4ycfha4wr-readline-8.2p1 -2025-11-24T08:24:49.0569638Z /nix/store/rafcl7sl3f9757z4m5hl7vaklppi8xkr-readline-8.2p10 -2025-11-24T08:24:49.0570755Z /nix/store/4i17d3s0khq8psc9h4kx4yxkzf0rwrf7-roc-toolkit-0.3.0 -2025-11-24T08:24:49.0572027Z /nix/store/7cyfghd954nz098qwr6rj47h2kqnzh8h-rtmpdump-unstable-2021-02-19 -2025-11-24T08:24:49.0573672Z /nix/store/541wacdk2allzgpp1rddwa4im5j8ngn3-s2n-tls-1.4.12 -2025-11-24T08:24:49.0574729Z /nix/store/slyvajz7wkwgd663m6fh3gyig0c06ifk-sbc-2.0 -2025-11-24T08:24:49.0575747Z /nix/store/ncq52j271vqxarh5cs6ld7xxf5h05a8w-serd-0.30.16 -2025-11-24T08:24:49.0576798Z /nix/store/azaijwkx7y71a0wwylsznca97gfhl281-shadow-4.14.6 -2025-11-24T08:24:49.0577926Z /nix/store/lih83v9dmk1kd665aq901dsrq97wyqdx-shellcheck-0.10.0-bin -2025-11-24T08:24:49.0579127Z /nix/store/j7sc48w6msbh7jf1hds75wys5ympk3f1-shellcheck-0.10.0-doc -2025-11-24T08:24:49.0580320Z /nix/store/92497zcqhg9mlfldirvq6yd8rzxjyawj-shellcheck-0.10.0-man -2025-11-24T08:24:49.0581449Z /nix/store/igsld4sykvr6zn07jwhabza978jbiymv-skopeo-1.15.1 -2025-11-24T08:24:49.0582541Z /nix/store/kpnrq81zjxh7fb5nwxar4qsxq532inal-skopeo-1.15.1-man -2025-11-24T08:24:49.0583785Z /nix/store/5s5d99s54qhd1mnkzzglg7zc6vfi1kji-snappy-1.2.0 -2025-11-24T08:24:49.0584812Z /nix/store/vwyx4y609p5b1ym0izimdlbmji26rz08-sops-3.8.1 -2025-11-24T08:24:49.0585832Z /nix/store/8c59a30a01x0rpp7w12yhn8iq9nj3zgb-sord-0.16.16 -2025-11-24T08:24:49.0586903Z /nix/store/5zx4fbl0agr7nq6hxdmczkfw6dl36zmj-soundtouch-2.3.3 -2025-11-24T08:24:49.0588108Z /nix/store/4m7rpgfp12qgslzbw17badzybzhh0vss-sox-unstable-2021-05-09-lib -2025-11-24T08:24:49.0589269Z /nix/store/rkv9qb6nalqqblsyi7x4fl86hzvalxij-soxr-0.1.3 -2025-11-24T08:24:49.0590311Z /nix/store/kz63kc0l997568pqzrh5ibbfg3fb92nc-spandsp-0.0.6 -2025-11-24T08:24:49.0591371Z /nix/store/qk1lrb5a0drx0d4d8rc2xcx0ak0sg478-spandsp-3.0.0 -2025-11-24T08:24:49.0592397Z /nix/store/iiskn765hbwliw5jq6vbm288168b72y4-speex-1.2.1 -2025-11-24T08:24:49.0593587Z /nix/store/xzlkv5dm0g3672n0iqiy145r5wjgsghy-speexdsp-1.2.1 -2025-11-24T08:24:49.0594653Z /nix/store/0pjc3s5k0zlc56xs2z0cmvq885zkij9h-sqlite-3.45.3 -2025-11-24T08:24:49.0595696Z /nix/store/b51xi5pl9l27xl6kdi5jp0z27lz1jijf-sratom-0.6.16 -2025-11-24T08:24:49.0596714Z /nix/store/9836si2b8mi0hw57x0nfaphxi4hjaz8p-srt-1.5.3 -2025-11-24T08:24:49.0597714Z /nix/store/9qly1ip9gdwv6brf58hcil55lqhih8ab-svt-av1-2.0.0 -2025-11-24T08:24:49.0598784Z /nix/store/rhq3rwyghbqq4lnkmdf4vsrazr2aa5a7-systemd-255.9 -2025-11-24T08:24:49.0599922Z /nix/store/f77zp1fs5gblzrhz96mpicrqzb09r555-systemd-minimal-255.9 -2025-11-24T08:24:49.0601155Z /nix/store/azc06066h201z880m78k002cgq02h5a1-systemd-minimal-libs-255.9 -2025-11-24T08:24:49.0602299Z /nix/store/5nymsx64wskcfmwszlzcq89xlzxvfh6g-taglib-1.13.1 -2025-11-24T08:24:49.0624408Z /nix/store/b267yj2svrb24vsiaydc3ibs2g81278g-tcb-1.2 -2025-11-24T08:24:49.0625817Z /nix/store/yjwjwpm4az2b247w4wrrv9g8xkwn928x-tcl-8.6.13 -2025-11-24T08:24:49.0626920Z /nix/store/2p4grjy2h8zl1mn6bsmqjphnxmign8id-tk-8.6.13 -2025-11-24T08:24:49.0627990Z /nix/store/ihjg8v8902jly2i3xnbj3714i135pqf4-tpm2-tss-4.1.1 -2025-11-24T08:24:49.0629110Z /nix/store/58n0pnldj7w7szplmgaxjz6ycvff19rh-tracker-3.7.3 -2025-11-24T08:24:49.0630329Z /nix/store/1vjc1n3v6zm010x5n8lby5mc8kds1v65-tremor-unstable-2018-03-16 -2025-11-24T08:24:49.0631589Z /nix/store/kvxzigllixh8ami7d1wmgiyf2iym8yi8-twolame-2017-09-27 -2025-11-24T08:24:49.0632907Z /nix/store/vil8wqacfkz8qx09aymahxv48d1zq3g2-tzdata-2024b -2025-11-24T08:24:49.0634077Z /nix/store/myr5cqynx2nh0x4f68pprg4jgps9ivcl-unbound-1.20.0-lib -2025-11-24T08:24:49.0635206Z /nix/store/hp6bg5zs7nzcc8al4i99lfbrvqs9f6rs-unixODBC-2.3.12 -2025-11-24T08:24:49.0636444Z /nix/store/k1rc6g2c6vammbwi963vvh28rgvbv6c4-util-linux-minimal-2.39.4-bin -2025-11-24T08:24:49.0637755Z /nix/store/ixlnf1frsa2df5jjm82n0gs8h3wi6lby-util-linux-minimal-2.39.4-lib -2025-11-24T08:24:49.0639121Z /nix/store/hh2gg2hcslfrgrszc7lxqb43i5lmalxq-util-linux-minimal-2.39.4-login -2025-11-24T08:24:49.0640491Z /nix/store/gv9sis616azky4gydszlqckiwbpqk5yn-util-linux-minimal-2.39.4-mount -2025-11-24T08:24:49.0641839Z /nix/store/g9qxpv2q2bvr4g8ziay97baqniir3ksf-util-linux-minimal-2.39.4-swap -2025-11-24T08:24:49.0643220Z /nix/store/r7kg1hpd8i2qijkcr6ifqa3fz7xfdf17-v4l-utils-1.24.1 -2025-11-24T08:24:49.0644299Z /nix/store/ipnndsw24ar8mvn2ib4hrcxphpl7v958-vault-1.16.2 -2025-11-24T08:24:49.0645599Z /nix/store/hdypr3jgarr6n48w5mg5ai12s4kx8ma7-vo-aacenc-0.1.3 -2025-11-24T08:24:49.0646788Z /nix/store/191vrvkiswdkyqigjnynfv22mm98nrqx-vulkan-loader-1.3.283.0 -2025-11-24T08:24:49.0647949Z /nix/store/95lvnrimmgkn5l0k9iq2mh70hg7nkzi4-wavpack-5.7.0 -2025-11-24T08:24:49.0649029Z /nix/store/aqc10czb2whr64agvcpihg96im5i7mi6-wayland-1.22.0 -2025-11-24T08:24:49.0650242Z /nix/store/a115p1125g01r6vcmxcmw4iiif3d8pq3-webrtc-audio-processing-1.3 -2025-11-24T08:24:49.0651425Z /nix/store/8xvsv53s07hxqrycr9cd07sgw1vk93pr-wildmidi-0.4.6 -2025-11-24T08:24:49.0652492Z /nix/store/b0ws7iizbchnvkqnhv1nb8r1xx1jryp8-wildmidi.cfg -2025-11-24T08:24:49.0653759Z /nix/store/bbh6750da4dmnbizgwzh5q2g5z6njd81-wire-server-deploy -2025-11-24T08:24:49.0654919Z /nix/store/3ba19yig9wyh44wyz5xqj1a26nlq2j0w-wireshark-cli-4.2.8 -2025-11-24T08:24:49.0656114Z /nix/store/1b8lnibgkaaclzs0a88h99z21m9b3mri-wireshark-cli-4.2.8-dev -2025-11-24T08:24:49.0657291Z /nix/store/7f6amjb8sj237q13bkbl9yi18g8jvvym-wireshark-qt-4.2.8 -2025-11-24T08:24:49.0658538Z /nix/store/f4gg5ww5yz1qf48jsdq1qb5hga9j4y43-x264-0-unstable-2023-10-01-lib -2025-11-24T08:24:49.0659676Z /nix/store/izsm29za8x8kbm0wl09hd6ghb1i9gzzy-x265-3.5 -2025-11-24T08:24:49.0660708Z /nix/store/gb81wj5hpf0rg7gsgrx0yq71l5k40aci-xcb-util-0.4.1 -2025-11-24T08:24:49.0661849Z /nix/store/j0jmblhsvp9np7n78a6zvdmsar6ls9i5-xcb-util-cursor-0.1.5 -2025-11-24T08:24:49.0663220Z /nix/store/12px4lqxdn2rd117lvw00l1c2yj916sz-xcb-util-image-0.4.1 -2025-11-24T08:24:49.0664427Z /nix/store/wnnxni1b617a1w7ralb2i4b8ygqi6s38-xcb-util-keysyms-0.4.1 -2025-11-24T08:24:49.0665703Z /nix/store/9880gzbdjhflab6g24gamxxy0hv4jv8m-xcb-util-renderutil-0.3.10 -2025-11-24T08:24:49.0666922Z /nix/store/ih9fysqqf3d4ym0x5gs4i4smg40kilv2-xcb-util-wm-0.4.2 -2025-11-24T08:24:49.0668104Z /nix/store/lmidwx4id2q87f4z9aj79xwb03gsmq5j-xgcc-12.3.0-libgcc -2025-11-24T08:24:49.0669276Z /nix/store/2y852kcvb7shrj8f3z8j22pa0iybcbgj-xgcc-13.2.0-libgcc -2025-11-24T08:24:49.0670476Z /nix/store/lr7988lx4zrrcf67dhjd8ckpqw89vsi7-xkeyboard-config-2.41 -2025-11-24T08:24:49.0671633Z /nix/store/1hkh6d21k98x6ymzn6m43nadv8vqhagb-xvidcore-1.3.7 -2025-11-24T08:24:49.0673830Z /nix/store/p1m1hbbfyvix5390xgslhq3d30zzhp7f-xz-5.4.7 -2025-11-24T08:24:49.0674885Z /nix/store/1h4vhcpa6nqln9x0w03dy5i1x97z8svc-xz-5.4.7-bin -2025-11-24T08:24:49.0676368Z /nix/store/nk5ykhi1vy4wvn2b0gakhm189aypn60d-yq-go-4.44.1 -2025-11-24T08:24:49.0677514Z /nix/store/zzqs9b81ihxdpwh9728zwsnpq1z5d5lv-zimg-3.0.5 -2025-11-24T08:24:49.0678903Z /nix/store/xcsh72xshyawb0mqicf675ryffc13vjv-zix-0.4.2 -2025-11-24T08:24:49.0679592Z /nix/store/6ghariqqf33l5xqn7alx58dys7kz2wm5-zlib-1.3.1 -2025-11-24T08:24:49.0680245Z /nix/store/i44dhfrwi3qaz3f8xkxiva6zqkq3f65v-zlib-1.3.1-dev -2025-11-24T08:24:49.0680882Z /nix/store/c1hff4nzawfkzvjmqn609pfdc3m3dk5z-zstd-1.5.6 -2025-11-24T08:24:49.0681502Z /nix/store/g7kjsdrig65ykzi0056abrb84dxm1mqv-zstd-1.5.6-bin -2025-11-24T08:24:49.0682145Z /nix/store/nr9ypm2pi838cf2qrxrk8pwdc0alkx7f-zxing-cpp-2.2.1 -2025-11-24T08:24:49.0683605Z copying path '/nix/store/irlvq4wkmbm2x94j843qg5qjbx8k9sm0-apache-httpd-2.4.62-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0684739Z copying path '/nix/store/fwnm0vr8bylbgwpmzic6xg07kl4prqzc-curl-8.7.1-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0686085Z copying path '/nix/store/pqjdzrpm68zznzbamq3kda12qfn4mmfg-gawk-5.2.2-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0687117Z copying path '/nix/store/s3ar5dw359pybk1zx4discj2v3yl8j66-gnumake-4.4.1-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0688279Z copying path '/nix/store/xrmh72ajmjxlgnncilm9mg6ww8nsff5m-jq-1.7.1-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0689412Z copying path '/nix/store/kbpgc9xng17b038b5avmnp8vdl5azwhx-openssl-3.0.14-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0690541Z copying path '/nix/store/nl15aj2izjnq21jdn0wr8q5yqdln35xp-profile-env' from 'https://wire-server.cachix.org'... -2025-11-24T08:24:49.0691681Z copying path '/nix/store/j7sc48w6msbh7jf1hds75wys5ympk3f1-shellcheck-0.10.0-doc' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0693138Z copying path '/nix/store/kpnrq81zjxh7fb5nwxar4qsxq532inal-skopeo-1.15.1-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0694588Z copying path '/nix/store/92497zcqhg9mlfldirvq6yd8rzxjyawj-shellcheck-0.10.0-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0696565Z copying path '/nix/store/1rr497fk0jmibaj65983i7nipz2knmc8-gsettings-desktop-schemas-46.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0698445Z copying path '/nix/store/hwd8j670is918b951h0hwnapfzwr05ny-iana-etc-20240318' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0700222Z copying path '/nix/store/p3ks31bnd9fhvh2cp1wmcalm4bs2bkwq-jq-1.7.1-doc' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0701939Z copying path '/nix/store/2b81ihj7pcsr6pkr02vaajprjx9gfpq6-jq-1.7.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0704993Z copying path '/nix/store/v68clh8wa74xxblx0b748vr50gl7xnzc-mailcap-2.1.53' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.0708020Z copying path '/nix/store/sgss28baa4r7kcz5fqvdr2vcdkr0rwq7-perl5.38.2-Time-Duration-1.21' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1075944Z copying path '/nix/store/iqga1xby2s1l6lx9riqicsqa2f88hnrj-alsa-topology-conf-1.2.5.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1078096Z copying path '/nix/store/mlkzgivx42k092w0icqj2jdlldyni1vk-alsa-ucm-conf-1.2.11' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1080302Z copying path '/nix/store/x11lxi08rrif8arf4j88hlcfivvag558-busybox-static-x86_64-unknown-linux-musl-1.36.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1082407Z copying path '/nix/store/zr2gp0yli9vjsqfp28526jcajcivq2ag-dns-root-data-2023-11-27' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1084641Z copying path '/nix/store/lcrda0r4xylppfgmazzln221bxdk652m-ffmpeg-headless-6.1.2-data' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1090276Z copying path '/nix/store/shj3d9r31bhxbv0lnv9iwa147ldg86iw-gfortran-13.2.0-libgcc' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1093081Z copying path '/nix/store/1mjlla0fc468wl9cphnn2ivpfx02mr7j-dejavu-fonts-minimal-2.37' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1095506Z copying path '/nix/store/zdn6ss261z463m14qyyi9s8775mghx7h-freepats-20060219' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1097613Z copying path '/nix/store/dd13q38yxm9qppjclsvwn10dscsf0l9w-gcc-13.2.0-libgcc' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1099676Z copying path '/nix/store/s2f1sqfsdi4pmh23nfnrh42v17zsvi5y-libunistring-1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1101168Z copying path '/nix/store/zx2wnh4wp39mkc9rx4jlzd3jljnhcwb5-iso-codes-4.16.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1103166Z copying path '/nix/store/4749l0nkfysbi06gq6arznxy0zb4ymvf-ffmpeg-6.1.2-data' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1107654Z copying path '/nix/store/xq62ams06wq8ix1qb5rd6ygjlwvw0q76-hwdata-0.382' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1281670Z copying path '/nix/store/zvwpisszhpkkk8spqyya8n3bpm7wj39p-libunistring-1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1504850Z copying path '/nix/store/d7vji37yjnbji14m4waa5rn35f10jzya-linux-headers-6.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1553774Z copying path '/nix/store/h2cx0dl7zcq91l31bmbnv1774mwy6v0f-nix-2.18.8-man' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1578626Z copying path '/nix/store/bmjdb3wc1z2nh78k23p9akgqiabi2way-publicsuffix-list-0-unstable-2024-01-07' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1606260Z copying path '/nix/store/za4zp2sff6p86j0mmbd874qipbiads43-perl5.38.2-TimeDate-2.33' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1609590Z copying path '/nix/store/8mppawvvnrp44bsfx9w3hvz3b4gbf6cr-qttranslations-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1611459Z copying path '/nix/store/jb2mh4asq1klvf3nzj9blr2q6dyhwkrb-nss-cacert-3.107' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.1837673Z copying path '/nix/store/vil8wqacfkz8qx09aymahxv48d1zq3g2-tzdata-2024b' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.2034906Z copying path '/nix/store/7r4nw8z7wrf07mxk3m71rav47xlmj50m-fontconfig-2.15.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.2108665Z copying path '/nix/store/08n25j4vxyjidjf93fyc15icxwrxm2p8-libidn2-2.3.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.2406241Z copying path '/nix/store/lmidwx4id2q87f4z9aj79xwb03gsmq5j-xgcc-12.3.0-libgcc' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.3544480Z copying path '/nix/store/2y852kcvb7shrj8f3z8j22pa0iybcbgj-xgcc-13.2.0-libgcc' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.4185567Z copying path '/nix/store/lr7988lx4zrrcf67dhjd8ckpqw89vsi7-xkeyboard-config-2.41' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.4226213Z copying path '/nix/store/9jivp79yv91fl1i6ayq2107a78q7k43i-libidn2-2.3.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.6281246Z copying path '/nix/store/g6xy81k0vwflzsjgrdj1ak7mniiq4g56-kubernetes-1.29.10' from 'https://wire-server.cachix.org'... -2025-11-24T08:24:49.7008239Z copying path '/nix/store/qn3ggz5sf3hkjs2c797xf7nan3amdxmp-glibc-2.38-27' from 'https://cache.nixos.org'... -2025-11-24T08:24:49.8331578Z copying path '/nix/store/pf5avvvl4ssd6kylcvg2g23hcjp71h19-glibc-2.39-52' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.6405562Z copying path '/nix/store/vbb1l2krfp75m5w3y2h52l0pbq6fydz8-attr-2.5.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.6407416Z copying path '/nix/store/q1c2flcykgr4wwg5a6h450hxbk4ch589-bash-5.2-p15' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.6411211Z copying path '/nix/store/155qsyx1mv11fsi48nz4dlc0vh1a3drx-bzip2-1.0.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.6413330Z copying path '/nix/store/5i51nfixxx3p3gshkfsjj4bzp7wajwxz-ncurses-6.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7973221Z copying path '/nix/store/9r2if8vhzvzqlx6n5knx2ckjfcjpd3yr-alsa-lib-1.2.11' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7979458Z copying path '/nix/store/ffimzi11j2zzj4d9s2h9cdy76nh754j6-apr-1.7.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7982010Z copying path '/nix/store/nmkjwwbqbsa4nx3ljjxrp746kp53by51-brotli-1.1.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7983967Z copying path '/nix/store/s894wa8wzbf841myjr7dm4m85177f8rl-attr-2.5.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7986070Z copying path '/nix/store/bh5ifiy3iwvfqfxw5gf14y1235cp7d97-bcg729-1.1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7987925Z copying path '/nix/store/xjrmsmrg0i7bqkv3rwxrw7m7mhgy5c0b-aws-c-common-0.9.17' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7989755Z copying path '/nix/store/7nyb4srcp8a2sij2dp2ajm8dam2vzl30-c-ares-1.27.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7990928Z copying path '/nix/store/0zyxzx4g9knbqg9rjh4gs3dda57ir3lj-cdparanoia-III-10.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7992312Z copying path '/nix/store/1jzhbwq5rjjaqa75z88ws2b424vh7m53-bash-5.2p32' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.7993833Z copying path '/nix/store/0s4k9fh17m2sx8ifj9xdflnjfgxrvbgp-bzip2-1.0.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.8289884Z copying path '/nix/store/ii6k60vb5k7xfasw5zr7ckaym7fdsywd-containerd-1.7.16' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.8307520Z copying path '/nix/store/mmy4fc1arb2ig642chgprgms27vk9hgn-acl-2.3.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.8633225Z copying path '/nix/store/28q4r7zcrl59qaxrbrfl65kx1wgkkay5-dav1d-1.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:50.9785676Z copying path '/nix/store/i7190zhkrx6l6iqjqfdcsjblisqi5zn7-duktape-2.7.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.0463052Z copying path '/nix/store/vanxcdgcyw9racn9dphs67f0qxfb2bkd-editline-1.17.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.0477585Z copying path '/nix/store/80kzdbnl1bmnd8r8hphh1xzmgsvyyf6w-acl-2.3.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.0515790Z copying path '/nix/store/8krchn3igfzz62fnirxj47l2hrz11sj9-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.0609929Z copying path '/nix/store/b5d4fldmq2rf44ffml37m0zl3fdz2mkg-ell-0.64' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.0691137Z copying path '/nix/store/nbbg70f6gihj51p65kv19m0fnq8ik5kh-expat-2.6.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.0694068Z copying path '/nix/store/zxa67zidllxq02wa2jcpdjs6a24c50gc-faad2-2.11.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.1093119Z copying path '/nix/store/5jm8r2l3axkpcsygz5hxz0h1jcc3p7c7-fdk-aac-2.0.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.1267253Z copying path '/nix/store/yhkrb1hfbncqyrzras9jgdlp14c89jwp-aws-c-compression-0.2.18' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.1378788Z copying path '/nix/store/a8vav5wzx1fd1zizxxr0vn4knhm8gmhr-audit-3.1.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.1417185Z copying path '/nix/store/3bkv1455nixz55fzjpmz2zs0mdwsb3q5-aws-c-sdkutils-0.1.16' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.1419121Z copying path '/nix/store/h0d1vp09i1riahbsjcvdq6fxh5f231a3-aws-checksums-0.1.18' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.1853645Z copying path '/nix/store/jalq9yqbfprgkfm64g7hm0qdjf1p0vn9-fribidi-1.0.13' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.2159247Z copying path '/nix/store/jziybc6yn78sf0bbh0kmmx50bxjsnr15-gawk-5.2.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.3313619Z copying path '/nix/store/90yn7340r8yab8kxpb0p7y0c9j3snjam-gcc-13.2.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.3988322Z copying path '/nix/store/y8fzwmygqh9rl5rc8rvcydcskgszldpn-gdbm-1.23' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.4050565Z copying path '/nix/store/frc6vkc5qggx3hyxd91f9r054z5ridar-getopt-1.1.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.4135756Z copying path '/nix/store/7w7yin9a870lg40gap1r2qpx0dygwbll-gfortran-13.2.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.4165580Z copying path '/nix/store/lvkrfaynswav193jkqc6vg7c6fijrbi4-expat-2.6.4-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.4325170Z copying path '/nix/store/xzcf7d64zqhpnk9lh3s73804fjvwdijn-giflib-5.2.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.4368845Z copying path '/nix/store/94gaw2ngsnpf3ybxjsg89lf3hf3d55y2-glibc-2.39-52-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.4636593Z copying path '/nix/store/mq2lm1hbxzsdyjk7admb17kzx3zwqcfv-glibc-2.39-52-getent' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.5918319Z copying path '/nix/store/vqgpb0anqqfnhb5ww3y8rf1jaxpphqwg-gnumake-4.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.5923365Z copying path '/nix/store/az1vlcldx7vaqq533a8x31vvqa6dvqgb-gnum4-1.4.19' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.5926123Z copying path '/nix/store/y8br765djcj51ls9lb3kylkrvc2wan3p-gnused-4.9' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.6045471Z copying path '/nix/store/llalnjlyrj2zv12q5bjy8cagqv70j73y-gnutar-1.35' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.6118614Z copying path '/nix/store/xpidksbd07in3nd4sjx79ybwwy81b338-gnutar-1.35' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.6518917Z copying path '/nix/store/xn47v1hva7pcfkim3lqly4ya0mkb1k2y-gsm-1.0.22' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.8665103Z copying path '/nix/store/r6apkwli4s0xhzn1bdi9nrkmvqc5arrj-gzip-1.13' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.8685663Z copying path '/nix/store/1bzgjxzx4c6ni628qhl9v2lj7b7rx1bw-getent-glibc-2.39-52' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.8775529Z copying path '/nix/store/9y4ha6gkpasclbz0ai4nxrxyadm5cm4k-helm-diff-3.9.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.8814554Z copying path '/nix/store/3nhbs4jxf6qayllzsbygjlsfam0fd5cf-helm-mapkubeapis-0.1.0' from 'https://wire-server.cachix.org'... -2025-11-24T08:24:51.8927071Z copying path '/nix/store/sk8n88qna3hscvlrczdg5cg4l2ychf8z-helm-s3-0.16.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.8982492Z copying path '/nix/store/44396d1dacgadwysbq3fqf9bd69jc9c8-helmfile-0.162.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.9331610Z copying path '/nix/store/v5hzzgpnjwyaflp8cha905zs9pq1lx9b-audiofile-0.3.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:51.9862198Z copying path '/nix/store/ww46hbf56wlmcg5kbgk8bz9jsbxx88hy-boehm-gc-8.2.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.0113699Z copying path '/nix/store/2cbbwpr4awcw7h5zys1vdsv5jyaizkbs-db-4.8.30' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.0262966Z copying path '/nix/store/0nl55z21knp8fq18zcyfkgra0i2hijyv-db-5.3.28' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.0353556Z copying path '/nix/store/zcjkcknxsqafyx2y3f5x988pkb0fwclm-double-conversion-3.3.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.0606137Z copying path '/nix/store/pn1sn53pyp2vz9jhy0vb5pfbgk3fw16b-fftw-single-3.3.10' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.0644785Z copying path '/nix/store/6ds32jlmhqjvbkp2pd20dz1wi9anszls-gettext-0.21.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.1316322Z copying path '/nix/store/jig62nn8174n4dlk05lqwsvs5wd2c64r-glibc-2.39-52-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.1646204Z copying path '/nix/store/0pkjhzncyjkvhq8lwmdkzvl4cs4vh0yb-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.2372189Z copying path '/nix/store/s8q3rch0wd3shdnznz9bcj8mj6pvz1gr-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.2496566Z copying path '/nix/store/9q6wjrav2m5ikwf3yznj96fxmxvdz02v-graphite2-1.3.14' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.4486262Z copying path '/nix/store/0sq3jcykin6q788jgpma14n0sg8bwn7z-groff-1.23.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.7278488Z copying path '/nix/store/a2qxya11zd3xdn5df34n6axfd6fhgzql-icu4c-73.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.8066190Z copying path '/nix/store/wlh7hfyvzz29qprxihwshada259awrdb-imath-3.1.11' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.8610579Z copying path '/nix/store/n9gh8gxx5xx51ihgll2l20ar9b2vmgzy-coreutils-9.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.8936448Z copying path '/nix/store/kh4996rfh9sm32l026igm88ipz34ivvb-json-c-0.17' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.9110859Z copying path '/nix/store/0b5z0wf3k9y3s3qadnkwsm78avax4jlk-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:52.9410742Z copying path '/nix/store/6cvlfg9drxk3mlr4pmf71zwg1fdpfsr3-glibc-iconv-2.39' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.0598577Z copying path '/nix/store/9gbl10a8driqq6sbqgwqv3p3sgc4443q-kubernetes-helm-3.15.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.0601077Z copying path '/nix/store/1yhzp59gq3bfdfys8z2q9wkrc9mqh003-lame-3.100-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.1005758Z copying path '/nix/store/702y72g4yqmylqs1niks1dzm1vh6vaqh-lcms2-2.16' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.1940143Z copying path '/nix/store/mwqnsdm4kcx3b4zk23i8196j1y492kn3-gmp-with-cxx-6.3.0-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.5895971Z copying path '/nix/store/dh60g7bp466jd3m1sb0y79mm15rg25gk-ldacBT-2.0.2.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.7087806Z copying path '/nix/store/qkcd83z90018bfkdimzq0yz00fw14c59-libICE-1.1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.7093668Z copying path '/nix/store/rcazl4zhbdvc9w357vlwk95v8gcfjhr2-lerc-4.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.7196977Z copying path '/nix/store/hfy39pxmyvs4sjbwqv4si92ixmj2crx5-libXau-1.0.11' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.7232612Z copying path '/nix/store/4b5w9n7781c99pwa0qvsg25my65i0zq9-libXdmcp-1.1.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.7516170Z copying path '/nix/store/l0v5pkl7cv999ns3jawq1hx53jj3p1qk-libapparmor-3.1.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.7646479Z copying path '/nix/store/czcrq1nad23isbaikj0qi6xyxv0b34vw-libargon2-20190702' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.7713173Z copying path '/nix/store/ywj3g79vpya72rw2xbrg656ir0x25hdi-libb2-0.98.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:53.7965830Z copying path '/nix/store/j67whcybdcm598p442ja0x5idiknsvyc-libcap-2.69-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.2525677Z copying path '/nix/store/qdk6ds72q8xf5fzi16x7736bwz8aydic-findutils-4.9.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4250938Z copying path '/nix/store/49jrxd6mcc6ckwrm5sk35gapva0zw221-libcap-ng-0.8.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4274672Z copying path '/nix/store/s3w5cr4c4s6ydfgw17l4wgxs0yr0vxwd-libcbor-0.11.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4278130Z copying path '/nix/store/d73x8ky2dlxa6ky50gj5f63gc3dvmhp3-libcerf-2.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4282287Z copying path '/nix/store/isvmi5n4y67jikxrbwi9837920swcig6-libconfig-1.7.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4284466Z copying path '/nix/store/ggzxnrg5a2zy0bdk9csby7mlbzyk1fc0-libcpuid-0.6.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4309821Z copying path '/nix/store/y9qvkwvhaqvk5i4h82smlrlml8mkbk7x-libdaemon-0.14' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4313829Z copying path '/nix/store/2g8q946s9ngv63ssh93i3p4mc0z5q054-libdatrie-2019-12-20-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4328298Z copying path '/nix/store/lhw8k224lnh45564770rira6f2fz7pkg-libde265-1.0.15' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4392296Z copying path '/nix/store/dcdhs0cqc45ryd2836yvjv34z6jxfc3l-libdeflate-1.20' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.4527417Z copying path '/nix/store/mldlqbciwfv3ldvvwfyvj55x1fjv9pqh-libdvdcss-1.4.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.8725832Z copying path '/nix/store/bfi5yfjprczappbx6z7shqsz4mckqr4s-libevdev-1.13.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9303285Z copying path '/nix/store/pm7i9hd073plr28fppi417najx3vx2vv-libevent-2.1.12' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9355137Z copying path '/nix/store/p3ls8qj9db0zxqyh1yl1xhza2007ydyg-libgpg-error-1.48' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9357137Z copying path '/nix/store/gniy4ab9wcijxjpcciddgpzdwq3v3dnb-libffi-3.4.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9365054Z copying path '/nix/store/zqy22zkr1a6xb9cf5rm38p26qgicis82-libfreeaptx-0.1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9419781Z copying path '/nix/store/rrw0d53ykhyzwbqayrqzx28hm53krb7i-libjpeg-turbo-3.0.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9444123Z copying path '/nix/store/47jrm08jdl2ipwy2qs6378x4gwdgm5q5-libimagequant-4.3.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9473877Z copying path '/nix/store/ikpcy0aqjdlgn7j9m4291yy3fzk313vl-libdvdread-6.1.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9476985Z copying path '/nix/store/49lcgk66mgdlgn3vggh9yahqcsjvilcd-libmad-0.15.1b' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9479094Z copying path '/nix/store/2vv5dpcgl9hzcpzf1syjnrld69kfhkfm-libkrb5-1.21.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9497089Z copying path '/nix/store/xbpmy64387amikknbh7dwfarggzqjgif-liblc3-1.1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9498913Z copying path '/nix/store/1kvwypvmzkql34dlmq1fxnf736v67i7s-libmaxminddb-1.9.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:54.9685632Z copying path '/nix/store/r97fx69ff4awjpzh1q153mlyc5q58pbz-libmd-1.1.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.0891866Z copying path '/nix/store/dx0m5lpqxsfd6f96nwxb6zj08gq36jqg-libmnl-1.0.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.1749629Z copying path '/nix/store/wfr1j6ap7889zlfqjparrgkndj6dylp9-libmodplug-0.8.9.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3231927Z copying path '/nix/store/lhzxnmigwry6za5n0jwmzrc6mdmlss92-libffi-3.4.6-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3234352Z copying path '/nix/store/mwn21av99yxvf4jhs0xf6hq1dfd4fzky-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3236236Z copying path '/nix/store/lfj2avpyaf4f66icz7xnqxakwp0fvphb-libmpg123-1.32.9' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3238617Z copying path '/nix/store/i16ggyd7qbfwx0b9vyfjpay990lcjlc7-libnl-3.8.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3286022Z copying path '/nix/store/gw29icd5xx6sj39xad9gg2bxr7r340hw-libogg-1.3.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3294932Z copying path '/nix/store/k8f3hragii2jbkka3d59lamj6apvqrzz-libbsd-0.11.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3317871Z copying path '/nix/store/maayqcn0wnchzb5f47k6ykhb2x84bbmy-libopus-1.5.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3345166Z copying path '/nix/store/ak0iy34rfd9r0x62gm7144gp15gisbwh-libossp-uuid-1.6.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3369352Z copying path '/nix/store/apjs9l6fsvv3d6d5dacinrhy8qj57jgx-libpsl-0.21.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3374509Z copying path '/nix/store/63chsm1g9pbfqp072cc1kv5j4j5pmsna-libdvdnav-6.1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3555280Z copying path '/nix/store/xc1aw6cjm3hj8qdaj8x9g089lm4abrr9-libassuan-2.5.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.3941313Z copying path '/nix/store/pffh6d501fj27h886lmbj8x3l80y93d3-libgcrypt-1.10.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4172497Z copying path '/nix/store/9anvd217j8v5skm2lpbv2wc1r4s422z9-libgpg-error-1.48-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4284370Z copying path '/nix/store/877i4v0nlmsj8cgdmbqiszymplyvd5qx-libksba-1.6.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4321892Z copying path '/nix/store/w4rnk5xnvg07jlazglxzn2iikdvclj9m-libnetfilter_conntrack-1.0.9' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4324833Z copying path '/nix/store/1rg4zjc4zqabzd3wa1l2inzvyj3s441p-libnftnl-1.2.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4470752Z copying path '/nix/store/k2q0sl6rw1gzcipz98jswm6linvnk1k8-libraw1394-2.1.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4527144Z copying path '/nix/store/hb209596gpyy93xias3rd0ig0pvcb9ya-libsigc++-2.12.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4536202Z copying path '/nix/store/03365nil7n0s83mib1a0m04yj1r1s0b8-celt-0.11.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4563567Z copying path '/nix/store/9z2k8x5ja4jwb0facp7zn0hv59yyhfxp-flac-1.4.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4569409Z copying path '/nix/store/7ssrf0drpxh2dkg7y6q4l5fnscr9a7hn-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4578324Z copying path '/nix/store/j6jdzd249rj80lvwbp22gj3f17mwv1z4-libsamplerate-0.2.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4734916Z copying path '/nix/store/302ncx9jpsj9ip869nx98as9drlbjqpn-libsodium-1.0.19' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4737736Z copying path '/nix/store/6wk140rmq7xcwk0qrri7cg2l3wqfnsf6-libsmi-0.5.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4787081Z copying path '/nix/store/9ll9fqfsdjqwy2ibrnd5sni1mg60lzah-libtasn1-4.19.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4835851Z copying path '/nix/store/z04c92z7f7pp1r3g58fg8wcxjf4pak8w-libthai-0.1.29' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4838410Z copying path '/nix/store/1m2m6q2pjlhmhz4g589rfs91i8gmyrcf-libdc1394-2.2.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4864343Z copying path '/nix/store/rsb77bpsahd583rzqwf510d5mzd1sdln-libavc1394-0.5.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4882331Z copying path '/nix/store/52i0az8insvqdrg8q094xd9d89fx365s-libiec61883-1.2.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4884355Z copying path '/nix/store/r2dsg8cxrn78jq83bdjgn1nihjw1r931-libtheora-1.1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4886166Z copying path '/nix/store/fv20wfhs3bh97mhrff67lvbdqn8v0k4y-libtool-2.4.7-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.4999484Z copying path '/nix/store/a4x20x15w3r6iic9pllkzsikdr1ci8zr-libuv-1.48.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5269019Z copying path '/nix/store/idk29ffgl1gh0w9mqzflw5ih2qa746cr-libvisual-0.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5291366Z copying path '/nix/store/3lanyd7681hn1mg7imzzbk9a3vvbd6w5-libvmaf-3.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5306371Z copying path '/nix/store/k8j5p8d02fx0smh17zzxp87vg5clcn10-libvorbis-1.3.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5352346Z copying path '/nix/store/9dkh8lhl686qjdf364myq9haklz3qpzv-libxcb-1.17.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5385971Z copying path '/nix/store/6jlh2g3half9sbvvngr28aa15cajv0zs-libvpx-1.14.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5475650Z copying path '/nix/store/bb99dclcsv3r0a8q967bnvga02qicxsf-libxcrypt-4.4.36' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5505744Z copying path '/nix/store/707q2pscclhgmmfr33xhbr0qbw3p2hmg-libpcap-1.10.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5535884Z copying path '/nix/store/crl81hy8cnqs4g5gn68s8sjqd1b3r0ps-libyuv-1787' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5559019Z copying path '/nix/store/5pd8825vnd563qbvbv0p5p29hqirvw5c-libyaml-0.2.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5562286Z copying path '/nix/store/lh0b381npmiyg4x6b7v3q487pz2nzk0y-libpcap-1.10.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5621886Z copying path '/nix/store/8qjzrbbrgvpprwynj6lbdxznp16figxg-llhttp-9.2.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5630604Z copying path '/nix/store/iq8y3vz3qmsa55g4vhhcd4d2zd8p37bf-lowdown-1.1.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.5662567Z copying path '/nix/store/gms3c80sldm4r0pyxj987227y49lx1ks-lz4-1.9.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6015497Z copying path '/nix/store/2bs7zc57z3lw3fmmvdbw1q3mchqyv6hr-libgcrypt-1.10.3-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6275279Z copying path '/nix/store/qhmdwfb0c32rl9pjk7cv94lxc0c7rqgl-md4c-0.5.2-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6431856Z copying path '/nix/store/6x0n8ksnajz1kf7n6q0farmyrc6af4mz-mpdecimal-4.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6606922Z copying path '/nix/store/31n6bq6cw25zhcv9mavavrvi560qd9gp-mtdev-1.1.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6667118Z copying path '/nix/store/90nwq55nj0nr3qgrsrk396ziazzyjh06-ncompress-5.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6764045Z copying path '/nix/store/zmi2nlx42h1qrs2v7yn142dq4zjq30im-ncurses-6.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6839999Z copying path '/nix/store/9yir03i6l4c3pv54q86k57p50mc3jnh4-nettle-3.9.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6841819Z copying path '/nix/store/j17zmzz6z8fi8rd2yqk36n5jy8whzfhy-nghttp2-1.61.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6925800Z copying path '/nix/store/falcaavkhml14j79g95mvqbd2ci4g12j-linux-pam-1.6.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6927641Z copying path '/nix/store/hw4kkx5bzx5srw17x9gkyakis1ipqcl7-npth-1.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6929420Z copying path '/nix/store/a6prrfmmr6kkbkwk6v3vq4zd96mcc5g4-numactl-2.0.18' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6931218Z copying path '/nix/store/kg4y3flpnkcfhxvi9cin6c81xfivcc7g-nghttp3-1.2.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.6975272Z copying path '/nix/store/4d3k6g6sscr3xbpxybgwfrkx880kabas-libsndfile-1.2.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7115741Z copying path '/nix/store/925hihdxx9ybs57cxvh59flm8sxddimh-oniguruma-6.9.9-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7195415Z copying path '/nix/store/mdaawsi6fs91dr8dn2ygig1mpsddqrg3-openblas-0.3.27' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7245125Z copying path '/nix/store/28a8mqa7xax040vqk3hzyl174r8z7bpw-openexr-3.2.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7249354Z copying path '/nix/store/nzbzmzr7njbvajwk9xv59iyrg3r7q187-opencore-amr-0.1.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7315989Z copying path '/nix/store/0filj1ph0ddsc6bnhdhcjrqdvhvjdjiw-gnupg-2.4.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7369362Z copying path '/nix/store/5z1p38q7crvid944wrhmiiglvvald0j4-libX11-1.8.9' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7409258Z copying path '/nix/store/bwcshjy7xk875nw3qd0zch639bfc2v3v-libaom-3.9.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7550718Z copying path '/nix/store/iq1sblpaznf0z8g3izg690nc2d5xghnv-lttng-ust-2.13.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7605446Z copying path '/nix/store/7yqrkq8ff0s9xysk3kj2lf76wvyjk2wn-iptables-1.8.10' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7776029Z copying path '/nix/store/16y3mk7wpjxpkqd5nc0jh1k6rxk2pmyc-nettle-3.9.1-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7779634Z copying path '/nix/store/gsi7vwam9z972mxrmrvkw08l864lfwvr-libbs2b-3.1.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7782911Z copying path '/nix/store/bwxp1bkaa4cgz20mrk1hqm8azvv1skif-jq-1.7.1-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.7911671Z copying path '/nix/store/4lwqz5vrb0dn4r78zr8sd56bnkri0rag-openfec-1.4.2.9' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.8259442Z copying path '/nix/store/mfmhl6hdwp77gqkm734zip34pw53gfcm-openh264-2.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.8776925Z copying path '/nix/store/p8hw2h465g0byxwpamnk6gv6mp5gnqn2-openssl-3.0.14' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.8784047Z copying path '/nix/store/m3c894cml080iz9bbs18b8ci6b40yk59-opentofu-1.7.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.9385885Z copying path '/nix/store/r6v1j4l34i98fczx1pdjpy5jv67w4bwm-orc-0.4.39' from 'https://cache.nixos.org'... -2025-11-24T08:24:55.9924923Z copying path '/nix/store/3cbspxvq1fbgfp0wd9zvjbv14fn9aafm-aalib-1.4rc5' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.0137077Z copying path '/nix/store/mk838fcw7xqf597q6milpp400fq2wrb5-p11-kit-0.25.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.0341003Z copying path '/nix/store/jk99vx5dhv57zldl5j0id3n23igbj269-pcre2-10.43' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.0548621Z copying path '/nix/store/7iny0ax59ib0pgfgkcph49zxg8zym30w-pcsclite-2.1.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.0627636Z copying path '/nix/store/xylb1pgqnnd2qj9lsy1w2r9p8lmir8qs-jq-1.7.1-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.0805569Z copying path '/nix/store/9nn6ysg3jz7z1blskqysd27ximim8dqc-perl5.38.2-IO-Tty-1.17' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.0814684Z copying path '/nix/store/gv406dcs0265ydgc6nnjzhw8s3yl5bpa-pixman-0.43.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.1166950Z copying path '/nix/store/qhwavx7kpnazsmfdbbvvafs0vsnkn49p-pkg-config-0.29.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.1295105Z copying path '/nix/store/6qwg3xkr5b9j5hwjacn69652j769w1y7-popt-1.19' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.1407136Z copying path '/nix/store/gcrlngyxs3s7hvzha8aj5xfy3hcr90nn-qhull-2020.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.1688735Z copying path '/nix/store/a47zkhmy1lpql508q65vkxfm3c52hxhs-qrencode-4.1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.2404908Z copying path '/nix/store/ibc28k85i5va38ilqn44z9y7a174x9xs-libXcomposite-0.4.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.2603907Z copying path '/nix/store/298lasn37whh7042pbfz0jxp403pai76-libXext-1.3.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.2624969Z copying path '/nix/store/j3irb77rvrqsn57y88mjlppwsim5ldx4-libXfixes-6.0.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.2783089Z copying path '/nix/store/qa0w8kji1jrkw2a8baxnd49dczci9bf8-libXpm-3.5.17' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.2949015Z copying path '/nix/store/jk9x1h83240a9jdphqlyg6hvs07f43h9-aws-c-cal-0.6.12' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.3206353Z copying path '/nix/store/dyr7xzspc0z1ark0lc5ncxk676iqna42-blas-3' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.3591891Z copying path '/nix/store/svf1rly63z1wivpzm7q7d1xkb48pm3l2-cyrus-sasl-2.1.28' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.4914818Z copying path '/nix/store/0dna4dy4276xq9bfm6kapg56sb6xnmsp-less-643' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.4916656Z copying path '/nix/store/8nss7h1yk4jihkmr4xj5ihrbdkv4y1wy-gnugrep-3.11' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.4921295Z copying path '/nix/store/2ffppfzsjcp1q3bdxn96a2hqdlkijvr8-libXrender-0.9.11' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.4985207Z copying path '/nix/store/pxl1pq9wl45cwp3q787gq62rz9gl1g35-create-build-entry' from 'https://wire-server.cachix.org'... -2025-11-24T08:24:56.5010760Z copying path '/nix/store/5vgxahzhcvsxvgq6qjw4f09bnc07mq3c-libselinux-3.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.5025438Z copying path '/nix/store/8jg3rj9hffzsrfh3kd1jf4syjx6py4sg-libsrtp-2.6.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.5058466Z copying path '/nix/store/4z8r1xfr898z62dw8fz9fj2lzd0iq0wx-libdv-1.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.5665195Z copying path '/nix/store/38kw4yvj4v2irnwg47f9pkkq50wcldcz-lynx-2.9.0dev.12' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.5973749Z copying path '/nix/store/i6phx7d2fzzjrp9cq3y95ysqn85cj1y4-openssl-3.0.14-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.5981151Z copying path '/nix/store/wml2l9ga9iphp6v7af300g6s50xn2466-opusfile-0.12' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.5983876Z copying path '/nix/store/vsknwh2l5cxipfpz84gl3bd774k43g17-libXScrnSaver-1.2.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.7594439Z copying path '/nix/store/wlfigacigim7vsr0j9macqgzga40wi51-libXdamage-1.1.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.7597068Z copying path '/nix/store/r5j717nmw6yg894a885r3a9wb2kj8sk2-libXi-1.8.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.7678591Z copying path '/nix/store/d6w4gyllmnp26i2vjydylbz27x5mrbww-libXinerama-1.1.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.9219244Z copying path '/nix/store/s9qgv87lgzw1mgkvn17sj6vcdhvg8ir5-libXv-1.0.12' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.9267492Z copying path '/nix/store/l6cqv0aflnlvlshkxfchik6gnafqm24g-libXcursor-1.2.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.9296189Z copying path '/nix/store/acw4dh5a3dwbm5w8fdgiq9hxd7sd6a0v-libXrandr-1.5.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.9306244Z copying path '/nix/store/jscdp3lvxp32zp5v6isv041zzc763h6k-libXxf86vm-1.1.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.9519714Z copying path '/nix/store/6lzcb4zv3lysq4yjhmgi1dkc6fqrgphy-libglvnd-1.7.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.9523538Z copying path '/nix/store/n02ac8gfyvcrvfp70x8ycxsk2w6n5avl-libvdpau-1.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:56.9882065Z copying path '/nix/store/6ya2hs4s51k9sj3islgdnxx0nar66jzx-mjpegtools-2.2.1-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.0264580Z copying path '/nix/store/8sx26kvcn36kz7b3bimr9pdq2mc4ag0j-openldap-2.6.9' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.0269775Z copying path '/nix/store/vrpm28prnm6ahcmcl1y333xp40fn6bk6-perl5.38.2-IPC-Run-20231003.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.0479440Z copying path '/nix/store/dr2969ydf41s2i345dg751cabi9wnksn-pkg-config-wrapper-0.29.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.1827122Z copying path '/nix/store/yrml8d394c72yffxqwpm4wl4ycfha4wr-readline-8.2p1' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.1840730Z copying path '/nix/store/rafcl7sl3f9757z4m5hl7vaklppi8xkr-readline-8.2p10' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.1852468Z copying path '/nix/store/541wacdk2allzgpp1rddwa4im5j8ngn3-s2n-tls-1.4.12' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.1874012Z copying path '/nix/store/slyvajz7wkwgd663m6fh3gyig0c06ifk-sbc-2.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.2483147Z copying path '/nix/store/vl868md5gc199rcrfdc7cl4mi5kb9jq9-libXtst-1.2.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.2512593Z copying path '/nix/store/ncq52j271vqxarh5cs6ld7xxf5h05a8w-serd-0.30.16' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.2537519Z copying path '/nix/store/5s5d99s54qhd1mnkzzglg7zc6vfi1kji-snappy-1.2.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.2539293Z copying path '/nix/store/vwyx4y609p5b1ym0izimdlbmji26rz08-sops-3.8.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.2547686Z copying path '/nix/store/5zx4fbl0agr7nq6hxdmczkfw6dl36zmj-soundtouch-2.3.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.2628593Z copying path '/nix/store/rkv9qb6nalqqblsyi7x4fl86hzvalxij-soxr-0.1.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.2838240Z copying path '/nix/store/iiskn765hbwliw5jq6vbm288168b72y4-speex-1.2.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.3214516Z copying path '/nix/store/xc9l92rl3ndvhwi8a6yj01icn1d8vfp9-libGL-1.7.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4046856Z copying path '/nix/store/3yv2aq8wkgal8m9m2ibnngkzdvsav0x7-blas-3-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4050493Z copying path '/nix/store/xzlkv5dm0g3672n0iqiy145r5wjgsghy-speexdsp-1.2.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4142092Z copying path '/nix/store/rsy0dx70bpz0lbdcdp7b1nzxri272jcv-glu-9.0.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4257348Z copying path '/nix/store/g9h3w8nvry6ciwq6dbfiq4g0y2lmlsdd-libepoxy-1.5.10' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4282529Z copying path '/nix/store/yjwjwpm4az2b247w4wrrv9g8xkwn928x-tcl-8.6.13' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4287329Z copying path '/nix/store/9836si2b8mi0hw57x0nfaphxi4hjaz8p-srt-1.5.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4289141Z copying path '/nix/store/azc06066h201z880m78k002cgq02h5a1-systemd-minimal-libs-255.9' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4294814Z copying path '/nix/store/1vjc1n3v6zm010x5n8lby5mc8kds1v65-tremor-unstable-2018-03-16' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4298103Z copying path '/nix/store/b267yj2svrb24vsiaydc3ibs2g81278g-tcb-1.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4307880Z copying path '/nix/store/9qly1ip9gdwv6brf58hcil55lqhih8ab-svt-av1-2.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4342600Z copying path '/nix/store/kvxzigllixh8ami7d1wmgiyf2iym8yi8-twolame-2017-09-27' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4346336Z copying path '/nix/store/xd02d5pq9zlqizwjlxjbialw4lhccbjp-libshout-2.4.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4405957Z copying path '/nix/store/myr5cqynx2nh0x4f68pprg4jgps9ivcl-unbound-1.20.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4686383Z copying path '/nix/store/hix5711xrj6fwg23qs03w8w7zy29whfw-bash-interactive-5.2p32' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4745838Z copying path '/nix/store/kxf38s6127l98iwhwcjcclj8yy28k1p5-lua-5.2.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4755880Z copying path '/nix/store/hp6bg5zs7nzcc8al4i99lfbrvqs9f6rs-unixODBC-2.3.12' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4781172Z copying path '/nix/store/azaijwkx7y71a0wwylsznca97gfhl281-shadow-4.14.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4855802Z copying path '/nix/store/ixlnf1frsa2df5jjm82n0gs8h3wi6lby-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.4926475Z copying path '/nix/store/4jy677ypizvv6vnyn3j3nhzp7rg32a75-gnupg-1.4.23' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.5190748Z copying path '/nix/store/jgxc4mj836sfxzbyrk3p38ml162kr1gq-aws-c-io-0.14.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.5366850Z copying path '/nix/store/hh2gg2hcslfrgrszc7lxqb43i5lmalxq-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.5578698Z copying path '/nix/store/ipnndsw24ar8mvn2ib4hrcxphpl7v958-vault-1.16.2' from 'https://wire-server.cachix.org'... -2025-11-24T08:24:57.6005781Z copying path '/nix/store/82927nf2zj1h2skjdancji1i2dsnqc1g-libusb-1.0.27' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.6279461Z copying path '/nix/store/qgy3d8m6d6sz3anf1bvp80kbjaima2g5-apr-util-1.6.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.6286091Z copying path '/nix/store/w3iakl1f2p0b9rj1kbr7ilh69jhq6jgz-lvm2-2.03.23-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.6934510Z copying path '/nix/store/r7kg1hpd8i2qijkcr6ifqa3fz7xfdf17-v4l-utils-1.24.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.7223099Z copying path '/nix/store/hdypr3jgarr6n48w5mg5ai12s4kx8ma7-vo-aacenc-0.1.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.7416863Z copying path '/nix/store/191vrvkiswdkyqigjnynfv22mm98nrqx-vulkan-loader-1.3.283.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.7692175Z copying path '/nix/store/2r02maby1pwc1p04gjvpv2z0v488iksl-aws-c-event-stream-0.4.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.7959549Z copying path '/nix/store/rsgrkw4w2r9fbfc0f8xfgw6pvmff8apd-aws-c-http-0.8.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.8960749Z copying path '/nix/store/95lvnrimmgkn5l0k9iq2mh70hg7nkzi4-wavpack-5.7.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9140119Z copying path '/nix/store/aqc10czb2whr64agvcpihg96im5i7mi6-wayland-1.22.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9197875Z copying path '/nix/store/b0ws7iizbchnvkqnhv1nb8r1xx1jryp8-wildmidi.cfg' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9199801Z copying path '/nix/store/a115p1125g01r6vcmxcmw4iiif3d8pq3-webrtc-audio-processing-1.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9229874Z copying path '/nix/store/f4gg5ww5yz1qf48jsdq1qb5hga9j4y43-x264-0-unstable-2023-10-01-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9290371Z copying path '/nix/store/izsm29za8x8kbm0wl09hd6ghb1i9gzzy-x265-3.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9453643Z copying path '/nix/store/gb81wj5hpf0rg7gsgrx0yq71l5k40aci-xcb-util-0.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9586070Z copying path '/nix/store/8xvsv53s07hxqrycr9cd07sgw1vk93pr-wildmidi-0.4.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9587962Z copying path '/nix/store/wnnxni1b617a1w7ralb2i4b8ygqi6s38-xcb-util-keysyms-0.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9593613Z copying path '/nix/store/ih9fysqqf3d4ym0x5gs4i4smg40kilv2-xcb-util-wm-0.4.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9645090Z copying path '/nix/store/9880gzbdjhflab6g24gamxxy0hv4jv8m-xcb-util-renderutil-0.3.10' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9700626Z copying path '/nix/store/1hkh6d21k98x6ymzn6m43nadv8vqhagb-xvidcore-1.3.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9736049Z copying path '/nix/store/p1m1hbbfyvix5390xgslhq3d30zzhp7f-xz-5.4.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9752409Z copying path '/nix/store/9szvf186kqykdvy20h10958zk2rzngiy-aws-c-auth-0.7.18' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9805884Z copying path '/nix/store/c5qjis3cm0qsp5vcji0b2m1sfx5r5dsc-aws-c-mqtt-0.10.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:57.9956250Z copying path '/nix/store/12px4lqxdn2rd117lvw00l1c2yj916sz-xcb-util-image-0.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0117376Z copying path '/nix/store/fkxpblx53z0gbh5iripmciwwbcavp216-libSM-1.2.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0123621Z copying path '/nix/store/gv9sis616azky4gydszlqckiwbpqk5yn-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0165513Z copying path '/nix/store/87xgc04881wzdx7wnfn0d05gdx66jw73-cryptsetup-2.7.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0333833Z copying path '/nix/store/g9qxpv2q2bvr4g8ziay97baqniir3ksf-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0344247Z copying path '/nix/store/nk5ykhi1vy4wvn2b0gakhm189aypn60d-yq-go-4.44.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0440360Z copying path '/nix/store/j0jmblhsvp9np7n78a6zvdmsar6ls9i5-xcb-util-cursor-0.1.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0591316Z copying path '/nix/store/4xgqbqyg263kkf69mm2h792v9ahlsvj0-aws-c-s3-0.5.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0593492Z copying path '/nix/store/c1hff4nzawfkzvjmqn609pfdc3m3dk5z-zstd-1.5.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0595248Z copying path '/nix/store/zzqs9b81ihxdpwh9728zwsnpq1z5d5lv-zimg-3.0.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0609291Z copying path '/nix/store/xcsh72xshyawb0mqicf675ryffc13vjv-zix-0.4.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0621599Z copying path '/nix/store/6ghariqqf33l5xqn7alx58dys7kz2wm5-zlib-1.3.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0623626Z copying path '/nix/store/66aanq01bcmxzb4j9fj5j2slbbpr6n8r-libunwind-1.8.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0632924Z copying path '/nix/store/1h4vhcpa6nqln9x0w03dy5i1x97z8svc-xz-5.4.7-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.0670621Z copying path '/nix/store/nr9ypm2pi838cf2qrxrk8pwdc0alkx7f-zxing-cpp-2.2.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.1276927Z copying path '/nix/store/bhdbni2bwgiy88iyh07yq2pw9r9x4r4h-generate-gpg1-key' from 'https://wire-server.cachix.org'... -2025-11-24T08:24:58.2775222Z copying path '/nix/store/8c59a30a01x0rpp7w12yhn8iq9nj3zgb-sord-0.16.16' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.2844078Z copying path '/nix/store/yvxndkfdzpv3y7bq6ndxny0yhqnvs2h7-aws-crt-cpp-0.26.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.2932997Z copying path '/nix/store/sggw61w356qbggr7p22ndijhkw6nk6nc-libcaca-0.99.beta20' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.2941222Z copying path '/nix/store/1b4si7qr8f04lqpy5m7iis3w8jxhc2vq-file-5.45' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.2944534Z copying path '/nix/store/3c275grvmby79gqgnjych830sld6bziw-glib-2.80.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.2946289Z copying path '/nix/store/hqll9vi4g6krj2yfxc4vqndvsfssas7x-gnutls-3.8.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.2991410Z copying path '/nix/store/afmksdmk6b1zvg6i0arpn3q9xkzsnd9v-kexec-tools-2.0.28' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.3014159Z copying path '/nix/store/b2y89hps3wp9kni162477cnwn3v1s0vc-game-music-emu-0.6.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.3037950Z copying path '/nix/store/950jxlcd0zi3p0sjifs3v8i8y0nin140-cracklib-2.9.11' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.3114263Z copying path '/nix/store/71mk6wddlb93pwc36gw6qwssgf1xp0yn-libfido2-1.14.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.3175207Z copying path '/nix/store/10m6hxl5zxb1c3nbdnfgcmsyy49gw2rf-libpciaccess-0.18.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.3230727Z copying path '/nix/store/zh2fss3schzb6zxh1912ng9pqwg3g6ls-libmysofa-1.3.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.3349629Z copying path '/nix/store/xz6qa1y8a7nm544iqkh3nx9pgysnpl0j-libpng-apng-1.6.43' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.3606194Z copying path '/nix/store/w6zi8q7la3f5vpl9gl81b0dvfq4wj8p0-kmod-31' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.4025626Z copying path '/nix/store/vsfikrk5xcncbg89qx5a2n0jylkzx2cg-libdrm-2.4.120' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.4076572Z copying path '/nix/store/n9h67rrlpqq6lk7piw059ddxiydlfzbd-kmod-31-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.4236047Z copying path '/nix/store/n9a33c5kmnigl0m8dmpzbq0wziy69q69-libssh-0.10.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.4353970Z copying path '/nix/store/jcv2dm4lis9g72qh580am3sg1x9vl80b-libssh2-1.11.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.4725612Z copying path '/nix/store/ass5rpw3li6xxyjp0cykfx5l6yjcj400-libtiff-4.6.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.4896673Z copying path '/nix/store/ssy9mnlc9pfkdn6msnirki0yfji4nqjv-libxml2-2.12.9' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.5287630Z copying path '/nix/store/pycn43wvdlpfaxc1lw8n80bxdf7swx2v-minizip-1.3.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.5289009Z copying path '/nix/store/mdadnfhlp7m6778zhlmpbn9qy37xkrmh-perl-5.38.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.5474902Z copying path '/nix/store/j1vqg67pzqw44qnigcd3ra6kn5fr97cr-gnutls-3.8.5-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.5500008Z copying path '/nix/store/4gzp3wr5mi1k4fvlynci0y7n6qip0kkv-libmicrohttpd-0.9.77' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.5505244Z copying path '/nix/store/7cyfghd954nz098qwr6rj47h2kqnzh8h-rtmpdump-unstable-2021-02-19' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.6359553Z copying path '/nix/store/0pjc3s5k0zlc56xs2z0cmvq885zkij9h-sqlite-3.45.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.6384547Z copying path '/nix/store/b51xi5pl9l27xl6kdi5jp0z27lz1jijf-sratom-0.6.16' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.6398334Z copying path '/nix/store/0npkjmcmq2zjmwfr8n9qiphikhi0h27n-freetype-2.13.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.6520489Z copying path '/nix/store/5nymsx64wskcfmwszlzcq89xlzxvfh6g-taglib-1.13.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.6642823Z copying path '/nix/store/fv1plv85qylnw87dlnxaqkgl06drgr1r-curl-8.7.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.6673150Z copying path '/nix/store/66xxwyk14nyb0w92kblq2fvlyc80lajg-libva-2.21.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.6774841Z copying path '/nix/store/w96x630iywdwf7q161aphnli54szspwr-libva-minimal-2.21.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.7566089Z copying path '/nix/store/mdl97z9dp8dhjdim472qiqqwd94bhp0j-libwebp-1.4.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.7592261Z copying path '/nix/store/9i494hk4xxsp2adah2yi31537hr8bzdy-openjpeg-2.5.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.7605506Z copying path '/nix/store/kz63kc0l997568pqzrh5ibbfg3fb92nc-spandsp-0.0.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.7758915Z copying path '/nix/store/qk1lrb5a0drx0d4d8rc2xcx0ak0sg478-spandsp-3.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.7848112Z copying path '/nix/store/nb06pbh9j1b44ply234vvkaar1w3gvgi-dconf-0.40.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.7895704Z copying path '/nix/store/484qnnssg3n2md24vpxw3qk0dspkppsb-gdk-pixbuf-2.42.12' from 'https://cache.nixos.org'... -2025-11-24T08:24:58.7946081Z copying path '/nix/store/q1zjgn2pwl07vkgxgax0v453y40lxkyg-glib-2.80.2-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.0049590Z copying path '/nix/store/1hqv10fp1iyrjbrc02x2frchj89givpk-glibmm-2.66.7' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.0517120Z copying path '/nix/store/c3aszilvmbj96ln5a5mbhr80sr86nbvb-gnutls-3.8.5-dev' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2304044Z copying path '/nix/store/35kyrfkzrm1am5l91iz0srdp2wh8j1an-fontconfig-2.15.0-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2369290Z copying path '/nix/store/hxw38czbsfvnx1wl8vckv2b6k1rbmcpy-graphene-1.10.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2372490Z copying path '/nix/store/r467qyv4aamq2hg9xsq72vignslcrm5q-gts-0.7.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2415461Z copying path '/nix/store/wazdn869j9x8g36w1mvpcpicd7p97lpw-harfbuzz-8.4.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2788298Z copying path '/nix/store/fbkbkqb1cp46jwgk2lv6g28ik57r764i-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2790265Z copying path '/nix/store/i7avvg2mbw505cd6jx9k5admny6v9k8d-json-glib-1.8.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2819135Z copying path '/nix/store/jaapy8mk67cbflvmj7gjpylgahl0pj69-curl-8.7.1-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2838747Z copying path '/nix/store/9vr5awg1y41akmi295cbf025b8m1k054-aws-sdk-cpp-1.11.318' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2846589Z copying path '/nix/store/jsizfglsm40vsjc81xnm3wa0rxshpnz0-elfutils-0.191' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2885854Z copying path '/nix/store/pn7vakwcmzq4i7m4yjcjk4z9ylwx1mhr-libgudev-238' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.2955472Z copying path '/nix/store/bcy2747bv7g8hc10dx19plabi7gd4wgg-libical-3.0.18' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.3196939Z copying path '/nix/store/hka0v51svlrj0p8pfjv4q0jyif6blxiv-libproxy-0.5.6' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.4157627Z copying path '/nix/store/3jp4h3hmz4bqv3rrj439lpkzkmxqxdwi-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.4179751Z copying path '/nix/store/an0kn9gd4z0k4qr7mi9975fa2mqs9248-libsoup-2.74.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.4181504Z copying path '/nix/store/hw3hwpk0gmcmhajsjsvhxk2vn9h30bq7-libavif-1.0.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.4214394Z copying path '/nix/store/vwlfmr1i7idc0s32ay6r00wy4b8a4rx7-libsoup-3.4.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.4268267Z copying path '/nix/store/25c315nh12y4qsb7ajdmxirrzvixk0sz-libwacom-2.11.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.5605542Z copying path '/nix/store/vppn7lhz5ljvydmbdppibfjg6xrfh0vx-cairo-1.18.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.5707093Z copying path '/nix/store/jfp0nybgag72xd2y9i0z16m6w8hpj8n8-fontconfig-2.15.0-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.5736371Z copying path '/nix/store/p4brhgwc11hfk13vwad4ix5xr7vkavhx-libXft-2.3.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.5738330Z copying path '/nix/store/m4r9jmsvgv8k0vsb72vkq91667yjdf9h-libxkbcommon-1.7.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.5864566Z copying path '/nix/store/fvl7p1xahc21wmzyzri4c515fzgyx516-libxslt-1.1.39' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.5871168Z copying path '/nix/store/lgnp0aj260v73xfnp1cz236cg3lq2lzv-libxml++-3.0.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.6024670Z copying path '/nix/store/xs3gk42g7dlsndzwgx72c71h76clzfsv-libbpf-1.4.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.6314961Z copying path '/nix/store/2433idnxmkvd2xl7qgvn7gxi46jz072j-lilv-0.24.24' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.6847160Z copying path '/nix/store/jwwrmilpbv6fbpvhf9mhwa79fgwh8l92-mariadb-connector-c-3.3.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.6879553Z copying path '/nix/store/xy1iyna81kvjvpv3mhfpqr3vfh4p1kkl-libass-0.17.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.6881340Z copying path '/nix/store/21fbki69x6a50az3pzdf99s17y4izzki-neon-0.32.5' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7005312Z copying path '/nix/store/l9xhiy5wqs3cflxsfhxk0isbjv96rhd1-nix-2.18.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7011054Z copying path '/nix/store/5fhcjl8ygadpn1vmmcv94y5xdj87ijvg-ffado-2.4.8' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7013201Z copying path '/nix/store/rsxw8yx21701xp3x6n0yfg517k29s2qf-postgresql-15.10-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7015070Z copying path '/nix/store/s0p1kr5mvs0j42dq5r08kgqbi0k028f2-python3-3.11.10' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7084042Z copying path '/nix/store/33l0xjnbva59rpq8v8msj14zws7867kr-libinput-1.25.0' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7099905Z copying path '/nix/store/z7hrcpmiv2kxcmwmsh430w6kikpgfl3l-gd-2.3.3' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7182981Z copying path '/nix/store/kbxpqmqbwq38rjiak7m7q5vp10h81l39-raptor2-unstable-2022-06-06' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7186150Z copying path '/nix/store/66brm5ms6jb8ayp23j39k68kvfdjgbra-gssdp-1.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7499249Z copying path '/nix/store/lih83v9dmk1kd665aq901dsrq97wyqdx-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7576288Z copying path '/nix/store/fhfza8gyfnrqn3q605w5cw327gn0hz5s-gobject-introspection-1.80.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7679485Z copying path '/nix/store/45alyjrs2xflv0fyy08ng2qy62klrash-pango-1.52.2' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7872073Z copying path '/nix/store/2p4grjy2h8zl1mn6bsmqjphnxmign8id-tk-8.6.13' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.7881680Z copying path '/nix/store/ymabnglmak4mdqfm7gis35j0glikxh0w-gupnp-1.4.4' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.8405059Z copying path '/nix/store/aj3rs5lixcbvja00ypfbfy1ynqg3krk5-ffmpeg-headless-6.1.2-lib' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.8407485Z copying path '/nix/store/x73z9aq2iqzhwcvlxvs3y8mxqdkj93rx-apache-httpd-2.4.62' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.8590346Z copying path '/nix/store/2zz1kvy3hx3ly067s9266ijnxnda682w-moreutils-0.69' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.8705575Z copying path '/nix/store/ihjg8v8902jly2i3xnbj3714i135pqf4-tpm2-tss-4.1.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.9841477Z copying path '/nix/store/c0jdcx8v5dw4p4bgwg4ql03r41m47jll-lrdf-0.6.1' from 'https://cache.nixos.org'... -2025-11-24T08:24:59.9885362Z copying path '/nix/store/k1rc6g2c6vammbwi963vvh28rgvbv6c4-util-linux-minimal-2.39.4-bin' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.0037145Z copying path '/nix/store/3ba19yig9wyh44wyz5xqj1a26nlq2j0w-wireshark-cli-4.2.8' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.0064116Z copying path '/nix/store/in5f9jxkky4xnhb9nvwxs70x0pdlr7gh-gupnp-igd-1.2.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.0270204Z copying path '/nix/store/i44dhfrwi3qaz3f8xkxiva6zqkq3f65v-zlib-1.3.1-dev' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.0360104Z copying path '/nix/store/5jnr7m8y3gkd9559mf14sw43fb2s5w0m-gnuplot-6.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.0482777Z copying path '/nix/store/y21ngpz8djf6429rjml06pwwfibr0d87-graphviz-10.0.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.2274413Z copying path '/nix/store/z9s16g5zsywlnlv07gfg9qwkqvisrbk7-librsvg-2.58.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.2846687Z copying path '/nix/store/g7kjsdrig65ykzi0056abrb84dxm1mqv-zstd-1.5.6-bin' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.3187205Z copying path '/nix/store/6l271354hyg3q634vfwgwrsq6x7r965g-niv-0.2.22-bin' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.4007514Z copying path '/nix/store/vl4mvms46802yzsj59h314wf7l26gilw-gnupg-2.4.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.7131698Z copying path '/nix/store/mgrsh2jnmxwv384q810fkgm2bzp3fwvz-kbd-2.6.4' from 'https://cache.nixos.org'... -2025-11-24T08:25:00.7288100Z copying path '/nix/store/19ia8qwxsk5hn0jhmpxlggg29jan2kk3-fuse-3.16.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:01.0296436Z copying path '/nix/store/4i19nk1w31wr6fnwy2crzvyxdjzsmm25-fuse-overlayfs-1.13' from 'https://cache.nixos.org'... -2025-11-24T08:25:01.1350188Z copying path '/nix/store/c0nwsn94zwz38jmx533k3w5msd9qnwg5-helm-secrets-4.6.0' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:01.2269502Z copying path '/nix/store/f77zp1fs5gblzrhz96mpicrqzb09r555-systemd-minimal-255.9' from 'https://cache.nixos.org'... -2025-11-24T08:25:01.2275104Z copying path '/nix/store/rhq3rwyghbqq4lnkmdf4vsrazr2aa5a7-systemd-255.9' from 'https://cache.nixos.org'... -2025-11-24T08:25:01.2939432Z copying path '/nix/store/64h8qw6865mkmws9jswhg7z5kq6rsrzw-gnupg1compat-2.4.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:01.2952163Z copying path '/nix/store/f8nqqxv0nzvwfwxyirf2k5y96y0g64zs-aptly-1.5.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:01.2957050Z copying path '/nix/store/0yrrqjkh0qj51wyaghwqzx0gc0l6lf5a-gpgme-1.23.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:01.6984463Z copying path '/nix/store/24794mg7xgg2d6lra3ac2asw20vs39sw-helm-plugins' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:01.8877340Z copying path '/nix/store/igsld4sykvr6zn07jwhabza978jbiymv-skopeo-1.15.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:01.9240286Z copying path '/nix/store/mrfhd1z4dq1yn535pnn3j6ih70lbgxv9-helm-3.15.0' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:02.2549046Z copying path '/nix/store/l3di8ckamifz9kkv38i3krrr7iyczaab-list-helm-containers' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:02.3648771Z copying path '/nix/store/c1pvi36v9d02by7s9fcx204qg3ic9xgh-dbus-1.14.10-lib' from 'https://cache.nixos.org'... -2025-11-24T08:25:02.6035908Z copying path '/nix/store/j6rmgmg38fr1iglrf1qrsvi5sasz1mpr-mirror-apt-jammy' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:02.9587455Z copying path '/nix/store/79pgx9z1bylfrilpbrmscn7gafydnfv5-bluez-5.75' from 'https://cache.nixos.org'... -2025-11-24T08:25:02.9589538Z copying path '/nix/store/am54j7wy47l77ssr2q84sr9xzmfi9n5l-at-spi2-core-2.52.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:02.9592268Z copying path '/nix/store/i4rg4244x7fqvsbh6qbx848lfrhy3x3c-dbus-1.14.10' from 'https://cache.nixos.org'... -2025-11-24T08:25:02.9597360Z copying path '/nix/store/26s529dd6j0dsl4z360zl5czr7kkf2s6-avahi-0.8' from 'https://cache.nixos.org'... -2025-11-24T08:25:02.9605304Z copying path '/nix/store/6k5ldmkp36y02gbk2qm83sfab4mh6mrj-libjack2-1.9.22' from 'https://cache.nixos.org'... -2025-11-24T08:25:02.9607103Z copying path '/nix/store/3xkb74fkjrj00ivfxmzmx41d9ag889bg-libpulseaudio-17.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.3704508Z copying path '/nix/store/crk54hd03zf54g50441z386blj47rqbw-create-container-dump' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:03.3706818Z copying path '/nix/store/fmi1wn75kn5dlay0njwfa965b6lyjgw5-nix-prefetch-docker' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.4473362Z copying path '/nix/store/dvrxm99hwicvwf8mg4b0gx6kpd6qxvdk-dbus-1.14.10-dev' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.4936888Z copying path '/nix/store/aykqqwb1xmv2hfmswv7fgmlij28my0q0-cups-2.4.8-lib' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.4942087Z copying path '/nix/store/58n0pnldj7w7szplmgaxjz6ycvff19rh-tracker-3.7.3' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5576607Z copying path '/nix/store/ipwigvayp8b69rq24zkb4wfhix4a16zr-SDL-1.2.15' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5598646Z copying path '/nix/store/4n9b0fwpzs9anb2ga0v7r1dsdix4k0jq-flite-2.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5675797Z copying path '/nix/store/xcbcbhk8zimngwiafywap158qjiwv9sk-fluidsynth-2.3.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5679625Z copying path '/nix/store/jxzfajll1sk4pyhpnyfd35y7vh3w8c1g-libao-1.2.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5702584Z copying path '/nix/store/ss1mxd1xaajzkryys2nhjxri7bm4zlf5-gstreamer-1.24.10' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5706862Z copying path '/nix/store/ibjg6c4n6snpj4jcirkxxy8bixphq0pa-python3.11-appdirs-1.4.4' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5713744Z copying path '/nix/store/1x447rf8y43bs2w9rhad8dw09rj98v6s-python3.11-ansible-pylibssh-1.1.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5715862Z copying path '/nix/store/lzw7mb26a78av1mak89kys985h3v033p-python3.11-awscrt-0.20.9' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5717939Z copying path '/nix/store/dqy4qig88gc2kx8lj35xx3vhy9imi0v2-python3.11-attrs-23.2.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.5719755Z copying path '/nix/store/hixcpq22ik94b0wfs0xng4r4q18pi687-mpg123-1.32.9' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.6447804Z copying path '/nix/store/2lkwl19dmy90zfazaq40khbmh2fdqz75-python3.11-bcdoc-0.16.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.6941190Z copying path '/nix/store/g4ls15szfimvi8pinpizlp5d2zbd887b-python3.11-bcrypt-4.1.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.6974700Z copying path '/nix/store/jf4p4n3gq44pvaxpfizvaq1nanbs5n96-python3.11-brotli-1.1.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.7254313Z copying path '/nix/store/hdn2gb5xa3amcpn4g90hscplwbnk56bz-gtk+3-3.24.43' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.7987292Z copying path '/nix/store/1nk7nm700qa1c7zmsvs077v6h7d8ssx9-python3.11-certifi-2024.02.02' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.8013766Z copying path '/nix/store/nknn7vcyaf982lv13zi1p15q3x02wm82-python3.11-charset-normalizer-3.3.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.8850643Z copying path '/nix/store/5kac9hw6x00l883wa4371da27na10mdv-directfb-1.7.7' from 'https://cache.nixos.org'... -2025-11-24T08:25:03.9004122Z copying path '/nix/store/c9b2c5gakdnqakspr3phy0ld4b9p93z5-python3.11-click-8.1.7' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.1015273Z copying path '/nix/store/4vyv8rg50k6sz8hfnj7qj771abcnjkbf-python3.11-colorama-0.4.6' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.1060585Z copying path '/nix/store/agc5rqsjl4k52ywmrq39sahyg3gsqx5z-python3.11-configparser-6.0.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.1075192Z copying path '/nix/store/acrn3dsrwhmjblghgs4dj0pg272vs9mj-python3.11-distro-1.9.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.1077867Z copying path '/nix/store/b4j4n3sk20ra940lw04cr2v9r915q9pi-python3.11-cycler-0.12.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.1114414Z copying path '/nix/store/wckh5hrr8va8sx714lwjbkg1cg2ijzmi-python3.11-defusedxml-0.7.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.1267183Z copying path '/nix/store/d72g65ck8hym47pk33qj81bigx8aj33b-libopenmpt-0.7.9' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.1379923Z copying path '/nix/store/j6jn7ba5mkjf5p21zfyj4rc2mxzajd3x-python3.11-docutils-0.21.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.1645966Z copying path '/nix/store/mgk6k7yaysrqpgm66aljjikdp35wzi2f-python3.11-elementpath-4.4.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.2217274Z copying path '/nix/store/mn2ccb2xmjbjr94kq6hb5f4nwl94vdvw-python3.11-et-xmlfile-1.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.2490406Z copying path '/nix/store/vjbnls7fds0dn0dpbrql2ll64x1g3lc8-gst-plugins-base-1.24.10' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.3230699Z copying path '/nix/store/03b059n120bjy9czjkfhckyy16vxcff4-libcanberra-0.30' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.3273778Z copying path '/nix/store/iq8a89wf8y9qbzj6z374b83v6z30kz5a-libnice-0.1.22' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.4169548Z copying path '/nix/store/5hn9mx5nmhfsglx8x61yn3r0kvxjrqm7-python3.11-fonttools-4.51.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.6641741Z copying path '/nix/store/3q0jknp16h3jn44751dh19hsvk1igazx-python3.11-frozenlist-1.4.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.6644106Z copying path '/nix/store/gdd5rv6qvww712khiklk4jibp79ra8wl-python3.11-future-1.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.6674870Z copying path '/nix/store/adhq1qdhlbasy8cbbcg5bd0s9lsrqxnr-python3.11-idna-3.7' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.6804322Z copying path '/nix/store/19132c15q1fma85mmzqly21kmpk1x1ka-python3.11-jmespath-1.0.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.6863037Z copying path '/nix/store/r1w71f7h4qv1kann93nh461mbh8wjfnl-python3.11-kiwisolver-1.4.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.6868401Z copying path '/nix/store/ldivr42wg9qa3z4jy4xka9ayfxnvgxcn-python3.11-lxml-5.1.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.8121203Z copying path '/nix/store/d0xn2r1x1904pdvbv1j52g2xi2h2m589-python3.11-markupsafe-2.1.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.9636416Z copying path '/nix/store/0sp1psidkajzrp2xpci18sfhy3gaclcw-python3.11-maxminddb-2.6.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.9658256Z copying path '/nix/store/jspq5y3k8fbj22h6mngcca8cvihym60w-python3.11-aiosignal-1.3.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.9660365Z copying path '/nix/store/nijbfdbdhpch630cjk5vcmjj8ji0xqsx-python3.11-netaddr-1.2.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:04.9664288Z copying path '/nix/store/glynd0r4a83bvh4np68bns6pgf6m7238-python3.11-multidict-6.0.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.0534284Z copying path '/nix/store/5yyizx1n2586v6k2jip2w1hw5qr5k78y-python3.11-numpy-1.26.4' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.0624820Z copying path '/nix/store/p270n0ac6dln5nnxz5mndqziw2mphvd3-python3.11-olefile-0.47' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.0736804Z copying path '/nix/store/4zil6nfl9fr9rjw7kswy6ymf6jp2mbys-python3.11-openpyxl-3.1.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.1038104Z copying path '/nix/store/g3x1fjwa1bdnzb3mcby713ygvswl763x-python3.11-ordered-set-4.1.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.1293294Z copying path '/nix/store/gb03knn5wp9ja25vki55vd32x4rxhs0x-python3.11-orjson-3.10.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.1295384Z copying path '/nix/store/dkphwn70lhdmazrl4zdnj63gy0yw4qfj-python3.11-packaging-24.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.1321743Z copying path '/nix/store/a8mlb0kbbqysshbyxfkqgrkbn2vp049l-python3.11-jinja2-3.1.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.1400178Z copying path '/nix/store/bhm6c6slxs1jf4dcki1kr2znjwl7vg6p-python3.11-passlib-1.7.4' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.1410774Z copying path '/nix/store/xxyix63xkfs3xsm3nrvs7z4xzijmqryc-python3.11-pillow-10.3.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.1666406Z copying path '/nix/store/gcvwz821dqndjvssi82vkg5j8df6ix1j-python3.11-poetry-core-1.9.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.2337462Z copying path '/nix/store/iicn1k28l5a3fqbsbl5xfh0nzah19djm-python3.11-psutil-5.9.8' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.2840800Z copying path '/nix/store/3kri9vcnscsrwpx1gyisycikf2cnyxbb-python3.11-ptyprocess-0.7.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.2904073Z copying path '/nix/store/warlq6qs5s6q2s6xj7b3dsba70x3aq0c-gst-libav-1.24.10' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.3390300Z copying path '/nix/store/clx6j1x1dhi3bnj41cbsnggxisaz8sir-gst-plugins-good-1.24.10' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.3991013Z copying path '/nix/store/0y447vkbnzkdm714dnfwmxa37lfxqj81-libcamera-0.2.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.4180182Z copying path '/nix/store/3abb189d4igphsd7dj9iykmvz2wp0lif-libdecor-0.2.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.5409898Z copying path '/nix/store/2jjil1lrarm7sdj53wa8ri7lq2pk09yr-python3.11-jxmlease-1.0.3' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.5420315Z copying path '/nix/store/hd285sw3n0vgnm5z2naf1z6518yz3071-python3.11-py-1.11.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.5791842Z copying path '/nix/store/0rxqk46midfpng871sqwm9wfq1r51qzn-python3.11-pyasn1-0.6.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.6673813Z copying path '/nix/store/hif151ccxw4yq0bshn36wb53z5rq0k91-python3.11-pycparser-2.22' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.6776116Z copying path '/nix/store/yb31qbgf96qysi6a0xs0fv9bcq1fyjqx-python3.11-pexpect-4.9.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.6812308Z copying path '/nix/store/2j0fjyjkl5l3b1rslif0p2gjapgvig0n-python3.11-pycryptodome-3.20.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.7176162Z copying path '/nix/store/xq2isr2v4jlwjpmv9z8nd2vsys060kqf-glib-2.80.2-dev' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.7424904Z copying path '/nix/store/3mvrj72xmxxkln74dpx75nnycn2v5wpm-python3.11-pyparsing-3.1.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.7774122Z copying path '/nix/store/b01lghv79qpiz96zdifyi8hiix798c0g-python3.11-pyserial-3.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.7853379Z copying path '/nix/store/mw95cn98zv3q2s43382x066zhh3kvq7h-python3.11-pyyaml-6.0.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.8016035Z copying path '/nix/store/hc04777l1g4n6s2h4vp5dn49dxdg3pk2-python3.11-resolvelib-1.0.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.8018771Z copying path '/nix/store/iy60xppafv2mq4mdrjkaavpyiw3lavah-python3.11-rpds-py-0.17.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.8501571Z copying path '/nix/store/wk70gs18myaldgap2vjm0n7p1r3js0dh-python3.11-deepdiff-6.7.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.8519048Z copying path '/nix/store/pjh9mrhs2mlgy6z3wwbwy5jks2yxkgqf-python3.11-ruamel-base-1.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.8571352Z copying path '/nix/store/d4g6qjk1j8x3ir8ypsdrgyxw36hhsg09-python3.11-setuptools-69.5.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.8606191Z copying path '/nix/store/lrgiqzn4w85xld40ka0pvwsdl5608vw1-python3.11-ruamel-yaml-clib-0.2.7' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.8666995Z copying path '/nix/store/739k8d7canirs7pxhhyn7c4wgijdg8l7-python3.11-six-1.16.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.8685287Z copying path '/nix/store/jdh1q15l9bgvyn0qwghkb461k3wxxd97-python3.11-tabulate-0.9.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9008040Z copying path '/nix/store/d02k3l4gpwmah8gf4jbjdrv7vg505cc1-python3.11-termcolor-2.4.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9117623Z copying path '/nix/store/c2f2klzcyad5gbgg74632spacdna7a8k-python3.11-tkinter-3.11.10' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9254663Z copying path '/nix/store/fnw7g76rmwnicy2a72isa6kmdpmmn1vj-python3.11-junit-xml-1.9' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9271737Z copying path '/nix/store/23d61nnrgf4n4a0dnr32gv0mpkf0h0lv-python3.11-python-dateutil-2.8.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9288975Z copying path '/nix/store/qfrngq5f1mywvwqw5hnzfywd9w1smbnz-python3.11-python-dateutil-2.9.0.post0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9326152Z copying path '/nix/store/74s9dw7ksnmlkwypk69hs01w5j4lc569-python3.11-cffi-1.16.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9356109Z copying path '/nix/store/47429mwg02qfk6fc3zxq09cl5a1194pn-python3.11-referencing-0.34.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9409422Z copying path '/nix/store/dyvj8cwfrjgjaxxkj2zrxws4qm9piwsl-python3.11-textfsm-1.1.3' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9426219Z copying path '/nix/store/18yiwdazlwkndhqlg3zp0m2zf20qhxzw-python3.11-typing-extensions-4.11.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9435323Z copying path '/nix/store/gjw08v4xpvs3mslqdwdvwfj3hqdvjpl2-python3.11-ruamel-yaml-0.18.6' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9562508Z copying path '/nix/store/glkkwb0lzdf40a7828j0wa3ab65nh4l6-python3.11-urllib3-2.2.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9615301Z copying path '/nix/store/w1wxyra2cbpfzbl134fablnzmvv2s98h-python3.11-urllib3-1.26.18' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9831374Z copying path '/nix/store/nhbsgg6j1nd747r2410nvsz98s1xa3ac-python3.11-wcwidth-0.2.13' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9977032Z copying path '/nix/store/6m8wv5c2r6hlyg3848nmbkly7zx4bp81-python3.11-async-timeout-4.0.3' from 'https://cache.nixos.org'... -2025-11-24T08:25:05.9979735Z copying path '/nix/store/kyvaa6038fvh70wmb6dafphdy64phwqr-python3.11-xmltodict-0.13.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0071408Z copying path '/nix/store/8ginfdrqzxq2xhv3mcdmp6rj4s7q8qar-python3.11-jsonschema-specifications-2023.12.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0085850Z copying path '/nix/store/bnr11wfr6inwb7dhcc24g085y5w4088j-python3.11-yarl-1.9.4' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0200987Z copying path '/nix/store/jz42kg5j7i4nkk968nsqxp8mcfsxg2j8-qtbase-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0280623Z copying path '/nix/store/igif2w5949flbj5j3dqmgh6xjm7fj9qv-python3.11-ntc-templates-4.4.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0336947Z copying path '/nix/store/4m7rpgfp12qgslzbw17badzybzhh0vss-sox-unstable-2021-05-09-lib' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0371261Z copying path '/nix/store/2vsiqam9g9nx1g0icfwsqqrfkcrggbyq-python3.11-prompt-toolkit-3.0.43' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0376274Z copying path '/nix/store/i5vfc651q58m2ni0v41jfmizb2cf65ps-python3.11-jsonschema-4.21.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0872617Z copying path '/nix/store/n4zlr84jxb49dxkhdr1vvcdq89d88n7d-python3.11-brotlicffi-1.1.0.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0875026Z copying path '/nix/store/bqh6p3pb0larlzxv4kcak10lrcl0is2g-python3.11-botocore-1.34.87' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0877161Z copying path '/nix/store/7jnfmks5w5dgz2igpr4cag6p4j46vfyi-python3.11-cryptography-42.0.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.0946019Z copying path '/nix/store/7pgjxq3qpqypmdax6wasvzdd5vbx200p-python3.11-pycares-4.4.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.1079805Z copying path '/nix/store/k3ifaazz09vbb1kbcxg3p7l71zd3iypr-python3.11-botocore-1.34.87' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.1147792Z copying path '/nix/store/cbjs14f3fwqzcjbawa3j980z96bfi1j2-python3.11-pynacl-1.5.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.1149819Z copying path '/nix/store/4i17d3s0khq8psc9h4kx4yxkzf0rwrf7-roc-toolkit-0.3.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.2681967Z copying path '/nix/store/7igc74nhll3nsyxzb7yg7fajs3dhhzsm-python3.11-pycrypto-3.20.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.2764772Z copying path '/nix/store/7kb58pc7vb0svbzqcs72mq4hv1jl0lfg-python3.11-contourpy-1.2.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.2816067Z copying path '/nix/store/1b8lnibgkaaclzs0a88h99z21m9b3mri-wireshark-cli-4.2.8-dev' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.2946550Z copying path '/nix/store/bcdyrxykwil83yfy12apxwxig1khyky3-python3.11-cerberus-1.3.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.2947824Z copying path '/nix/store/rn3zszzcrqiqdkmnh276fpqxrzmi9p2q-python3.11-yangson-1.5.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.6906401Z copying path '/nix/store/d7kgb4kwyq1v6v4hgijwvab397h050ib-python3.11-requests-2.31.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.6986616Z copying path '/nix/store/9yh3jkmkx04rw9j0k6sdnf00n9i67arp-python3.11-aiodns-3.2.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.8693147Z copying path '/nix/store/siad80zvk177vzqc8ykzp8xj9cr6j0db-python3.11-matplotlib-3.8.4' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.9042342Z copying path '/nix/store/i5cq7lcc4xziddyk4dbjnj62mvndnvhb-python3.11-paramiko-3.4.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:06.9328007Z copying path '/nix/store/3lix6srcn4i99gdxbwmgf4rsxg78i9r9-pipewire-1.0.9' from 'https://cache.nixos.org'... -2025-11-24T08:25:07.1714846Z copying path '/nix/store/rk675ihaz563jvfnabw1px0mdcmz23bg-python3.11-pyshark-0.6' from 'https://cache.nixos.org'... -2025-11-24T08:25:07.3787553Z copying path '/nix/store/7v3brfiljp0cx7yp6s0va8rwi5cn3pvz-python3.11-aiohttp-3.9.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:07.7007722Z copying path '/nix/store/qx2czf60f0r5awy5jlrgc1d1dngbkapv-python3.11-ncclient-0.6.15' from 'https://cache.nixos.org'... -2025-11-24T08:25:07.7009945Z copying path '/nix/store/lamn5scbjgwq2n9qg1ai2kvyjvw6kjd2-awscli2-2.15.43' from 'https://cache.nixos.org'... -2025-11-24T08:25:07.7011955Z copying path '/nix/store/3d3mwc3i8gcw7chv5ksf1icfs6nz0r40-python3.11-scp-0.14.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:07.9246658Z copying path '/nix/store/rbr2xn0qjw8xl7vgmwssy3y2xsn250c9-SDL2-2.30.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:07.9254782Z copying path '/nix/store/z6ar801axm9vcxqmkvwfqmg51vwgj7hw-openal-soft-1.23.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.0064788Z copying path '/nix/store/bwmaj4f9s7xyc3z88lcz12wi80pha5wm-python3.11-s3transfer-0.10.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.0838115Z copying path '/nix/store/s19242qlqm08kk7ihnay8anpcrnfhslc-qtlanguageserver-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.0842289Z copying path '/nix/store/fs4yrpbzh3znk63vsh03jmxc3fkxlpvz-qtshadertools-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.0844523Z copying path '/nix/store/asawim4b8sb0dxndxywln4fhxc7w9cpa-qtsvg-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.0846273Z copying path '/nix/store/p6xbq5nvlmgp9w2xwphp7ayf74a5ip5c-python3.11-geoip2-4.8.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.4015337Z copying path '/nix/store/i393zgdy9dm3jlri8dv29p8jrbdm9g50-python3.11-netmiko-4.3.0' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.7181877Z copying path '/nix/store/24c8m4saz1k6c6qd428n3wbwmz1q2ipa-python3.11-boto3-1.34.58' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.7570989Z copying path '/nix/store/m6j2adssvl3fchxhr7qycz0jby2bb87n-qtdeclarative-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.7736164Z copying path '/nix/store/995bvqfapid0yzx0jnqaq8l89pp2hd6w-ffmpeg-6.1.2-lib' from 'https://cache.nixos.org'... -2025-11-24T08:25:08.8902605Z copying path '/nix/store/xk3h01xmv8zbbvxgrlw4g3mdjd2b2a2y-python3.11-ttp-0.9.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:09.1908565Z copying path '/nix/store/cjpsg9jpxys91x4plnais8v6sklpqzp9-python3.11-ansible-9.5.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:09.7110625Z copying path '/nix/store/9qm1fssgi7s1sw397y4mdf0w2ii33sn0-chromaprint-1.5.1' from 'https://cache.nixos.org'... -2025-11-24T08:25:10.6892163Z copying path '/nix/store/96jf0b3vnx0z05a4ny8z0sp1hws6gmcf-gst-plugins-bad-1.24.10' from 'https://cache.nixos.org'... -2025-11-24T08:25:11.5392426Z copying path '/nix/store/d0isvsqa3bh3lk8pmz3frjkq9ry7fmq1-qt5compat-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:11.5394622Z copying path '/nix/store/k79dvlj19fvcyylp0gy9ww5vyg7flcqg-qtquick3d-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:11.5396505Z copying path '/nix/store/amjqsmg6fqjmbkxqs1phxk05hj7zs0dn-qtwayland-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:11.5398496Z copying path '/nix/store/fm0i918nrvqwg4zsrc8wzjbkaxskgpxw-qttools-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:11.8818469Z copying path '/nix/store/g2ym73n8p60pmz31i2cjzzc2maxsjnr2-gstreamer-vaapi-1.24.10' from 'https://cache.nixos.org'... -2025-11-24T08:25:12.9209308Z copying path '/nix/store/ff17xx8xcdff3lpljz0j67nggz0afs5l-qtmultimedia-6.7.2' from 'https://cache.nixos.org'... -2025-11-24T08:25:13.6106917Z copying path '/nix/store/7f6amjb8sj237q13bkbl9yi18g8jvvym-wireshark-qt-4.2.8' from 'https://cache.nixos.org'... -2025-11-24T08:25:15.5435789Z copying path '/nix/store/7ic5w44dss0x88lx4r4c7k18z064jxc1-python3.11-ansible-core-2.16.5' from 'https://cache.nixos.org'... -2025-11-24T08:25:16.3205043Z copying path '/nix/store/yqjvmy66v82yc5zzp8nkrx6cc470nq5v-python3-3.11.10-env' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:16.7860581Z copying path '/nix/store/bbh6750da4dmnbizgwzh5q2g5z6njd81-wire-server-deploy' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:17.8498133Z copying path '/nix/store/4yxpbgsy6amj1ba860w52rhzqcvy2rw8-user-environment' from 'https://wire-server.cachix.org'... -2025-11-24T08:25:18.0951737Z ##[group]Run echo "UPLOAD_NAME=$GITHUB_SHA" >> $GITHUB_OUTPUT -2025-11-24T08:25:18.0952455Z echo "UPLOAD_NAME=$GITHUB_SHA" >> $GITHUB_OUTPUT -2025-11-24T08:25:18.1020099Z shell: /usr/bin/bash -e {0} -2025-11-24T08:25:18.1020858Z env: -2025-11-24T08:25:18.1021548Z TMPDIR: /home/runner/work/_temp -2025-11-24T08:25:18.1023261Z CACHIX_SIGNING_KEY: *** -2025-11-24T08:25:18.1024556Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf -2025-11-24T08:25:18.1026000Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ -2025-11-24T08:25:18.1026928Z ##[endgroup] -2025-11-24T08:25:18.1211315Z ##[group]Run ./offline/default-build/build.sh -2025-11-24T08:25:18.1211907Z ./offline/default-build/build.sh -2025-11-24T08:25:18.1265116Z shell: /usr/bin/bash -e {0} -2025-11-24T08:25:18.1265571Z env: -2025-11-24T08:25:18.1265968Z TMPDIR: /home/runner/work/_temp -2025-11-24T08:25:18.1266856Z CACHIX_SIGNING_KEY: *** -2025-11-24T08:25:18.1267965Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf -2025-11-24T08:25:18.1268826Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ -2025-11-24T08:25:18.1286688Z GPG_PRIVATE_KEY: *** -2025-11-24T08:25:18.1287394Z DOCKER_LOGIN: *** -2025-11-24T08:25:18.1287807Z ##[endgroup] -2025-11-24T08:25:18.1610231Z Pulling Helm charts in /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output -2025-11-24T08:25:18.1647085Z Excluding following charts from the release: [ -2025-11-24T08:25:18.1647647Z "inbucket", -2025-11-24T08:25:18.1648178Z "wire-server-enterprise", -2025-11-24T08:25:18.1648629Z "postgresql" -2025-11-24T08:25:18.1649077Z ] -2025-11-24T08:25:18.1653481Z Pulling charts into /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts ... -2025-11-24T08:25:18.1709587Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-11-24T08:25:18.1710725Z Dload Upload Total Spent Left Speed -2025-11-24T08:25:18.1711336Z -2025-11-24T08:25:18.2650063Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-11-24T08:25:18.2651292Z 100 15272 100 15272 0 0 158k 0 --:--:-- --:--:-- --:--:-- 158k -2025-11-24T08:25:18.2673609Z account-pages https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-webapp 0.9.0-pre.1 -2025-11-24T08:25:19.2625744Z "repo_1" has been added to your repositories -2025-11-24T08:25:19.3028477Z Hang tight while we grab the latest from your chart repositories... -2025-11-24T08:25:20.1951119Z ...Successfully got an update from the "repo_1" chart repository -2025-11-24T08:25:20.1952138Z Update Complete. ⎈Happy Helming!⎈ -2025-11-24T08:25:20.7166890Z sftd https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-avs 0.130.0 -2025-11-24T08:25:21.2197908Z "repo_2" has been added to your repositories -2025-11-24T08:25:21.2604661Z Hang tight while we grab the latest from your chart repositories... -2025-11-24T08:25:21.6793140Z ...Successfully got an update from the "repo_2" chart repository -2025-11-24T08:25:21.6794523Z Update Complete. ⎈Happy Helming!⎈ -2025-11-24T08:25:22.0801357Z wire-server https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:23.2505559Z "repo_3" has been added to your repositories -2025-11-24T08:25:23.2916854Z Hang tight while we grab the latest from your chart repositories... -2025-11-24T08:25:24.4272056Z ...Successfully got an update from the "repo_3" chart repository -2025-11-24T08:25:24.4273290Z Update Complete. ⎈Happy Helming!⎈ -2025-11-24T08:25:25.2639644Z redis-ephemeral https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:26.0898510Z redis-cluster https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:26.9406233Z rabbitmq https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:27.6516400Z rabbitmq-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:28.3356091Z databases-ephemeral https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:29.2010309Z fake-aws https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:29.9284798Z fake-aws-s3 https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:30.6045040Z fake-aws-sqs https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:31.3114386Z aws-ingress https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:31.9844110Z fluent-bit https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:32.6376065Z kibana https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:33.2806147Z backoffice https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:33.9102933Z calling-test https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:34.5526915Z demo-smtp https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:35.1965135Z elasticsearch-curator https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:35.8788926Z elasticsearch-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:36.5064130Z elasticsearch-ephemeral https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:37.1408629Z minio-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:37.8055396Z cassandra-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:38.4877329Z nginx-ingress-controller https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.18.0 -2025-11-24T08:25:39.1610117Z ingress-nginx-controller https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:39.8839479Z nginx-ingress-services https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:40.5007734Z reaper https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:41.1125422Z restund https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:41.7739959Z coturn https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 4.6.2-federation-wireapp.43 -2025-11-24T08:25:42.4285482Z k8ssandra-test-cluster https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:43.1123786Z webapp https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-webapp 0.8.0-pre.1876 -2025-11-24T08:25:43.5743479Z team-settings https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-webapp 0.11.0 -2025-11-24T08:25:44.0487881Z ldap-scim-bridge https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 5.23.0 -2025-11-24T08:25:44.6814495Z smallstep-accomp https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 6.0.11 -2025-11-24T08:25:45.4130171Z k8ssandra-operator https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 1.16.0 -2025-11-24T08:25:46.3988220Z openebs https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 3.10.0 -2025-11-24T08:25:47.5566595Z keycloakx https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 2.3.0 -2025-11-24T08:25:48.2174198Z step-certificates https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 1.25.0 -2025-11-24T08:25:48.9400883Z cert-manager https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 1.16.3 -2025-11-24T08:25:49.8849806Z kube-prometheus-stack https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 0.1.5 -2025-11-24T08:25:51.0196537Z migrate-features https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 0.1.0 -2025-11-24T08:25:51.6379515Z smtp https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 1.0.4 -2025-11-24T08:25:52.2711436Z wire-utility https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 0.1.2 -2025-11-24T08:25:52.8997161Z postgresql-external https://s3-eu-west-1.amazonaws.com/public.wire.com/charts 0.0.44 -2025-11-24T08:25:53.5208966Z Pulling charts done. -2025-11-24T08:25:53.5334494Z + VALUES_DIR= -2025-11-24T08:25:53.5335250Z + HELM_VALUES_EXCLUDE_LIST= -2025-11-24T08:25:53.5336030Z + VALUES_TYPE=prod -2025-11-24T08:25:53.5336738Z + for arg in "$@" -2025-11-24T08:25:53.5337405Z + case $arg in -2025-11-24T08:25:53.5338479Z + VALUES_DIR=/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values -2025-11-24T08:25:53.5339645Z + for arg in "$@" -2025-11-24T08:25:53.5340283Z + case $arg in -2025-11-24T08:25:53.5340954Z + HELM_VALUES_EXCLUDE_LIST=postgresql -2025-11-24T08:25:53.5341632Z + for arg in "$@" -2025-11-24T08:25:53.5342045Z + case $arg in -2025-11-24T08:25:53.5342474Z + VALUES_TYPE=prod -2025-11-24T08:25:53.5343928Z + [[ -z /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values ]] -2025-11-24T08:25:53.5345104Z + echo 'Running pre-clean values process script 1 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values ...' -2025-11-24T08:25:53.5345957Z + IFS=, -2025-11-24T08:25:53.5346343Z + read -r -a EXCLUDE_ARRAY -2025-11-24T08:25:53.5346935Z + for CHART in "${EXCLUDE_ARRAY[@]}" -2025-11-24T08:25:53.5347694Z + CHART_DIR=/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql -2025-11-24T08:25:53.5348685Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql ]] -2025-11-24T08:25:53.5349744Z + echo 'Removing values directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql' -2025-11-24T08:25:53.5350809Z + rm -rf /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql -2025-11-24T08:25:53.5352359Z Running pre-clean values process script 1 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values ... -2025-11-24T08:25:53.5353978Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5355131Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages ]] -2025-11-24T08:25:53.5356217Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages' -2025-11-24T08:25:53.5357449Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5358660Z Removing values directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql -2025-11-24T08:25:53.5359769Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages -2025-11-24T08:25:53.5376096Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/account-pages/demo-values.example.yaml' -2025-11-24T08:25:53.5378935Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5380137Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress ]] -2025-11-24T08:25:53.5381957Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress' -2025-11-24T08:25:53.5383558Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5384824Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress -2025-11-24T08:25:53.5401351Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/aws-ingress/demo-values.example.yaml' -2025-11-24T08:25:53.5404515Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5405789Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cassandra-external ]] -2025-11-24T08:25:53.5406946Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cassandra-external' -2025-11-24T08:25:53.5408283Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cassandra-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5409565Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cassandra-external -2025-11-24T08:25:53.5418668Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5419773Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager ]] -2025-11-24T08:25:53.5421134Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager' -2025-11-24T08:25:53.5422388Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5423911Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager -2025-11-24T08:25:53.5441899Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/cert-manager/demo-values.example.yaml' -2025-11-24T08:25:53.5444927Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5446023Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn ]] -2025-11-24T08:25:53.5447713Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn' -2025-11-24T08:25:53.5449613Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5450986Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn -2025-11-24T08:25:53.5467840Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/coturn/demo-values.example.yaml' -2025-11-24T08:25:53.5470762Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5471940Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral ]] -2025-11-24T08:25:53.5473403Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral' -2025-11-24T08:25:53.5474751Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5476077Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral -2025-11-24T08:25:53.5492855Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/databases-ephemeral/demo-values.example.yaml' -2025-11-24T08:25:53.5496326Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5497533Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/elasticsearch-external ]] -2025-11-24T08:25:53.5498740Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/elasticsearch-external' -2025-11-24T08:25:53.5500094Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/elasticsearch-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5501423Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/elasticsearch-external -2025-11-24T08:25:53.5510011Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5511139Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws ]] -2025-11-24T08:25:53.5512194Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws' -2025-11-24T08:25:53.5513587Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5514768Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws -2025-11-24T08:25:53.5532563Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fake-aws/demo-values.example.yaml' -2025-11-24T08:25:53.5538217Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5539495Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fluent-bit ]] -2025-11-24T08:25:53.5541010Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fluent-bit' -2025-11-24T08:25:53.5542378Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fluent-bit -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5544465Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/fluent-bit -2025-11-24T08:25:53.5552298Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5553794Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller ]] -2025-11-24T08:25:53.5555418Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller' -2025-11-24T08:25:53.5556856Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5558213Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller -2025-11-24T08:25:53.5576691Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller/demo-values.example.yaml' -2025-11-24T08:25:53.5589258Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ingress-nginx-controller/hetzner-ci.example.yaml' -2025-11-24T08:25:53.5592351Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5593833Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-operator ]] -2025-11-24T08:25:53.5595692Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-operator' -2025-11-24T08:25:53.5597830Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-operator -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5599930Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-operator -2025-11-24T08:25:53.5661126Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5662475Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-test-cluster ]] -2025-11-24T08:25:53.5664817Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-test-cluster' -2025-11-24T08:25:53.5667273Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-test-cluster -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5668960Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5670158Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/keycloakx ]] -2025-11-24T08:25:53.5672022Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/keycloakx' -2025-11-24T08:25:53.5674478Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/keycloakx -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5676065Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5677404Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/kube-prometheus-stack ]] -2025-11-24T08:25:53.5679012Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/kube-prometheus-stack' -2025-11-24T08:25:53.5681462Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/kube-prometheus-stack -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5683298Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5684119Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge ]] -2025-11-24T08:25:53.5685271Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge' -2025-11-24T08:25:53.5686761Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5687699Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5688432Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/minio-external ]] -2025-11-24T08:25:53.5689537Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/minio-external' -2025-11-24T08:25:53.5690800Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/minio-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5692066Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/k8ssandra-test-cluster -2025-11-24T08:25:53.5693501Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/keycloakx -2025-11-24T08:25:53.5694645Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/kube-prometheus-stack -2025-11-24T08:25:53.5695960Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge -2025-11-24T08:25:53.5697711Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/ldap-scim-bridge/values-prod.example.yaml' -2025-11-24T08:25:53.5698911Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/minio-external -2025-11-24T08:25:53.5699710Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5700460Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services ]] -2025-11-24T08:25:53.5701612Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services' -2025-11-24T08:25:53.5703197Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5704500Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services -2025-11-24T08:25:53.5720286Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services/demo-values.example.yaml' -2025-11-24T08:25:53.5731920Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/nginx-ingress-services/demo-secrets.example.yaml' -2025-11-24T08:25:53.5734961Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5736169Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external ]] -2025-11-24T08:25:53.5737495Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external' -2025-11-24T08:25:53.5738833Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5740135Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external -2025-11-24T08:25:53.5760235Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/postgresql-external/demo-values.example.yaml' -2025-11-24T08:25:53.5761693Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5763045Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq ]] -2025-11-24T08:25:53.5764550Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq' -2025-11-24T08:25:53.5765851Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5767071Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq -2025-11-24T08:25:53.5784972Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq/demo-values.example.yaml' -2025-11-24T08:25:53.5796178Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq/demo-secrets.example.yaml' -2025-11-24T08:25:53.5798866Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5800036Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq-external ]] -2025-11-24T08:25:53.5801391Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq-external' -2025-11-24T08:25:53.5802901Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq-external -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5804212Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/rabbitmq-external -2025-11-24T08:25:53.5812569Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5813855Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper ]] -2025-11-24T08:25:53.5815031Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper' -2025-11-24T08:25:53.5816253Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5817431Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper -2025-11-24T08:25:53.5835318Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/reaper/demo-values.example.yaml' -2025-11-24T08:25:53.5838103Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5839254Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/redis-ephemeral ]] -2025-11-24T08:25:53.5840549Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/redis-ephemeral' -2025-11-24T08:25:53.5841849Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/redis-ephemeral -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5843350Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/redis-ephemeral -2025-11-24T08:25:53.5851694Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5853077Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/restund ]] -2025-11-24T08:25:53.5854294Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/restund' -2025-11-24T08:25:53.5855512Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/restund -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5856935Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/restund -2025-11-24T08:25:53.5866475Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5867621Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd -2025-11-24T08:25:53.5868842Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd ]] -2025-11-24T08:25:53.5870111Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd' -2025-11-24T08:25:53.5871291Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5889248Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/sftd/demo-values.example.yaml' -2025-11-24T08:25:53.5892324Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5893682Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp ]] -2025-11-24T08:25:53.5894985Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp' -2025-11-24T08:25:53.5896309Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5897586Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp -2025-11-24T08:25:53.5915794Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smallstep-accomp/demo-values.example.yaml' -2025-11-24T08:25:53.5918697Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5919807Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp ]] -2025-11-24T08:25:53.5921002Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp' -2025-11-24T08:25:53.5922212Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5923651Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp -2025-11-24T08:25:53.5941350Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/smtp/demo-values.example.yaml' -2025-11-24T08:25:53.5945236Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5946403Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates ]] -2025-11-24T08:25:53.5947728Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates' -2025-11-24T08:25:53.5949066Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5950341Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates -2025-11-24T08:25:53.5968092Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/step-certificates/demo-values.example.yaml' -2025-11-24T08:25:53.5970856Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.5972027Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings ]] -2025-11-24T08:25:53.5973479Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings' -2025-11-24T08:25:53.5974970Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.5976219Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings -2025-11-24T08:25:53.5993874Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings/demo-values.example.yaml' -2025-11-24T08:25:53.6006546Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/team-settings/demo-secrets.example.yaml' -2025-11-24T08:25:53.6008024Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.6009179Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp ]] -2025-11-24T08:25:53.6010511Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp' -2025-11-24T08:25:53.6011755Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.6013178Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp -2025-11-24T08:25:53.6029985Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/webapp/demo-values.example.yaml' -2025-11-24T08:25:53.6033987Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.6035117Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server ]] -2025-11-24T08:25:53.6036381Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server' -2025-11-24T08:25:53.6037644Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.6038902Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server -2025-11-24T08:25:53.6055795Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server/demo-values.example.yaml' -2025-11-24T08:25:53.6067415Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server/demo-secrets.example.yaml' -2025-11-24T08:25:53.6071116Z + for DIR in "$VALUES_DIR"/* -2025-11-24T08:25:53.6072249Z + [[ -d /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-utility ]] -2025-11-24T08:25:53.6073796Z + echo 'Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-utility' -2025-11-24T08:25:53.6075096Z + find /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-utility -type f '!' -name 'prod*' -exec rm -v '{}' ';' -2025-11-24T08:25:53.6076343Z Processing directory: /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-utility -2025-11-24T08:25:53.6110112Z + OUTPUT_DIR= -2025-11-24T08:25:53.6110768Z + VALUES_TYPE=prod -2025-11-24T08:25:53.6111430Z + for arg in "$@" -2025-11-24T08:25:53.6112064Z + case $arg in -2025-11-24T08:25:53.6113179Z + OUTPUT_DIR=/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output -2025-11-24T08:25:53.6114257Z + [[ -z /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ]] -2025-11-24T08:25:53.6115358Z + echo 'Running pre-chart process script 0 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output with values type prod' -2025-11-24T08:25:53.6116597Z Running pre-chart process script 0 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output with values type prod -2025-11-24T08:25:53.6118155Z + sed -i -Ee 's/federation: false/federation: true/' /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/values/wire-server/prod-values.example.yaml -2025-11-24T08:25:53.6139060Z + sed -i -Ee 's/useSharedFederatorSecret: false/useSharedFederatorSecret: true/' /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/wire-server/charts/federator/values.yaml -2025-11-24T08:25:53.6163956Z + rm -v /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/step-certificates/charts/step-certificates/templates/tests/test-connection.yaml -2025-11-24T08:25:53.6173973Z removed '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/step-certificates/charts/step-certificates/templates/tests/test-connection.yaml' -2025-11-24T08:25:53.6201138Z Processing Helm charts in /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output with VALUES_TYPE=prod -2025-11-24T08:25:53.6202067Z Excluding images matching the pattern: .^ -2025-11-24T08:25:53.6259959Z [1] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/account-pages… -2025-11-24T08:25:53.7022993Z [2] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/aws-ingress… -2025-11-24T08:25:53.7563728Z [3] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/backoffice… -2025-11-24T08:25:53.8331638Z [4] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/calling-test… -2025-11-24T08:25:53.9127832Z [5] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/cassandra-external… -2025-11-24T08:25:53.9674045Z [6] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/cert-manager… -2025-11-24T08:25:54.1998958Z [7] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/coturn… -2025-11-24T08:25:54.2793335Z [8] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/databases-ephemeral… -2025-11-24T08:25:54.3995054Z [9] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/demo-smtp… -2025-11-24T08:25:54.4759203Z [10] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/elasticsearch-curator… -2025-11-24T08:25:54.5548816Z [11] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/elasticsearch-ephemeral… -2025-11-24T08:25:54.6311495Z [12] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/elasticsearch-external… -2025-11-24T08:25:54.6855760Z [13] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/fake-aws… -2025-11-24T08:25:54.7677249Z [14] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/fake-aws-s3… -2025-11-24T08:25:54.8596472Z [15] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/fake-aws-sqs… -2025-11-24T08:25:54.9411466Z [16] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/fluent-bit… -2025-11-24T08:25:55.0062259Z Container busybox:latest with a latest tag found. Fix this chart. not compatible with offline. Components need explicit tags for that -2025-11-24T08:25:55.0270524Z [17] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/ingress-nginx-controller… -2025-11-24T08:25:55.1303711Z [18] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/k8ssandra-operator… -2025-11-24T08:25:55.2345695Z [19] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/k8ssandra-test-cluster… -2025-11-24T08:25:55.3154324Z [20] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/keycloakx… -2025-11-24T08:25:55.4044660Z [21] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/kibana… -2025-11-24T08:25:55.4858873Z [22] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/kube-prometheus-stack… -2025-11-24T08:25:55.7033492Z [23] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/ldap-scim-bridge… -2025-11-24T08:25:55.7837476Z [24] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/migrate-features… -2025-11-24T08:25:55.8625547Z [25] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/minio-external… -2025-11-24T08:25:55.9200719Z [26] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/nginx-ingress-controller… -2025-11-24T08:25:56.0075501Z [27] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/nginx-ingress-services… -2025-11-24T08:25:56.0645624Z [28] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/openebs… -2025-11-24T08:25:56.1996336Z [29] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/postgresql-external… -2025-11-24T08:25:56.2781799Z [30] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/rabbitmq… -2025-11-24T08:25:56.3839612Z [31] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/rabbitmq-external… -2025-11-24T08:25:56.4381457Z [32] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/reaper… -2025-11-24T08:25:56.5158989Z [33] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/redis-cluster… -2025-11-24T08:25:56.6206714Z [34] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/redis-ephemeral… -2025-11-24T08:25:56.7377239Z [35] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/restund… -2025-11-24T08:25:56.8186787Z [36] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/sftd… -2025-11-24T08:25:56.9027737Z [37] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/smallstep-accomp… -2025-11-24T08:25:57.3473666Z [38] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/smtp… -2025-11-24T08:25:57.4277055Z [39] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/step-certificates… -2025-11-24T08:25:57.4918539Z Container busybox:latest with a latest tag found. Fix this chart. not compatible with offline. Components need explicit tags for that -2025-11-24T08:25:57.5136096Z [40] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/team-settings… -2025-11-24T08:25:57.5931751Z [41] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/webapp… -2025-11-24T08:25:57.6724737Z [42] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/wire-server… -2025-11-24T08:25:57.8561133Z [43] Running helm template on chart /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/charts/wire-utility… -2025-11-24T08:25:57.9557739Z Fetching alpine_3.21.3… -2025-11-24T08:25:58.3903432Z Getting image source signatures -2025-11-24T08:25:58.3905190Z Copying blob sha256:f18232174bc91741fdf3da96d85011092101a032a93a388b79e99e69c2d5c870 -2025-11-24T08:25:58.5427481Z Copying config sha256:aded1e1a5b3705116fa0a92ba074a5e0b0031647d9c315983ccba2ee5428ec8b -2025-11-24T08:25:58.5879369Z Writing manifest to image destination -2025-11-24T08:25:58.6117378Z Fetching bitnamilegacy_kubectl_1.29.11… -2025-11-24T08:25:58.9521915Z Getting image source signatures -2025-11-24T08:25:58.9523273Z Copying blob sha256:7cda2918fa74ddd83c6737412dfb50e2c90a0c2634b980af04c624f04d2eb1d2 -2025-11-24T08:26:01.2584081Z Copying config sha256:720de1036a827bc8183821b91f2866c0ea47cbe3bc4fb87ed2fb187b07695e14 -2025-11-24T08:26:01.5275582Z Writing manifest to image destination -2025-11-24T08:26:01.5572341Z Fetching busybox_1.36.1… -2025-11-24T08:26:01.9178399Z Getting image source signatures -2025-11-24T08:26:01.9179728Z Copying blob sha256:91347574b77ee0e381e6518794e0a81e1b6eba076c13896f69518cca1c1214a4 -2025-11-24T08:26:02.0291115Z Copying config sha256:f0fd628b15e8cf167f7d467e031c1a15193d7db6e75c61b4fe9965d88e461a4a -2025-11-24T08:26:02.0889365Z Writing manifest to image destination -2025-11-24T08:26:02.1198692Z Fetching cassandra_3.11… -2025-11-24T08:26:02.4552905Z Getting image source signatures -2025-11-24T08:26:02.4554238Z Copying blob sha256:7e49dc6156b0b532730614d83a65ae5e7ce61e966b0498703d333b4d03505e4f -2025-11-24T08:26:03.1183237Z Copying blob sha256:7e27b670a0f5423b1022e278f7a378f8f36d0cf41ecab6025d51111829df44f9 -2025-11-24T08:26:03.4806875Z Copying blob sha256:5d42da29b2619c195f2d196f0bc64cf7347c4ac72d8618648296410ba20c837a -2025-11-24T08:26:04.3271801Z Copying blob sha256:fa94125d190e370b5bc6035d26b8d573a9f94fb5489af0d5b4e898ac6a7523eb -2025-11-24T08:26:04.3771538Z Copying blob sha256:c53675a133c6bc8e493090499c6df5a23837a682556eaf29bce46837a8957367 -2025-11-24T08:26:04.4301368Z Copying blob sha256:0497a703e222c5835fe08749190d55fac6103c9a062d4ae0818259e79882643b -2025-11-24T08:26:04.4937893Z Copying blob sha256:5a2e2c2fe7e2c5607f25cc84e204445eb3d224305d3fb76ae1286acfcab6e189 -2025-11-24T08:26:04.7507853Z Copying blob sha256:bf175d9fcc0a3d8bf4e3952b633982ac2c1d4dc6e4100caa857d004f6784244d -2025-11-24T08:26:04.8198325Z Copying blob sha256:9aca2daeac752ebefeeaddcfbf331a2241192ce2a19818f54860c070c0e3a9d4 -2025-11-24T08:26:05.3004789Z Copying blob sha256:c39795272d2d1ebd5bee6120232036b38678e4dc1bcab29725f54d27da2e8134 -2025-11-24T08:26:05.3580698Z Copying blob sha256:c5ca755942a51ad9179e4389f80e0918e98f87870551102c7a103d92548bd702 -2025-11-24T08:26:05.4158730Z Copying config sha256:597351c0039f440d0e27e80405d6290131a51535c5da3a7af6d5a4da243c99d6 -2025-11-24T08:26:05.4727725Z Writing manifest to image destination -2025-11-24T08:26:05.5036608Z Fetching cr.fluentbit.io_fluent_fluent-bit_3.0.2… -2025-11-24T08:26:06.5719862Z Getting image source signatures -2025-11-24T08:26:06.5721745Z Copying blob sha256:16100daf795a61c7588657ad2b6afc6eef7300de0c874b6c3d4def1796e28081 -2025-11-24T08:26:06.9044740Z Copying blob sha256:e33bce57de289fffd2380f73997dfb7e1ec193877904bed99f28c715d071fdc4 -2025-11-24T08:26:07.1937990Z Copying blob sha256:473d8557b1b27974f7dc7c4b4e1a209df0e27e8cae1e3e33b7bb45c969b6fc7e -2025-11-24T08:26:07.4705928Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 -2025-11-24T08:26:07.7286918Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:26:07.8025225Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 -2025-11-24T08:26:08.0539958Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:26:08.1268658Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 -2025-11-24T08:26:08.3951082Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:26:08.4699370Z Copying blob sha256:9ef7d74bdfdf3c517b28bd694a9159e94e5f53ff1ca87b39f8ca1ac0be2ed317 -2025-11-24T08:26:08.7820896Z Copying blob sha256:9112d77ee5b16873acaa186b816c3c61f5f8eba40730e729e9614a27f40211e0 -2025-11-24T08:26:09.2598281Z Copying blob sha256:59e6e6563fee04c9590afd06f4a732b9af37f4804248e5ee49305b6e268de8e5 -2025-11-24T08:26:09.6129057Z Copying blob sha256:a4ba90834fb4abf3d80bbdaaaef36560ab1bb682f5279d44114d768e119639b9 -2025-11-24T08:26:10.2306162Z Copying blob sha256:df368711b36276ed02b2040d3e3296b919042d2a05a2bbe9f758e708436c12cf -2025-11-24T08:26:10.5096033Z Copying blob sha256:e89169bec965f3b73bc8a6cf650d362a1da8ae571c5fdccccf7bab8194c03c47 -2025-11-24T08:26:10.7698702Z Copying blob sha256:7f3501c931c2f262add9c59a46b7469c09f862cfcdb005d9187bc4f8f9964724 -2025-11-24T08:26:11.2828384Z Copying blob sha256:88934a1bc18c35762f0009512e7a775aec9e1d9531a1781a0caf81013a67ab94 -2025-11-24T08:26:11.6020178Z Copying blob sha256:58572de96fcfaaee0ae5de3eec19d639d2235ba1d9294363238f44adf064929f -2025-11-24T08:26:11.9908295Z Copying blob sha256:136d0d682b34896578ad59bd6f18682a29ec76383ab57c239caddbc49616776d -2025-11-24T08:26:12.2567436Z Copying blob sha256:0b7bc45542fdcee1616faf51049bf40072b939e60d051930ad667c6af6ed0e81 -2025-11-24T08:26:12.9538580Z Copying config sha256:2007231667469ee1d653bdad65e55cc5f300985f10d7c4dffd6de0a5e76ff078 -2025-11-24T08:26:13.1946374Z Writing manifest to image destination -2025-11-24T08:26:13.2254439Z Fetching cr.k8ssandra.io_k8ssandra_cass-operator_v1.20.0… -2025-11-24T08:26:14.1966917Z Getting image source signatures -2025-11-24T08:26:14.1968349Z Copying blob sha256:0e019b285e0d2979b67152f7e92e6947d6189d4998135c97b6dbd8f598bbc0de -2025-11-24T08:26:14.7035783Z Copying blob sha256:a663d2d273ec4687ef18297a5e0d4d692c7ebce1b270fad0f2e6ed7eb44b8182 -2025-11-24T08:26:15.3517797Z Copying blob sha256:51b19c842600e464b904132a1081bff8006089f2b2d368005ea2e8f76d18d64b -2025-11-24T08:26:15.6408655Z Copying config sha256:f182609c58ab319c4174989d065f00c3d97adfecb9446eac6bf62851434897b8 -2025-11-24T08:26:15.9196372Z Writing manifest to image destination -2025-11-24T08:26:15.9491062Z Fetching cr.k8ssandra.io_k8ssandra_k8ssandra-operator_v1.16.0… -2025-11-24T08:26:16.9391356Z Getting image source signatures -2025-11-24T08:26:16.9398216Z Copying blob sha256:b2ce0e0660777651a7a188ae1128acc61d01aca10a035a8b1faa2cdd8bbf0785 -2025-11-24T08:26:17.2671402Z Copying blob sha256:e8d9a567199d7a318c875f2558a679ba8a924f817afacbb428afc3ffe6be6828 -2025-11-24T08:26:17.5523461Z Copying blob sha256:058cf3d8c2ba04ad7c064698c08c5e886a8623c0ad6171b8d72684253534417d -2025-11-24T08:26:17.8496370Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 -2025-11-24T08:26:17.9632990Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:26:18.0656648Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 -2025-11-24T08:26:18.1699148Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:26:18.2716702Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 -2025-11-24T08:26:18.3896203Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:26:18.4970065Z Copying blob sha256:da7816fa955ea24533c388143c78804c28682eef99b4ee3723b548c70148bba6 -2025-11-24T08:26:18.6069180Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 -2025-11-24T08:26:18.7160298Z Copying blob sha256:0b129597b2c75ebfb842ecfea418a800b9cc429bd4014186b2cd6c9d6f007c4a -2025-11-24T08:26:19.4705520Z Copying config sha256:20bb222dbc5a192918c8f3b80602723c515e56b5e5eb934e3d2332fb4e94c441 -2025-11-24T08:26:19.7585096Z Writing manifest to image destination -2025-11-24T08:26:19.7894609Z Fetching cr.step.sm_smallstep_step-ca_0.25.3-rc7… -2025-11-24T08:26:20.6669950Z Getting image source signatures -2025-11-24T08:26:20.6671098Z Copying blob sha256:661ff4d9561e3fd050929ee5097067c34bafc523ee60f5294a37fd08056a73ca -2025-11-24T08:26:20.8835285Z Copying blob sha256:07a3a0958d5d81b355b10f8c25552c8952c39cd316893543e623fde24bbeea43 -2025-11-24T08:26:21.1137157Z Copying blob sha256:99a3a7f5703a9e1557fb46b4f1ae4225a08adc6445b76226a35edb10ed9a1cbb -2025-11-24T08:26:21.4527612Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:26:21.5266217Z Copying blob sha256:859dd081a6c374b7e2d4e3bd0afe062900e14309518289cbc24778884205eb15 -2025-11-24T08:26:21.8968633Z Copying blob sha256:db045f559b870377e8a93251efcac16a3eef0f7dbf839f65ed1d8e2e02dd6d04 -2025-11-24T08:26:22.1513628Z Copying blob sha256:948a5b50a06b2b08ac0da063b2599f9f1d213d8ec88d6f775efada004de858e4 -2025-11-24T08:26:22.2390157Z Copying config sha256:b2c26b6e463243926e3000e7b762e9570f411047d18c2e16b4368adb89246609 -2025-11-24T08:26:22.3174233Z Writing manifest to image destination -2025-11-24T08:26:22.3476436Z Fetching docker.elastic.co_kibana_kibana_6.8.18… -2025-11-24T08:26:22.8130990Z Getting image source signatures -2025-11-24T08:26:22.8132327Z Copying blob sha256:a4f595742a5b0a76289f5927f75d63ef61a88d2ff5aaad78eed16e50c925cc5d -2025-11-24T08:26:24.6132332Z Copying blob sha256:eb1001476f095f78a906ef1139e2bce0d5991b1416a7efee0a2e171cac7695c2 -2025-11-24T08:26:25.9906820Z Copying blob sha256:b6c14b25d595fc327287506c32c78afd16cb6a39d2e5656c87a9cf19c88654f8 -2025-11-24T08:26:29.3046514Z Copying blob sha256:c7c6a72f6bc97aa43144aa0a96e13dca84edab258f02ba0c8b358ce622dba3e3 -2025-11-24T08:26:29.5296932Z Copying blob sha256:cf57274b688f4d7d012d97d4a491c8dbbb4bf258afa6fc3bd8ad26733293cdd7 -2025-11-24T08:26:29.7792537Z Copying blob sha256:a316b3c3f6a3e00c52b606cec84cbdfe29305cd695a041cee320f4516dfd8441 -2025-11-24T08:26:30.0925751Z Copying blob sha256:fe40aba787d10dee58a1a826c957a1eb273183482420de1b8d74895a34d93f92 -2025-11-24T08:26:30.2990791Z Copying blob sha256:4414599d74c88a81757677488f9da8e96847a73a9169beb02b7d04649d241ebb -2025-11-24T08:26:30.5194118Z Copying config sha256:2728cb7ee745241970ac8d99d09c8df96468eb75b0378e99ddb94dcaff80298d -2025-11-24T08:26:30.7204947Z Writing manifest to image destination -2025-11-24T08:26:30.7529374Z Fetching docker.io_bitnamilegacy_kubectl_1.32.4… -2025-11-24T08:26:31.0839099Z Getting image source signatures -2025-11-24T08:26:31.0840516Z Copying blob sha256:e0d839ace7d2fb1953be96b2dd468fba713e781df4769d2f287dc0320fc214a9 -2025-11-24T08:26:33.4981193Z Copying config sha256:dde77b5346a7a6fc0f049f78b91c470c7267bc2e41ef0eaf07fcee7fc67d158d -2025-11-24T08:26:33.5507368Z Writing manifest to image destination -2025-11-24T08:26:33.5812383Z Fetching docker.io_bitnamilegacy_nginx_1.27.3-debian-12-r5… -2025-11-24T08:26:33.9655660Z Getting image source signatures -2025-11-24T08:26:33.9656825Z Copying blob sha256:71bd7d98fb50b9b615d8ff4b064430085d0d0d7c99c0b28ca4b568741a6101d9 -2025-11-24T08:26:35.5955364Z Copying config sha256:f5c585c24508977ff8290cb471e12f9c4ffdfdb94f0bfd4f739f9a76d71c3dd0 -2025-11-24T08:26:35.7607354Z Writing manifest to image destination -2025-11-24T08:26:35.7905660Z Fetching docker.io_bitnamilegacy_nginx_1.27.3-debian-12-r5@sha256_c02e18884badbd9482fd731668f75a3033124c748bc709651fb06062d0ab38c1… -2025-11-24T08:26:36.1195551Z Getting image source signatures -2025-11-24T08:26:36.1197305Z Copying blob sha256:71bd7d98fb50b9b615d8ff4b064430085d0d0d7c99c0b28ca4b568741a6101d9 -2025-11-24T08:26:37.4905117Z Copying config sha256:f5c585c24508977ff8290cb471e12f9c4ffdfdb94f0bfd4f739f9a76d71c3dd0 -2025-11-24T08:26:37.5345185Z Writing manifest to image destination -2025-11-24T08:26:37.5650469Z Fetching docker.io_bitnamilegacy_rabbitmq_3.13.7-debian-12-r2… -2025-11-24T08:26:37.9467036Z Getting image source signatures -2025-11-24T08:26:37.9474839Z Copying blob sha256:5dc9d5c1c8a4502783597c6c5759105050380aa7eda5aad093cd6d60dc75d49d -2025-11-24T08:26:40.2964671Z Copying config sha256:a92343dfda71333294dcca9ed52237fea2446d89ea1da1899082e34d84479558 -2025-11-24T08:26:40.3454609Z Writing manifest to image destination -2025-11-24T08:26:40.3742440Z Fetching docker.io_bitnamilegacy_redis-cluster_6.2.7-debian-11-r9… -2025-11-24T08:26:40.6926203Z Getting image source signatures -2025-11-24T08:26:40.6927983Z Copying blob sha256:f772582a4b9e96f3bb800fc0644838bbd66f1413da84aca4bdb210cae66e1a7b -2025-11-24T08:26:41.3896214Z Copying blob sha256:348ec0934a15ba2476014721a2a78164128f44e90c496183aec967bb8c1234ed -2025-11-24T08:26:41.5820747Z Copying blob sha256:6383e8d5b0583137b07f19bfbae8e14dc1947380bdab83892eb3f02f66ec1a95 -2025-11-24T08:26:41.9007557Z Copying blob sha256:29047bba0e3e28e179f20747b4f372aa66e33d476692c2f133816d1ab071e970 -2025-11-24T08:26:42.1295793Z Copying blob sha256:6200e0b2585897b18e2be16082990e9d34df1beea195af537afb3d023f252cac -2025-11-24T08:26:42.3244748Z Copying blob sha256:ba296674b64c73fb5e5037045138ec1ff726f1630596c7aac420a3827a909f19 -2025-11-24T08:26:42.3833225Z Copying blob sha256:ba8bb427e26753a2177caa9a32ba96d99601b6fce55d962fda16bd597b86673f -2025-11-24T08:26:42.5865257Z Copying blob sha256:d494366f0ae375e9b60893458eda17d2c7624123ff004c18ff550745621a5f61 -2025-11-24T08:26:42.8896598Z Copying blob sha256:7dbe76ae31ce3a36bd32ef1cc4e8d37d0a275858523f422d2eb22d5548b80691 -2025-11-24T08:26:43.1507884Z Copying config sha256:45ee465d17439ec3c2ed3ba65b149e189943e75fb5d6b82b15413b09c28ddf4a -2025-11-24T08:26:43.3559774Z Writing manifest to image destination -2025-11-24T08:26:43.3859845Z Fetching docker.io_bitnamilegacy_redis_7.2.5… -2025-11-24T08:26:43.7258863Z Getting image source signatures -2025-11-24T08:26:43.7260146Z Copying blob sha256:656a19fb2de8787c82600cf5816e7495815fc8339fecef18a5e5b7ee3f7e9a0b -2025-11-24T08:26:44.7960773Z Copying config sha256:3d7539dd4cb6005992aca4624a48d91da5e2bb468948963625c58996019175a6 -2025-11-24T08:26:44.8447371Z Writing manifest to image destination -2025-11-24T08:26:44.8745349Z Fetching docker.io_k8ssandra_k8ssandra-tools_1.6.0-20240328143453-c6f39dad… -2025-11-24T08:26:45.2895027Z Getting image source signatures -2025-11-24T08:26:45.2896245Z Copying blob sha256:6b16ad2aede1c00fe5f9765419c2165fd72902e768db3126ee68d127cae394ea -2025-11-24T08:26:45.5996402Z Copying blob sha256:fe5ca62666f04366c8e7f605aa82997d71320183e99962fa76b3209fdfbb8b58 -2025-11-24T08:26:45.6512305Z Copying blob sha256:be1681d2fb7c6bc072dddd952d4fa0428a3a3c60b53cdde852e30aaa86f7e1ab -2025-11-24T08:26:45.7165836Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 -2025-11-24T08:26:45.7648906Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:26:45.8094990Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 -2025-11-24T08:26:45.8587015Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:26:45.9054344Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 -2025-11-24T08:26:45.9604960Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:26:46.0102559Z Copying blob sha256:9ef7d74bdfdf3c517b28bd694a9159e94e5f53ff1ca87b39f8ca1ac0be2ed317 -2025-11-24T08:26:46.0644454Z Copying blob sha256:9112d77ee5b16873acaa186b816c3c61f5f8eba40730e729e9614a27f40211e0 -2025-11-24T08:26:46.1173521Z Copying blob sha256:c706efbd1040f48e91d2729c37aaa5c2fa1267ce6697781e9ce6923d54080127 -2025-11-24T08:26:46.7203965Z Copying blob sha256:1a4947865d97957b4da182b9c3f9191fd87ac11344143606ae9230f14c66eeac -2025-11-24T08:26:46.9630607Z Copying config sha256:e0ae82d79209430dd0c65142ce22de37b25072309230a1dce02f33beea105314 -2025-11-24T08:26:47.1622854Z Writing manifest to image destination -2025-11-24T08:26:47.1919555Z Fetching elasticsearch_6.8.23… -2025-11-24T08:26:47.5246952Z Getting image source signatures -2025-11-24T08:26:47.5248391Z Copying blob sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc -2025-11-24T08:26:49.3939812Z Copying blob sha256:52d2262411d0f2af035c2e0f0c62814960b3e7d77eecab02eba9f97819d00d2e -2025-11-24T08:26:52.6485481Z Copying blob sha256:affa3bfe04943870deba40892398c3fc9d08da9825ea7953984632c74e4994bd -2025-11-24T08:26:53.8344948Z Copying blob sha256:f2e780d91c9f56dc0a05ae8916a4e8d6738cf94ed5cf924534d41236da5fb38f -2025-11-24T08:26:53.8895909Z Copying blob sha256:2471af457050139c5057c781433abadb769786df91ecbe6ed2a59b5f85e50369 -2025-11-24T08:26:56.2628574Z Copying blob sha256:ca890dfc68d05cdbdd9a7f528fbe8707c05d71e8c0c985307da6797ad204eb49 -2025-11-24T08:26:56.3138021Z Copying blob sha256:cd85b0b895822b5794063d98df42deeb3f0110f505b79fff7abc26f54f70a9c5 -2025-11-24T08:26:56.3628358Z Copying config sha256:9a2652c5f453b2f21ac32f841a6ed1897097741d69a1a4cc1947f58fae0d04b4 -2025-11-24T08:26:56.4092155Z Writing manifest to image destination -2025-11-24T08:26:56.4383723Z Fetching k8s.gcr.io_defaultbackend-amd64_1.5… -2025-11-24T08:26:56.7988656Z Getting image source signatures -2025-11-24T08:26:56.7989795Z Copying blob sha256:65f4220de95d2e3d12484679abe7bb33323b1fd3ef681d878f1d2bc5abc8ee06 -2025-11-24T08:26:57.0577871Z Copying config sha256:b5af743e598496e8ebd7a6eb3fea76a6464041581520d1c2315c95f993287303 -2025-11-24T08:26:57.1335722Z Writing manifest to image destination -2025-11-24T08:26:57.1646028Z Fetching localstack_localstack_0.8.7… -2025-11-24T08:26:57.4462099Z Getting image source signatures -2025-11-24T08:26:57.4463416Z Copying blob sha256:33eb6260f5a6f6a2e00290a5ede5c39b73d7bbc202d3d4644d2ab8ed83181b12 -2025-11-24T08:27:02.4035688Z Copying blob sha256:4326155b8912821cc050345007bc33b5e52cbaa3ba4bfd1566d851493a9dd974 -2025-11-24T08:27:02.4598143Z Copying blob sha256:b32eeecb9181e626e37b8b160365d6b6944310b8d7e1485d4ea48bcf2ba1a05f -2025-11-24T08:27:02.5128296Z Copying blob sha256:cf96b2b7bf583cfd721c9caddae23bfd8f582ddf3814ecb880122563d7e6dd7a -2025-11-24T08:27:02.5637319Z Copying blob sha256:f2dd71e782147264c49e6dad7327c2130c66dc47ed482f3b1cf0663861bcba19 -2025-11-24T08:27:02.6228313Z Copying blob sha256:c44b1186f75f9cae5f9c3116a621cffd78f4ffd802d2fbe66ec17522e53d5d61 -2025-11-24T08:27:02.6698875Z Copying blob sha256:7093662adad1fbadc36d9076647df92ebe7f342a827d6d43dcf77c603cc12c20 -2025-11-24T08:27:02.7217063Z Copying blob sha256:3792a7db89b54a26ab4f2d060bc8c8d66e0042a773aad43395aac53408b96503 -2025-11-24T08:27:02.7805688Z Copying blob sha256:af692bdc9f0e6493da72ce7d3930548544741bce451a9d6ab1160a3fa6cb427c -2025-11-24T08:27:03.7574445Z Copying blob sha256:03653cd683332602b932f2f06dab634366abfdc3b635dfea6218e55a6adc43f4 -2025-11-24T08:27:03.8066341Z Copying blob sha256:5d533ab397e60d694f5db0be4b382be1578b65058cbddc78c07b7c3c2eddca2d -2025-11-24T08:27:03.8564829Z Copying blob sha256:b4949a310e1300bbf757b3d9ea755b210183c8f79ce4e1f9d303032561b87386 -2025-11-24T08:27:04.4504410Z Copying blob sha256:4ccd8b683c4e88af39133180243484fbb898c2f7c39e3759480d5f14aca5c0fb -2025-11-24T08:27:04.5855766Z Copying blob sha256:fdc881d263da48cc252d6af2030ce3332a56bebe8da693f658c10c6002fe32fb -2025-11-24T08:27:04.6448173Z Copying blob sha256:8bdcad79999d8efe9cf937dc11a4b733ca2dd1f24b7cdd7421491f5dbcccf5d0 -2025-11-24T08:27:04.7356321Z Copying blob sha256:b513149f2dba72febc0ab6eb50d6403af0283bf95c589fa38122aa14165bac37 -2025-11-24T08:27:07.1970282Z Copying blob sha256:55f6148344e82c142f16b7f636507ce4ca1cc4668c298c8a573f1981ea70514e -2025-11-24T08:27:07.2541654Z Copying blob sha256:1038e66ad4c814701dbda9a7c0e1a98b39503f4287ce23b7e60a05488159dd7b -2025-11-24T08:27:07.3248728Z Copying config sha256:ac1af9b263a0e0a62a3316f585cf4804fabf0f97233e2c6d1cb4161ec192568c -2025-11-24T08:27:07.3719296Z Writing manifest to image destination -2025-11-24T08:27:07.4052538Z Fetching mesosphere_aws-cli_1.14.5… -2025-11-24T08:27:07.6683214Z Getting image source signatures -2025-11-24T08:27:07.6684528Z Copying blob sha256:605ce1bd3f3164f2949a30501cc596f52a72de05da1306ab360055f0d7130c32 -2025-11-24T08:27:07.7795697Z Copying blob sha256:003136ce7764dfd83890e987ebf4d2a33f1e42c8cef8bf7687fdcc046c8ebfc4 -2025-11-24T08:27:08.3709971Z Copying blob sha256:f17b7537093ddf2cf7935586ed9fc53f1c5d21f3a6d4914193fd90b3be3515e9 -2025-11-24T08:27:08.4288160Z Copying config sha256:31f4e23ae3d69dbec6050f284e743792c0a1033d627e9044bec4e499935cee68 -2025-11-24T08:27:08.7503152Z Writing manifest to image destination -2025-11-24T08:27:08.7808873Z Fetching openebs_node-disk-manager_2.1.0… -2025-11-24T08:27:09.2189070Z Getting image source signatures -2025-11-24T08:27:09.2190219Z Copying blob sha256:677076032cca0a2362d25cf3660072e738d1b96fe860409a33ce901d695d7ee8 -2025-11-24T08:27:10.1517645Z Copying blob sha256:ad137abb16a479d974731cfa6f0df5e0d43150f5cf0d01a27d54c7fa980e7c91 -2025-11-24T08:27:10.5202938Z Copying blob sha256:a7b30f76157f16246b8a8f984c678157be2b7084a091f994bc530bb99226e7ea -2025-11-24T08:27:10.5788767Z Copying config sha256:297e6f2690c4337350601d4be0b21ffe8fdd3f921ea2eaf277c2352a9eb03d03 -2025-11-24T08:27:10.6293578Z Writing manifest to image destination -2025-11-24T08:27:10.6611374Z Fetching openebs_node-disk-operator_2.1.0… -2025-11-24T08:27:10.9883739Z Getting image source signatures -2025-11-24T08:27:10.9884859Z Copying blob sha256:677076032cca0a2362d25cf3660072e738d1b96fe860409a33ce901d695d7ee8 -2025-11-24T08:27:11.6657112Z Copying blob sha256:fbdf6356176edbe3e585992daa0534eaa34efc0cdf04e9ee88bfab5a06840913 -2025-11-24T08:27:12.0140209Z Copying config sha256:f9669ba5fa2b80451d172dedc0eb9ecc80678904a6c7cca736005e6e26106dac -2025-11-24T08:27:12.0608619Z Writing manifest to image destination -2025-11-24T08:27:12.0913739Z Fetching openebs_provisioner-localpv_3.5.0… -2025-11-24T08:27:12.4652101Z Getting image source signatures -2025-11-24T08:27:12.4653473Z Copying blob sha256:c7ed990a2339ee598662849de4f56e2241399f5a32340c8c4a7bbd5378a12b5f -2025-11-24T08:27:12.5858522Z Copying blob sha256:2d3b74a8a687038e7d2573b1a53ec05b267ae7c76a98247542125b75021ffeed -2025-11-24T08:27:12.7190721Z Copying blob sha256:ff07456b2c587888eee25ad7a9827c8e8285b14a68d35f3d811f7629e4e2c95d -2025-11-24T08:27:13.2974952Z Copying config sha256:7dfaa48c970d27e427b5aaee116688c394d77c15489dbf6fa5efb5fc72409890 -2025-11-24T08:27:13.3515635Z Writing manifest to image destination -2025-11-24T08:27:13.3813531Z Fetching quay.io_jetstack_cert-manager-cainjector_v1.16.3… -2025-11-24T08:27:13.7507647Z Getting image source signatures -2025-11-24T08:27:13.7508760Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e -2025-11-24T08:27:13.8308139Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:27:13.9112264Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 -2025-11-24T08:27:13.9717121Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:27:14.0180214Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:27:14.0667206Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:27:14.1154962Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:27:14.1645726Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:27:14.2125674Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:27:14.2637229Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:27:14.3044508Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:27:14.3558463Z Copying blob sha256:1aa0540810224901d8cb3638d2f916af752cb65b5a178b794cd7945b3037db75 -2025-11-24T08:27:14.7914894Z Copying blob sha256:a345aba268ae5fe90dbc43121cae1a772fc7c0e12f17fc02be0816254b1c86ac -2025-11-24T08:27:15.0757339Z Copying blob sha256:401d2d02970d98c06becea33967d192f282f72ea225d9053809b10e1c3032796 -2025-11-24T08:27:15.1850169Z Copying config sha256:ce7242a2b54beda8b4a2079d5d783a823af40d6d56d6a51decc8acc01c22849f -2025-11-24T08:27:15.2428190Z Writing manifest to image destination -2025-11-24T08:27:15.2799323Z Fetching quay.io_jetstack_cert-manager-controller_v1.16.3… -2025-11-24T08:27:15.7110956Z Getting image source signatures -2025-11-24T08:27:15.7112188Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e -2025-11-24T08:27:15.7897683Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:27:15.8484841Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 -2025-11-24T08:27:15.9130036Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:27:15.9821052Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:27:16.0473720Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:27:16.0948711Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:27:16.1487324Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:27:16.2006182Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:27:16.2568589Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:27:16.3025424Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:27:16.3512167Z Copying blob sha256:463a4d7bd9093d82535cdbe61ae1eca85f2cd2207c7a4987a6fad24d1cf465f4 -2025-11-24T08:27:16.8569633Z Copying blob sha256:ba9e915126ef65cde90869ea19b3f39799ddc0f3f92e5f9630968de06a5d6d2e -2025-11-24T08:27:16.9440777Z Copying blob sha256:401d2d02970d98c06becea33967d192f282f72ea225d9053809b10e1c3032796 -2025-11-24T08:27:17.0317431Z Copying config sha256:27ebcc620bde4c43ac64f806f158db24396a214799e386c2fc74a5a310cbe497 -2025-11-24T08:27:17.0665277Z Writing manifest to image destination -2025-11-24T08:27:17.1020590Z Fetching quay.io_jetstack_cert-manager-startupapicheck_v1.16.3… -2025-11-24T08:27:17.4628723Z Getting image source signatures -2025-11-24T08:27:17.4630086Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e -2025-11-24T08:27:17.5996637Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:27:17.6467935Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 -2025-11-24T08:27:17.7887608Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:27:17.9137419Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:27:17.9834709Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:27:18.0843329Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:27:18.1313280Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:27:18.1798109Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:27:18.2230254Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:27:18.2716501Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:27:18.3668292Z Copying blob sha256:ed9d74fe3f43cfd57b281fbc2d0b7259be1e30644500cc06f569029448c4db3c -2025-11-24T08:27:18.7584762Z Copying blob sha256:f337015610d918db9f28625e0522a65553721879b7e26c0b1aee63b17cce7bc8 -2025-11-24T08:27:18.8719163Z Copying blob sha256:0381129cf2590e0cb552b4b458960847d3e410791dfe9701cf52ca6bffca9cb4 -2025-11-24T08:27:19.0438949Z Copying config sha256:361dc433e4fbd87505da3c7a5b0179e9ff0fe070950809aeb08fdc90d59e0218 -2025-11-24T08:27:19.1500910Z Writing manifest to image destination -2025-11-24T08:27:19.1837060Z Fetching quay.io_jetstack_cert-manager-webhook_v1.16.3… -2025-11-24T08:27:19.5402966Z Getting image source signatures -2025-11-24T08:27:19.5404575Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e -2025-11-24T08:27:19.6088843Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:27:19.6824764Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 -2025-11-24T08:27:19.7379071Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:27:19.7928125Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:27:19.8534594Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:27:19.9026919Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:27:19.9458493Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:27:20.0129676Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:27:20.1166023Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:27:20.1645476Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:27:20.2227156Z Copying blob sha256:489ca288d73032b835c7468a5b211cacb7d126fc47b92635530135fc7818dbb2 -2025-11-24T08:27:20.8025032Z Copying blob sha256:6bbf7e6890da395925b0f834abca6f762e37b8b54d9cedec672af6ae4096cf5d -2025-11-24T08:27:20.9103816Z Copying blob sha256:39d87579bed9b6c4e041e7b3b28c25bd2359e66e99edb87fe7c93d7f4cbf1c94 -2025-11-24T08:27:21.0390898Z Copying config sha256:d995a297967012c97f18ca941dc0ebeebc94722ba00c758cf87edcb540782f22 -2025-11-24T08:27:21.1205903Z Writing manifest to image destination -2025-11-24T08:27:21.1525995Z Fetching quay.io_keycloak_keycloak_22.0.4… -2025-11-24T08:27:21.5443852Z Getting image source signatures -2025-11-24T08:27:21.5445006Z Copying blob sha256:9e167103aefa56af4c39359687f54fdd263ca85bc946e770d92c054df7ada57c -2025-11-24T08:27:21.8835559Z Copying blob sha256:139b6b161a2f250f2d681753028510d391da42fd60ce3404582f53795e4a17af -2025-11-24T08:27:23.9476604Z Copying blob sha256:fc65979ef8be73a3fb8c59ee66f26d261537963bc0670dbff0d7134489e519a2 -2025-11-24T08:27:26.6378996Z Copying blob sha256:160dfdb51fefe875e1bff71f46e04f457f235df333e195212c2f70e029ee7822 -2025-11-24T08:27:26.7529368Z Copying config sha256:8ef105ff6a8d4a6f58978e20e0cdf14fb1dadbe830ba8a68123ac575d8d8e339 -2025-11-24T08:27:26.8816838Z Writing manifest to image destination -2025-11-24T08:27:26.9126724Z Fetching quay.io_kubernetes-ingress-controller_nginx-ingress-controller_0.30.0… -2025-11-24T08:27:27.2207061Z Getting image source signatures -2025-11-24T08:27:27.2208592Z Copying blob sha256:c9b1b535fdd91a9855fb7f82348177e5f019329a58c53c47272962dd60f71fc9 -2025-11-24T08:27:27.4168433Z Copying blob sha256:45ba4c9483202ddb8d244b042839be4cdd81398fc1282768e503fc62afad3855 -2025-11-24T08:27:30.0487498Z Copying blob sha256:70c24c20a56958dcd2b2ac3e3f14576160019088b7330e1043964baa5d67c699 -2025-11-24T08:27:30.3187089Z Copying blob sha256:58acda238271f26b1afd95abae7ca19fe45799ede5910403fca8a6c2b7de1323 -2025-11-24T08:27:30.8717272Z Copying blob sha256:7873cb07ba9128a83e56ed59a0280ef1d742fec854d51e01b87c9dfec6249724 -2025-11-24T08:27:31.3024294Z Copying blob sha256:3572b831a7ad1ed59991e07ee83a7478588dc221f73fa93d36dd304a59dc2b21 -2025-11-24T08:27:31.5164460Z Copying blob sha256:2e4b94d88c7a5762b4d5483e94f739075742c56df8f493ec4ac448f3d8c32710 -2025-11-24T08:27:31.7457403Z Copying blob sha256:73d054fe61621abf88cfe4a987667a55441a1a7e393713dddfea33cca1555b51 -2025-11-24T08:27:32.3016883Z Copying blob sha256:72107c0475b32fa4366f53b8768c16b3ccb1a1076e763110a27f37c301381988 -2025-11-24T08:27:32.5238910Z Copying blob sha256:0920fa00bdafe1face45bd8ca522cd36b2cc28d7066b6df5c71be27bf10d9329 -2025-11-24T08:27:33.1185737Z Copying blob sha256:bbc4231b0eed56a2ccf724d1c72cdb4a86d28074ef0c5cfc5f3558efdc9faaf0 -2025-11-24T08:27:33.6419253Z Copying blob sha256:1a0d8e7b84e84a0a0348441402c3ec36f5d708ab57fe46471c0e23a375e0f072 -2025-11-24T08:27:33.8848505Z Copying config sha256:89ccad40ce8e413ff4ceba362de33a81da1f1c5b4c909200c37898781236ef30 -2025-11-24T08:27:34.1417682Z Writing manifest to image destination -2025-11-24T08:27:34.1743554Z Fetching quay.io_minio_mc_RELEASE.2023-06-28T21-54-17Z… -2025-11-24T08:27:34.5564441Z Getting image source signatures -2025-11-24T08:27:34.5565687Z Copying blob sha256:28ff5ee6facbc15dc879cb26daf949072ec01118d3463efd1f991d9b92e175ef -2025-11-24T08:27:35.6111583Z Copying blob sha256:8c7e034bbeb33e9025767782e834218d80bc0b142685465386236f0cf2d48f86 -2025-11-24T08:27:35.9123596Z Copying blob sha256:3b3eb31575e6b579c1dae7010fc5bf660922007217127d16cf97089fce9bbb09 -2025-11-24T08:27:36.1507126Z Copying blob sha256:e7f16c65b72207d4d5edd1d36ddfe230729e22015c0caad44d8d334b2289edb9 -2025-11-24T08:27:39.2555289Z Copying config sha256:ad56b1e35ffe086b303a8ea34496b539cf6f74862c71e05790e0b0a8e3e06eef -2025-11-24T08:27:39.4608417Z Writing manifest to image destination -2025-11-24T08:27:39.4911837Z Fetching quay.io_minio_minio_RELEASE.2023-07-07T07-13-57Z… -2025-11-24T08:27:39.9248506Z Getting image source signatures -2025-11-24T08:27:39.9251197Z Copying blob sha256:5329d7039f252afc1c5d69521ef7e674f71c36b50db99b369cbb52aa9e0a6782 -2025-11-24T08:27:40.7939272Z Copying blob sha256:2b3707fd3b24cc1a4c08b7f199ed1f0bf5439a39fd47afdb2daacd7d716f066a -2025-11-24T08:27:40.9087824Z Copying blob sha256:5206d1e7147f4a5a26c5b73f4a0e16678de06ee62b69140aafb24d86a736dceb -2025-11-24T08:27:41.0415927Z Copying blob sha256:33feab5fa1c593df0b8b276b0c4dca07969f27aea39ebebc7c007824006bb460 -2025-11-24T08:27:41.1446975Z Copying blob sha256:5cd9e0eb62e54cb66a1aed56edbd1e7eb2aca73fd33eae89bdbd6f7ec7f17058 -2025-11-24T08:27:41.2555429Z Copying blob sha256:34f92c74bdafb322d35322666786b424fcca0eff8c94f9e16851707ffe1bf21f -2025-11-24T08:27:43.0006229Z Copying config sha256:09b7752e26c27cbeccf9f4e9c3bb7bfc91fa1d2fc5c59bfdc27105201f533545 -2025-11-24T08:27:43.1428232Z Writing manifest to image destination -2025-11-24T08:27:43.1731522Z Fetching quay.io_pires_docker-elasticsearch-curator_5.5.4… -2025-11-24T08:27:43.4949528Z Getting image source signatures -2025-11-24T08:27:43.4956627Z Copying blob sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28 -2025-11-24T08:27:43.7004063Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 -2025-11-24T08:27:43.8104293Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 -2025-11-24T08:27:43.8628200Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 -2025-11-24T08:27:43.9049107Z Copying blob sha256:471170bb1257626389ed5fd16962cdec310ab3af264ffef445df2773e7420b92 -2025-11-24T08:27:44.2305841Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 -2025-11-24T08:27:44.2827118Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 -2025-11-24T08:27:44.4355103Z Copying blob sha256:a92899abaf426b4fc95700ecc8dee0153d4a7374e7c5fa6586fcc2e2b326db41 -2025-11-24T08:27:46.0661103Z Copying blob sha256:2699438859de183d00dd84d486f6b57bbbc172bf905399e814c500e6c50d04c7 -2025-11-24T08:27:46.2751903Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 -2025-11-24T08:27:46.3232983Z Copying blob sha256:d278818cf042d33ced356d1a90b8e7b6ab2f9d020ae1c35c0db5385c9b0d9489 -2025-11-24T08:27:46.7467318Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 -2025-11-24T08:27:46.7927729Z Copying blob sha256:20263cea3e4427f4793ffae8bba30316948ebe2d13a2c74a8a48dc52b949c71f -2025-11-24T08:27:48.0234014Z Copying blob sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 -2025-11-24T08:27:48.0731938Z Copying config sha256:0e258de6c0a3953c83a2fa35d3e7f90b6311ae29e9ef8ce012b029077cf10576 -2025-11-24T08:27:48.0753897Z Writing manifest to image destination -2025-11-24T08:27:48.1044546Z Fetching quay.io_prometheus-operator_prometheus-operator_v0.83.0… -2025-11-24T08:27:48.5308595Z Getting image source signatures -2025-11-24T08:27:48.5309657Z Copying blob sha256:9fa9226be034e47923c0457d916aa68474cdfb23af8d4525e9baeebc4760977a -2025-11-24T08:27:48.6296243Z Copying blob sha256:1617e25568b2231fdd0d5caff63b06f6f7738d8d961f031c80e47d35aaec9733 -2025-11-24T08:27:48.6826191Z Copying blob sha256:fa4e7c59a0d45243912d0f662d1befc7470f0db1ec2728184ced5fa6b62db0c5 -2025-11-24T08:27:49.1607903Z Copying config sha256:08ab5c2b4b7f58f032e7808d127bf6071b0de38404664617a438dc5a2448ed0e -2025-11-24T08:27:49.2155212Z Writing manifest to image destination -2025-11-24T08:27:49.2457606Z Fetching quay.io_prometheus_node-exporter_v1.9.1… -2025-11-24T08:27:49.6113132Z Getting image source signatures -2025-11-24T08:27:49.6114592Z Copying blob sha256:9fa9226be034e47923c0457d916aa68474cdfb23af8d4525e9baeebc4760977a -2025-11-24T08:27:49.6863145Z Copying blob sha256:1617e25568b2231fdd0d5caff63b06f6f7738d8d961f031c80e47d35aaec9733 -2025-11-24T08:27:49.7445960Z Copying blob sha256:c6e37428e3b36731b2b7a99979e0dbb27ce0849df0c23fb2b73e99bdbcd7ca33 -2025-11-24T08:27:49.9548366Z Copying config sha256:255ec253085fb105696533b31864a5e3b64f1f1e2147b5ec368100cbf3ec9b80 -2025-11-24T08:27:50.1418659Z Writing manifest to image destination -2025-11-24T08:27:50.1730032Z Fetching quay.io_prometheus_prometheus_v3.4.2… -2025-11-24T08:27:50.7225925Z Getting image source signatures -2025-11-24T08:27:50.7227509Z Copying blob sha256:9fa9226be034e47923c0457d916aa68474cdfb23af8d4525e9baeebc4760977a -2025-11-24T08:27:50.7984356Z Copying blob sha256:1617e25568b2231fdd0d5caff63b06f6f7738d8d961f031c80e47d35aaec9733 -2025-11-24T08:27:50.8656485Z Copying blob sha256:0185f950e16a571f988fa25b82090a906b4a959a83d6dca0650c10dcf8b75de1 -2025-11-24T08:27:52.7028747Z Copying blob sha256:158b50c376bfe354acb5444ce9630b78f1cf7339dd1b2ff78284d436e67656ad -2025-11-24T08:27:54.2045719Z Copying blob sha256:d809dcb8449def6608068854f943a9a3582063c8ad3a3de562b620d003be2ef3 -2025-11-24T08:27:54.3111579Z Copying blob sha256:ab5dc859c1b736fc450d61d9c59018fe1ec50e6574e5d45ff578db7808b151b4 -2025-11-24T08:27:54.4327898Z Copying blob sha256:d8261d2395d6634541d6647b662633b1e469a740423233b61468a5ae6ed22c9f -2025-11-24T08:27:54.5637328Z Copying blob sha256:7bde2424dadc49168bba400f88e657e68e7b7210b3aa6553313f48b9fb14b747 -2025-11-24T08:27:54.6853462Z Copying blob sha256:f1456f6dac0fc994ef529abaaacb76458672e57308dbcec36d210f3e2280e35b -2025-11-24T08:27:54.7979797Z Copying blob sha256:4d90f494fa797fa27f4785e7a5829694e0faa661902f6bc63949fb1698b98780 -2025-11-24T08:27:54.8977254Z Copying config sha256:9e24e9a9806cb72de9b148ff4f22e77b0b926e015c80bad5460e46db9056b80a -2025-11-24T08:27:54.9915755Z Writing manifest to image destination -2025-11-24T08:27:55.0226496Z Fetching quay.io_wire_account_2.9.0-v0.31.35-bad8a6a… -2025-11-24T08:27:55.3444224Z Getting image source signatures -2025-11-24T08:27:55.3446875Z Copying blob sha256:2d35ebdb57d9971fea0cac1582aa78935adf8058b2cc32db163c98822e5dfa1b -2025-11-24T08:27:55.5748131Z Copying blob sha256:9682177f5dda1fd55072217f7077e1c680daaa4e23e02a3cb1274868a8aa082e -2025-11-24T08:27:57.0510616Z Copying blob sha256:e910c7b62cc771efdec5776c0a1f50d1730a1c9c9acbdfb67c2de365f5e99d2e -2025-11-24T08:27:57.1836446Z Copying blob sha256:eb9e06b66aaed551c8dd195ece4a1bb9a96da16cb8d4d6fc9321919008650303 -2025-11-24T08:27:57.3037667Z Copying blob sha256:73eaa5a820182423981abbe77eae14f58b3c4e4786b85ebb1310ba874e1594ff -2025-11-24T08:27:58.0215554Z Copying blob sha256:9afa8f018d44c355a90a82499469eaa79700fed760dabe49aa8e3a4c27f9347d -2025-11-24T08:28:02.1069857Z Copying blob sha256:669d10042e1a8c2d51e22518a2d4767f0c0a09a29bfcca80c282a8828db76d15 -2025-11-24T08:28:02.3902606Z Copying blob sha256:b78f8d04609c16fa6bd5983f12de67fd9456658dd9a6900be602df4165197d8b -2025-11-24T08:28:04.8098407Z Copying config sha256:c242b10f4c1651c0a3cd42a607cf71c1af86c02f52d45005fe99c951a3d951a8 -2025-11-24T08:28:05.0435050Z Writing manifest to image destination -2025-11-24T08:28:05.0757566Z Fetching quay.io_wire_avs-nwtesttool_1.0.14… -2025-11-24T08:28:05.4021618Z Getting image source signatures -2025-11-24T08:28:05.4023044Z Copying blob sha256:4167d3e149762ea326c26fc2fd4e36fdeb7d4e639408ad30f37b8f25ac285a98 -2025-11-24T08:28:05.7246665Z Copying blob sha256:01b5d6afdecdb19ecc579f932e47ba26ffa54842946f11327fcad277ff158898 -2025-11-24T08:28:06.7946316Z Copying blob sha256:b8eff93b79f3d63e4ee0c73d0aa29e6deeec588544592767ada9536205022f81 -2025-11-24T08:28:07.0695711Z Copying blob sha256:f0f5a2d56f7c187f0cfbb4ca0b4f611114fe9e9e5234e333d8eded8825a22226 -2025-11-24T08:28:07.3177367Z Copying blob sha256:0489dc61c56b3b27c852187300ca6ca65279325ab5c5004e1d59a7f180ae4c42 -2025-11-24T08:28:07.5328466Z Copying config sha256:82d82f7da5326337f7bbbff9839006e1e211cdba30c24464aa7b8f58b25b9410 -2025-11-24T08:28:07.8397427Z Writing manifest to image destination -2025-11-24T08:28:07.8713174Z Fetching quay.io_wire_background-worker_5.23.0… -2025-11-24T08:28:08.2019675Z Getting image source signatures -2025-11-24T08:28:08.2020956Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:28:08.4169935Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:28:08.5387641Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:28:08.9442204Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:28:09.6978528Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:28:09.9648402Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:28:10.3449653Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:28:10.7273622Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:28:11.1674570Z Copying blob sha256:e4a6e4b9e0f63ac2627268775cf902a89dc4dfa4fed9a875e233d0a966ad10c0 -2025-11-24T08:28:15.0367398Z Copying blob sha256:91e68e387e18e44c96bb28821f334ec8035034f8cd43b82f27a445d32d46c793 -2025-11-24T08:28:15.2819669Z Copying config sha256:c4509670499e32cf5faf776f5dae07a6cdd2522d3f41492d95a8e70b58e09a47 -2025-11-24T08:28:15.5156300Z Writing manifest to image destination -2025-11-24T08:28:15.5463392Z Fetching quay.io_wire_brig-index_5.23.0… -2025-11-24T08:28:15.8935461Z Getting image source signatures -2025-11-24T08:28:15.8937091Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:28:16.0462237Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:28:16.1643215Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:28:16.2630846Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:28:16.6164233Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:28:16.7295980Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:28:16.9487178Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:28:17.2401707Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:28:17.3751936Z Copying blob sha256:315bd9cf2840fa401838867e49ef7427f72a78079f6659d72e6fb2983e58a72e -2025-11-24T08:28:22.5574233Z Copying blob sha256:b7aead1fa3419fd7218687396f2a3aa9cf41a1107e779f6b25d8d270b16a72a6 -2025-11-24T08:28:22.8286248Z Copying config sha256:9e207c4628aebc7f9b927382632b1441871e4f08ea2f0f14d5849d3fec8c0d18 -2025-11-24T08:28:23.0505426Z Writing manifest to image destination -2025-11-24T08:28:23.0994920Z Fetching quay.io_wire_brig-schema_5.23.0… -2025-11-24T08:28:23.5041235Z Getting image source signatures -2025-11-24T08:28:23.5042484Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:28:23.6944847Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:28:23.8316940Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:28:23.9322253Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:28:24.4185730Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:28:24.5357828Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:28:24.7709450Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:28:24.9954779Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:28:25.1870944Z Copying blob sha256:e95cd6aa3251e2deccc19c147575b32cbc55a7b8ca2c19942bcaf68e02da6afe -2025-11-24T08:28:30.9516771Z Copying blob sha256:d0488f5e77ab59d602fde920f3dd5e24eff72b74b8162ac92baa86614a893d2f -2025-11-24T08:28:31.2176931Z Copying config sha256:43610ad1d7d9fe837eaa0ff4090fa3abb8a0f668966ea77b9a91b80e6ba89f14 -2025-11-24T08:28:31.4905795Z Writing manifest to image destination -2025-11-24T08:28:31.5204343Z Fetching quay.io_wire_brig_5.23.0… -2025-11-24T08:28:31.8858730Z Getting image source signatures -2025-11-24T08:28:31.8861671Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:28:32.1292111Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:28:32.2636753Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:28:32.3831297Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:28:32.7465924Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:28:32.8376341Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:28:33.0406546Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:28:33.2616418Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:28:33.4396207Z Copying blob sha256:fcbacf7b9ed7edd355d1e40f6e0da97c0a62de10e3c9595d44d9d7d740c22b7d -2025-11-24T08:28:40.0474735Z Copying blob sha256:2b79a95384e923a9549e63773f5434e3d4d08f5286977f87605ab1784f383916 -2025-11-24T08:28:40.3105277Z Copying config sha256:0da865a95a5eb7631cc6eae7511f0104e3b96a064960b82c23fb2cd797ead676 -2025-11-24T08:28:40.5372541Z Writing manifest to image destination -2025-11-24T08:28:40.5698739Z Fetching quay.io_wire_cannon_5.23.0… -2025-11-24T08:28:40.9198834Z Getting image source signatures -2025-11-24T08:28:40.9207265Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:28:41.0559298Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:28:41.2005773Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:28:41.2939506Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:28:41.7043429Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:28:41.8065905Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:28:41.9879321Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:28:42.2128289Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:28:42.3459007Z Copying blob sha256:196eb713d4d792a1967a614e9b2a222b642280fafbbfcdf7dba572fe03d1f580 -2025-11-24T08:28:47.1504204Z Copying blob sha256:a0f11a8f90b45ae3b084b274d7701004ad2b70a0863a4d8c8400db953de57a55 -2025-11-24T08:28:47.3901354Z Copying config sha256:b770b59dcfad98d0f44685f0fc84ec0f5593052f90872050991a2911ac23da7e -2025-11-24T08:28:47.5705516Z Writing manifest to image destination -2025-11-24T08:28:47.6005771Z Fetching quay.io_wire_cargohold_5.23.0… -2025-11-24T08:28:47.9451111Z Getting image source signatures -2025-11-24T08:28:47.9452575Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:28:48.1448320Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:28:48.2471796Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:28:48.3464392Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:28:48.7596770Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:28:48.8935883Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:28:49.1135546Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:28:49.3095282Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:28:49.4537096Z Copying blob sha256:2b5edf4ddec3e9f931c2bf4558195c9f3ac5c404cee3353bb36a6511decc9c9a -2025-11-24T08:28:53.9969921Z Copying blob sha256:be412d118d3d87d0b5ffdb8b1520dcf8b3d863d6472d3ca20ee8e6fd386e9d14 -2025-11-24T08:28:54.2860260Z Copying config sha256:c0a49fe4f98b14985898bef9737901bd4b7353458f8e895c21c4f022da9496d2 -2025-11-24T08:28:54.5499261Z Writing manifest to image destination -2025-11-24T08:28:54.5809985Z Fetching quay.io_wire_coturn_4.6.2-federation-wireapp.43… -2025-11-24T08:28:54.9215360Z Getting image source signatures -2025-11-24T08:28:54.9216816Z Copying blob sha256:4eb1dd59a73886acc6a3cc9d4c8f8e66d1fd6ba6d6195b05ce21c22b0658aab8 -2025-11-24T08:28:56.7052147Z Copying blob sha256:d290e8ee3db6e288cb867ce2c1d9a1188d50f60e313ff1e418594f8a236e4d01 -2025-11-24T08:28:57.6749943Z Copying blob sha256:71d7cebe1ea4c3c83bd800c5f7b3d5c4d7ddc971fc8138c40e2313b642d1e772 -2025-11-24T08:28:57.9933039Z Copying blob sha256:4483b866b3c309956a508f909bd6c257925ec846377131b1f8b87a29be2cdf4e -2025-11-24T08:28:58.2769209Z Copying blob sha256:6126860a78d63271cdf8cb8057ef6c34776926ff7591280701dd06d76efd60bb -2025-11-24T08:28:59.3295427Z Copying blob sha256:29912616726e3fa32a7d84a87c7b4b449fd86c29a06d48759d027d38ea49c457 -2025-11-24T08:28:59.5069580Z Copying blob sha256:d0ec18f34189316556d4f8dc7503de2d0c7913f3a6af3f5310d6d8bfe50ed3ee -2025-11-24T08:28:59.6748895Z Copying config sha256:58fb705d4ac823e14913b482dbd25f79ab0160779bb4ad4f12254006d4dbdbb7 -2025-11-24T08:28:59.8216545Z Writing manifest to image destination -2025-11-24T08:28:59.8536149Z Fetching quay.io_wire_federator_5.23.0… -2025-11-24T08:29:00.2716949Z Getting image source signatures -2025-11-24T08:29:00.2719917Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:29:00.4749077Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:29:00.5834082Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:29:00.7085724Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:29:01.2707170Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:29:01.3855351Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:29:01.6197662Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:29:01.8554932Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:29:02.0448101Z Copying blob sha256:9e2687397e50ab643997bbf40d247021dd8d62dc5ab51e6d9653d88ab62fc727 -2025-11-24T08:29:06.7456499Z Copying blob sha256:5fe38810daf349ffdee60179d11f9a4ee35b9d8b0f534088fa4c1e024e2035c9 -2025-11-24T08:29:07.0413333Z Copying config sha256:38d1da6b54540165b65fee0ec9b431c536396d39380fcd07ab67c683ae01e9ef -2025-11-24T08:29:07.2563149Z Writing manifest to image destination -2025-11-24T08:29:07.2883819Z Fetching quay.io_wire_galley-migrate-data_5.23.0… -2025-11-24T08:29:07.6196949Z Getting image source signatures -2025-11-24T08:29:07.6198287Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:29:07.7586142Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:29:07.8790229Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:29:07.9758759Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:29:08.2707379Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:29:08.3845354Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:29:08.5524424Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:29:08.8443749Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:29:08.9655598Z Copying blob sha256:af3c3923acf99543cbc46ce66df16dbaffdfe0ba1bd86271644573dde56988fe -2025-11-24T08:29:13.0977367Z Copying blob sha256:efbd2341cbc992853adb81ba34ae04fb3eb0d520a78d7312eed17b11585de2d5 -2025-11-24T08:29:13.3383934Z Copying config sha256:f76cb40d1b97ffe16848390e7a376ca04369362b1caeeef9c997a92c7728a47c -2025-11-24T08:29:13.5687336Z Writing manifest to image destination -2025-11-24T08:29:13.6014929Z Fetching quay.io_wire_galley-schema_5.23.0… -2025-11-24T08:29:13.9734410Z Getting image source signatures -2025-11-24T08:29:13.9735650Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:29:14.1552365Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:29:14.2789247Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:29:14.3943876Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:29:14.8653096Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:29:14.9987162Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:29:15.1976261Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:29:15.4809463Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:29:15.6205033Z Copying blob sha256:febba50b4d4a3eeb182061d195c3b03bc224eabcdbbf58d9bc58873aa5d85332 -2025-11-24T08:29:20.3068163Z Copying blob sha256:c2da6ffedc8d39994c028b29cc9df8a74223a27824305d2cd3cc1d5a8af72acc -2025-11-24T08:29:20.6102490Z Copying config sha256:7f389aa6b4acf2f4466a8eb12a98de3dbeb9b9099c25b738ebbfc889af4c86c7 -2025-11-24T08:29:20.8239526Z Writing manifest to image destination -2025-11-24T08:29:20.8577875Z Fetching quay.io_wire_galley_5.23.0… -2025-11-24T08:29:21.3123927Z Getting image source signatures -2025-11-24T08:29:21.3125158Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:29:21.4537161Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:29:21.5557660Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:29:21.6490487Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:29:21.9449561Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:29:22.0642316Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:29:22.3157053Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:29:22.4725806Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:29:22.6019323Z Copying blob sha256:0d01635fb251629eb0b558036b57498993374e35eb6b598830d0a4a67cadd2a7 -2025-11-24T08:29:27.8167043Z Copying blob sha256:3ef5523d07fbd8878593c295c3fd5d6e61531401d81c4bd882fdd11274c6c05c -2025-11-24T08:29:28.0240635Z Copying config sha256:2d83f1caaac2650f5ef755f065ea4889431e55f0b2612b9cf3a4afe3b1b50cea -2025-11-24T08:29:28.2970841Z Writing manifest to image destination -2025-11-24T08:29:28.3270607Z Fetching quay.io_wire_gundeck-migrate-data_5.23.0… -2025-11-24T08:29:28.6914472Z Getting image source signatures -2025-11-24T08:29:28.6916032Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:29:28.8381827Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:29:28.9753442Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:29:29.1252502Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:29:29.5361682Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:29:29.6459295Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:29:29.9923476Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:29:30.2667389Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:29:30.4138328Z Copying blob sha256:098c82b2b1c72263c1d30c22e0fe8bddd108de20145776a726bfe31855dc9f9a -2025-11-24T08:29:34.9603755Z Copying blob sha256:6e7e28d30ba86aea59ae3d8b5329350c89efe43ae0fa56122fb1d70a30c42258 -2025-11-24T08:29:35.1740713Z Copying config sha256:098053a804f6c0c77a2e8a640f2ac71053f8b92a70948d7895b9ecb37b7c785f -2025-11-24T08:29:35.3946190Z Writing manifest to image destination -2025-11-24T08:29:35.4243594Z Fetching quay.io_wire_gundeck-schema_5.23.0… -2025-11-24T08:29:35.9010239Z Getting image source signatures -2025-11-24T08:29:35.9011402Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:29:36.0901156Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:29:36.2288713Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:29:36.3493900Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:29:36.8559067Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:29:37.0265632Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:29:37.2502316Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:29:37.4876145Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:29:37.6807888Z Copying blob sha256:07d75523f468c8b22a9c974f8b5c2e2c20d5001bf1af12ac8206337f4c612e3f -2025-11-24T08:29:43.2098100Z Copying blob sha256:dcf5745b358dc186c18fbd6091b8df0ec33f3b08cf059bd2a659ed39a5841084 -2025-11-24T08:29:43.5061468Z Copying config sha256:0f8b9d1058abe2985e5d2a68d22f89f1cda6ed080deae121d75a992469846c6c -2025-11-24T08:29:43.7511977Z Writing manifest to image destination -2025-11-24T08:29:43.7816327Z Fetching quay.io_wire_gundeck_5.23.0… -2025-11-24T08:29:44.1441233Z Getting image source signatures -2025-11-24T08:29:44.1442532Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:29:44.4328537Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:29:44.6813687Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:29:44.8067825Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:29:45.4103775Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:29:45.5614405Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:29:45.8813646Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:29:46.0997256Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:29:46.2527150Z Copying blob sha256:276de32d44b1874b542a0d8b9563c83ff99c97e6efd7204b1dc4c3ec068fa3b1 -2025-11-24T08:29:51.0508154Z Copying blob sha256:9b4acb4b6e659c5fc4c809d17cc4d3e2f741e63fa0d7cf657232dd74a298db60 -2025-11-24T08:29:51.2453307Z Copying config sha256:f145ef0d9b91c36ca472bf600cddc2f6a112b410dac2693ddc370a12fe088052 -2025-11-24T08:29:51.5395017Z Writing manifest to image destination -2025-11-24T08:29:51.5711758Z Fetching quay.io_wire_ixdotai-smtp_v0.5.2… -2025-11-24T08:29:51.9990877Z Getting image source signatures -2025-11-24T08:29:51.9992234Z Copying blob sha256:d812d0c7c96b7031537ddbf0850bf286a5adf68b055c9bf19b2955cb88df77ea -2025-11-24T08:29:53.4446875Z Copying blob sha256:d46a5d55279a68bcb8ce12b86390f8ff5d0ac713f6a34667209192509ac3b532 -2025-11-24T08:29:53.9929171Z Copying blob sha256:51ecd249c2194974329fb092404b491c7d93d070da71a7a5ffdbde739b5d63b0 -2025-11-24T08:29:54.2208097Z Copying config sha256:6fc2f5b2c12a7208a99b39dd0ab10a0c8783adf235e6ebe1f6b9c1ac5adbc8e9 -2025-11-24T08:29:54.6884090Z Writing manifest to image destination -2025-11-24T08:29:54.7186286Z Fetching quay.io_wire_ldap-scim-bridge_0.10.4… -2025-11-24T08:29:55.0720979Z Getting image source signatures -2025-11-24T08:29:55.0722144Z Copying blob sha256:67e31b0ca439c17b894631ab935337913f1c2407a68d9c97f203e5013306e56a -2025-11-24T08:29:56.8730980Z Copying config sha256:d6bef225d22760bb4d00fadb2d52580274b36f489c3deb15af17f4b461ca37c8 -2025-11-24T08:29:57.1248545Z Writing manifest to image destination -2025-11-24T08:29:57.1554445Z Fetching quay.io_wire_migrate-features_5.12.0… -2025-11-24T08:29:57.5574483Z Getting image source signatures -2025-11-24T08:29:57.5576948Z Copying blob sha256:10e45524ca1cb6342b5f367db06fafe6c39c1e39fdcee114ffd003a931546c1e -2025-11-24T08:29:57.9048826Z Copying blob sha256:87197915c18d3842cff7140a0097f2ea4d72bee104c4f00c31fc1b5ede9ab61b -2025-11-24T08:29:58.2133394Z Copying blob sha256:3375c174bfc716975107d2743b4ae3693004596c42d6a2da7349b305612531b2 -2025-11-24T08:29:58.4056971Z Copying blob sha256:cb52c0b7d468d452bb3af01ce72ad6603b4cce684c347f077eba02f36049c4df -2025-11-24T08:29:59.4910999Z Copying blob sha256:c775c061e819b049cfa1a0e5a3aa2b17b650d7ed9b16ae8a286bd0d4757933e5 -2025-11-24T08:29:59.7186238Z Copying blob sha256:95b18c5e2fb6ab5f2e8eda52f41f3c8ee7d5009f3ad9ee986d2d83d5d5a60145 -2025-11-24T08:30:00.0145975Z Copying blob sha256:3fc3b2252010d4fd24ff02e21962d7e2b0b5b80afdc7865bef6d1cfaa6509d01 -2025-11-24T08:30:00.4020069Z Copying blob sha256:e07f43e582c2b6c948ac307df157e3a1b9bcb465d4ec7f209cbf85c7052c0300 -2025-11-24T08:30:00.7206143Z Copying blob sha256:ed3e8570657567ffe2e7a39df74fa6b9d35ed815d9176370642ef7f97d48d629 -2025-11-24T08:30:05.7483370Z Copying blob sha256:46e350af963f016ae24afabfe12f23fea3e31648c6fb6ea8bd25eefd2d6176e1 -2025-11-24T08:30:06.0339187Z Copying config sha256:74ea1a76df932a896926c81d0aa0f25ccf7549657c1319c58327eee0c6824709 -2025-11-24T08:30:06.2553634Z Writing manifest to image destination -2025-11-24T08:30:06.2868156Z Fetching quay.io_wire_nginz_5.23.0… -2025-11-24T08:30:06.6120906Z Getting image source signatures -2025-11-24T08:30:06.6122562Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:30:06.8209196Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:30:07.1906584Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:30:07.3308222Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:30:07.8902508Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:30:08.0606144Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:30:08.3308247Z Copying blob sha256:a708248316ae981a6a971aef535841e9e7e82794f37937ae0e3e2eabd8f7be4e -2025-11-24T08:30:08.6345031Z Copying blob sha256:970949d4ca953847b1e648839ef0d36544bb156739acb17c716e676d6bff1022 -2025-11-24T08:30:08.8655422Z Copying blob sha256:b954ce62e9e5fd78e5addc438ce19696688c8533b925ffccf73a5afb829f1cfd -2025-11-24T08:30:44.9004117Z Copying blob sha256:c100fc6934d8365a24ad69d858b7e7a4d7d713da0410158e3596877849674cee -2025-11-24T08:30:45.0325613Z Copying config sha256:77e35b56af24dc73cf5a0f89463932678a815b839743d1ed4d65e9b6f56e83f2 -2025-11-24T08:30:45.2587785Z Writing manifest to image destination -2025-11-24T08:30:45.2921178Z Fetching quay.io_wire_postgres-endpoint-manager_1.0.0… -2025-11-24T08:30:45.7769251Z Getting image source signatures -2025-11-24T08:30:45.7772510Z Copying blob sha256:456a3213e1b1f193dc759cd05f6f8422428b8c4bd45ef40fbf41ba43bdce8570 -2025-11-24T08:30:48.2257037Z Copying blob sha256:c4e5d28285983dfee4b3d8dad2c20e0b95580babc17f6353343d2bc3319072ca -2025-11-24T08:30:49.5348105Z Copying blob sha256:eafdc9111b763c6e783929991b7db9c9b1ea7854c4238111f21aa6e76a90823d -2025-11-24T08:30:49.7599509Z Copying blob sha256:f8340aa9889469d304478750143e223805e7b4fc409f467fbe79766166c5eb9b -2025-11-24T08:30:50.2236616Z Copying blob sha256:bc640365b51b27a9ae863c62018a85c42367da9e6f2de274599667548d930a3c -2025-11-24T08:30:50.4699124Z Copying blob sha256:672adf445015619a92573484931114379a1b3e20f8b1b9b01ffcb7700b8a834c -2025-11-24T08:30:50.6969648Z Copying config sha256:3c9e4ffd0a17882a6d539a8685e1c5769b50ab57670e695d70dbb5079f5f6109 -2025-11-24T08:30:51.1149577Z Writing manifest to image destination -2025-11-24T08:30:51.1447580Z Fetching quay.io_wire_restund_v0.6.0-rc.1… -2025-11-24T08:30:51.4880273Z Getting image source signatures -2025-11-24T08:30:51.4881919Z Copying blob sha256:7b1a6ab2e44dbac178598dabe7cff59bd67233dba0b27e4fbd1f9d4b3c877a54 -2025-11-24T08:30:52.9634436Z Copying blob sha256:81efb940cd1317c5988b7f4ec7862866832bc2af3791fd281086d525b3c2a253 -2025-11-24T08:30:56.8699593Z Copying blob sha256:415cd2fed11186c810b6b7d70347aa4ee5d47c8c3ac28a12b8d97485cf259663 -2025-11-24T08:30:57.1309877Z Copying blob sha256:d921aed103eda020da093d73bb9cf4474001b597e678dd1bb376d1729dfb5669 -2025-11-24T08:30:57.5953583Z Copying blob sha256:841ae3e9d5565d87e5a68f91406b9f7cd5812a80b39f9c3ea1ccfb72a7f72fce -2025-11-24T08:30:58.2227340Z Copying blob sha256:88e709f83b06ccf290bb24c59f0c2ac0e746a2fe478302a45ec99d64c5d80e51 -2025-11-24T08:30:58.9908456Z Copying blob sha256:146b396e65f02da21635dcf9f1ba8ad004121ef19f3c2f51149a5aab11395037 -2025-11-24T08:30:59.3576237Z Copying blob sha256:900fa0beecfc7c72e5c43a60bc3351e29dcc803daf8303b0327effcadaa68d00 -2025-11-24T08:30:59.7439425Z Copying config sha256:511cc6196b367834fdd11554e9c5f970b5befbdc30b5367c4748e10d75cc48ae -2025-11-24T08:31:00.0247413Z Writing manifest to image destination -2025-11-24T08:31:00.0557168Z Fetching quay.io_wire_sftd_5.0.60… -2025-11-24T08:31:00.4506540Z Getting image source signatures -2025-11-24T08:31:00.4507752Z Copying blob sha256:9c631dc9017e74609e0eb5e01ec90787596effa25037ae220165a4552d03e0e7 -2025-11-24T08:31:02.5158086Z Copying config sha256:7d2d2a42c7c1c2e8bf9a3149e0bde850ff69d4de238fe640cb188c6fed62192b -2025-11-24T08:31:02.7148960Z Writing manifest to image destination -2025-11-24T08:31:02.7443537Z Fetching quay.io_wire_sftd_disco_1.1.1… -2025-11-24T08:31:03.1096879Z Getting image source signatures -2025-11-24T08:31:03.1098547Z Copying blob sha256:f18232174bc91741fdf3da96d85011092101a032a93a388b79e99e69c2d5c870 -2025-11-24T08:31:03.3065297Z Copying blob sha256:0970632d78d7920834cd04aa67e6f6fb151d505f467ff30ed8fc623941cda0c1 -2025-11-24T08:31:03.7578483Z Copying blob sha256:35a7dbc15d2eff4f5fb1612d8fb71ab591e366319a50e4af0d9afa095d92aa4e -2025-11-24T08:31:03.9985872Z Copying config sha256:4deaff8e4995b2966a51d2acb2ffe6cdb9e03cbbd5999e3fff04e30b421ba270 -2025-11-24T08:31:04.2251440Z Writing manifest to image destination -2025-11-24T08:31:04.2569764Z Fetching quay.io_wire_spar-migrate-data_5.23.0… -2025-11-24T08:31:04.6295481Z Getting image source signatures -2025-11-24T08:31:04.6296761Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:31:04.8087684Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:31:04.9038337Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:31:05.0206355Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:31:05.3700042Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:31:05.4536951Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:31:05.7309248Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:31:06.0038845Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:31:06.1464947Z Copying blob sha256:d516d8acad4e21d9c4c66395b79f768dd7eb787fe0201996ed3160984fe1a453 -2025-11-24T08:31:12.4118329Z Copying blob sha256:7b09b83770faf288a8293a61a99017a074543ca8774c337a8b429a158b3dcd5c -2025-11-24T08:31:12.6559365Z Copying config sha256:dafd3690a8fc91786a4def7e7442a8dfe54cef2653808ead5130c999cb5ba3bc -2025-11-24T08:31:12.9395036Z Writing manifest to image destination -2025-11-24T08:31:12.9713678Z Fetching quay.io_wire_spar-schema_5.23.0… -2025-11-24T08:31:13.3699606Z Getting image source signatures -2025-11-24T08:31:13.3701819Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:31:13.5318484Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:31:13.6397115Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:31:13.7597700Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:31:14.0828607Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:31:14.1945264Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:31:14.3810021Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:31:14.5646530Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:31:14.7264984Z Copying blob sha256:f0b35ec45a29b11e2b810934b45f88832870498c5320784d507c5225e93bc159 -2025-11-24T08:31:19.8106248Z Copying blob sha256:c20f40c2608d177f25adea2ac99cb6f9bebd203e28df3a74f61374af64bf58de -2025-11-24T08:31:20.0566519Z Copying config sha256:bc8e73723d20a33b5180a7d707815c2a5fac1fba3f3b87df6af7f2e9581846ad -2025-11-24T08:31:20.3768473Z Writing manifest to image destination -2025-11-24T08:31:20.4133706Z Fetching quay.io_wire_spar_5.23.0… -2025-11-24T08:31:20.8443652Z Getting image source signatures -2025-11-24T08:31:20.8445029Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:31:21.0771465Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:31:21.2784438Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:31:21.3865680Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:31:21.9159664Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:31:22.0273561Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:31:22.2206671Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:31:22.4897395Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:31:22.6264135Z Copying blob sha256:f737b1b641973a794acdf80207625e6af5d2f0d08ed7541503dfdf348083bdb5 -2025-11-24T08:31:28.2018713Z Copying blob sha256:c6fcb3eaf70eb624eeac94cc4c1c23236bc3efb23ef3cb250a3447cbd4561b6d -2025-11-24T08:31:28.4112559Z Copying config sha256:61d46b273baa002ffaaa36cf1a4aa957aec58dca3791104d80953c9cc1298684 -2025-11-24T08:31:28.6406562Z Writing manifest to image destination -2025-11-24T08:31:28.6706036Z Fetching quay.io_wire_stern_5.23.0… -2025-11-24T08:31:29.1263016Z Getting image source signatures -2025-11-24T08:31:29.1264674Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:31:29.2701841Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:31:29.4145971Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:31:29.5445575Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:31:29.9607726Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:31:30.0786981Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:31:30.2656279Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:31:30.5068556Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:31:30.6307455Z Copying blob sha256:07e7179663367914a25ba6110bd73730f9458ad2a801774732590b39c6eb3a27 -2025-11-24T08:31:34.5553592Z Copying blob sha256:ae7696494c3bab53212b56f5b1a7a38e8587e4bec615e1dc34030706fe039dcf -2025-11-24T08:31:34.8120347Z Copying config sha256:dd43c0e48a2645920bbba717c4bf04e59cb4d05ac2d0b352c36654810cef6922 -2025-11-24T08:31:35.0596312Z Writing manifest to image destination -2025-11-24T08:31:35.0896167Z Fetching quay.io_wire_team-settings_4.22.0-v0.34.6-75730da… -2025-11-24T08:31:35.4326595Z Getting image source signatures -2025-11-24T08:31:35.4328361Z Copying blob sha256:2d35ebdb57d9971fea0cac1582aa78935adf8058b2cc32db163c98822e5dfa1b -2025-11-24T08:31:35.6497208Z Copying blob sha256:60e45a9660cfaebbbac9bba98180aa28b3966b7f2462d132c46f51a1f5b25a64 -2025-11-24T08:31:37.5777399Z Copying blob sha256:e74e4ed823e9560b3fe51c0cab47dbfdfc4b12453604319408ec58708fb9e720 -2025-11-24T08:31:37.9695332Z Copying blob sha256:da04d522c98fe12816b2bcddf8413fca73645f8fa60f287c672f58bcc7f0fa38 -2025-11-24T08:31:38.2356487Z Copying blob sha256:68784224e0066503a88cac4d683af496688dde7c9fdb53b03daa893ce9b435be -2025-11-24T08:31:38.6746761Z Copying blob sha256:c243a7e59e55f462cd330ba6346acc8c5cd6ecb320bc28c0917a5192e091c816 -2025-11-24T08:31:40.9368881Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:31:41.0451088Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:31:41.0963752Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:31:41.1486741Z Copying blob sha256:b27c5c4b44c003c467e99cef68eade10d0af41a1ace963e23c39a0016c6d20af -2025-11-24T08:31:41.4191966Z Copying blob sha256:6e78df822f6daeaad6efa4a0d588227a51efc13c27f14df17a68f677f3bdcb44 -2025-11-24T08:31:44.4026153Z Copying config sha256:c712060fa4eb55b539061aa0a560f5809926e2212b0e8ec7ef5d9fc4a088cdd6 -2025-11-24T08:31:44.6230094Z Writing manifest to image destination -2025-11-24T08:31:44.6534695Z Fetching quay.io_wire_webapp_2025-11-05-production.0-v0.34.6-5620a27… -2025-11-24T08:31:45.0208989Z Getting image source signatures -2025-11-24T08:31:45.0211152Z Copying blob sha256:fe07684b16b82247c3539ed86a65ff37a76138ec25d380bd80c869a1a4c73236 -2025-11-24T08:31:45.2204128Z Copying blob sha256:dfb92eddc1a1cc8909288d09ef3781f8be90d926b68c536be670c2ae59adc0f4 -2025-11-24T08:31:47.7516566Z Copying blob sha256:1b67613f0a721f5e91ffb2f49054a3c73c4c840bf8d7f882c9b2c08f85e0893f -2025-11-24T08:31:48.1928755Z Copying blob sha256:c9ddb8507f841fcb28003ed1a2f32d68d43e79296cab55b37f19e7f0f61982dd -2025-11-24T08:31:48.4065810Z Copying blob sha256:32cc6a14862517b7df7be668a2c75761085d7d4aaa8d45536d56e1e802773661 -2025-11-24T08:31:48.9086065Z Copying blob sha256:cc12369cf618c75b4230e14f5da117531d7ceada28b35b50669e10661ed2fd49 -2025-11-24T08:31:58.0532467Z Copying blob sha256:9a6aabb386d5bc0b3d82ff18203b89ea7a79c5f8517de9f233c7eec3fc07a636 -2025-11-24T08:31:58.2538746Z Copying blob sha256:a56dab23ebaeaa0115e3b5d71fa408822f260b3a4b0b9d28a22a82453e43dd07 -2025-11-24T08:31:58.6495238Z Copying blob sha256:14c1d07e9ed18218138ab906e3810e20fbd6d8624d6d5c59455c67a735be2d71 -2025-11-24T08:32:03.9004700Z Copying config sha256:291439a3daad3a6a59e8ed5c3c90d6cb9c83a7089ca00cc97553603f14028837 -2025-11-24T08:32:04.1656399Z Writing manifest to image destination -2025-11-24T08:32:04.1968525Z Fetching quay.io_wire_wire-utility-tool_1.3.0… -2025-11-24T08:32:04.7088573Z Getting image source signatures -2025-11-24T08:32:04.7089828Z Copying blob sha256:456a3213e1b1f193dc759cd05f6f8422428b8c4bd45ef40fbf41ba43bdce8570 -2025-11-24T08:32:05.4778278Z Copying blob sha256:5b43071a7b8765754e2f7387bc4269ea98e621a5bfd1d4fd56dbf245887b8310 -2025-11-24T08:32:09.7025608Z Copying blob sha256:d59bafb7a4becaaca3260f2b9ade26422a445583ee99846ff62dc02579760de7 -2025-11-24T08:32:10.3478368Z Copying blob sha256:40971169fa1a26f3b2dd10d018137ed7c1d0bd0346d1ab12f2c9d4fc5e0fc11b -2025-11-24T08:32:12.2315089Z Copying blob sha256:f7b7fca67a6934d57f9a68d6f66dd04e512550bb06d36b63061a7b2262fe671c -2025-11-24T08:32:12.4836147Z Copying blob sha256:f9383038960ff39f352e08e880b30de6acd9668567fc87c9c35edab8ce86b488 -2025-11-24T08:32:13.2426303Z Copying blob sha256:c76d2b4050c96f5c5f83b52e51e5d11622a64ffbf952a5084ab037b91e5231a4 -2025-11-24T08:32:13.5278331Z Copying blob sha256:fa83d6537a675fa1b6b1809baddfa657db05d9141e6b574eedf6bbf29f1e7641 -2025-11-24T08:32:13.7924777Z Copying blob sha256:027560f41e09175b469b827090b9aeadbbd02ed507a607248061787df2af2620 -2025-11-24T08:32:14.0703792Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:32:14.1677909Z Copying config sha256:d9767712843ee248ddc69e8f97f9dc84a8abb54997489f44558eb3df3b2f34a1 -2025-11-24T08:32:14.4108245Z Writing manifest to image destination -2025-11-24T08:32:14.4430361Z Fetching registry.gitlab.com_egos-tech_smtp_1.0.1… -2025-11-24T08:32:14.9048747Z Getting image source signatures -2025-11-24T08:32:14.9049986Z Copying blob sha256:757ae7631f8e1d39651aad33c995a10e880b614004ed9c6c995866d256a3f805 -2025-11-24T08:32:16.2107237Z Copying blob sha256:cd0755de4c22ee77e51895cf9849a2d9433cb331b59fbb6ddb0ebb80d0db22d2 -2025-11-24T08:32:16.8806077Z Copying config sha256:89040f0cabd788aa4b87500546c194f5fc8df6bb082533b2da90c2387f1ffb0f -2025-11-24T08:32:17.1560798Z Writing manifest to image destination -2025-11-24T08:32:17.1942503Z Fetching registry.k8s.io_ingress-nginx_controller_v1.10.6… -2025-11-24T08:32:17.4778615Z Getting image source signatures -2025-11-24T08:32:17.4781358Z Copying blob sha256:38a8310d387e375e0ec6fabe047a9149e8eb214073db9f461fee6251fd936a75 -2025-11-24T08:32:17.7745920Z Copying blob sha256:36c8ace24818448cb95b511e26934f2c42c1a1a8c1e4f21dcf7e9c076fec568d -2025-11-24T08:32:18.5995827Z Copying blob sha256:1589113f887639dee956f9427ffbc859f210b0e337555d8a875f5c4bfc53ac7c -2025-11-24T08:32:18.8447108Z Copying blob sha256:ff083963f0a597a8a685c5c380b51da0da848f99142044492b623622bd5d853d -2025-11-24T08:32:18.9023798Z Copying blob sha256:6aef73cafaf5595218eb5be41a364618d487dfcd5132dbc256efc1329c091756 -2025-11-24T08:32:19.0288733Z Copying blob sha256:1598e41ce4ca71aa1925d7cf5c447cb92727c47e56b08225ffa1877cb66dfed9 -2025-11-24T08:32:19.5286832Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:32:19.5766324Z Copying blob sha256:f5498cb2cb11679e16966905d80c402eaf639039044f64414b09defa7f7cac93 -2025-11-24T08:32:19.7085974Z Copying blob sha256:e4f45faee60f49b37fd72e8e0a2a8ca8314e61c7350ad1537980415d5931aa46 -2025-11-24T08:32:19.7927141Z Copying blob sha256:eba2b82ca8d73be6aa94f156b9d31ac2483055d516b29a7d890c418c1714f482 -2025-11-24T08:32:19.9916444Z Copying blob sha256:a280b0d99e844fef22b35e553514e3671509f174ca5e84bae66f129289cb45a7 -2025-11-24T08:32:20.4106736Z Copying blob sha256:20735dd9a1ddf7ba4ebe1f58671ec807ea05f7bc42f99e826404a07c862661cf -2025-11-24T08:32:20.5389043Z Copying blob sha256:0fbbc775ab81930d1f5f012200da0726ecc65af56166dd4a497db3c626a8c511 -2025-11-24T08:32:20.6165480Z Copying blob sha256:a686e243c7de5ec1ee650675ac6bfae2524d438a4b3121366a39b3f3a52237fa -2025-11-24T08:32:21.2416660Z Copying blob sha256:ae25c12dab823d9c719a756ca75cabbfe0911c3e3e340340c75b3d3eadac7ac6 -2025-11-24T08:32:21.3042533Z Copying config sha256:9cdd4614b7897b0f91aaafc574aa7f2dfed083dbbc8540a4a4e0d4496e0edaf7 -2025-11-24T08:32:21.3997704Z Writing manifest to image destination -2025-11-24T08:32:21.4329168Z Fetching registry.k8s.io_ingress-nginx_kube-webhook-certgen_v1.5.4… -2025-11-24T08:32:21.6910798Z Getting image source signatures -2025-11-24T08:32:21.6912025Z Copying blob sha256:35d697fe273816c60d20a62a879f8643f79cd4ed85a8e80dba28a17350fc26b6 -2025-11-24T08:32:21.7949147Z Copying blob sha256:bfb59b82a9b65e47d485e53b3e815bca3b3e21a095bd0cb88ced9ac0b48062bf -2025-11-24T08:32:21.8474227Z Copying blob sha256:4eff9a62d888790350b2481ff4a4f38f9c94b3674d26b2f2c85ca39cdef43fd9 -2025-11-24T08:32:21.9323707Z Copying blob sha256:a62778643d563b511190663ef9a77c30d46d282facfdce4f3a7aecc03423c1f3 -2025-11-24T08:32:21.9827650Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:32:22.0392282Z Copying blob sha256:3214acf345c0cc6bbdb56b698a41ccdefc624a09d6beb0d38b5de0b2303ecaf4 -2025-11-24T08:32:22.0870880Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:32:22.1346192Z Copying blob sha256:0bab15eea81d0fe6ab56ebf5fba14e02c4c1775a7f7436fbddd3505add4e18fa -2025-11-24T08:32:22.1816878Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:32:22.2347758Z Copying blob sha256:da7816fa955ea24533c388143c78804c28682eef99b4ee3723b548c70148bba6 -2025-11-24T08:32:22.2835057Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 -2025-11-24T08:32:22.3435987Z Copying blob sha256:ad8efacac9036cc6a99944504864d803c2102903b7a585146c74edeb0a177cf3 -2025-11-24T08:32:23.0807799Z Copying config sha256:0ea86a086203367db3e76dfbaf10b334e274b2af5d2c56fc70e0222e83ba0400 -2025-11-24T08:32:23.1288667Z Writing manifest to image destination -2025-11-24T08:32:23.1599411Z Fetching registry.k8s.io_ingress-nginx_kube-webhook-certgen_v20220916-gd32f8c343… -2025-11-24T08:32:23.4050515Z Getting image source signatures -2025-11-24T08:32:23.4051688Z Copying blob sha256:1cd0595314a53d179ddaf68761c9f40c4d9d1bcd3f692d1c005938dac2993db6 -2025-11-24T08:32:23.6136231Z Copying blob sha256:12fc225329e5f8fe052a31fa46f1d62f6f0e405626f7767bdaa14a02baffad3e -2025-11-24T08:32:24.0223187Z Copying config sha256:520347519a8caefcdff1c480be13cea37a66bccf517302949b569a654b0656b5 -2025-11-24T08:32:24.0786939Z Writing manifest to image destination -2025-11-24T08:32:24.1086750Z Fetching registry.k8s.io_kube-state-metrics_kube-state-metrics_v2.16.0… -2025-11-24T08:32:24.3398326Z Getting image source signatures -2025-11-24T08:32:24.3399505Z Copying blob sha256:35d697fe273816c60d20a62a879f8643f79cd4ed85a8e80dba28a17350fc26b6 -2025-11-24T08:32:24.4449829Z Copying blob sha256:bfb59b82a9b65e47d485e53b3e815bca3b3e21a095bd0cb88ced9ac0b48062bf -2025-11-24T08:32:24.5036502Z Copying blob sha256:4eff9a62d888790350b2481ff4a4f38f9c94b3674d26b2f2c85ca39cdef43fd9 -2025-11-24T08:32:24.6003996Z Copying blob sha256:a62778643d563b511190663ef9a77c30d46d282facfdce4f3a7aecc03423c1f3 -2025-11-24T08:32:24.6489049Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:32:24.7085696Z Copying blob sha256:3214acf345c0cc6bbdb56b698a41ccdefc624a09d6beb0d38b5de0b2303ecaf4 -2025-11-24T08:32:24.7554159Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:32:24.8013839Z Copying blob sha256:0bab15eea81d0fe6ab56ebf5fba14e02c4c1775a7f7436fbddd3505add4e18fa -2025-11-24T08:32:24.8579748Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:32:24.9155859Z Copying blob sha256:da7816fa955ea24533c388143c78804c28682eef99b4ee3723b548c70148bba6 -2025-11-24T08:32:24.9655747Z Copying blob sha256:ddf74a63f7d8b7d157e5db1a45675a58e304b4c1d425b05c28c835b987623395 -2025-11-24T08:32:25.0210273Z Copying blob sha256:4a9e6ef411a5b299636c58dbd72b6a3961c84cb329cb0d1cb510f7cf139ee818 -2025-11-24T08:32:25.4804661Z Copying config sha256:5ce700671515d4a1ed5e1f01713a3769926a418cf5c31d5d0d33543482e88b74 -2025-11-24T08:32:25.5316864Z Writing manifest to image destination -2025-11-24T08:32:25.5621451Z Fetching softwaremill_elasticmq-native_1.6.11… -2025-11-24T08:32:25.9275438Z Getting image source signatures -2025-11-24T08:32:25.9276846Z Copying blob sha256:dc0decf4841d19b14e836c2d82bd5cb9540fb5e0d1359549ca243f49036557e9 -2025-11-24T08:32:26.0626925Z Copying blob sha256:c0939416ca1e84705a3d60cca55df2e41124d3b628b5a36c9ee6d07348c829c4 -2025-11-24T08:32:26.1139307Z Copying blob sha256:2577f95c2141954e793d24a14d3c8283120dd951d5074a05f3ecdaa8855db8cc -2025-11-24T08:32:26.1733052Z Copying blob sha256:2a814958434cbbc5e9eba9ad273a81aad4f8c8bece88b22b8fb0f1f5cdc9b423 -2025-11-24T08:32:26.2358879Z Copying blob sha256:220b77f21b2f6dbde6c193b6f90b9f53c259915e45583dd09d10844afaec831f -2025-11-24T08:32:26.9039652Z Copying blob sha256:de92a77d31dc8b2d3730e97f6edaeee01222ede2e4026633b20ef9e2d64fef38 -2025-11-24T08:32:26.9630957Z Copying blob sha256:49edeee580bc2587be63027825183c532999faf3e173cf56dcb0367e44b82d85 -2025-11-24T08:32:27.0109026Z Copying blob sha256:a8b3c663ef2ecbecb10d6bb472d9929f004965ff95f545a97787bef1f0c26291 -2025-11-24T08:32:27.0710395Z Copying config sha256:63f7f8bcef94fd359f012d8e504c56fac28d3e4f3f5175f6d2a555b9ec2d3373 -2025-11-24T08:32:27.1157850Z Writing manifest to image destination -2025-11-24T08:34:03.3716059Z Running post-chart process script 0 in dir /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output with values type prod -2025-11-24T08:34:03.3801503Z Building zauth container image in /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... -2025-11-24T08:34:03.4964454Z Fetching quay.io_wire_zauth_5.23.0… -2025-11-24T08:34:03.8579443Z Getting image source signatures -2025-11-24T08:34:03.8580704Z Copying blob sha256:1ff6274bce740b826fb217e2a5e7e88330a2654d7704afb6e1a0230f41fac101 -2025-11-24T08:34:04.0217340Z Copying blob sha256:04739f167e278d3fe8bb2c359acc7fedf4bb4d667c65d22f1a941c400f723290 -2025-11-24T08:34:04.1186635Z Copying blob sha256:70d0f3956ec29837333b67814a6239bf6ab7afd462a551aecb17faaf165b560e -2025-11-24T08:34:04.2548459Z Copying blob sha256:556ae3879c281dc8c28868872de79ab33fc8bcae390b917fdd04ba512409ee6d -2025-11-24T08:34:04.8794020Z Copying blob sha256:1e33e8681909cf8aa2c83679e435d03c2da2bfa6caef30151aa7cae846f6a96c -2025-11-24T08:34:05.0178239Z Copying blob sha256:8068d326d58e48f552086e9fe1262ce05a48712e5d096cbf3d6c43f2cff825bc -2025-11-24T08:34:05.2490287Z Copying blob sha256:b0a4f375a34022da8f9c9006776aa1264f1aeb800ced5fff0655863f1c8e281e -2025-11-24T08:34:05.5541566Z Copying blob sha256:29ac87cde99c4d296ae70c0d56233f6e77040e94e8be4f719c893f18b8dbf2f2 -2025-11-24T08:34:05.7085971Z Copying blob sha256:c4f1468300ed99d330fb82c09d28c8c4fe32e95073dc8a12179fb334d08445c4 -2025-11-24T08:34:09.3203041Z Copying blob sha256:f4a2825d20e7c9e4d64a047ac7534d3561a1fb97c2d16f90741a33eb567bea6f -2025-11-24T08:34:09.6598443Z Copying config sha256:1dd6993d052ae8a85b7e24a754755992e1ce9539b7c8db4b5f59d4a338ae6c02 -2025-11-24T08:34:09.9414050Z Writing manifest to image destination -2025-11-24T08:34:09.9682058Z Building adminhost container images in /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... -2025-11-24T08:34:10.4473401Z trace: warning: in docker image quay.io/wire/wire-server-deploy: The contents parameter is deprecated. Change to copyToRoot if the contents are designed to be copied to the root filesystem, such as when you use `buildEnv` or similar between contents and your packages. Use copyToRoot = buildEnv { ... }; or similar if you intend to add packages to /bin. -2025-11-24T08:34:17.1689996Z this path will be fetched (1377.71 MiB download, 1466.64 MiB unpacked): -2025-11-24T08:34:17.1691474Z /nix/store/wf4h5vv4v5cpmbflm884r3hm2mrb87kg-docker-image-wire-server-deploy.tar.gz -2025-11-24T08:34:17.1702287Z copying path '/nix/store/wf4h5vv4v5cpmbflm884r3hm2mrb87kg-docker-image-wire-server-deploy.tar.gz' from 'https://wire-server.cachix.org'... -2025-11-24T08:34:36.0987720Z Building Linux packages /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... -2025-11-24T08:34:37.1591310Z python3-apt | python3-netaddr | python3-pip | aufs-tools | apt-transport-https | software-properties-common | conntrack | ipvsadm | ipset | curl | rsync | socat | unzip | e2fsprogs | xfsprogs | ebtables | python3-minimal | openjdk-8-jdk-headless | iproute2 | procps | libjemalloc2 | qrencode | texlive | latexmk | libopts25 | ntp | libc6 | libseccomp2 | iptables | bash-completion | logrotate | cron | crontab | ufw | netcat | telnet | less | traceroute | strace | iputils-ping | nano | vi | tcpdump | gnupg | bzip2 | erlang-base | erlang-asn1 | erlang-crypto | erlang-eldap | erlang-ftp | erlang-inets | erlang-mnesia | erlang-os-mon | erlang-parsetools | erlang-public-key | erlang-runtime-tools | erlang-snmp | erlang-ssl | erlang-syntax-tools | erlang-tftp | erlang-tools | erlang-xmerl | rabbitmq-server | ssl-cert | libllvm15 | sysstat | libssl-dev | libjson-perl | libipc-run-perl -2025-11-24T08:34:37.2019562Z Info -2025-11-24T08:34:38.0067067Z gpg (GnuPG) 1.4.23 -2025-11-24T08:34:38.0067648Z Copyright (C) 2015 Free Software Foundation, Inc. -2025-11-24T08:34:38.0068402Z License GPLv3+: GNU GPL version 3 or later -2025-11-24T08:34:38.0069182Z This is free software: you are free to change and redistribute it. -2025-11-24T08:34:38.0069860Z There is NO WARRANTY, to the extent permitted by law. -2025-11-24T08:34:38.0070247Z -2025-11-24T08:34:38.0070513Z Home: /home/runner/work/_temp/tmp.kyQNIWJgXX -2025-11-24T08:34:38.0071155Z Supported algorithms: -2025-11-24T08:34:38.0071814Z Pubkey: RSA, RSA-E, RSA-S, ELG-E, DSA -2025-11-24T08:34:38.0072940Z Cipher: IDEA, 3DES, CAST5, BLOWFISH, AES, AES192, AES256, TWOFISH, -2025-11-24T08:34:38.0073901Z CAMELLIA128, CAMELLIA192, CAMELLIA256 -2025-11-24T08:34:38.0074731Z Hash: MD5, SHA1, RIPEMD160, SHA256, SHA384, SHA512, SHA224 -2025-11-24T08:34:38.0075432Z Compression: Uncompressed, ZIP, ZLIB, BZIP2 -2025-11-24T08:34:38.0092114Z gpg: keyring `/home/runner/work/_temp/tmp.kyQNIWJgXX/pubring.gpg' created -2025-11-24T08:34:38.0099139Z gpg: /home/runner/work/_temp/tmp.kyQNIWJgXX/trustdb.gpg: trustdb created -2025-11-24T08:34:38.0116868Z gpg: keyring `/home/runner/work/_temp/tmp.kyQNIWJgXX/trustedkeys.gpg' created -2025-11-24T08:34:38.0136535Z gpg: keyring `/home/runner/work/_temp/tmp.kyQNIWJgXX/secring.gpg' created -2025-11-24T08:34:38.0149451Z gpg: key EBD99578: secret key imported -2025-11-24T08:34:38.0154878Z gpg: key EBD99578: public key "Wire Swiss GmbH " imported -2025-11-24T08:34:38.0155789Z gpg: Total number processed: 1 -2025-11-24T08:34:38.0156560Z gpg: imported: 1 (RSA: 1) -2025-11-24T08:34:38.0157241Z gpg: secret keys read: 1 -2025-11-24T08:34:38.0158088Z gpg: secret keys imported: 1 -2025-11-24T08:34:38.0162336Z gpg: no ultimately trusted keys found -2025-11-24T08:34:38.0164208Z Printing the public key ids... -2025-11-24T08:34:38.0178302Z /home/runner/work/_temp/tmp.kyQNIWJgXX/pubring.gpg -2025-11-24T08:34:38.0179211Z -------------------------------------------------- -2025-11-24T08:34:38.0180098Z pub 2048R/EBD99578 2024-07-12 [expires: 2026-07-12] -2025-11-24T08:34:38.0180978Z uid Wire Swiss GmbH -2025-11-24T08:34:38.0181497Z -2025-11-24T08:34:38.0182143Z Printing the secret key ids... -2025-11-24T08:34:38.0196260Z /home/runner/work/_temp/tmp.kyQNIWJgXX/secring.gpg -2025-11-24T08:34:38.0197152Z -------------------------------------------------- -2025-11-24T08:34:38.0197890Z sec 2048R/EBD99578 2024-07-12 [expires: 2026-07-12] -2025-11-24T08:34:38.0198800Z uid Wire Swiss GmbH -2025-11-24T08:34:38.0199630Z ssb 2048R/A7637513 2024-07-12 -2025-11-24T08:34:38.0200050Z -2025-11-24T08:34:38.0472274Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-11-24T08:34:38.0473790Z Dload Upload Total Spent Left Speed -2025-11-24T08:34:38.0474554Z -2025-11-24T08:34:38.1962153Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-11-24T08:34:38.4593300Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-11-24T08:34:38.4594202Z 100 16000 0 16000 0 0 38813 0 --:--:-- --:--:-- --:--:-- 38740 -2025-11-24T08:34:38.4637966Z gpg: key C0B21F32: public key "Ubuntu Archive Automatic Signing Key (2012) " imported -2025-11-24T08:34:38.4638760Z gpg: Total number processed: 1 -2025-11-24T08:34:38.4639526Z gpg: imported: 1 (RSA: 1) -2025-11-24T08:34:38.4644441Z gpg: no ultimately trusted keys found -2025-11-24T08:34:38.4692847Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-11-24T08:34:38.4693949Z Dload Upload Total Spent Left Speed -2025-11-24T08:34:38.4694509Z -2025-11-24T08:34:38.7577987Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-11-24T08:34:38.7579287Z 100 4747 0 4747 0 0 16447 0 --:--:-- --:--:-- --:--:-- 16482 -2025-11-24T08:34:38.7609312Z gpg: key 991BC93C: public key "Ubuntu Archive Automatic Signing Key (2018) " imported -2025-11-24T08:34:38.7610647Z gpg: Total number processed: 1 -2025-11-24T08:34:38.7611473Z gpg: imported: 1 (RSA: 1) -2025-11-24T08:34:38.7616133Z gpg: no ultimately trusted keys found -2025-11-24T08:34:38.7665695Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-11-24T08:34:38.7666853Z Dload Upload Total Spent Left Speed -2025-11-24T08:34:38.7667433Z -2025-11-24T08:34:38.8219666Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-11-24T08:34:38.8220752Z 100 3817 100 3817 0 0 68730 0 --:--:-- --:--:-- --:--:-- 69400 -2025-11-24T08:34:38.8254097Z gpg: key 0EBFCD88: public key "Docker Release (CE deb) " imported -2025-11-24T08:34:38.8254900Z gpg: Total number processed: 1 -2025-11-24T08:34:38.8255406Z gpg: imported: 1 (RSA: 1) -2025-11-24T08:34:39.2199668Z gpg: key 6026DFCA: public key "RabbitMQ Release Signing Key " imported -2025-11-24T08:34:39.2200817Z gpg: Total number processed: 1 -2025-11-24T08:34:39.2201567Z gpg: imported: 1 (RSA: 1) -2025-11-24T08:34:39.2205059Z gpg: no ultimately trusted keys found -2025-11-24T08:34:39.5273349Z gpg: key 57EBB1CC: public key "Launchpad PPA for Team RabbitMQ" imported -2025-11-24T08:34:39.5274427Z gpg: Total number processed: 1 -2025-11-24T08:34:39.5275182Z gpg: imported: 1 (RSA: 1) -2025-11-24T08:34:39.9442024Z gpg: key 4D206F89: public key "https://packagecloud.io/rabbitmq/rabbitmq-server (https://packagecloud.io/docs#gpg_signing) " imported -2025-11-24T08:34:39.9444450Z gpg: Total number processed: 1 -2025-11-24T08:34:39.9445491Z gpg: imported: 1 (RSA: 1) -2025-11-24T08:34:39.9449459Z Trusted -2025-11-24T08:34:39.9476170Z /home/runner/work/_temp/tmp.kyQNIWJgXX/trustedkeys.gpg -2025-11-24T08:34:39.9477396Z ------------------------------------------------------ -2025-11-24T08:34:39.9478504Z pub 4096R/C0B21F32 2012-05-11 -2025-11-24T08:34:39.9479864Z uid Ubuntu Archive Automatic Signing Key (2012) -2025-11-24T08:34:39.9480921Z -2025-11-24T08:34:39.9481302Z pub 4096R/991BC93C 2018-09-17 -2025-11-24T08:34:39.9482278Z uid Ubuntu Archive Automatic Signing Key (2018) -2025-11-24T08:34:39.9483218Z -2025-11-24T08:34:39.9483536Z pub 4096R/0EBFCD88 2017-02-22 -2025-11-24T08:34:39.9484330Z uid Docker Release (CE deb) -2025-11-24T08:34:39.9485190Z sub 4096R/F273FCD8 2017-02-22 -2025-11-24T08:34:39.9485597Z -2025-11-24T08:34:39.9485895Z pub 4096R/6026DFCA 2016-05-17 -2025-11-24T08:34:39.9486718Z uid RabbitMQ Release Signing Key -2025-11-24T08:34:39.9487610Z sub 4096R/12EBCE19 2016-05-17 -2025-11-24T08:34:39.9488017Z -2025-11-24T08:34:39.9488315Z pub 4096R/57EBB1CC 2021-03-08 -2025-11-24T08:34:39.9489074Z uid Launchpad PPA for Team RabbitMQ -2025-11-24T08:34:39.9489574Z -2025-11-24T08:34:39.9489849Z pub 4096R/4D206F89 2018-10-08 -2025-11-24T08:34:39.9491018Z uid https://packagecloud.io/rabbitmq/rabbitmq-server (https://packagecloud.io/docs#gpg_signing) -2025-11-24T08:34:39.9492246Z sub 4096R/DC62814E 2018-10-08 -2025-11-24T08:34:39.9492812Z -2025-11-24T08:34:40.6372479Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/InRelease... -2025-11-24T08:34:41.7507955Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/InRelease -2025-11-24T08:34:41.7542394Z openpgp: Signature made Thu, 21 Apr 2022 17:16:39 UTC using RSA key ID 871920D1991BC93C -2025-11-24T08:34:41.7543665Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " -2025-11-24T08:34:41.7882103Z -2025-11-24T08:34:41.7883181Z Mirror [jammy]: http://de.archive.ubuntu.com/ubuntu/ jammy successfully added. -2025-11-24T08:34:41.7884431Z You can run 'aptly mirror update jammy' to download repository contents. -2025-11-24T08:34:41.8078751Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/InRelease... -2025-11-24T08:34:42.5875710Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/InRelease -2025-11-24T08:34:42.5897053Z openpgp: Signature made Mon, 24 Nov 2025 05:07:29 UTC using RSA key ID 871920D1991BC93C -2025-11-24T08:34:42.5898019Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " -2025-11-24T08:34:42.6044541Z -2025-11-24T08:34:42.6045563Z Mirror [jammy-security]: http://de.archive.ubuntu.com/ubuntu/ jammy-security successfully added. -2025-11-24T08:34:42.6046967Z You can run 'aptly mirror update jammy-security' to download repository contents. -2025-11-24T08:34:42.6243837Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease... -2025-11-24T08:34:43.3301951Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease -2025-11-24T08:34:43.3324208Z openpgp: Signature made Mon, 24 Nov 2025 05:10:20 UTC using RSA key ID 871920D1991BC93C -2025-11-24T08:34:43.3325674Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " -2025-11-24T08:34:43.3464113Z -2025-11-24T08:34:43.3465129Z Mirror [jammy-updates]: http://de.archive.ubuntu.com/ubuntu/ jammy-updates successfully added. -2025-11-24T08:34:43.3466032Z You can run 'aptly mirror update jammy-updates' to download repository contents. -2025-11-24T08:34:43.3663516Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/InRelease... -2025-11-24T08:34:43.3904869Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/InRelease -2025-11-24T08:34:43.3913036Z openpgp: Signature made Thu, 20 Nov 2025 14:24:23 UTC using RSA key ID 7EA0A9C3F273FCD8 -2025-11-24T08:34:43.3913977Z openpgp: Good signature from "Docker Release (CE deb) " -2025-11-24T08:34:43.3963632Z -2025-11-24T08:34:43.3964575Z Mirror [docker-ce]: https://download.docker.com/linux/ubuntu/ jammy successfully added. -2025-11-24T08:34:43.3965414Z You can run 'aptly mirror update docker-ce' to download repository contents. -2025-11-24T08:34:43.4183948Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/InRelease... -2025-11-24T08:34:44.3534134Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/InRelease -2025-11-24T08:34:44.3567536Z openpgp: Signature made Thu, 21 Apr 2022 17:16:39 UTC using RSA key ID 871920D1991BC93C -2025-11-24T08:34:44.3568954Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " -2025-11-24T08:34:44.3769822Z Downloading & parsing package files... -2025-11-24T08:34:44.3771808Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/main/binary-amd64/Packages.gz... -2025-11-24T08:34:45.5494144Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/main/binary-amd64/Packages.gz -2025-11-24T08:34:45.6521755Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/universe/binary-amd64/Packages.gz... -2025-11-24T08:34:47.4536151Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy/universe/binary-amd64/Packages.gz -2025-11-24T08:34:48.5555503Z Applying filter... -2025-11-24T08:34:48.6160662Z Packages filtered: 65013 -> 345. -2025-11-24T08:34:48.6161540Z Building download queue... -2025-11-24T08:34:48.6191972Z Download queue: 345 items (235.98 MiB) -2025-11-24T08:34:48.6200265Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lcms2/liblcms2-2_2.12~rc1-2build2_amd64.deb... -2025-11-24T08:34:48.6202103Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/w/wheel/python3-wheel_0.37.1-2_all.deb... -2025-11-24T08:34:48.6203965Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-0_3.37.2-2_amd64.deb... -2025-11-24T08:34:48.6205797Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gmp/libgmp10_6.2.1+dfsg-3ubuntu1_amd64.deb... -2025-11-24T08:34:48.6207268Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/netcat/netcat-traditional_1.10-47_amd64.deb... -2025-11-24T08:34:48.6208207Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb... -2025-11-24T08:34:48.6209155Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libsynctex2_2021.20210626.59705-1build1_amd64.deb... -2025-11-24T08:34:48.6210184Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pinentry/pinentry-curses_1.1.1-1build2_amd64.deb... -2025-11-24T08:34:48.6211127Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xz-utils/liblzma5_5.2.5-2ubuntu1_amd64.deb... -2025-11-24T08:34:48.6212073Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xz-utils/xz-utils_5.2.5-2ubuntu1_amd64.deb... -2025-11-24T08:34:49.1056511Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pinentry/pinentry-curses_1.1.1-1build2_amd64.deb -2025-11-24T08:34:49.1058406Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/h/harfbuzz/libharfbuzz0b_2.7.4-1ubuntu3_amd64.deb... -2025-11-24T08:34:49.1174806Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/w/wheel/python3-wheel_0.37.1-2_all.deb -2025-11-24T08:34:49.1175908Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl_5.34.0-3ubuntu1_amd64.deb... -2025-11-24T08:34:49.2109318Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xz-utils/xz-utils_5.2.5-2ubuntu1_amd64.deb -2025-11-24T08:34:49.2110876Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1_amd64.deb... -2025-11-24T08:34:49.2232407Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/netcat/netcat-traditional_1.10-47_amd64.deb -2025-11-24T08:34:49.2234925Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncursesw6_6.3-2_amd64.deb... -2025-11-24T08:34:49.2236926Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xz-utils/liblzma5_5.2.5-2ubuntu1_amd64.deb -2025-11-24T08:34:49.2238157Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcsc-lite/libpcsclite1_1.9.5-3_amd64.deb... -2025-11-24T08:34:49.2242863Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libsynctex2_2021.20210626.59705-1build1_amd64.deb -2025-11-24T08:34:49.2244653Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netkit-telnet/telnet_0.17-44build1_amd64.deb... -2025-11-24T08:34:49.3317676Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lcms2/liblcms2-2_2.12~rc1-2build2_amd64.deb -2025-11-24T08:34:49.3319200Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/i/inetutils/inetutils-traceroute_2.2-2_amd64.deb... -2025-11-24T08:34:49.4381724Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gmp/libgmp10_6.2.1+dfsg-3ubuntu1_amd64.deb -2025-11-24T08:34:49.4383702Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpcap/libpcap0.8_1.10.1-4build1_amd64.deb... -2025-11-24T08:34:49.5775267Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-0_3.37.2-2_amd64.deb -2025-11-24T08:34:49.5776315Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10_3.10.4-3_amd64.deb... -2025-11-24T08:34:49.6943493Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcsc-lite/libpcsclite1_1.9.5-3_amd64.deb -2025-11-24T08:34:49.6945546Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam0g_1.4.0-11ubuntu2_amd64.deb... -2025-11-24T08:34:49.8055133Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/i/inetutils/inetutils-traceroute_2.2-2_amd64.deb -2025-11-24T08:34:49.8056665Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gobject-introspection/gir1.2-glib-2.0_1.72.0-1_amd64.deb... -2025-11-24T08:34:49.8144576Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netkit-telnet/telnet_0.17-44build1_amd64.deb -2025-11-24T08:34:49.8146593Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-freefont/fonts-freefont-ttf_20120503-10build1_all.deb... -2025-11-24T08:34:49.9388567Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1_amd64.deb -2025-11-24T08:34:49.9390303Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxtst/libxtst6_1.2.3-1build4_amd64.deb... -2025-11-24T08:34:49.9472327Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncursesw6_6.3-2_amd64.deb -2025-11-24T08:34:49.9474271Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb1_1.14-3ubuntu3_amd64.deb... -2025-11-24T08:34:50.0487098Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/h/harfbuzz/libharfbuzz0b_2.7.4-1ubuntu3_amd64.deb -2025-11-24T08:34:50.0488493Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/npth/libnpth0_1.6-3build2_amd64.deb... -2025-11-24T08:34:50.0710191Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl_5.34.0-3ubuntu1_amd64.deb -2025-11-24T08:34:50.0711569Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/f/fonts-freefont/fonts-freefont-otf_20120503-10build1_all.deb... -2025-11-24T08:34:50.1716924Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxtst/libxtst6_1.2.3-1build4_amd64.deb -2025-11-24T08:34:50.1718148Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libtexlua53_2021.20210626.59705-1build1_amd64.deb... -2025-11-24T08:34:50.1754619Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpcap/libpcap0.8_1.10.1-4build1_amd64.deb -2025-11-24T08:34:50.1756423Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libtexluajit2_2021.20210626.59705-1build1_amd64.deb... -2025-11-24T08:34:50.2936582Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam0g_1.4.0-11ubuntu2_amd64.deb -2025-11-24T08:34:50.2938806Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1_amd64.deb... -2025-11-24T08:34:50.3912595Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10_3.10.4-3_amd64.deb -2025-11-24T08:34:50.3914287Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sysstat/sysstat_12.5.2-2build2_amd64.deb... -2025-11-24T08:34:50.3978972Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gobject-introspection/gir1.2-glib-2.0_1.72.0-1_amd64.deb -2025-11-24T08:34:50.3981225Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors5_3.6.0-7ubuntu1_amd64.deb... -2025-11-24T08:34:50.4032593Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/npth/libnpth0_1.6-3build2_amd64.deb -2025-11-24T08:34:50.4034167Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libk/libksba/libksba8_1.6.0-2build1_amd64.deb... -2025-11-24T08:34:50.5214133Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1_amd64.deb -2025-11-24T08:34:50.5215977Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg_2.2.27-3ubuntu2_all.deb... -2025-11-24T08:34:50.6417871Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb1_1.14-3ubuntu3_amd64.deb -2025-11-24T08:34:50.6419990Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-0_2.72.1-1_amd64.deb... -2025-11-24T08:34:50.7418072Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors5_3.6.0-7ubuntu1_amd64.deb -2025-11-24T08:34:50.7420004Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt-common_2.3.0ubuntu2_all.deb... -2025-11-24T08:34:50.8063001Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libtexlua53_2021.20210626.59705-1build1_amd64.deb -2025-11-24T08:34:50.8064750Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-data_2.72.1-1_all.deb... -2025-11-24T08:34:50.8928804Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-freefont/fonts-freefont-ttf_20120503-10build1_all.deb -2025-11-24T08:34:50.8930426Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjson-perl/libjson-perl_4.04000-1_all.deb... -2025-11-24T08:34:50.9190442Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libtexluajit2_2021.20210626.59705-1build1_amd64.deb -2025-11-24T08:34:50.9192356Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1_amd64.deb... -2025-11-24T08:34:50.9804281Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libk/libksba/libksba8_1.6.0-2build1_amd64.deb -2025-11-24T08:34:50.9806077Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnftnl/libnftnl11_1.2.1-1build1_amd64.deb... -2025-11-24T08:34:50.9999702Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt-common_2.3.0ubuntu2_all.deb -2025-11-24T08:34:51.0001560Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsepol/libsepol2_3.3-1build1_amd64.deb... -2025-11-24T08:34:51.0376481Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-data_2.72.1-1_all.deb -2025-11-24T08:34:51.0378762Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-cryptography/python3-cryptography_3.4.8-1ubuntu2_amd64.deb... -2025-11-24T08:34:51.1588116Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1_amd64.deb -2025-11-24T08:34:51.1590459Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-oauthlib/python3-oauthlib_3.2.0-1_all.deb... -2025-11-24T08:34:51.2224403Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sysstat/sysstat_12.5.2-2build2_amd64.deb -2025-11-24T08:34:51.2226178Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3_amd64.deb... -2025-11-24T08:34:51.2599631Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/f/fonts-freefont/fonts-freefont-otf_20120503-10build1_all.deb -2025-11-24T08:34:51.2601513Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/libpaper1_1.1.28build2_amd64.deb... -2025-11-24T08:34:51.2701131Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg_2.2.27-3ubuntu2_all.deb -2025-11-24T08:34:51.2702567Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/traceroute/traceroute_2.1.0-2_amd64.deb... -2025-11-24T08:34:51.3422432Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjson-perl/libjson-perl_4.04000-1_all.deb -2025-11-24T08:34:51.3424688Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/netcat-openbsd/netcat_1.218-4ubuntu1_all.deb... -2025-11-24T08:34:51.4495159Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnftnl/libnftnl11_1.2.1-1build1_amd64.deb -2025-11-24T08:34:51.4499898Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/dbus_1.12.20-2ubuntu4_amd64.deb... -2025-11-24T08:34:51.4868142Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/libpaper1_1.1.28build2_amd64.deb -2025-11-24T08:34:51.4870006Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-mnesia_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:34:51.5853088Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/netcat-openbsd/netcat_1.218-4ubuntu1_all.deb -2025-11-24T08:34:51.5855254Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/init-system-helpers/init-system-helpers_1.62_all.deb... -2025-11-24T08:34:51.6065875Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-0_2.72.1-1_amd64.deb -2025-11-24T08:34:51.6067789Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/l/latexmk/latexmk_4.76-1_all.deb... -2025-11-24T08:34:51.6283507Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-oauthlib/python3-oauthlib_3.2.0-1_all.deb -2025-11-24T08:34:51.6285460Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-latex-base_2021.20220204-1_all.deb... -2025-11-24T08:34:51.6749992Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsepol/libsepol2_3.3-1build1_amd64.deb -2025-11-24T08:34:51.6752220Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/libperl5.34_5.34.0-3ubuntu1_amd64.deb... -2025-11-24T08:34:51.7283678Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/traceroute/traceroute_2.1.0-2_amd64.deb -2025-11-24T08:34:51.7285827Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.4-0ubuntu2_amd64.deb... -2025-11-24T08:34:51.7498532Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-cryptography/python3-cryptography_3.4.8-1ubuntu2_amd64.deb -2025-11-24T08:34:51.7500328Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libsmartcols1_2.37.2-4ubuntu3_amd64.deb... -2025-11-24T08:34:51.9263316Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3_amd64.deb -2025-11-24T08:34:51.9265136Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libipc-run-perl/libipc-run-perl_20200505.0-1_all.deb... -2025-11-24T08:34:51.9314582Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/init-system-helpers/init-system-helpers_1.62_all.deb -2025-11-24T08:34:51.9316434Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgv_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:34:51.9688916Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.4-0ubuntu2_amd64.deb -2025-11-24T08:34:51.9690927Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/expat/libexpat1_2.4.7-1_amd64.deb... -2025-11-24T08:34:52.0497163Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/dbus_1.12.20-2ubuntu4_amd64.deb -2025-11-24T08:34:52.0499201Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnl3/libnl-genl-3-200_3.5.0-0.1_amd64.deb... -2025-11-24T08:34:52.2012318Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/l/latexmk/latexmk_4.76-1_all.deb -2025-11-24T08:34:52.2014186Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tzdata/tzdata_2022a-0ubuntu1_all.deb... -2025-11-24T08:34:52.2333172Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libsmartcols1_2.37.2-4ubuntu3_amd64.deb -2025-11-24T08:34:52.2335220Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2-bin_2.44-1build3_amd64.deb... -2025-11-24T08:34:52.2798896Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnl3/libnl-genl-3-200_3.5.0-0.1_amd64.deb -2025-11-24T08:34:52.2800723Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.20.1-1_amd64.deb... -2025-11-24T08:34:52.3144240Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-mnesia_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:34:52.3145718Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1_amd64.deb... -2025-11-24T08:34:52.3814396Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libipc-run-perl/libipc-run-perl_20200505.0-1_all.deb -2025-11-24T08:34:52.3816151Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnutls28/libgnutls30_3.7.3-4ubuntu1_amd64.deb... -2025-11-24T08:34:52.4289532Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/expat/libexpat1_2.4.7-1_amd64.deb -2025-11-24T08:34:52.4291379Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/appstream/libappstream4_0.15.2-2_amd64.deb... -2025-11-24T08:34:52.5111430Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgv_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:34:52.5113533Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/debianutils/debianutils_5.5-1ubuntu2_amd64.deb... -2025-11-24T08:34:52.5867227Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-latex-base_2021.20220204-1_all.deb -2025-11-24T08:34:52.5869013Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/attr/libattr1_2.5.1-1build1_amd64.deb... -2025-11-24T08:34:52.5964270Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2-bin_2.44-1build3_amd64.deb -2025-11-24T08:34:52.5966101Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-eldap_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:34:52.6674138Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1_amd64.deb -2025-11-24T08:34:52.6676667Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl-modules-5.34_5.34.0-3ubuntu1_all.deb... -2025-11-24T08:34:52.8228025Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/attr/libattr1_2.5.1-1build1_amd64.deb -2025-11-24T08:34:52.8229685Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1_amd64.deb... -2025-11-24T08:34:52.8519861Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/libperl5.34_5.34.0-3ubuntu1_amd64.deb -2025-11-24T08:34:52.8523772Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6_4.18.0-4build1_amd64.deb... -2025-11-24T08:34:52.9047604Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tzdata/tzdata_2022a-0ubuntu1_all.deb -2025-11-24T08:34:52.9049368Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/policykit-1_0.105-33_amd64.deb... -2025-11-24T08:34:53.0218887Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/appstream/libappstream4_0.15.2-2_amd64.deb -2025-11-24T08:34:53.0220746Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb-shm0_1.14-3ubuntu3_amd64.deb... -2025-11-24T08:34:53.0611042Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1_amd64.deb -2025-11-24T08:34:53.0613015Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/readline/libreadline8_8.1.2-1_amd64.deb... -2025-11-24T08:34:53.0732904Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/debianutils/debianutils_5.5-1ubuntu2_amd64.deb -2025-11-24T08:34:53.0734538Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcrypt/libcrypt1_4.4.27-1_amd64.deb... -2025-11-24T08:34:53.1378171Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/policykit-1_0.105-33_amd64.deb -2025-11-24T08:34:53.1379763Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netbase/netbase_6.3_all.deb... -2025-11-24T08:34:53.1940681Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.20.1-1_amd64.deb -2025-11-24T08:34:53.1942303Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.22_all.deb... -2025-11-24T08:34:53.1998343Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-eldap_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:34:53.2000703Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3_amd64.deb... -2025-11-24T08:34:53.2094365Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6_4.18.0-4build1_amd64.deb -2025-11-24T08:34:53.2096423Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng16-16_1.6.37-3build5_amd64.deb... -2025-11-24T08:34:53.2576800Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb-shm0_1.14-3ubuntu3_amd64.deb -2025-11-24T08:34:53.2578359Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mpdecimal/libmpdec3_2.5.1-2build2_amd64.deb... -2025-11-24T08:34:53.3210618Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnutls28/libgnutls30_3.7.3-4ubuntu1_amd64.deb -2025-11-24T08:34:53.3212974Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/acl/libacl1_2.3.1-1_amd64.deb... -2025-11-24T08:34:53.3717536Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netbase/netbase_6.3_all.deb -2025-11-24T08:34:53.3719267Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb... -2025-11-24T08:34:53.5409291Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcrypt/libcrypt1_4.4.27-1_amd64.deb -2025-11-24T08:34:53.5411116Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-base_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:34:53.5507335Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.22_all.deb -2025-11-24T08:34:53.5509227Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libmount1_2.37.2-4ubuntu3_amd64.deb... -2025-11-24T08:34:53.6469390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/readline/libreadline8_8.1.2-1_amd64.deb -2025-11-24T08:34:53.6471518Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-lib2to3_3.10.4-0ubuntu1_all.deb... -2025-11-24T08:34:53.6721938Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/acl/libacl1_2.3.1-1_amd64.deb -2025-11-24T08:34:53.6724220Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pygobject/python3-gi_3.42.0-3build1_amd64.deb... -2025-11-24T08:34:53.7091530Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mpdecimal/libmpdec3_2.5.1-2build2_amd64.deb -2025-11-24T08:34:53.7093518Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-stdlib_3.10.4-3_amd64.deb... -2025-11-24T08:34:53.7644492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3_amd64.deb -2025-11-24T08:34:53.7646336Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/coreutils/coreutils_8.32-4.1ubuntu1_amd64.deb... -2025-11-24T08:34:53.7810776Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpng1.6/libpng16-16_1.6.37-3build5_amd64.deb -2025-11-24T08:34:53.7813038Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-data_1.7.5-1_all.deb... -2025-11-24T08:34:53.8242808Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl-modules-5.34_5.34.0-3ubuntu1_all.deb -2025-11-24T08:34:53.8244506Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/libprocps8_3.3.17-6ubuntu2_amd64.deb... -2025-11-24T08:34:53.9705283Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb -2025-11-24T08:34:53.9707036Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libssh/libssh-4_0.9.6-2build1_amd64.deb... -2025-11-24T08:34:54.1212875Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-lib2to3_3.10.4-0ubuntu1_all.deb -2025-11-24T08:34:54.1214790Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nss/libnss3_3.68.2-0ubuntu1_amd64.deb... -2025-11-24T08:34:54.1534525Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libmount1_2.37.2-4ubuntu3_amd64.deb -2025-11-24T08:34:54.1536383Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/libpolkit-agent-1-0_0.105-33_amd64.deb... -2025-11-24T08:34:54.1866909Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/libprocps8_3.3.17-6ubuntu2_amd64.deb -2025-11-24T08:34:54.1869207Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates/ca-certificates_20211016_all.deb... -2025-11-24T08:34:54.2408951Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb -2025-11-24T08:34:54.2410644Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipset/libipset13_7.15-1build1_amd64.deb... -2025-11-24T08:34:54.3527376Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-data_1.7.5-1_all.deb -2025-11-24T08:34:54.3529232Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.22_all.deb... -2025-11-24T08:34:54.3773603Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pygobject/python3-gi_3.42.0-3build1_amd64.deb -2025-11-24T08:34:54.3775324Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iproute2/iproute2_5.15.0-1ubuntu2_amd64.deb... -2025-11-24T08:34:54.5009315Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/libpolkit-agent-1-0_0.105-33_amd64.deb -2025-11-24T08:34:54.5011380Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnfnetlink/libnfnetlink0_1.0.1-3build3_amd64.deb... -2025-11-24T08:34:54.5794265Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libssh/libssh-4_0.9.6-2build1_amd64.deb -2025-11-24T08:34:54.5796002Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xfsprogs/xfsprogs_5.13.0-1ubuntu2_amd64.deb... -2025-11-24T08:34:54.6998782Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.22_all.deb -2025-11-24T08:34:54.7002343Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc3_1.3.2-2build1_amd64.deb... -2025-11-24T08:34:54.7042193Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/coreutils/coreutils_8.32-4.1ubuntu1_amd64.deb -2025-11-24T08:34:54.7044201Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/procps_3.3.17-6ubuntu2_amd64.deb... -2025-11-24T08:34:54.7223107Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipset/libipset13_7.15-1build1_amd64.deb -2025-11-24T08:34:54.7225701Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-xmerl_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:34:54.7361642Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnfnetlink/libnfnetlink0_1.0.1-3build3_amd64.deb -2025-11-24T08:34:54.7364824Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lvm2/libdevmapper1.02.1_1.02.175-2.1ubuntu4_amd64.deb... -2025-11-24T08:34:54.7650492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-stdlib_3.10.4-3_amd64.deb -2025-11-24T08:34:54.7652521Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4_4.32-3build1_amd64.deb... -2025-11-24T08:34:54.7778316Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates/ca-certificates_20211016_all.deb -2025-11-24T08:34:54.7779861Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb-render0_1.14-3ubuntu3_amd64.deb... -2025-11-24T08:34:54.8955560Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-base_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:34:54.8957391Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-fonts-recommended_2021.20220204-1_all.deb... -2025-11-24T08:34:55.0254634Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nss/libnss3_3.68.2-0ubuntu1_amd64.deb -2025-11-24T08:34:55.0256437Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libgssapi-krb5-2_1.19.2-2_amd64.deb... -2025-11-24T08:34:55.1183624Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxcb/libxcb-render0_1.14-3ubuntu3_amd64.deb -2025-11-24T08:34:55.1185727Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libe/libedit/libedit2_3.1-20210910-1build1_amd64.deb... -2025-11-24T08:34:55.1887422Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc3_1.3.2-2build1_amd64.deb -2025-11-24T08:34:55.1889742Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/db5.3/libdb5.3_5.3.28+dfsg1-0.8ubuntu3_amd64.deb... -2025-11-24T08:34:55.3112551Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iproute2/iproute2_5.15.0-1ubuntu2_amd64.deb -2025-11-24T08:34:55.3114848Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsm/libsm6_1.2.3-1build2_amd64.deb... -2025-11-24T08:34:55.3170664Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lvm2/libdevmapper1.02.1_1.02.175-2.1ubuntu4_amd64.deb -2025-11-24T08:34:55.3172522Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5support0_1.19.2-2_amd64.deb... -2025-11-24T08:34:55.3443492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4_4.32-3build1_amd64.deb -2025-11-24T08:34:55.3445398Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/packagekit_1.2.5-2ubuntu2_amd64.deb... -2025-11-24T08:34:55.3968713Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/procps_3.3.17-6ubuntu2_amd64.deb -2025-11-24T08:34:55.3972524Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxpm/libxpm4_3.5.12-1build2_amd64.deb... -2025-11-24T08:34:55.3998312Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xfsprogs/xfsprogs_5.13.0-1ubuntu2_amd64.deb -2025-11-24T08:34:55.4000090Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libm/libmd/libmd0_1.0.4-1build1_amd64.deb... -2025-11-24T08:34:55.5878802Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libe/libedit/libedit2_3.1-20210910-1build1_amd64.deb -2025-11-24T08:34:55.5880608Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common3_0.8-5ubuntu5_amd64.deb... -2025-11-24T08:34:55.6639655Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsm/libsm6_1.2.3-1build2_amd64.deb -2025-11-24T08:34:55.6641304Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsemanage/libsemanage2_3.3-1build2_amd64.deb... -2025-11-24T08:34:55.6714551Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libgssapi-krb5-2_1.19.2-2_amd64.deb -2025-11-24T08:34:55.6717578Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.4-0ubuntu2_amd64.deb... -2025-11-24T08:34:55.6801345Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5support0_1.19.2-2_amd64.deb -2025-11-24T08:34:55.6803190Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nettle/libhogweed6_3.7.3-1build2_amd64.deb... -2025-11-24T08:34:55.7435252Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libm/libmd/libmd0_1.0.4-1build1_amd64.deb -2025-11-24T08:34:55.7440216Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libkpathsea6_2021.20210626.59705-1build1_amd64.deb... -2025-11-24T08:34:55.7456271Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxpm/libxpm4_3.5.12-1build2_amd64.deb -2025-11-24T08:34:55.7457994Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libuuid1_2.37.2-4ubuntu3_amd64.deb... -2025-11-24T08:34:55.8109840Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-xmerl_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:34:55.8111785Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ftp_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:34:55.9415262Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common3_0.8-5ubuntu5_amd64.deb -2025-11-24T08:34:55.9417231Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g_1.2.11.dfsg-2ubuntu9_amd64.deb... -2025-11-24T08:34:55.9934633Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/db5.3/libdb5.3_5.3.28+dfsg1-0.8ubuntu3_amd64.deb -2025-11-24T08:34:55.9936712Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnl3/libnl-3-200_3.5.0-0.1_amd64.deb... -2025-11-24T08:34:56.0254380Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.4-0ubuntu2_amd64.deb -2025-11-24T08:34:56.0256270Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ucf/ucf_3.0043_all.deb... -2025-11-24T08:34:56.0991177Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libuuid1_2.37.2-4ubuntu3_amd64.deb -2025-11-24T08:34:56.0995078Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-liberation2/fonts-liberation2_2.1.5-1_all.deb... -2025-11-24T08:34:56.1076819Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-fonts-recommended_2021.20220204-1_all.deb -2025-11-24T08:34:56.1078656Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rsync/rsync_3.2.3-8ubuntu3_amd64.deb... -2025-11-24T08:34:56.1266606Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsemanage/libsemanage2_3.3-1build2_amd64.deb -2025-11-24T08:34:56.1268366Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/audit/libaudit1_3.0.7-1build1_amd64.deb... -2025-11-24T08:34:56.1441939Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/packagekit_1.2.5-2ubuntu2_amd64.deb -2025-11-24T08:34:56.1444463Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpsl/libpsl5_0.21.0-1.2build2_amd64.deb... -2025-11-24T08:34:56.2022224Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libkpathsea6_2021.20210626.59705-1build1_amd64.deb -2025-11-24T08:34:56.2024881Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/f/fonts-noto/fonts-croscore_20201225-1build1_all.deb... -2025-11-24T08:34:56.2690169Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ftp_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:34:56.2691655Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_2.4.5_amd64.deb... -2025-11-24T08:34:56.2799786Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nettle/libhogweed6_3.7.3-1build2_amd64.deb -2025-11-24T08:34:56.2803217Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10-minimal_3.10.4-3_amd64.deb... -2025-11-24T08:34:56.4099075Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g_1.2.11.dfsg-2ubuntu9_amd64.deb -2025-11-24T08:34:56.4101043Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libgcc-s1_12-20220319-1ubuntu1_amd64.deb... -2025-11-24T08:34:56.4739480Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnl3/libnl-3-200_3.5.0-0.1_amd64.deb -2025-11-24T08:34:56.4741158Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxi/libxi6_1.8-1build1_amd64.deb... -2025-11-24T08:34:56.5007848Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ucf/ucf_3.0043_all.deb -2025-11-24T08:34:56.5009882Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus-python/python3-dbus_1.2.18-3build1_amd64.deb... -2025-11-24T08:34:56.5936432Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpsl/libpsl5_0.21.0-1.2build2_amd64.deb -2025-11-24T08:34:56.5938404Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-launchpadlib/python3-launchpadlib_1.10.16-1_all.deb... -2025-11-24T08:34:56.5967055Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/audit/libaudit1_3.0.7-1build1_amd64.deb -2025-11-24T08:34:56.5968715Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/six/python3-six_1.16.0-3ubuntu1_all.deb... -2025-11-24T08:34:56.8135582Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rsync/rsync_3.2.3-8ubuntu3_amd64.deb -2025-11-24T08:34:56.8137357Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libblkid1_2.37.2-4ubuntu3_amd64.deb... -2025-11-24T08:34:56.8347404Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxi/libxi6_1.8-1build1_amd64.deb -2025-11-24T08:34:56.8349884Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxmu/libxmu6_1.1.3-3_amd64.deb... -2025-11-24T08:34:56.8355981Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/six/python3-six_1.16.0-3ubuntu1_all.deb -2025-11-24T08:34:56.8357291Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libm/libmnl/libmnl0_1.0.4-3build2_amd64.deb... -2025-11-24T08:34:56.8685474Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libgcc-s1_12-20220319-1ubuntu1_amd64.deb -2025-11-24T08:34:56.8687546Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common-data_0.8-5ubuntu5_amd64.deb... -2025-11-24T08:34:56.9813497Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus-python/python3-dbus_1.2.18-3build1_amd64.deb -2025-11-24T08:34:56.9815362Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre2/libpcre2-8-0_10.39-3build1_amd64.deb... -2025-11-24T08:34:57.0654498Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libm/libmnl/libmnl0_1.0.4-3build2_amd64.deb -2025-11-24T08:34:57.0656391Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netcat-openbsd/netcat-openbsd_1.218-4ubuntu1_amd64.deb... -2025-11-24T08:34:57.0718881Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-liberation2/fonts-liberation2_2.1.5-1_all.deb -2025-11-24T08:34:57.0721247Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.27+dfsg2-3ubuntu1_amd64.deb... -2025-11-24T08:34:57.1747960Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/f/fonts-noto/fonts-croscore_20201225-1build1_all.deb -2025-11-24T08:34:57.1749824Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-launchpadlib/python3-launchpadlib_1.10.16-1_all.deb -2025-11-24T08:34:57.1751608Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/socat/socat_1.7.4.1-3ubuntu4_amd64.deb... -2025-11-24T08:34:57.1753026Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libidn2/libidn2-0_2.3.2-2build1_amd64.deb... -2025-11-24T08:34:57.1779074Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_2.4.5_amd64.deb -2025-11-24T08:34:57.1780408Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/t1utils/t1utils_1.41-4build2_amd64.deb... -2025-11-24T08:34:57.2218923Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common-data_0.8-5ubuntu5_amd64.deb -2025-11-24T08:34:57.2220790Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/d/dh-sysuser/sysuser-helper_1.3.7+really1.4.1_all.deb... -2025-11-24T08:34:57.3158422Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxmu/libxmu6_1.1.3-3_amd64.deb -2025-11-24T08:34:57.3160241Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-importlib-metadata/python3-importlib-metadata_4.6.4-1_all.deb... -2025-11-24T08:34:57.3647611Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10-minimal_3.10.4-3_amd64.deb -2025-11-24T08:34:57.3649232Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nano/nano_6.2-1_amd64.deb... -2025-11-24T08:34:57.3994399Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libblkid1_2.37.2-4ubuntu3_amd64.deb -2025-11-24T08:34:57.3996862Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gobject-introspection/libgirepository-1.0-1_1.72.0-1_amd64.deb... -2025-11-24T08:34:57.4270803Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/netcat-openbsd/netcat-openbsd_1.218-4ubuntu1_amd64.deb -2025-11-24T08:34:57.4273324Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libz/libzstd/libzstd1_1.4.8+dfsg-3build1_amd64.deb... -2025-11-24T08:34:57.4623464Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/d/dh-sysuser/sysuser-helper_1.3.7+really1.4.1_all.deb -2025-11-24T08:34:57.4625463Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-asn1_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:34:57.5311104Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.27+dfsg2-3ubuntu1_amd64.deb -2025-11-24T08:34:57.5313218Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/teckit/libteckit0_2.5.11+ds1-1_amd64.deb... -2025-11-24T08:34:57.6349944Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libidn2/libidn2-0_2.3.2-2build1_amd64.deb -2025-11-24T08:34:57.6351655Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre3/libpcre3_8.39-13build5_amd64.deb... -2025-11-24T08:34:57.6464316Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/t1utils/t1utils_1.41-4build2_amd64.deb -2025-11-24T08:34:57.6473607Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/z/zziplib/libzzip-0-13_0.13.72+dfsg.1-1.1_amd64.deb... -2025-11-24T08:34:57.6563651Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre2/libpcre2-8-0_10.39-3build1_amd64.deb -2025-11-24T08:34:57.6565490Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/fontconfig-config_2.13.1-4.2ubuntu5_all.deb... -2025-11-24T08:34:57.6676948Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-importlib-metadata/python3-importlib-metadata_4.6.4-1_all.deb -2025-11-24T08:34:57.6678641Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/media-types/media-types_7.0.0_all.deb... -2025-11-24T08:34:57.8640296Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gobject-introspection/libgirepository-1.0-1_1.72.0-1_amd64.deb -2025-11-24T08:34:57.8642176Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/j/jemalloc/libjemalloc2_5.2.1-4ubuntu1_amd64.deb... -2025-11-24T08:34:57.8659496Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/socat/socat_1.7.4.1-3ubuntu4_amd64.deb -2025-11-24T08:34:57.8661323Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/ttf-bitstream-vera/ttf-bitstream-vera_1.10-8.2_all.deb... -2025-11-24T08:34:57.9991046Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/fontconfig-config_2.13.1-4.2ubuntu5_all.deb -2025-11-24T08:34:57.9993103Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/brotli/libbrotli1_1.0.9-2build6_amd64.deb... -2025-11-24T08:34:58.0077557Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/z/zziplib/libzzip-0-13_0.13.72+dfsg.1-1.1_amd64.deb -2025-11-24T08:34:58.0079488Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-latex-recommended_2021.20220204-1_all.deb... -2025-11-24T08:34:58.0195023Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/media-types/media-types_7.0.0_all.deb -2025-11-24T08:34:58.0196707Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rtmpdump/librtmp1_2.4+20151223.gitfa8646d.1-2build4_amd64.deb... -2025-11-24T08:34:58.0523906Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nano/nano_6.2-1_amd64.deb -2025-11-24T08:34:58.0525643Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-pkg-resources_59.6.0-1.2_all.deb... -2025-11-24T08:34:58.1300456Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libz/libzstd/libzstd1_1.4.8+dfsg-3build1_amd64.deb -2025-11-24T08:34:58.1302385Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6_2.35-0ubuntu3_amd64.deb... -2025-11-24T08:34:58.2577317Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/teckit/libteckit0_2.5.11+ds1-1_amd64.deb -2025-11-24T08:34:58.2579040Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libb/libbsd/libbsd0_0.11.5-1_amd64.deb... -2025-11-24T08:34:58.3275259Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre3/libpcre3_8.39-13build5_amd64.deb -2025-11-24T08:34:58.3277506Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-snmp_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:34:58.3768379Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-asn1_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:34:58.3769699Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sensible-utils/sensible-utils_0.0.17_all.deb... -2025-11-24T08:34:58.4892426Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rtmpdump/librtmp1_2.4+20151223.gitfa8646d.1-2build4_amd64.deb -2025-11-24T08:34:58.4894796Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ufw/ufw_0.36.1-4build1_all.deb... -2025-11-24T08:34:58.5610894Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/ttf-bitstream-vera/ttf-bitstream-vera_1.10-8.2_all.deb -2025-11-24T08:34:58.5612604Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/less/less_590-1build1_amd64.deb... -2025-11-24T08:34:58.5710158Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/j/jemalloc/libjemalloc2_5.2.1-4ubuntu1_amd64.deb -2025-11-24T08:34:58.5711979Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxmlb/libxmlb2_0.3.6-2build1_amd64.deb... -2025-11-24T08:34:58.6515319Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-pkg-resources_59.6.0-1.2_all.deb -2025-11-24T08:34:58.6517196Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-dejavu/fonts-dejavu-core_2.37-2build1_all.deb... -2025-11-24T08:34:58.6718896Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/brotli/libbrotli1_1.0.9-2build6_amd64.deb -2025-11-24T08:34:58.6720677Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcp-wrappers/libwrap0_7.6.q-31build2_amd64.deb... -2025-11-24T08:34:58.7374000Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libb/libbsd/libbsd0_0.11.5-1_amd64.deb -2025-11-24T08:34:58.7376055Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3_1.0.9-1_amd64.deb... -2025-11-24T08:34:58.7380660Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sensible-utils/sensible-utils_0.0.17_all.deb -2025-11-24T08:34:58.7382130Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-netaddr/python3-netaddr_0.8.0-2_all.deb... -2025-11-24T08:34:59.0424184Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxmlb/libxmlb2_0.3.6-2build1_amd64.deb -2025-11-24T08:34:59.0426197Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1_amd64.deb... -2025-11-24T08:34:59.0989050Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ufw/ufw_0.36.1-4build1_all.deb -2025-11-24T08:34:59.0990406Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/tex-common/tex-common_6.17_all.deb... -2025-11-24T08:34:59.1385621Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcp-wrappers/libwrap0_7.6.q-31build2_amd64.deb -2025-11-24T08:34:59.1387991Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-liberation/fonts-liberation_1.07.4-11_all.deb... -2025-11-24T08:34:59.1488861Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/less/less_590-1build1_amd64.deb -2025-11-24T08:34:59.1490572Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/libpaper-utils_1.1.28build2_amd64.deb... -2025-11-24T08:34:59.1789011Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6_2.35-0ubuntu3_amd64.deb -2025-11-24T08:34:59.1790800Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl-base_5.34.0-3ubuntu1_amd64.deb... -2025-11-24T08:34:59.1941159Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3_1.0.9-1_amd64.deb -2025-11-24T08:34:59.1943063Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/ntp/ntp_4.2.8p15+dfsg-1ubuntu2_amd64.deb... -2025-11-24T08:34:59.3797094Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/libpaper-utils_1.1.28build2_amd64.deb -2025-11-24T08:34:59.3799239Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python3-apt_2.3.0ubuntu2_amd64.deb... -2025-11-24T08:34:59.3832803Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-snmp_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:34:59.3834636Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-distutils_3.10.4-0ubuntu1_all.deb... -2025-11-24T08:34:59.4414616Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-netaddr/python3-netaddr_0.8.0-2_all.deb -2025-11-24T08:34:59.4416567Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-bin/texlive-binaries_2021.20210626.59705-1build1_amd64.deb... -2025-11-24T08:34:59.4524271Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/tex-common/tex-common_6.17_all.deb -2025-11-24T08:34:59.4526073Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jdk-headless_8u312-b07-0ubuntu1_amd64.deb... -2025-11-24T08:34:59.5768411Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-latex-recommended_2021.20220204-1_all.deb -2025-11-24T08:34:59.5770708Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-wadllib/python3-wadllib_1.3.6-1_all.deb... -2025-11-24T08:34:59.5860506Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-dejavu/fonts-dejavu-core_2.37-2build1_all.deb -2025-11-24T08:34:59.5862064Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/l/lmodern/fonts-lmodern_2.004.5-6.1_all.deb... -2025-11-24T08:34:59.8637923Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1_amd64.deb -2025-11-24T08:34:59.8639734Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bzip2/libbz2-1.0_1.0.8-5build1_amd64.deb... -2025-11-24T08:34:59.9197891Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-wadllib/python3-wadllib_1.3.6-1_all.deb -2025-11-24T08:34:59.9199881Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tools_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:34:59.9453344Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-liberation/fonts-liberation_1.07.4-11_all.deb -2025-11-24T08:34:59.9455262Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ubuntu-keyring/ubuntu-keyring_2021.03.26_all.deb... -2025-11-24T08:34:59.9515034Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python3-apt_2.3.0ubuntu2_amd64.deb -2025-11-24T08:34:59.9517129Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libinih/libinih1_53-1ubuntu3_amd64.deb... -2025-11-24T08:34:59.9570023Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-distutils_3.10.4-0ubuntu1_all.deb -2025-11-24T08:34:59.9571979Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-distro/python3-distro_1.7.0-1_all.deb... -2025-11-24T08:35:00.0205965Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/n/ntp/ntp_4.2.8p15+dfsg-1ubuntu2_amd64.deb -2025-11-24T08:35:00.0207706Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-runtime_1.4.0-11ubuntu2_all.deb... -2025-11-24T08:35:00.1154899Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/perl/perl-base_5.34.0-3ubuntu1_amd64.deb -2025-11-24T08:35:00.1156582Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mailcap/mailcap_3.70+nmu1ubuntu1_all.deb... -2025-11-24T08:35:00.1927622Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libinih/libinih1_53-1ubuntu3_amd64.deb -2025-11-24T08:35:00.1929349Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/libdbus-1-3_1.12.20-2ubuntu4_amd64.deb... -2025-11-24T08:35:00.2166390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bzip2/libbz2-1.0_1.0.8-5build1_amd64.deb -2025-11-24T08:35:00.2168709Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/b/bglibs/libbg2_2.04+dfsg-2.1_amd64.deb... -2025-11-24T08:35:00.2883317Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ubuntu-keyring/ubuntu-keyring_2021.03.26_all.deb -2025-11-24T08:35:00.2885113Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipvsadm/ipvsadm_1.31-1build2_amd64.deb... -2025-11-24T08:35:00.3173001Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-distro/python3-distro_1.7.0-1_all.deb -2025-11-24T08:35:00.3175134Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxaw/libxaw7_1.0.14-1_amd64.deb... -2025-11-24T08:35:00.3653867Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-runtime_1.4.0-11ubuntu2_all.deb -2025-11-24T08:35:00.3655642Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_3.0.2-0ubuntu1_amd64.deb... -2025-11-24T08:35:00.4769668Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mailcap/mailcap_3.70+nmu1ubuntu1_all.deb -2025-11-24T08:35:00.4771517Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/tex-gyre/fonts-texgyre_20180621-3.1_all.deb... -2025-11-24T08:35:00.6416070Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipvsadm/ipvsadm_1.31-1build2_amd64.deb -2025-11-24T08:35:00.6418321Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg8-empty/libjpeg8_8c-2ubuntu10_amd64.deb... -2025-11-24T08:35:00.6808350Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/b/bglibs/libbg2_2.04+dfsg-2.1_amd64.deb -2025-11-24T08:35:00.6811219Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nghttp2/libnghttp2-14_1.43.0-1build3_amd64.deb... -2025-11-24T08:35:00.7257651Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tools_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:00.7260481Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/graphite2/libgraphite2-3_1.3.14-1build2_amd64.deb... -2025-11-24T08:35:00.7575936Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-bin/texlive-binaries_2021.20210626.59705-1build1_amd64.deb -2025-11-24T08:35:00.7578681Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pixman/libpixman-1-0_0.40.0-1build4_amd64.deb... -2025-11-24T08:35:00.7689461Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/l/lmodern/fonts-lmodern_2.004.5-6.1_all.deb -2025-11-24T08:35:00.7691203Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lz4/liblz4-1_1.9.3-2build2_amd64.deb... -2025-11-24T08:35:00.7898850Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jdk-headless_8u312-b07-0ubuntu1_amd64.deb -2025-11-24T08:35:00.7900678Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-utils_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:35:00.7954050Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/libdbus-1-3_1.12.20-2ubuntu4_amd64.deb -2025-11-24T08:35:00.7957158Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libstdc++6_12-20220319-1ubuntu1_amd64.deb... -2025-11-24T08:35:00.8754700Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg8-empty/libjpeg8_8c-2ubuntu10_amd64.deb -2025-11-24T08:35:00.8756810Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm6_1.23-1_amd64.deb... -2025-11-24T08:35:00.8855056Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxaw/libxaw7_1.0.14-1_amd64.deb -2025-11-24T08:35:00.8856500Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/adduser/adduser_3.118ubuntu5_all.deb... -2025-11-24T08:35:01.1386800Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nghttp2/libnghttp2-14_1.43.0-1build3_amd64.deb -2025-11-24T08:35:01.1388726Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.4-0ubuntu2_amd64.deb... -2025-11-24T08:35:01.1845793Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/graphite2/libgraphite2-3_1.3.14-1build2_amd64.deb -2025-11-24T08:35:01.1847986Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/keyutils/libkeyutils1_1.6.1-2ubuntu3_amd64.deb... -2025-11-24T08:35:01.2284105Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm6_1.23-1_amd64.deb -2025-11-24T08:35:01.2285927Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/audit/libaudit-common_3.0.7-1build1_all.deb... -2025-11-24T08:35:01.2372369Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lz4/liblz4-1_1.9.3-2build2_amd64.deb -2025-11-24T08:35:01.2375705Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/dirmngr_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:35:01.4194390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/keyutils/libkeyutils1_1.6.1-2ubuntu3_amd64.deb -2025-11-24T08:35:01.4196515Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.3-2ubuntu2_amd64.deb... -2025-11-24T08:35:01.4436311Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_3.0.2-0ubuntu1_amd64.deb -2025-11-24T08:35:01.4438146Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip4tc2_1.8.7-1ubuntu5_amd64.deb... -2025-11-24T08:35:01.4554148Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/audit/libaudit-common_3.0.7-1build1_all.deb -2025-11-24T08:35:01.4556047Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/gir1.2-packagekitglib-1.0_1.2.5-2ubuntu2_amd64.deb... -2025-11-24T08:35:01.4614842Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pixman/libpixman-1-0_0.40.0-1build4_amd64.deb -2025-11-24T08:35:01.4616841Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lazr.restfulclient/python3-lazr.restfulclient_0.14.4-1_all.deb... -2025-11-24T08:35:01.4695474Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/adduser/adduser_3.118ubuntu5_all.deb -2025-11-24T08:35:01.4697354Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip6tc2_1.8.7-1ubuntu5_amd64.deb... -2025-11-24T08:35:01.4795639Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.4-0ubuntu2_amd64.deb -2025-11-24T08:35:01.4797583Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsemanage/libsemanage-common_3.3-1build2_all.deb... -2025-11-24T08:35:01.5091828Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-utils_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:35:01.5094165Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/popt/libpopt0_1.18-3build1_amd64.deb... -2025-11-24T08:35:01.6190085Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libstdc++6_12-20220319-1ubuntu1_amd64.deb -2025-11-24T08:35:01.6191254Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2_2.44-1build3_amd64.deb... -2025-11-24T08:35:01.7185730Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libsemanage/libsemanage-common_3.3-1build2_all.deb -2025-11-24T08:35:01.7187484Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1_amd64.deb... -2025-11-24T08:35:01.7847506Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/tex-gyre/fonts-texgyre_20180621-3.1_all.deb -2025-11-24T08:35:01.7849542Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.11.1+dfsg-1build1_amd64.deb... -2025-11-24T08:35:01.7996257Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip4tc2_1.8.7-1ubuntu5_amd64.deb -2025-11-24T08:35:01.7998018Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5-3_1.19.2-2_amd64.deb... -2025-11-24T08:35:01.8177703Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/gir1.2-packagekitglib-1.0_1.2.5-2ubuntu2_amd64.deb -2025-11-24T08:35:01.8179625Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20190909_all.deb... -2025-11-24T08:35:01.8222405Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip6tc2_1.8.7-1ubuntu5_amd64.deb -2025-11-24T08:35:01.8224200Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libxtables12_1.8.7-1ubuntu5_amd64.deb... -2025-11-24T08:35:01.8514121Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/popt/libpopt0_1.18-3build1_amd64.deb -2025-11-24T08:35:01.8516172Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/readline/readline-common_8.1.2-1_all.deb... -2025-11-24T08:35:01.8914982Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.3-2ubuntu2_amd64.deb -2025-11-24T08:35:01.8916879Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/autogen/libopts25_5.18.16-4_amd64.deb... -2025-11-24T08:35:01.9157675Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lazr.restfulclient/python3-lazr.restfulclient_0.14.4-1_all.deb -2025-11-24T08:35:01.9159557Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libice/libice6_1.0.10-1build2_amd64.deb... -2025-11-24T08:35:01.9408021Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/dirmngr_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:35:01.9409703Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-zipp/python3-zipp_1.0.0-3_all.deb... -2025-11-24T08:35:01.9635892Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2_2.44-1build3_amd64.deb -2025-11-24T08:35:01.9637932Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/b/bcron/bcron_0.11-9_amd64.deb... -2025-11-24T08:35:02.0606039Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20190909_all.deb -2025-11-24T08:35:02.0608391Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-urw-base35/fonts-urw-base35_20200910-1_all.deb... -2025-11-24T08:35:02.1732569Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libxtables12_1.8.7-1ubuntu5_amd64.deb -2025-11-24T08:35:02.1734503Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1_amd64.deb... -2025-11-24T08:35:02.1815229Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-zipp/python3-zipp_1.0.0-3_all.deb -2025-11-24T08:35:02.1816811Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl3-gnutls_7.81.0-1_amd64.deb... -2025-11-24T08:35:02.2675359Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libice/libice6_1.0.10-1build2_amd64.deb -2025-11-24T08:35:02.2677024Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mpfr4/libmpfr6_4.1.0-3build3_amd64.deb... -2025-11-24T08:35:02.2964551Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1_amd64.deb -2025-11-24T08:35:02.2966319Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iputils/iputils-ping_20211215-1_amd64.deb... -2025-11-24T08:35:02.3063024Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/readline/readline-common_8.1.2-1_all.deb -2025-11-24T08:35:02.3064982Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libptexenc1_2021.20210626.59705-1build1_amd64.deb... -2025-11-24T08:35:02.3871294Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/autogen/libopts25_5.18.16-4_amd64.deb -2025-11-24T08:35:02.3873385Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm-compat4_1.23-1_amd64.deb... -2025-11-24T08:35:02.4450756Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/b/bcron/bcron_0.11-9_amd64.deb -2025-11-24T08:35:02.4454414Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/blinker/python3-blinker_1.4+dfsg1-0.4_all.deb... -2025-11-24T08:35:02.4707842Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.11.1+dfsg-1build1_amd64.deb -2025-11-24T08:35:02.4709969Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lsb/lsb-release_11.1.0ubuntu4_all.deb... -2025-11-24T08:35:02.5060785Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5-3_1.19.2-2_amd64.deb -2025-11-24T08:35:02.5063186Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-minimal_3.10.4-3_amd64.deb... -2025-11-24T08:35:02.6168924Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm-compat4_1.23-1_amd64.deb -2025-11-24T08:35:02.6170979Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunistring/libunistring2_1.0-1_amd64.deb... -2025-11-24T08:35:02.6688439Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/libptexenc1_2021.20210626.59705-1build1_amd64.deb -2025-11-24T08:35:02.6690610Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipset/ipset_7.15-1build1_amd64.deb... -2025-11-24T08:35:02.6843234Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/blinker/python3-blinker_1.4+dfsg1-0.4_all.deb -2025-11-24T08:35:02.6845105Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-bin_2.72.1-1_amd64.deb... -2025-11-24T08:35:02.7026593Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lsb/lsb-release_11.1.0ubuntu4_all.deb -2025-11-24T08:35:02.7028679Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xxhash/libxxhash0_0.8.1-1_amd64.deb... -2025-11-24T08:35:02.7160492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iputils/iputils-ping_20211215-1_amd64.deb -2025-11-24T08:35:02.7162299Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/snowball/libstemmer0d_2.2.0-1build1_amd64.deb... -2025-11-24T08:35:02.9052955Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl3-gnutls_7.81.0-1_amd64.deb -2025-11-24T08:35:02.9054575Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nettle/libnettle8_3.7.3-1build2_amd64.deb... -2025-11-24T08:35:03.0208767Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ipset/ipset_7.15-1build1_amd64.deb -2025-11-24T08:35:03.0211211Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.81.0-1_amd64.deb... -2025-11-24T08:35:03.0688895Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xxhash/libxxhash0_0.8.1-1_amd64.deb -2025-11-24T08:35:03.0690715Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors-config_3.6.0-7ubuntu1_all.deb... -2025-11-24T08:35:03.1544309Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-bin_2.72.1-1_amd64.deb -2025-11-24T08:35:03.1546388Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/shadow/passwd_4.8.1-2ubuntu2_amd64.deb... -2025-11-24T08:35:03.1826527Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mpfr4/libmpfr6_4.1.0-3build3_amd64.deb -2025-11-24T08:35:03.1830475Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-parsetools_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:03.2437988Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/fonts-urw-base35/fonts-urw-base35_20200910-1_all.deb -2025-11-24T08:35:03.2439930Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-setuptools_59.6.0-1.2_all.deb... -2025-11-24T08:35:03.2550641Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1_amd64.deb -2025-11-24T08:35:03.2552467Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/debconf/debconf_1.5.79ubuntu1_all.deb... -2025-11-24T08:35:03.2916410Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/snowball/libstemmer0d_2.2.0-1build1_amd64.deb -2025-11-24T08:35:03.2920659Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ssl_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:03.3045425Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lm-sensors/libsensors-config_3.6.0-7ubuntu1_all.deb -2025-11-24T08:35:03.3047309Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xorg/x11-common_7.7+23ubuntu2_all.deb... -2025-11-24T08:35:03.4053179Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunistring/libunistring2_1.0-1_amd64.deb -2025-11-24T08:35:03.4055049Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lsb/lsb-base_11.1.0ubuntu4_all.deb... -2025-11-24T08:35:03.4282353Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-minimal_3.10.4-3_amd64.deb -2025-11-24T08:35:03.4284803Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-syntax-tools_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:03.4699059Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nettle/libnettle8_3.7.3-1build2_amd64.deb -2025-11-24T08:35:03.4700904Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/iptables_1.8.7-1ubuntu5_amd64.deb... -2025-11-24T08:35:03.6352439Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lsb/lsb-base_11.1.0ubuntu4_all.deb -2025-11-24T08:35:03.6357695Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-os-mon_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:03.6474960Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xorg/x11-common_7.7+23ubuntu2_all.deb -2025-11-24T08:35:03.6476764Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.11+dfsg-1~exp1ubuntu3_amd64.deb... -2025-11-24T08:35:03.7573737Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.81.0-1_amd64.deb -2025-11-24T08:35:03.7575258Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xdg-utils/xdg-utils_1.1.3-4.1ubuntu1_all.deb... -2025-11-24T08:35:03.8270839Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/debconf/debconf_1.5.79ubuntu1_all.deb -2025-11-24T08:35:03.8272948Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/strace/strace_5.16-0ubuntu3_amd64.deb... -2025-11-24T08:35:03.8753367Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-parsetools_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:03.8755229Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lazr.uri/python3-lazr.uri_1.0.6-2_all.deb... -2025-11-24T08:35:03.9474168Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-setuptools_59.6.0-1.2_all.deb -2025-11-24T08:35:03.9476205Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-base_2021.20220204-1_all.deb... -2025-11-24T08:35:03.9657604Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/shadow/passwd_4.8.1-2ubuntu2_amd64.deb -2025-11-24T08:35:03.9659295Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libselinux/libselinux1_3.3-1build2_amd64.deb... -2025-11-24T08:35:04.0987717Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-os-mon_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:04.0989565Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libk5crypto3_1.19.2-2_amd64.deb... -2025-11-24T08:35:04.1053614Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lazr.uri/python3-lazr.uri_1.0.6-2_all.deb -2025-11-24T08:35:04.1055975Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/pkexec_0.105-33_amd64.deb... -2025-11-24T08:35:04.1490863Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-syntax-tools_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:04.1493445Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/more-itertools/python3-more-itertools_8.10.0-2_all.deb... -2025-11-24T08:35:04.1985924Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ssl_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:04.1987526Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/u/ucspi-unix/ucspi-unix_1.0-1_amd64.deb... -2025-11-24T08:35:04.2190359Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.11+dfsg-1~exp1ubuntu3_amd64.deb -2025-11-24T08:35:04.2192536Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/conntrack-tools/conntrack_1.4.6-2build2_amd64.deb... -2025-11-24T08:35:04.2384077Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xdg-utils/xdg-utils_1.1.3-4.1ubuntu1_all.deb -2025-11-24T08:35:04.2386118Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-keyring/python3-keyring_23.5.0-1_all.deb... -2025-11-24T08:35:04.2997441Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/iptables_1.8.7-1ubuntu5_amd64.deb -2025-11-24T08:35:04.2999149Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/gcc-12-base_12-20220319-1ubuntu1_amd64.deb... -2025-11-24T08:35:04.3407243Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/pkexec_0.105-33_amd64.deb -2025-11-24T08:35:04.3408828Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc-common_1.3.2-2build1_all.deb... -2025-11-24T08:35:04.4304492Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/u/ucspi-unix/ucspi-unix_1.0-1_amd64.deb -2025-11-24T08:35:04.4306073Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxau/libxau6_1.0.9-1build5_amd64.deb... -2025-11-24T08:35:04.4335392Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libselinux/libselinux1_3.3-1build2_amd64.deb -2025-11-24T08:35:04.4337099Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cron/cron_3.0pl1-137ubuntu3_amd64.deb... -2025-11-24T08:35:04.5710106Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/conntrack-tools/conntrack_1.4.6-2build2_amd64.deb -2025-11-24T08:35:04.5712062Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3_amd64.deb... -2025-11-24T08:35:04.5786711Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-keyring/python3-keyring_23.5.0-1_all.deb -2025-11-24T08:35:04.5788383Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apparmor/libapparmor1_3.0.4-2ubuntu2_amd64.deb... -2025-11-24T08:35:04.5829664Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc-common_1.3.2-2build1_all.deb -2025-11-24T08:35:04.5831364Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxt/libxt6_1.2.1-1_amd64.deb... -2025-11-24T08:35:04.5881126Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libk5crypto3_1.19.2-2_amd64.deb -2025-11-24T08:35:04.5883091Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnsl/libnsl2_1.3.0-2build2_amd64.deb... -2025-11-24T08:35:04.6062192Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/more-itertools/python3-more-itertools_8.10.0-2_all.deb -2025-11-24T08:35:04.6064797Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-l10n_2.2.27-3ubuntu2_all.deb... -2025-11-24T08:35:04.6395342Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/strace/strace_5.16-0ubuntu3_amd64.deb -2025-11-24T08:35:04.6397100Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-server_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:35:04.6499585Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/gcc-12-base_12-20220319-1ubuntu1_amd64.deb -2025-11-24T08:35:04.6501118Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bash-completion/bash-completion_2.11-5ubuntu1_all.deb... -2025-11-24T08:35:04.6669188Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxau/libxau6_1.0.9-1build5_amd64.deb -2025-11-24T08:35:04.6670893Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libelf1_0.186-1build1_amd64.deb... -2025-11-24T08:35:04.9018460Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cron/cron_3.0pl1-137ubuntu3_amd64.deb -2025-11-24T08:35:04.9020199Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/logrotate/logrotate_3.19.0-1ubuntu1_amd64.deb... -2025-11-24T08:35:04.9408914Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apparmor/libapparmor1_3.0.4-2ubuntu2_amd64.deb -2025-11-24T08:35:04.9411168Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iso-codes/iso-codes_4.9.0-1_all.deb... -2025-11-24T08:35:04.9501041Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libn/libnsl/libnsl2_1.3.0-2build2_amd64.deb -2025-11-24T08:35:04.9503026Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_3.0.2-0ubuntu1_amd64.deb... -2025-11-24T08:35:05.1196422Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-l10n_2.2.27-3ubuntu2_all.deb -2025-11-24T08:35:05.1198205Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cups/libcups2_2.4.1op1-1ubuntu4_amd64.deb... -2025-11-24T08:35:05.1240385Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-server_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:35:05.1242330Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-runtime-tools_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:05.1285613Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libelf1_0.186-1build1_amd64.deb -2025-11-24T08:35:05.1287374Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg6.0_2.4.5_amd64.deb... -2025-11-24T08:35:05.1707248Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxt/libxt6_1.2.1-1_amd64.deb -2025-11-24T08:35:05.1709053Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgconf_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:35:05.2279668Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bash-completion/bash-completion_2.11-5ubuntu1_all.deb -2025-11-24T08:35:05.2281617Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-secretstorage/python3-secretstorage_3.3.1-1_all.deb... -2025-11-24T08:35:05.2562882Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3_amd64.deb -2025-11-24T08:35:05.2564699Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/ssl-cert/ssl-cert_1.1.2_all.deb... -2025-11-24T08:35:05.3601736Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/logrotate/logrotate_3.19.0-1ubuntu1_amd64.deb -2025-11-24T08:35:05.3604003Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxrender/libxrender1_0.9.10-1build4_amd64.deb... -2025-11-24T08:35:05.4634476Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-secretstorage/python3-secretstorage_3.3.1-1_all.deb -2025-11-24T08:35:05.4636978Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxdmcp/libxdmcp6_1.1.3-0ubuntu5_amd64.deb... -2025-11-24T08:35:05.5782527Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive-base_2021.20220204-1_all.deb -2025-11-24T08:35:05.5784924Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pyparsing/python3-pyparsing_2.4.7-1_all.deb... -2025-11-24T08:35:05.6005450Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/ssl-cert/ssl-cert_1.1.2_all.deb -2025-11-24T08:35:05.6007179Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libdw1_0.186-1build1_amd64.deb... -2025-11-24T08:35:05.6491559Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgconf_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:35:05.6493566Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/libqrencode4_4.1.1-1_amd64.deb... -2025-11-24T08:35:05.7058850Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxdmcp/libxdmcp6_1.1.3-0ubuntu5_amd64.deb -2025-11-24T08:35:05.7060660Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/ebtables/ebtables_2.0.11-4build2_amd64.deb... -2025-11-24T08:35:05.7086875Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxrender/libxrender1_0.9.10-1build4_amd64.deb -2025-11-24T08:35:05.7088617Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ieee-data/ieee-data_20210605.1_all.deb... -2025-11-24T08:35:05.8243074Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cups/libcups2_2.4.1op1-1ubuntu4_amd64.deb -2025-11-24T08:35:05.8245025Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/libpolkit-gobject-1-0_0.105-33_amd64.deb... -2025-11-24T08:35:05.8288830Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-runtime-tools_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:05.8290938Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mime-support/mime-support_3.66_all.deb... -2025-11-24T08:35:05.9133004Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_3.0.2-0ubuntu1_amd64.deb -2025-11-24T08:35:05.9134762Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libb/libbpf/libbpf0_0.5.0-1_amd64.deb... -2025-11-24T08:35:05.9970948Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/libqrencode4_4.1.1-1_amd64.deb -2025-11-24T08:35:05.9973108Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-crypto_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:06.0150023Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iso-codes/iso-codes_4.9.0-1_all.deb -2025-11-24T08:35:06.0151515Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg_1.21.1ubuntu2_amd64.deb... -2025-11-24T08:35:06.0476159Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pyparsing/python3-pyparsing_2.4.7-1_all.deb -2025-11-24T08:35:06.0478041Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/java-common/java-common_0.72build2_all.deb... -2025-11-24T08:35:06.0582229Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/m/mime-support/mime-support_3.66_all.deb -2025-11-24T08:35:06.0584058Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncurses6_6.3-2_amd64.deb... -2025-11-24T08:35:06.0652330Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg6.0_2.4.5_amd64.deb -2025-11-24T08:35:06.0654784Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/libpackagekit-glib2-18_1.2.5-2ubuntu2_amd64.deb... -2025-11-24T08:35:06.1669188Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/libpolkit-gobject-1-0_0.105-33_amd64.deb -2025-11-24T08:35:06.1671054Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:35:06.1761469Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/ebtables/ebtables_2.0.11-4build2_amd64.deb -2025-11-24T08:35:06.1763579Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libg/libgcrypt20/libgcrypt20_1.9.4-3ubuntu3_amd64.deb... -2025-11-24T08:35:06.2838390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/java-common/java-common_0.72build2_all.deb -2025-11-24T08:35:06.2840578Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgsm_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:35:06.3211536Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libdw1_0.186-1build1_amd64.deb -2025-11-24T08:35:06.3213609Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bzip2/bzip2_1.0.8-5build1_amd64.deb... -2025-11-24T08:35:06.4882422Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libb/libbpf/libbpf0_0.5.0-1_amd64.deb -2025-11-24T08:35:06.4884523Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tftp_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:06.5724300Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-crypto_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:06.5726158Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python3-pip_22.0.2+dfsg-1_all.deb... -2025-11-24T08:35:06.6387368Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncurses6_6.3-2_amd64.deb -2025-11-24T08:35:06.6389457Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/polkitd_0.105-33_amd64.deb... -2025-11-24T08:35:06.6577315Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/libpackagekit-glib2-18_1.2.5-2ubuntu2_amd64.deb -2025-11-24T08:35:06.6579413Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive_2021.20220204-1_all.deb... -2025-11-24T08:35:06.6700780Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/b/bzip2/bzip2_1.0.8-5build1_amd64.deb -2025-11-24T08:35:06.6702826Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap-ng/libcap-ng0_0.7.9-2.2build3_amd64.deb... -2025-11-24T08:35:06.7638911Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/ieee-data/ieee-data_20210605.1_all.deb -2025-11-24T08:35:06.7640563Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-inets_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:06.8900389Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgsm_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:35:06.8903175Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cairo/libcairo2_1.16.0-5ubuntu2_amd64.deb... -2025-11-24T08:35:06.8978335Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/t/texlive-base/texlive_2021.20220204-1_all.deb -2025-11-24T08:35:06.8980384Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libtinfo6_6.3-2_amd64.deb... -2025-11-24T08:35:06.9074978Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap-ng/libcap-ng0_0.7.9-2.2build3_amd64.deb -2025-11-24T08:35:06.9076857Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-modules_1.4.0-11ubuntu2_amd64.deb... -2025-11-24T08:35:06.9519397Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:35:06.9521442Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/jeepney/python3-jeepney_0.7.1-3_all.deb... -2025-11-24T08:35:06.9569853Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg_1.21.1ubuntu2_amd64.deb -2025-11-24T08:35:06.9571601Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rabbitmq-server/rabbitmq-server_3.9.13-1_all.deb... -2025-11-24T08:35:07.0014282Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libg/libgcrypt20/libgcrypt20_1.9.4-3ubuntu3_amd64.deb -2025-11-24T08:35:07.0016075Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libio-pty-perl/libio-pty-perl_1.15-2build2_amd64.deb... -2025-11-24T08:35:07.0747017Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tftp_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:07.0749223Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxext/libxext6_1.3.4-1build1_amd64.deb... -2025-11-24T08:35:07.0975551Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/policykit-1/polkitd_0.105-33_amd64.deb -2025-11-24T08:35:07.0977386Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-client3_0.8-5ubuntu5_amd64.deb... -2025-11-24T08:35:07.3055180Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/jeepney/python3-jeepney_0.7.1-3_all.deb -2025-11-24T08:35:07.3056958Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/liby/libyaml/libyaml-0-2_0.2.2-1build2_amd64.deb... -2025-11-24T08:35:07.3537917Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libi/libio-pty-perl/libio-pty-perl_1.15-2build2_amd64.deb -2025-11-24T08:35:07.3539632Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/distro-info-data/distro-info-data_0.52_all.deb... -2025-11-24T08:35:07.4309450Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxext/libxext6_1.3.4-1build1_amd64.deb -2025-11-24T08:35:07.4311268Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-client_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:35:07.4694621Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-client3_0.8-5ubuntu5_amd64.deb -2025-11-24T08:35:07.4696717Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/qrencode_4.1.1-1_amd64.deb... -2025-11-24T08:35:07.4832948Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libtinfo6_6.3-2_amd64.deb -2025-11-24T08:35:07.4835666Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcpdump/tcpdump_4.99.1-3build2_amd64.deb... -2025-11-24T08:35:07.5257787Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python3-pip_22.0.2+dfsg-1_all.deb -2025-11-24T08:35:07.5260425Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunwind/libunwind8_1.3.2-2build2_amd64.deb... -2025-11-24T08:35:07.5838243Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-inets_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:07.5839966Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-agent_2.2.27-3ubuntu2_amd64.deb... -2025-11-24T08:35:07.5907752Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/distro-info-data/distro-info-data_0.52_all.deb -2025-11-24T08:35:07.5909645Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/util-linux_2.37.2-4ubuntu3_amd64.deb... -2025-11-24T08:35:07.5930810Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-modules_1.4.0-11ubuntu2_amd64.deb -2025-11-24T08:35:07.5932462Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxml2/libxml2_2.9.13+dfsg-1build1_amd64.deb... -2025-11-24T08:35:07.7077614Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cairo/libcairo2_1.16.0-5ubuntu2_amd64.deb -2025-11-24T08:35:07.7079276Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/liba/libassuan/libassuan0_2.5.5-1build1_amd64.deb... -2025-11-24T08:35:07.7847627Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/liby/libyaml/libyaml-0-2_0.2.2-1build2_amd64.deb -2025-11-24T08:35:07.7849690Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jre-headless_8u312-b07-0ubuntu1_amd64.deb... -2025-11-24T08:35:07.8173075Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/qrencode_4.1.1-1_amd64.deb -2025-11-24T08:35:07.8174835Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pyjwt/python3-jwt_2.3.0-1_all.deb... -2025-11-24T08:35:07.9057015Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-client_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:35:07.9058841Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-public-key_24.2.1+dfsg-1_amd64.deb... -2025-11-24T08:35:07.9955731Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunwind/libunwind8_1.3.2-2build2_amd64.deb -2025-11-24T08:35:07.9957590Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-modules-bin_1.4.0-11ubuntu2_amd64.deb... -2025-11-24T08:35:08.0512205Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/liba/libassuan/libassuan0_2.5.5-1build1_amd64.deb -2025-11-24T08:35:08.0514508Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/p11-kit/libp11-kit0_0.24.0-6build1_amd64.deb... -2025-11-24T08:35:08.1643304Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-agent_2.2.27-3ubuntu2_amd64.deb -2025-11-24T08:35:08.1645254Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg-turbo/libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb... -2025-11-24T08:35:08.1726252Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pyjwt/python3-jwt_2.3.0-1_all.deb -2025-11-24T08:35:08.1728008Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libg/libgpg-error/libgpg-error0_1.43-3_amd64.deb... -2025-11-24T08:35:08.3235468Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcpdump/tcpdump_4.99.1-3build2_amd64.deb -2025-11-24T08:35:08.3237341Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-6_1.7.5-1_amd64.deb... -2025-11-24T08:35:08.3589460Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam-modules-bin_1.4.0-11ubuntu2_amd64.deb -2025-11-24T08:35:08.3591301Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/apt/apt-transport-https_2.4.5_all.deb... -2025-11-24T08:35:08.4446710Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxml2/libxml2_2.9.13+dfsg-1build1_amd64.deb -2025-11-24T08:35:08.4448571Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-httplib2/python3-httplib2_0.20.2-2_all.deb... -2025-11-24T08:35:08.5173906Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/util-linux_2.37.2-4ubuntu3_amd64.deb -2025-11-24T08:35:08.5193687Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi8_3.4.2-4_amd64.deb... -2025-11-24T08:35:08.5922213Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/apt/apt-transport-https_2.4.5_all.deb -2025-11-24T08:35:08.5924185Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tar/tar_1.34+dfsg-1build3_amd64.deb... -2025-11-24T08:35:08.6304636Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libg/libgpg-error/libgpg-error0_1.43-3_amd64.deb -2025-11-24T08:35:08.6943449Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-public-key_24.2.1+dfsg-1_amd64.deb -2025-11-24T08:35:08.7389435Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/p11-kit/libp11-kit0_0.24.0-6build1_amd64.deb -2025-11-24T08:35:08.7519903Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg-turbo/libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb -2025-11-24T08:35:08.7846711Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-httplib2/python3-httplib2_0.20.2-2_all.deb -2025-11-24T08:35:08.8624180Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi8_3.4.2-4_amd64.deb -2025-11-24T08:35:08.9688874Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rabbitmq-server/rabbitmq-server_3.9.13-1_all.deb -2025-11-24T08:35:09.1873054Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-6_1.7.5-1_amd64.deb -2025-11-24T08:35:09.2970781Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tar/tar_1.34+dfsg-1build3_amd64.deb -2025-11-24T08:35:09.9220263Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jre-headless_8u312-b07-0ubuntu1_amd64.deb -2025-11-24T08:35:09.9759317Z -2025-11-24T08:35:09.9760033Z Mirror `jammy` has been successfully updated. -2025-11-24T08:35:10.0247146Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/InRelease... -2025-11-24T08:35:10.6022455Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/InRelease -2025-11-24T08:35:10.6034376Z openpgp: Signature made Mon, 24 Nov 2025 05:07:29 UTC using RSA key ID 871920D1991BC93C -2025-11-24T08:35:10.6035424Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " -2025-11-24T08:35:10.6106678Z Downloading & parsing package files... -2025-11-24T08:35:10.6108050Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/main/binary-amd64/Packages.gz... -2025-11-24T08:35:11.6432433Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/main/binary-amd64/Packages.gz -2025-11-24T08:35:11.8826027Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/universe/binary-amd64/Packages.gz... -2025-11-24T08:35:12.8199603Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-security/universe/binary-amd64/Packages.gz -2025-11-24T08:35:12.9011493Z Applying filter... -2025-11-24T08:35:12.9229219Z Packages filtered: 20612 -> 116. -2025-11-24T08:35:12.9229819Z Building download queue... -2025-11-24T08:35:12.9248225Z Download queue: 116 items (132.01 MiB) -2025-11-24T08:35:12.9256307Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/gcc-12-base_12.3.0-1ubuntu1~22.04.2_amd64.deb... -2025-11-24T08:35:12.9258329Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.11.1+dfsg-1ubuntu0.3_amd64.deb... -2025-11-24T08:35:12.9260202Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/w/wheel/python3-wheel_0.37.1-2ubuntu0.22.04.1_all.deb... -2025-11-24T08:35:12.9261869Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/libprocps8_3.3.17-6ubuntu2.1_amd64.deb... -2025-11-24T08:35:12.9263188Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ssl_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:12.9264464Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/llvm-toolchain-15/libllvm15_15.0.7-0ubuntu0.22.04.3_amd64.deb... -2025-11-24T08:35:12.9265561Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-lib2to3_3.10.8-1~22.04_all.deb... -2025-11-24T08:35:12.9266600Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libgssapi-krb5-2_1.19.2-2ubuntu0.7_amd64.deb... -2025-11-24T08:35:12.9267622Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-syntax-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:12.9268606Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rsync/rsync_3.2.7-0ubuntu0.22.04.4_amd64.deb... -2025-11-24T08:35:13.2692959Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/libprocps8_3.3.17-6ubuntu2.1_amd64.deb -2025-11-24T08:35:13.2695384Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-asn1_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:13.2699724Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/w/wheel/python3-wheel_0.37.1-2ubuntu0.22.04.1_all.deb -2025-11-24T08:35:13.2701233Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-data_1.7.5-1ubuntu0.3_all.deb... -2025-11-24T08:35:13.2747136Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/gcc-12-base_12.3.0-1ubuntu1~22.04.2_amd64.deb -2025-11-24T08:35:13.2748966Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-crypto_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:13.4090284Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-lib2to3_3.10.8-1~22.04_all.deb -2025-11-24T08:35:13.4092480Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncurses6_6.3-2ubuntu0.1_amd64.deb... -2025-11-24T08:35:13.5137505Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libgssapi-krb5-2_1.19.2-2ubuntu0.7_amd64.deb -2025-11-24T08:35:13.5139117Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:13.6114077Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rsync/rsync_3.2.7-0ubuntu0.22.04.4_amd64.deb -2025-11-24T08:35:13.6115818Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libmount1_2.37.2-4ubuntu3.4_amd64.deb... -2025-11-24T08:35:13.6332548Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/f/freetype/libfreetype6_2.11.1+dfsg-1ubuntu0.3_amd64.deb -2025-11-24T08:35:13.6334660Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-syntax-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:13.6336542Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc-common_1.3.2-2ubuntu0.1_all.deb... -2025-11-24T08:35:13.6338251Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3.1_amd64.deb... -2025-11-24T08:35:13.8560729Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-data_1.7.5-1ubuntu0.3_all.deb -2025-11-24T08:35:13.8562599Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10_3.10.12-1~22.04.11_amd64.deb... -2025-11-24T08:35:13.8592364Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-crypto_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:13.8594385Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6_2.35-0ubuntu3.11_amd64.deb... -2025-11-24T08:35:13.8640380Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc-common_1.3.2-2ubuntu0.1_all.deb -2025-11-24T08:35:13.8642192Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tar/tar_1.34+dfsg-1ubuntu0.1.22.04.2_amd64.deb... -2025-11-24T08:35:13.9871711Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ssl_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:13.9874180Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-server_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:13.9942873Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncurses6_6.3-2ubuntu0.1_amd64.deb -2025-11-24T08:35:13.9944426Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncursesw6_6.3-2ubuntu0.1_amd64.deb... -2025-11-24T08:35:14.1810262Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-asn1_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:14.1812208Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/mount_2.37.2-4ubuntu3.4_amd64.deb... -2025-11-24T08:35:14.1968493Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libmount1_2.37.2-4ubuntu3.4_amd64.deb -2025-11-24T08:35:14.1970555Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_3.0.2-0ubuntu1.20_amd64.deb... -2025-11-24T08:35:14.2368530Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3.1_amd64.deb -2025-11-24T08:35:14.2370408Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3.16_amd64.deb... -2025-11-24T08:35:14.3502962Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:14.3504837Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-xmerl_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:14.4490063Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-server_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:14.4492473Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates/ca-certificates_20240203~22.04.1_all.deb... -2025-11-24T08:35:14.5567273Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tar/tar_1.34+dfsg-1ubuntu0.1.22.04.2_amd64.deb -2025-11-24T08:35:14.5571269Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg_2.2.27-3ubuntu2.4_all.deb... -2025-11-24T08:35:14.5795760Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libncursesw6_6.3-2ubuntu0.1_amd64.deb -2025-11-24T08:35:14.5797522Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/dirmngr_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:14.6550315Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10_3.10.12-1~22.04.11_amd64.deb -2025-11-24T08:35:14.6553061Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5-3_1.19.2-2ubuntu0.7_amd64.deb... -2025-11-24T08:35:14.7178122Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3.16_amd64.deb -2025-11-24T08:35:14.7179834Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nghttp2/libnghttp2-14_1.43.0-1ubuntu0.2_amd64.deb... -2025-11-24T08:35:14.7576209Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/mount_2.37.2-4ubuntu3.4_amd64.deb -2025-11-24T08:35:14.7578445Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-client_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:14.9088499Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6_2.35-0ubuntu3.11_amd64.deb -2025-11-24T08:35:14.9090874Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1.1_amd64.deb... -2025-11-24T08:35:14.9806531Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/llvm-toolchain-15/libllvm15_15.0.7-0ubuntu0.22.04.3_amd64.deb -2025-11-24T08:35:14.9808123Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libuuid1_2.37.2-4ubuntu3.4_amd64.deb... -2025-11-24T08:35:15.1354640Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates/ca-certificates_20240203~22.04.1_all.deb -2025-11-24T08:35:15.1356635Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2-bin_2.44-1ubuntu0.22.04.2_amd64.deb... -2025-11-24T08:35:15.1550137Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_3.0.2-0ubuntu1.20_amd64.deb -2025-11-24T08:35:15.1552037Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10-minimal_3.10.12-1~22.04.11_amd64.deb... -2025-11-24T08:35:15.1660064Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nghttp2/libnghttp2-14_1.43.0-1ubuntu0.2_amd64.deb -2025-11-24T08:35:15.1661958Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tftp_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:15.2244146Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-wks-client_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:15.2245923Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1.1_amd64.deb... -2025-11-24T08:35:15.2599425Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg_2.2.27-3ubuntu2.4_all.deb -2025-11-24T08:35:15.2601154Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_3.0.2-0ubuntu1.20_amd64.deb... -2025-11-24T08:35:15.2717608Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-xmerl_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:15.2719499Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxml2/libxml2_2.9.13+dfsg-1ubuntu0.10_amd64.deb... -2025-11-24T08:35:15.2804155Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/dirmngr_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:15.2805989Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-public-key_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:15.3187177Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libuuid1_2.37.2-4ubuntu3.4_amd64.deb -2025-11-24T08:35:15.3189279Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-minimal_3.10.12-1~22.04.11_amd64.deb... -2025-11-24T08:35:15.3461672Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5-3_1.19.2-2ubuntu0.7_amd64.deb -2025-11-24T08:35:15.3463696Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nano/nano_6.2-1ubuntu0.1_amd64.deb... -2025-11-24T08:35:15.4627874Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1.1_amd64.deb -2025-11-24T08:35:15.4630860Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jdk-headless_8u472-ga-1~22.04_amd64.deb... -2025-11-24T08:35:15.4787851Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2-bin_2.44-1ubuntu0.22.04.2_amd64.deb -2025-11-24T08:35:15.4791458Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb... -2025-11-24T08:35:15.4976605Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1.1_amd64.deb -2025-11-24T08:35:15.4986744Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-os-mon_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:15.7510299Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tftp_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:15.7512290Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-pkg-resources_59.6.0-1.2ubuntu0.22.04.3_all.deb... -2025-11-24T08:35:15.9562111Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-os-mon_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:15.9563896Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.6-1~22.04_amd64.deb... -2025-11-24T08:35:16.0478295Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nano/nano_6.2-1ubuntu0.1_amd64.deb -2025-11-24T08:35:16.0480288Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1.20_amd64.deb... -2025-11-24T08:35:16.0589967Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dbus/libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb -2025-11-24T08:35:16.0593869Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python3-pip_22.0.2+dfsg-1ubuntu0.7_all.deb... -2025-11-24T08:35:16.0979941Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libxml2/libxml2_2.9.13+dfsg-1ubuntu0.10_amd64.deb -2025-11-24T08:35:16.0981906Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/logrotate/logrotate_3.19.0-1ubuntu1.1_amd64.deb... -2025-11-24T08:35:16.1162466Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-public-key_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:16.1164452Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libblkid1_2.37.2-4ubuntu3.4_amd64.deb... -2025-11-24T08:35:16.1595685Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-minimal_3.10.12-1~22.04.11_amd64.deb -2025-11-24T08:35:16.1598066Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-utils_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:16.2174216Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/python3.10-minimal_3.10.12-1~22.04.11_amd64.deb -2025-11-24T08:35:16.2176092Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-setuptools_59.6.0-1.2ubuntu0.22.04.3_all.deb... -2025-11-24T08:35:16.2847754Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_3.0.2-0ubuntu1.20_amd64.deb -2025-11-24T08:35:16.2849549Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2_2.44-1ubuntu0.22.04.2_amd64.deb... -2025-11-24T08:35:16.3181433Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.6-1~22.04_amd64.deb -2025-11-24T08:35:16.3183596Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-snmp_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:16.3367731Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-pkg-resources_59.6.0-1.2ubuntu0.22.04.3_all.deb -2025-11-24T08:35:16.3369653Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5support0_1.19.2-2ubuntu0.7_amd64.deb... -2025-11-24T08:35:16.5593050Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/logrotate/logrotate_3.19.0-1ubuntu1.1_amd64.deb -2025-11-24T08:35:16.5594960Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-eldap_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:16.6362247Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libc/libcap2/libcap2_2.44-1ubuntu0.22.04.2_amd64.deb -2025-11-24T08:35:16.6364310Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam0g_1.4.0-11ubuntu2.6_amd64.deb... -2025-11-24T08:35:16.6834000Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb5support0_1.19.2-2ubuntu0.7_amd64.deb -2025-11-24T08:35:16.6835884Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libsmartcols1_2.37.2-4ubuntu3.4_amd64.deb... -2025-11-24T08:35:16.7019337Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libblkid1_2.37.2-4ubuntu3.4_amd64.deb -2025-11-24T08:35:16.7021181Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libssh/libssh-4_0.9.6-2ubuntu0.22.04.5_amd64.deb... -2025-11-24T08:35:16.7926534Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jdk-headless_8u472-ga-1~22.04_amd64.deb -2025-11-24T08:35:16.7930156Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ftp_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:16.8629311Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-utils_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:16.8631196Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rabbitmq-server/rabbitmq-server_3.9.27-0ubuntu0.2_all.deb... -2025-11-24T08:35:16.9021854Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/setuptools/python3-setuptools_59.6.0-1.2ubuntu0.22.04.3_all.deb -2025-11-24T08:35:16.9023592Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libstdc++6_12.3.0-1ubuntu1~22.04.2_amd64.deb... -2025-11-24T08:35:16.9945201Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/p/python-pip/python3-pip_22.0.2+dfsg-1ubuntu0.7_all.deb -2025-11-24T08:35:16.9947694Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sysstat/sysstat_12.5.2-2ubuntu0.2_amd64.deb... -2025-11-24T08:35:17.0984828Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1.20_amd64.deb -2025-11-24T08:35:17.0986572Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-inets_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:17.1029831Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pam/libpam0g_1.4.0-11ubuntu2.6_amd64.deb -2025-11-24T08:35:17.1031375Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apparmor/libapparmor1_3.0.4-2ubuntu2.4_amd64.deb... -2025-11-24T08:35:17.1461089Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-eldap_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:17.1463064Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc3_1.3.2-2ubuntu0.1_amd64.deb... -2025-11-24T08:35:17.1509946Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/libsmartcols1_2.37.2-4ubuntu3.4_amd64.deb -2025-11-24T08:35:17.1511830Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4_4.35-0ubuntu0.22.04.1_amd64.deb... -2025-11-24T08:35:17.2725635Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libssh/libssh-4_0.9.6-2ubuntu0.22.04.5_amd64.deb -2025-11-24T08:35:17.2727280Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-client3_0.8-5ubuntu5.2_amd64.deb... -2025-11-24T08:35:17.2739979Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-ftp_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:17.2742026Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-distutils_3.10.8-1~22.04_all.deb... -2025-11-24T08:35:17.3471218Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-snmp_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:17.3473350Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common-data_0.8-5ubuntu5.2_amd64.deb... -2025-11-24T08:35:17.4423324Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apparmor/libapparmor1_3.0.4-2ubuntu2.4_amd64.deb -2025-11-24T08:35:17.4425136Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1.1_amd64.deb... -2025-11-24T08:35:17.6242471Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-client3_0.8-5ubuntu5.2_amd64.deb -2025-11-24T08:35:17.6244598Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.16+dfsg-0ubuntu0.22.04.2_amd64.deb... -2025-11-24T08:35:17.6260916Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtirpc/libtirpc3_1.3.2-2ubuntu0.1_amd64.deb -2025-11-24T08:35:17.6262153Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.6-1~22.04_amd64.deb... -2025-11-24T08:35:17.6809943Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1.1_amd64.deb -2025-11-24T08:35:17.6811817Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-base_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:17.6900593Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common-data_0.8-5ubuntu5.2_amd64.deb -2025-11-24T08:35:17.6902515Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cups/libcups2_2.4.1op1-1ubuntu4.12_amd64.deb... -2025-11-24T08:35:17.7233313Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libstdc++6_12.3.0-1ubuntu1~22.04.2_amd64.deb -2025-11-24T08:35:17.7235500Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgsm_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:17.7497364Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4_4.35-0ubuntu0.22.04.1_amd64.deb -2025-11-24T08:35:17.7499689Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgv_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:17.8333193Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sysstat/sysstat_12.5.2-2ubuntu0.2_amd64.deb -2025-11-24T08:35:17.8335033Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.6-1~22.04_amd64.deb... -2025-11-24T08:35:17.8461317Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-stdlib-extensions/python3-distutils_3.10.8-1~22.04_all.deb -2025-11-24T08:35:17.8463552Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/expat/libexpat1_2.4.7-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:17.9220719Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-inets_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:17.9223501Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-stdlib_3.10.12-1~22.04.11_amd64.deb... -2025-11-24T08:35:17.9657887Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.6-1~22.04_amd64.deb -2025-11-24T08:35:17.9659852Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libk/libksba/libksba8_1.6.0-2ubuntu0.2_amd64.deb... -2025-11-24T08:35:18.0649390Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.6-1~22.04_amd64.deb -2025-11-24T08:35:18.0651325Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1.1_amd64.deb... -2025-11-24T08:35:18.2274951Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.16+dfsg-0ubuntu0.22.04.2_amd64.deb -2025-11-24T08:35:18.2276852Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libk5crypto3_1.19.2-2ubuntu0.7_amd64.deb... -2025-11-24T08:35:18.2947515Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgsm_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:18.2949319Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-runtime-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:18.2998437Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1.1_amd64.deb -2025-11-24T08:35:18.3000275Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/procps_3.3.17-6ubuntu2.1_amd64.deb... -2025-11-24T08:35:18.3189368Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/expat/libexpat1_2.4.7-1ubuntu0.6_amd64.deb -2025-11-24T08:35:18.3191137Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20190909ubuntu1.2_all.deb... -2025-11-24T08:35:18.3346887Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgv_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:18.3348695Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd_249.11-0ubuntu3.16_amd64.deb... -2025-11-24T08:35:18.3736751Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cups/libcups2_2.4.1op1-1ubuntu4.12_amd64.deb -2025-11-24T08:35:18.3739380Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-6_1.7.5-1ubuntu0.3_amd64.deb... -2025-11-24T08:35:18.5486915Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20190909ubuntu1.2_all.deb -2025-11-24T08:35:18.5488827Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/i/inetutils/inetutils-traceroute_2.2-2ubuntu0.1_amd64.deb... -2025-11-24T08:35:18.5687822Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libk/libksba/libksba8_1.6.0-2ubuntu0.2_amd64.deb -2025-11-24T08:35:18.5690079Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1ubuntu1.21_amd64.deb... -2025-11-24T08:35:18.6843711Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libk5crypto3_1.19.2-2ubuntu0.7_amd64.deb -2025-11-24T08:35:18.6845779Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g_1.2.11.dfsg-2ubuntu9.2_amd64.deb... -2025-11-24T08:35:18.7364331Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/r/rabbitmq-server/rabbitmq-server_3.9.27-0ubuntu0.2_all.deb -2025-11-24T08:35:18.7366298Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-sysv_249.11-0ubuntu3.16_amd64.deb... -2025-11-24T08:35:18.9053040Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/i/inetutils/inetutils-traceroute_2.2-2ubuntu0.1_amd64.deb -2025-11-24T08:35:18.9054595Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libtinfo6_6.3-2ubuntu0.1_amd64.deb... -2025-11-24T08:35:18.9647614Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3.10/libpython3.10-stdlib_3.10.12-1~22.04.11_amd64.deb -2025-11-24T08:35:18.9650828Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnutls28/libgnutls30_3.7.3-4ubuntu1.7_amd64.deb... -2025-11-24T08:35:18.9669679Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-sysv_249.11-0ubuntu3.16_amd64.deb -2025-11-24T08:35:18.9671520Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libgcc-s1_12.3.0-1ubuntu1~22.04.2_amd64.deb... -2025-11-24T08:35:18.9827940Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-runtime-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:18.9829764Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg_1.21.1ubuntu2.6_amd64.deb... -2025-11-24T08:35:19.0199870Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/procps/procps_3.3.17-6ubuntu2.1_amd64.deb -2025-11-24T08:35:19.0202184Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-parsetools_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:19.0762380Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-base_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:19.0764637Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-agent_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:19.1422507Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/z/zlib/zlib1g_1.2.11.dfsg-2ubuntu9.2_amd64.deb -2025-11-24T08:35:19.1424441Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3.16_amd64.deb... -2025-11-24T08:35:19.1535497Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1ubuntu1.21_amd64.deb -2025-11-24T08:35:19.1537221Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-mnesia_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:19.1948787Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libx/libx11/libx11-6_1.7.5-1ubuntu0.3_amd64.deb -2025-11-24T08:35:19.1950335Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.81.0-1ubuntu1.21_amd64.deb... -2025-11-24T08:35:19.4349021Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gcc-12/libgcc-s1_12.3.0-1ubuntu1~22.04.2_amd64.deb -2025-11-24T08:35:19.4351225Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iputils/iputils-ping_20211215-1ubuntu0.1_amd64.deb... -2025-11-24T08:35:19.4815697Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/libtinfo6_6.3-2ubuntu0.1_amd64.deb -2025-11-24T08:35:19.4817568Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-0_3.37.2-2ubuntu0.5_amd64.deb... -2025-11-24T08:35:19.5085748Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd_249.11-0ubuntu3.16_amd64.deb -2025-11-24T08:35:19.5087854Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1.1_amd64.deb... -2025-11-24T08:35:19.6116039Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-parsetools_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:19.6118051Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jre-headless_8u472-ga-1~22.04_amd64.deb... -2025-11-24T08:35:19.6461883Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpg-agent_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:19.6463806Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nss/libnss3_3.98-0ubuntu0.22.04.2_amd64.deb... -2025-11-24T08:35:19.7920244Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iputils/iputils-ping_20211215-1ubuntu0.1_amd64.deb -2025-11-24T08:35:19.7922970Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-l10n_2.2.27-3ubuntu2.4_all.deb... -2025-11-24T08:35:19.8432444Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3.16_amd64.deb -2025-11-24T08:35:19.8434541Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/util-linux_2.37.2-4ubuntu3.4_amd64.deb... -2025-11-24T08:35:19.8851994Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/curl/libcurl4_7.81.0-1ubuntu1.21_amd64.deb -2025-11-24T08:35:19.8854427Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common3_0.8-5ubuntu5.2_amd64.deb... -2025-11-24T08:35:19.9017336Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnutls28/libgnutls30_3.7.3-4ubuntu1.7_amd64.deb -2025-11-24T08:35:19.9019167Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6_4.18.0-4ubuntu0.1_amd64.deb... -2025-11-24T08:35:19.9219023Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg_1.21.1ubuntu2.6_amd64.deb -2025-11-24T08:35:19.9220661Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgconf_2.2.27-3ubuntu2.4_amd64.deb... -2025-11-24T08:35:20.0674184Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-mnesia_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:20.0676335Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb... -2025-11-24T08:35:20.2365234Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/avahi/libavahi-common3_0.8-5ubuntu5.2_amd64.deb -2025-11-24T08:35:20.2367076Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/less/less_590-1ubuntu0.22.04.3_amd64.deb... -2025-11-24T08:35:20.2492067Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gnupg-l10n_2.2.27-3ubuntu2.4_all.deb -2025-11-24T08:35:20.2579200Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6_4.18.0-4ubuntu0.1_amd64.deb -2025-11-24T08:35:20.3041345Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/sqlite3/libsqlite3-0_3.37.2-2ubuntu0.5_amd64.deb -2025-11-24T08:35:20.3308484Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1.1_amd64.deb -2025-11-24T08:35:20.4043596Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gnupg2/gpgconf_2.2.27-3ubuntu2.4_amd64.deb -2025-11-24T08:35:20.5866573Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/n/nss/libnss3_3.98-0ubuntu0.22.04.2_amd64.deb -2025-11-24T08:35:20.7781547Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/util-linux/util-linux_2.37.2-4ubuntu3.4_amd64.deb -2025-11-24T08:35:20.8215623Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/less/less_590-1ubuntu0.22.04.3_amd64.deb -2025-11-24T08:35:20.8886494Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/erlang/erlang-tools_24.2.1+dfsg-1ubuntu0.6_amd64.deb -2025-11-24T08:35:21.8426520Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/o/openjdk-8/openjdk-8-jre-headless_8u472-ga-1~22.04_amd64.deb -2025-11-24T08:35:21.8653759Z -2025-11-24T08:35:21.8654507Z Mirror `jammy-security` has been successfully updated. -2025-11-24T08:35:21.8921277Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease... -2025-11-24T08:35:22.4779267Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease -2025-11-24T08:35:22.4793200Z openpgp: Signature made Mon, 24 Nov 2025 05:10:20 UTC using RSA key ID 871920D1991BC93C -2025-11-24T08:35:22.4794451Z openpgp: Good signature from "Ubuntu Archive Automatic Signing Key (2018) " -2025-11-24T08:35:22.4857755Z Downloading & parsing package files... -2025-11-24T08:35:22.4862890Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/main/binary-amd64/Packages.gz... -2025-11-24T08:35:23.6541188Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/main/binary-amd64/Packages.gz -2025-11-24T08:35:23.9045743Z Downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/universe/binary-amd64/Packages.gz... -2025-11-24T08:35:24.8686315Z Success downloading http://de.archive.ubuntu.com/ubuntu/dists/jammy-updates/universe/binary-amd64/Packages.gz -2025-11-24T08:35:24.9557339Z Applying filter... -2025-11-24T08:35:24.9779108Z Packages filtered: 22847 -> 151. -2025-11-24T08:35:24.9779696Z Building download queue... -2025-11-24T08:35:24.9828057Z Download queue: 49 items (14.71 MiB) -2025-11-24T08:35:24.9835943Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libxtables12_1.8.7-1ubuntu5.2_amd64.deb... -2025-11-24T08:35:24.9837766Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-0_2.72.4-0ubuntu2.6_amd64.deb... -2025-11-24T08:35:24.9838901Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lvm2/libdevmapper1.02.1_1.02.175-2.1ubuntu5_amd64.deb... -2025-11-24T08:35:24.9840486Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.3-2ubuntu3~22.04.1_amd64.deb... -2025-11-24T08:35:24.9841681Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cryptsetup/libcryptsetup12_2.4.3-1ubuntu1.3_amd64.deb... -2025-11-24T08:35:24.9843147Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1.2_amd64.deb... -2025-11-24T08:35:24.9844338Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.22.9_all.deb... -2025-11-24T08:35:24.9845651Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.20.3-0ubuntu1.1_amd64.deb... -2025-11-24T08:35:24.9846765Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libelf1_0.186-1ubuntu0.1_amd64.deb... -2025-11-24T08:35:24.9847857Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip4tc2_1.8.7-1ubuntu5.2_amd64.deb... -2025-11-24T08:35:25.2136136Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libcom-err2_1.46.5-2ubuntu1.2_amd64.deb -2025-11-24T08:35:25.2138017Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_amd64.deb... -2025-11-24T08:35:25.2164392Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.22.9_all.deb -2025-11-24T08:35:25.2166390Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcpdump/tcpdump_4.99.1-3ubuntu0.2_amd64.deb... -2025-11-24T08:35:25.3217672Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libxtables12_1.8.7-1ubuntu5.2_amd64.deb -2025-11-24T08:35:25.3219281Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip6tc2_1.8.7-1ubuntu5.2_amd64.deb... -2025-11-24T08:35:25.3448019Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip4tc2_1.8.7-1ubuntu5.2_amd64.deb -2025-11-24T08:35:25.3450081Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-data_2.72.4-0ubuntu2.6_all.deb... -2025-11-24T08:35:25.4357699Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.3-2ubuntu3~22.04.1_amd64.deb -2025-11-24T08:35:25.4359576Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_amd64.deb... -2025-11-24T08:35:25.4530010Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libelf1_0.186-1ubuntu0.1_amd64.deb -2025-11-24T08:35:25.4531972Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3.17_amd64.deb... -2025-11-24T08:35:25.5601746Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cryptsetup/libcryptsetup12_2.4.3-1ubuntu1.3_amd64.deb -2025-11-24T08:35:25.5603899Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pygobject/python3-gi_3.42.1-0ubuntu1_amd64.deb... -2025-11-24T08:35:25.5729342Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/l/lvm2/libdevmapper1.02.1_1.02.175-2.1ubuntu5_amd64.deb -2025-11-24T08:35:25.5731309Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpcap/libpcap0.8_1.10.1-4ubuntu1.22.04.1_amd64.deb... -2025-11-24T08:35:25.5810782Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-data_2.72.4-0ubuntu2.6_all.deb -2025-11-24T08:35:25.5813543Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/packagekit_1.2.5-2ubuntu3_amd64.deb... -2025-11-24T08:35:25.6702922Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/libip6tc2_1.8.7-1ubuntu5.2_amd64.deb -2025-11-24T08:35:25.6705702Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3.2_amd64.deb... -2025-11-24T08:35:25.6888412Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_amd64.deb -2025-11-24T08:35:25.6890278Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-bin_2.72.4-0ubuntu2.6_amd64.deb... -2025-11-24T08:35:25.7865491Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_amd64.deb -2025-11-24T08:35:25.7868017Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt-common_2.4.0ubuntu4_all.deb... -2025-11-24T08:35:25.8928146Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.20.3-0ubuntu1.1_amd64.deb -2025-11-24T08:35:25.8930161Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.6-1~22.04.1_amd64.deb... -2025-11-24T08:35:25.9005907Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-0_2.72.4-0ubuntu2.6_amd64.deb -2025-11-24T08:35:25.9007735Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre3/libpcre3_8.39-13ubuntu0.22.04.1_amd64.deb... -2025-11-24T08:35:26.0250209Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt-common_2.4.0ubuntu4_all.deb -2025-11-24T08:35:26.0252042Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1.2_amd64.deb... -2025-11-24T08:35:26.0522556Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/t/tcpdump/tcpdump_4.99.1-3ubuntu0.2_amd64.deb -2025-11-24T08:35:26.0524639Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3.17_amd64.deb... -2025-11-24T08:35:26.1542903Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libsystemd0_249.11-0ubuntu3.17_amd64.deb -2025-11-24T08:35:26.1544780Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libdw1_0.186-1ubuntu0.1_amd64.deb... -2025-11-24T08:35:26.1574602Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libp/libpcap/libpcap0.8_1.10.1-4ubuntu1.22.04.1_amd64.deb -2025-11-24T08:35:26.1577797Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.6-1~22.04.1_amd64.deb... -2025-11-24T08:35:26.1593559Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/g/glib2.0/libglib2.0-bin_2.72.4-0ubuntu2.6_amd64.deb -2025-11-24T08:35:26.1595163Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.6-1~22.04.1_amd64.deb... -2025-11-24T08:35:26.2570332Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3_3.10.6-1~22.04.1_amd64.deb -2025-11-24T08:35:26.2572030Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg6.0_2.4.14_amd64.deb... -2025-11-24T08:35:26.2596751Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pygobject/python3-gi_3.42.1-0ubuntu1_amd64.deb -2025-11-24T08:35:26.2598273Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd_249.11-0ubuntu3.17_amd64.deb... -2025-11-24T08:35:26.2708604Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/unzip/unzip_6.0-26ubuntu3.2_amd64.deb -2025-11-24T08:35:26.2710273Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1.2_amd64.deb... -2025-11-24T08:35:26.2816128Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/packagekit_1.2.5-2ubuntu3_amd64.deb -2025-11-24T08:35:26.2821449Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/gir1.2-packagekitglib-1.0_1.2.5-2ubuntu3_amd64.deb... -2025-11-24T08:35:26.3979733Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/libpython3-stdlib_3.10.6-1~22.04.1_amd64.deb -2025-11-24T08:35:26.3981744Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_2.4.14_amd64.deb... -2025-11-24T08:35:26.5081137Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libss2_1.46.5-2ubuntu1.2_amd64.deb -2025-11-24T08:35:26.5083351Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcsc-lite/libpcsclite1_1.9.5-3ubuntu1_amd64.deb... -2025-11-24T08:35:26.5084901Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_249.11-0ubuntu3.17_amd64.deb -2025-11-24T08:35:26.5086443Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/json-c/libjson-c5_0.15-3~ubuntu1.22.04.2_amd64.deb... -2025-11-24T08:35:26.5137778Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python3-defaults/python3-minimal_3.10.6-1~22.04.1_amd64.deb -2025-11-24T08:35:26.5139085Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ufw/ufw_0.36.1-4ubuntu0.1_all.deb... -2025-11-24T08:35:26.6058200Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcre3/libpcre3_8.39-13ubuntu0.22.04.1_amd64.deb -2025-11-24T08:35:26.6059952Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-sysv_249.11-0ubuntu3.17_amd64.deb... -2025-11-24T08:35:26.6406617Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/gir1.2-packagekitglib-1.0_1.2.5-2ubuntu3_amd64.deb -2025-11-24T08:35:26.6408496Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1.2_amd64.deb... -2025-11-24T08:35:26.8426975Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd-sysv_249.11-0ubuntu3.17_amd64.deb -2025-11-24T08:35:26.8431902Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.19+dfsg-0ubuntu0.22.04.1_amd64.deb... -2025-11-24T08:35:26.8440686Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/e2fsprogs_1.46.5-2ubuntu1.2_amd64.deb -2025-11-24T08:35:26.8442294Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1.2_amd64.deb... -2025-11-24T08:35:26.8558407Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/elfutils/libdw1_0.186-1ubuntu0.1_amd64.deb -2025-11-24T08:35:26.8559958Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunwind/libunwind8_1.3.2-2build2.1_amd64.deb... -2025-11-24T08:35:26.8706159Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/logsave_1.46.5-2ubuntu1.2_amd64.deb -2025-11-24T08:35:26.8708026Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/iptables_1.8.7-1ubuntu5.2_amd64.deb... -2025-11-24T08:35:26.8762581Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/pcsc-lite/libpcsclite1_1.9.5-3ubuntu1_amd64.deb -2025-11-24T08:35:26.8764267Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/libpackagekit-glib2-18_1.2.5-2ubuntu3_amd64.deb... -2025-11-24T08:35:26.8872571Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/j/json-c/libjson-c5_0.15-3~ubuntu1.22.04.2_amd64.deb -2025-11-24T08:35:26.8874942Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.22.9_all.deb... -2025-11-24T08:35:27.0825676Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/u/ufw/ufw_0.36.1-4ubuntu0.1_all.deb -2025-11-24T08:35:27.0827091Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/apt/apt-transport-https_2.4.14_all.deb... -2025-11-24T08:35:27.1918433Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg6.0_2.4.14_amd64.deb -2025-11-24T08:35:27.1921449Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python3-apt_2.4.0ubuntu4_amd64.deb... -2025-11-24T08:35:27.2406792Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.22.9_all.deb -2025-11-24T08:35:27.2408523Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xfsprogs/xfsprogs_5.13.0-1ubuntu2.1_amd64.deb... -2025-11-24T08:35:27.3173296Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/universe/a/apt/apt-transport-https_2.4.14_all.deb -2025-11-24T08:35:27.3175173Z Downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/distro-info-data/distro-info-data_0.52ubuntu0.11_all.deb... -2025-11-24T08:35:27.3229516Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_2.4.14_amd64.deb -2025-11-24T08:35:27.3230678Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/libu/libunwind/libunwind8_1.3.2-2build2.1_amd64.deb -2025-11-24T08:35:27.4003560Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/s/systemd/systemd_249.11-0ubuntu3.17_amd64.deb -2025-11-24T08:35:27.4136071Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/e/e2fsprogs/libext2fs2_1.46.5-2ubuntu1.2_amd64.deb -2025-11-24T08:35:27.4265637Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/o/openldap/libldap-2.5-0_2.5.19+dfsg-0ubuntu0.22.04.1_amd64.deb -2025-11-24T08:35:27.4624116Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/packagekit/libpackagekit-glib2-18_1.2.5-2ubuntu3_amd64.deb -2025-11-24T08:35:27.5536912Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/d/distro-info-data/distro-info-data_0.52ubuntu0.11_all.deb -2025-11-24T08:35:27.6735531Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/i/iptables/iptables_1.8.7-1ubuntu5.2_amd64.deb -2025-11-24T08:35:27.7769525Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python3-apt_2.4.0ubuntu4_amd64.deb -2025-11-24T08:35:28.0399443Z Success downloading http://de.archive.ubuntu.com/ubuntu/pool/main/x/xfsprogs/xfsprogs_5.13.0-1ubuntu2.1_amd64.deb -2025-11-24T08:35:28.0570435Z -2025-11-24T08:35:28.0571666Z Mirror `jammy-updates` has been successfully updated. -2025-11-24T08:35:28.0848450Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/InRelease... -2025-11-24T08:35:28.1057003Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/InRelease -2025-11-24T08:35:28.1071758Z openpgp: Signature made Thu, 20 Nov 2025 14:24:23 UTC using RSA key ID 7EA0A9C3F273FCD8 -2025-11-24T08:35:28.1072984Z openpgp: Good signature from "Docker Release (CE deb) " -2025-11-24T08:35:28.1082511Z Downloading & parsing package files... -2025-11-24T08:35:28.1084252Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/stable/binary-amd64/Packages.bz2... -2025-11-24T08:35:28.1209826Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/stable/binary-amd64/Packages.bz2 -2025-11-24T08:35:28.1371148Z Applying filter... -2025-11-24T08:35:28.1378133Z Packages filtered: 372 -> 3. -2025-11-24T08:35:28.1378921Z Building download queue... -2025-11-24T08:35:28.1381677Z Download queue: 3 items (85.92 MiB) -2025-11-24T08:35:28.1383617Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/docker-ce-cli_20.10.20~3-0~ubuntu-jammy_amd64.deb... -2025-11-24T08:35:28.1386060Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/docker-ce_20.10.20~3-0~ubuntu-jammy_amd64.deb... -2025-11-24T08:35:28.1387425Z Downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/containerd.io_1.6.8-1_amd64.deb... -2025-11-24T08:35:28.3781793Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/docker-ce_20.10.20~3-0~ubuntu-jammy_amd64.deb -2025-11-24T08:35:28.3863898Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/containerd.io_1.6.8-1_amd64.deb -2025-11-24T08:35:28.5183120Z Success downloading https://download.docker.com/linux/ubuntu/dists/jammy/pool/stable/amd64/docker-ce-cli_20.10.20~3-0~ubuntu-jammy_amd64.deb -2025-11-24T08:35:28.5315718Z -2025-11-24T08:35:28.5317105Z Mirror `docker-ce` has been successfully updated. -2025-11-24T08:35:28.5488932Z -2025-11-24T08:35:28.5489802Z Snapshot jammy successfully created. -2025-11-24T08:35:28.5490978Z You can run 'aptly publish snapshot jammy' to publish snapshot as Debian repository. -2025-11-24T08:35:28.5659778Z -2025-11-24T08:35:28.5660805Z Snapshot jammy-security successfully created. -2025-11-24T08:35:28.5662455Z You can run 'aptly publish snapshot jammy-security' to publish snapshot as Debian repository. -2025-11-24T08:35:28.5866368Z -2025-11-24T08:35:28.5866966Z Snapshot jammy-updates successfully created. -2025-11-24T08:35:28.5867824Z You can run 'aptly publish snapshot jammy-updates' to publish snapshot as Debian repository. -2025-11-24T08:35:28.6091487Z -2025-11-24T08:35:28.6092214Z Snapshot docker-ce successfully created. -2025-11-24T08:35:28.6093668Z You can run 'aptly publish snapshot docker-ce' to publish snapshot as Debian repository. -2025-11-24T08:35:28.6315954Z -2025-11-24T08:35:28.6316593Z Snapshot wire successfully created. -2025-11-24T08:35:28.6317389Z You can run 'aptly publish snapshot wire' to publish snapshot as Debian repository. -2025-11-24T08:35:28.6591251Z Loading packages... -2025-11-24T08:35:28.6632145Z Generating metadata files and linking package files... -2025-11-24T08:35:40.9144396Z Finalizing metadata files... -2025-11-24T08:35:40.9964750Z openpgp: signing file 'Release'... -2025-11-24T08:35:40.9977754Z openpgp: clearsigning file 'Release'... -2025-11-24T08:35:41.0015283Z -2025-11-24T08:35:41.0015850Z Snapshot wire has been successfully published. -2025-11-24T08:35:41.0017777Z Please setup your webserver to serve directory '/home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/debs-jammy/public' with autoindexing. -2025-11-24T08:35:41.0019576Z Now you can add following line to apt sources: -2025-11-24T08:35:41.0020585Z deb http://your-server/ jammy main -2025-11-24T08:35:41.0021644Z Don't forget to add your GPG key to apt with apt-key. -2025-11-24T08:35:41.0022336Z -2025-11-24T08:35:41.0023245Z You can also use `aptly serve` to publish your repositories over HTTP quickly. -2025-11-24T08:35:41.0105239Z Creating /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/versions/debian-builds.json -2025-11-24T08:35:51.9241696Z gpg: directory '/home/runner/.gnupg' created -2025-11-24T08:35:51.9717520Z gpg: WARNING: server 'gpg-agent' is older than us (2.4.4 < 2.4.5) -2025-11-24T08:35:51.9718575Z gpg: Note: Outdated servers may lack important security fixes. -2025-11-24T08:35:51.9719500Z gpg: Note: Use the command "gpgconf --kill all" to restart them. -2025-11-24T08:35:51.9729568Z gpg: /home/runner/.gnupg/trustdb.gpg: trustdb created -2025-11-24T08:35:51.9753549Z A054D0B66346B27919CE5EC02872CB8EEBD99578 -2025-11-24T08:35:51.9787822Z Creating system containers tarball /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... -2025-11-24T08:35:51.9894135Z Fetching registry.k8s.io_pause_3.9… -2025-11-24T08:35:52.2499299Z Getting image source signatures -2025-11-24T08:35:52.2500703Z Copying blob sha256:61fec91190a0bab34406027bbec43d562218df6e80d22d4735029756f23c7007 -2025-11-24T08:35:52.3989229Z Copying config sha256:e6f1816883972d4be47bd48879a08919b96afcd344132622e4d444987919323c -2025-11-24T08:35:52.4481083Z Writing manifest to image destination -2025-11-24T08:35:52.4714539Z Fetching registry.k8s.io_coredns_coredns_v1.11.4… -2025-11-24T08:35:52.7448360Z Getting image source signatures -2025-11-24T08:35:52.7449779Z Copying blob sha256:45f765bd5db213767b86e4c54eac6aaad6a564b12486acdfc9549cb96fe41bcd -2025-11-24T08:35:52.8427540Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:35:52.8966756Z Copying blob sha256:6f4cfee9177b9f884e8d86b48261a25094b2fcea1a7920919f47ea00712dbee8 -2025-11-24T08:35:52.9776209Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:35:53.0245322Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:35:53.0765437Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:35:53.1303937Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:35:53.1857272Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:35:53.2346488Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:35:53.2886260Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:35:53.3424599Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:35:53.3981690Z Copying blob sha256:afd01e4fe5aaea34cea66bab068e4b8e2003c90e6439f8fd0a8052e5c6d76a74 -2025-11-24T08:35:53.4778081Z Copying blob sha256:ab7109b3166202e4f3b963d571da79e07c4cc34d6a1ae6788d94f3b16d638e9b -2025-11-24T08:35:54.0107331Z Copying config sha256:6316477a0b9ca6ac80c09ecbefcd660b06671f1307152b9a7ffcacb65d9b1d56 -2025-11-24T08:35:54.0742376Z Writing manifest to image destination -2025-11-24T08:35:54.1036418Z Fetching registry.k8s.io_dns_k8s-dns-node-cache_1.22.28… -2025-11-24T08:35:54.3389414Z Getting image source signatures -2025-11-24T08:35:54.3390598Z Copying blob sha256:2cbc221dc464828bf2b36022e0524e2306abe7d2300ed54af4506fa2b55599cb -2025-11-24T08:35:54.7113933Z Copying blob sha256:b0eea46bf369a0a1e8d7ac231560c6c11c16997afd015f0325a35ccf952f299f -2025-11-24T08:35:55.1326911Z Copying config sha256:59d295ba73230e5f3773325f65ff363d99a036cfa73153f6c6094d90ad4a359a -2025-11-24T08:35:55.1805880Z Writing manifest to image destination -2025-11-24T08:35:55.2094554Z Fetching registry.k8s.io_cpa_cluster-proportional-autoscaler_v1.8.8… -2025-11-24T08:35:55.4421482Z Getting image source signatures -2025-11-24T08:35:55.4422994Z Copying blob sha256:f1be57a16127443b251b3362bfbc517e5c55f2a836b9ee28c1b667b75a28cc6a -2025-11-24T08:35:55.5785946Z Copying blob sha256:960043b8858c3c30f1d79dcc49adb2804fd35c2510729e67685b298b2ca746b7 -2025-11-24T08:35:55.6287285Z Copying blob sha256:778531a089eab52855ac322765befc1a3c2b5bf7e8a4a933672bfbbc91e7e3f7 -2025-11-24T08:35:55.7179236Z Copying blob sha256:eebb06941f3e57b2e40a0e9cbd798dacef9b04d89ebaa8896be5f17c976f8666 -2025-11-24T08:35:55.7972944Z Copying blob sha256:02cd68c0cbf64abe9738767877756b33f50fff5d88583fdc74b66beffa77694b -2025-11-24T08:35:55.8516756Z Copying blob sha256:d3c894b5b2b0fa857549aeb6cbc38b038b5b2828736be37b6d9fff0b886f12fd -2025-11-24T08:35:55.8965906Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:35:55.9505976Z Copying blob sha256:46ba3f23f1d3fb1440deeb279716e4377e79e61736ec2227270349b9618a0fdd -2025-11-24T08:35:56.0062372Z Copying blob sha256:4fa131a1b726b2d6468d461e7d8867a2157d5671f712461d8abd126155fdf9ce -2025-11-24T08:35:56.0723479Z Copying blob sha256:0987cc99aa9a176b798cb0b7071a4e0aa03d129b158c435fb20edef9a3d909e2 -2025-11-24T08:35:56.1287213Z Copying blob sha256:ff5e8b003139fe51bdba24c26da3d99370749d721aad0b016fcba1d63923b51c -2025-11-24T08:35:56.4708359Z Copying config sha256:b6d1a4be0743fd35029afe89eb5d5a0da894d072817575fcf6fddfa94749138b -2025-11-24T08:35:56.5218307Z Writing manifest to image destination -2025-11-24T08:35:56.5514676Z Fetching registry.k8s.io_metrics-server_metrics-server_v0.7.2… -2025-11-24T08:35:56.7728981Z Getting image source signatures -2025-11-24T08:35:56.7730649Z Copying blob sha256:f531499c6b730fc55a63e5ade55ce2c849bbf03f894248e3a2092689e3749312 -2025-11-24T08:35:56.8795707Z Copying blob sha256:e8d9a567199d7a318c875f2558a679ba8a924f817afacbb428afc3ffe6be6828 -2025-11-24T08:35:56.9354577Z Copying blob sha256:058cf3d8c2ba04ad7c064698c08c5e886a8623c0ad6171b8d72684253534417d -2025-11-24T08:35:57.0106675Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 -2025-11-24T08:35:57.0596530Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:35:57.1153425Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 -2025-11-24T08:35:57.1649343Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:35:57.2116434Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 -2025-11-24T08:35:57.2615946Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:35:57.3164288Z Copying blob sha256:da7816fa955ea24533c388143c78804c28682eef99b4ee3723b548c70148bba6 -2025-11-24T08:35:57.3706959Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 -2025-11-24T08:35:57.4323235Z Copying blob sha256:c530a5b08991c422534657d53af1a10e6046dcdafd3f85eea0496f208897522f -2025-11-24T08:35:57.8784543Z Copying config sha256:48d9cfaaf3904a3821b1e71e50d7cbcf52fb19d5286c59e0f86b1389d189b19c -2025-11-24T08:35:57.9354105Z Writing manifest to image destination -2025-11-24T08:35:57.9644238Z Fetching registry.k8s.io_ingress-nginx_controller_v1.12.1… -2025-11-24T08:35:58.1781266Z Getting image source signatures -2025-11-24T08:35:58.1782927Z Copying blob sha256:f18232174bc91741fdf3da96d85011092101a032a93a388b79e99e69c2d5c870 -2025-11-24T08:35:58.4111676Z Copying blob sha256:6596516c32605c6faaac507d4ee6307b108e75b1e5710fe71ab9e012959e569c -2025-11-24T08:35:59.1420107Z Copying blob sha256:a745d0b9e405901a285b55678cc02c47c5b5568f9b513169c0dfef90c4777132 -2025-11-24T08:35:59.3326345Z Copying blob sha256:d46eb76ee96b696532573c66afe9de4eddaa26a528f48b422b93b9367221c52b -2025-11-24T08:35:59.3876261Z Copying blob sha256:d2275420c3b699525d735e86be8c7febd2653e1e003106ff6fc15cfbda5febac -2025-11-24T08:35:59.4607890Z Copying blob sha256:5cc7b5e30a50f56cd1e64144ec637ccaf69ec88c7c42b921fdd8e6e40710abeb -2025-11-24T08:35:59.8827724Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:35:59.9316066Z Copying blob sha256:280d8b867efa0f9384f2b6ca827c7d445e3c25055827080ebc2445804cfb94e8 -2025-11-24T08:35:59.9963292Z Copying blob sha256:c59176407fc2653a48d7ceae612f1d67f6206a946636f0355c44a4897d3c0a73 -2025-11-24T08:36:00.0478979Z Copying blob sha256:6a14330bf5c4a2e20f49e78b9a973718d2680f4bab7fcb1c9c8dfdcf4aec506f -2025-11-24T08:36:00.1637979Z Copying blob sha256:6c429cd6f96a7966ec577b2770a9172115d1a1755e2b46cdb80186f18982ec04 -2025-11-24T08:36:00.5443589Z Copying blob sha256:8bfbec0fd7ed910f5140e5629a32cbad06a2af641ac546e453a2650105ab5e22 -2025-11-24T08:36:00.6404765Z Copying blob sha256:3643aa58ecc5e4535db87d7a2ea0ed1e1f1dec2a20e18d98ce2b9c2f727d1719 -2025-11-24T08:36:00.6964510Z Copying blob sha256:b9fced2781ac59fbb119c89cfb8f4e8b0753f8ddb5de5f38914ec9166ca38775 -2025-11-24T08:36:01.2078004Z Copying blob sha256:cd7a4d409e598bb9a519b385ee1b7b206055241457633f2ab148eb1e210435b2 -2025-11-24T08:36:01.2647928Z Copying config sha256:78e25eaa557d48a19963cbe751b91dc1d53e1c82aad6cd36c20e1c11eb04cd13 -2025-11-24T08:36:01.3169488Z Writing manifest to image destination -2025-11-24T08:36:01.3460943Z Fetching registry.k8s.io_kube-apiserver_v1.29.10… -2025-11-24T08:36:01.6400471Z Getting image source signatures -2025-11-24T08:36:01.6401762Z Copying blob sha256:0674a6f58b64d0431620993268b1a1b0ef8618ee3cffd96d4662c2759ec43894 -2025-11-24T08:36:01.7383847Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:36:01.7914181Z Copying blob sha256:6f4cfee9177b9f884e8d86b48261a25094b2fcea1a7920919f47ea00712dbee8 -2025-11-24T08:36:01.8675017Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 -2025-11-24T08:36:01.9137745Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:36:01.9667461Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 -2025-11-24T08:36:02.0132483Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:36:02.0609697Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 -2025-11-24T08:36:02.1066697Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:36:02.1616757Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:36:02.2156384Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 -2025-11-24T08:36:02.2708532Z Copying blob sha256:06b0f115d3d14c931cd74a4eb2c25db288bc369b9c85017d3f1a4bc6e62cc63a -2025-11-24T08:36:02.3455890Z Copying blob sha256:160c0d90bf27f5374fda9334ed87cc1b92954d1777c985102900c3cff63ef504 -2025-11-24T08:36:03.2256035Z Copying config sha256:18c48eab348cb2ea0d360be7cb2530f47a017434fa672c694e839f837137ffe0 -2025-11-24T08:36:03.3417981Z Writing manifest to image destination -2025-11-24T08:36:03.3736632Z Fetching registry.k8s.io_kube-controller-manager_v1.29.10… -2025-11-24T08:36:03.6270630Z Getting image source signatures -2025-11-24T08:36:03.6272359Z Copying blob sha256:0674a6f58b64d0431620993268b1a1b0ef8618ee3cffd96d4662c2759ec43894 -2025-11-24T08:36:03.7738402Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:36:03.8277540Z Copying blob sha256:6f4cfee9177b9f884e8d86b48261a25094b2fcea1a7920919f47ea00712dbee8 -2025-11-24T08:36:03.9198434Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 -2025-11-24T08:36:03.9676771Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:36:04.0225710Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 -2025-11-24T08:36:04.0698132Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:36:04.1224559Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 -2025-11-24T08:36:04.1694168Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:36:04.2224641Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:36:04.2756566Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 -2025-11-24T08:36:04.3390546Z Copying blob sha256:06b0f115d3d14c931cd74a4eb2c25db288bc369b9c85017d3f1a4bc6e62cc63a -2025-11-24T08:36:04.4120113Z Copying blob sha256:d68469361f560ce5f47637714df0cf44c6b9e573de860bfad827268050d18b11 -2025-11-24T08:36:05.2866003Z Copying config sha256:ad191b766a6c87c02578cced8268155fd86b78f8f096775f9d4c3a8f8dccf6bf -2025-11-24T08:36:05.3455676Z Writing manifest to image destination -2025-11-24T08:36:05.3763998Z Fetching registry.k8s.io_kube-scheduler_v1.29.10… -2025-11-24T08:36:05.6483326Z Getting image source signatures -2025-11-24T08:36:05.6484652Z Copying blob sha256:0674a6f58b64d0431620993268b1a1b0ef8618ee3cffd96d4662c2759ec43894 -2025-11-24T08:36:05.7605323Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:36:05.8149756Z Copying blob sha256:6f4cfee9177b9f884e8d86b48261a25094b2fcea1a7920919f47ea00712dbee8 -2025-11-24T08:36:05.9056334Z Copying blob sha256:b6824ed73363f94b3b2b44084c51c31bc32af77a96861d49e16f91e3ab6bed71 -2025-11-24T08:36:05.9550833Z Copying blob sha256:7c12895b777bcaa8ccae0605b4de635b68fc32d60fa08f421dc3818bf55ee212 -2025-11-24T08:36:06.0108620Z Copying blob sha256:33e068de264953dfdc9f9ada207e76b61159721fd64a4820b320d05133a55fb8 -2025-11-24T08:36:06.0635814Z Copying blob sha256:5664b15f108bf9436ce3312090a767300800edbbfd4511aa1a6d64357024d5dd -2025-11-24T08:36:06.1115730Z Copying blob sha256:27be814a09ebd97fac6fb7b82d19f117185e90601009df3fbab6f442f85cd6b3 -2025-11-24T08:36:06.1613142Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:36:06.2164929Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:36:06.2745927Z Copying blob sha256:9aee425378d2c16cd44177dc54a274b312897f5860a8e78fdfda555a0d79dd71 -2025-11-24T08:36:06.3422304Z Copying blob sha256:06b0f115d3d14c931cd74a4eb2c25db288bc369b9c85017d3f1a4bc6e62cc63a -2025-11-24T08:36:06.4236307Z Copying blob sha256:6ed33242355d47618fc5576dbb39c4e68b949b095af87f17eec2fa61dba941f0 -2025-11-24T08:36:06.9017144Z Copying config sha256:27a6d029a6b019de099d92bd417a4e40c98e146a04faaab836138abf6307034d -2025-11-24T08:36:06.9923808Z Writing manifest to image destination -2025-11-24T08:36:07.0234545Z Fetching registry.k8s.io_kube-proxy_v1.29.10… -2025-11-24T08:36:07.2623756Z Getting image source signatures -2025-11-24T08:36:07.2625094Z Copying blob sha256:ed7a63e1838fc2675aaffc06b03da167277c478416ef46993d0cf116d29d2f2d -2025-11-24T08:36:07.6135538Z Copying blob sha256:76a98f04292b7198e397cbe3106b30c2da334fb729cfcd250465c88aec2c9112 -2025-11-24T08:36:08.0618606Z Copying config sha256:561e7e8f714aae262c52c7ea98efdabecf299956499c8a2c63eab6759906f0a4 -2025-11-24T08:36:08.1276623Z Writing manifest to image destination -2025-11-24T08:36:08.1572872Z Fetching quay.io_coreos_etcd_v3.5.16… -2025-11-24T08:36:08.5509237Z Getting image source signatures -2025-11-24T08:36:08.5511378Z Copying blob sha256:804c8aba2cc61168600515a6831474978d0ea8faddd8a66f99cc9f2bbd576105 -2025-11-24T08:36:08.7868190Z Copying blob sha256:2ae710cd8bfef4545fa3a6dc274d6b7a991ca379cdaa3cdf460d5cb5840a3c88 -2025-11-24T08:36:08.8913497Z Copying blob sha256:d462aa3453675bb1f9a271a72cc72a53e628521a7d0e94b720bd07f9ca4962dc -2025-11-24T08:36:09.0148490Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:36:09.1154913Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:36:09.2138537Z Copying blob sha256:c8022d07192eddbb2a548ba83be5e412f7ba863bbba158d133c9653bb8a47768 -2025-11-24T08:36:09.3268016Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:36:09.4617355Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:36:09.5569326Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:36:09.6057206Z Copying blob sha256:5318d93a3a6582d0351c833fa3cf04ab41352b2e6c77c9ec3d330581eb267683 -2025-11-24T08:36:09.7208737Z Copying blob sha256:307c1adadb60e6e9b8aca553ec620d77fedc112737cc54e9ee73ac165e7f3cbc -2025-11-24T08:36:09.8097632Z Copying blob sha256:fbb01d9e9dc96d1ba101f9397c9e7d0734203c1e4392008cdf6573446aac6ea4 -2025-11-24T08:36:10.0488975Z Copying blob sha256:fbfea02ac3cfaf1d6901177b66ee8ee030ec8bd2861438c76cd0554a3a9d92b7 -2025-11-24T08:36:10.2605842Z Copying blob sha256:8c26e4bf18e2c35831f0c5ab9f4d5d071537aa409ab7d7cde4bd2304473afd84 -2025-11-24T08:36:10.4356902Z Copying blob sha256:1e59a65f8816ad082f8cb692b0d9a2d80d60176729e5f0bef5355e6d5e744adc -2025-11-24T08:36:10.4960082Z Copying blob sha256:ffbd4ca5f0bd6e7d5717f7097bcf69e521180c2e70234194a8038559b9b01bfa -2025-11-24T08:36:10.5477139Z Copying config sha256:8523cb381f23c97b8a6a307f65282b212dd40a3b785442fa91621b983f1be079 -2025-11-24T08:36:10.6480453Z Writing manifest to image destination -2025-11-24T08:36:10.6798896Z Fetching quay.io_calico_node_v3.27.4… -2025-11-24T08:36:11.0519925Z Getting image source signatures -2025-11-24T08:36:11.0521213Z Copying blob sha256:90f0e8a0ee3664f0bcf4aa401edff9da4db7087564916e0a516cb8e7f2301d03 -2025-11-24T08:36:13.7446248Z Copying blob sha256:cdf2843bc0f195a4f9f214047c59e2389fd007e6f8f94de3cc5723b7ecbbe18c -2025-11-24T08:36:13.8751626Z Copying blob sha256:7402091d8d6990d91c32787278e6ef4f1050baa9d5dc1f28187f7de743b8d069 -2025-11-24T08:36:14.0288644Z Copying config sha256:3dd4390f2a85a6a7a5496651d15f65ebaa1f2004fac497f5b8419053db8ab144 -2025-11-24T08:36:14.1484137Z Writing manifest to image destination -2025-11-24T08:36:14.1789928Z Fetching quay.io_calico_cni_v3.27.4… -2025-11-24T08:36:14.6495280Z Getting image source signatures -2025-11-24T08:36:14.6496830Z Copying blob sha256:ad5042aba4ea93ceb67882c49eb3fb8b806ffa201c5c6f0f90071702f09a9192 -2025-11-24T08:36:14.9065327Z Copying blob sha256:ad5afd8b91108be35d5889daa4647f9a4c072662c3615153f86ff6f0e754e104 -2025-11-24T08:36:15.0063270Z Copying blob sha256:4912cdb2d88f14c5470943e0ea8a1fa4e91b4034eceba6f58472ad4b48c8102a -2025-11-24T08:36:15.1438587Z Copying blob sha256:836c0ab606099c6706af9699314f5c4f861dbb45a01762b0b347021bbd60e5e3 -2025-11-24T08:36:15.2556703Z Copying blob sha256:fb1dccfdab0135999f0de7401eb12b2336b67b5f6863e0b3a3dcf2073d1296ac -2025-11-24T08:36:15.4566303Z Copying blob sha256:48559947bc83188c8ea06bfd9636e1c4fda5f3083cdb739e24107e01143c78b3 -2025-11-24T08:36:15.5896343Z Copying blob sha256:10bfba271dd627c9f2d13cc29d5d9bf4ce85cb77a61120dc19a50080fc55de80 -2025-11-24T08:36:15.7025019Z Copying blob sha256:b937ea73bd2f9a633f4f53a8f79a8478165836230dca70dc92f2019a361b450f -2025-11-24T08:36:15.8217079Z Copying blob sha256:43c634c0d348d0b27cba6168ed28df62ed85be169fa1b68574b02403d3ea6467 -2025-11-24T08:36:15.9509314Z Copying blob sha256:b498e09d72863b9d2b7874618dac33ab473170444b32b0b4071ab586fa1d0838 -2025-11-24T08:36:16.0647205Z Copying blob sha256:4c50ad0b0819718966dc7caaa2cf85db20ef74b0cf1f916f296843fbe7c15103 -2025-11-24T08:36:18.0435953Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:36:18.0880168Z Copying config sha256:dc6f84c32585fdebf1eae0521f424331e42504b5c24d7a7c8e95c1727f439913 -2025-11-24T08:36:18.2532993Z Writing manifest to image destination -2025-11-24T08:36:18.2825155Z Fetching quay.io_calico_pod2daemon-flexvol_v3.27.4… -2025-11-24T08:36:18.8157561Z Getting image source signatures -2025-11-24T08:36:18.8159397Z Copying blob sha256:48c16260672ef3ba4e162a3e75b30a4c5a3c63eb93ed6de16d6befa2bf033419 -2025-11-24T08:36:19.0757940Z Copying blob sha256:1cc9e68871db39ca9aecbb86c3772758b857afd92c6c93bfebb7f3ed3e14f184 -2025-11-24T08:36:19.4323619Z Copying blob sha256:f15eb3b5fb900865c0fd41a93436159843865312667d7edf54ac27785331998e -2025-11-24T08:36:19.7935631Z Copying blob sha256:fc19459d0cd80ed7cd591648a0597600dabe9a65ff3e59b71ab4028d12e03062 -2025-11-24T08:36:20.0227912Z Copying blob sha256:9a4afb4e30fb6cfccc37e28c586f7ab52714c5a466d19ce4ce8ae53d693f4c7b -2025-11-24T08:36:20.3476623Z Copying blob sha256:41ea6344457e87004a988f16c12b8d5296cd21cdf386e5a73f350c975b5e2bc7 -2025-11-24T08:36:20.5766633Z Copying blob sha256:7e773666be5712d24812626726f936daced781104324615de5210bb3f2f62666 -2025-11-24T08:36:20.8073585Z Copying blob sha256:89030d2430ccf4a14a87457d278284f83175e45a20c6496b293e4efaec0ee611 -2025-11-24T08:36:21.0473237Z Copying blob sha256:5e3bdcd8df43836179b2cbec1d1525840f1bd31b94522bc0ffa994955b5833d3 -2025-11-24T08:36:21.5434031Z Copying blob sha256:3b6eacd89415a566236c64a13adfc22481fdcab49ca0207b1d65992ce8048db3 -2025-11-24T08:36:21.7514348Z Copying blob sha256:6c526f9feec759d35c90cc967408ec1f1b4edfdc5c3aad7357f56223f9e4d5b7 -2025-11-24T08:36:22.0418487Z Copying blob sha256:065424273ec59ff5f6923b395579e833c11b3561732c6d1cc5da74c4e024ed45 -2025-11-24T08:36:22.1666173Z Copying blob sha256:ed557207bedbbe01a6d7e0fc85712653d5d23e875f6f575a5a5493e581ec8e1b -2025-11-24T08:36:22.3926149Z Copying blob sha256:2d93ed28df489ce3c875ddf88ef34aa9bc48b6dc8a4878cf3725b011d45cfdeb -2025-11-24T08:36:22.6647401Z Copying blob sha256:6c09d76a144dc677662e59a4fdfeab766b19470fa9139f4312ff779e40692a13 -2025-11-24T08:36:22.8881319Z Copying blob sha256:13e4e783f5982d44698eab3286f1977e94e282e63b83f444f4d52efa2cb1a025 -2025-11-24T08:36:23.1093162Z Copying blob sha256:e79f1a863a4802c0dd07a0a8f5e1f7ffa4626e4c2f6829145b9ed4e8ddd17a78 -2025-11-24T08:36:23.3514728Z Copying blob sha256:b5e2f7774b6d55767ff5b47fcd59427f66a0f71212566ffc9f61beeb14d6a0bf -2025-11-24T08:36:23.7426829Z Copying config sha256:72bfa61e35b354cd583978a4cdb784da70c3abd6bbd2af614af53e1cb86ff9d4 -2025-11-24T08:36:23.9935157Z Writing manifest to image destination -2025-11-24T08:36:24.0260449Z Fetching quay.io_calico_kube-controllers_v3.27.4… -2025-11-24T08:36:24.4347620Z Getting image source signatures -2025-11-24T08:36:24.4349195Z Copying blob sha256:10a91b291da7fd86cefeca3d7dbbf315c49906715ede0182ef3cbf53126f666d -2025-11-24T08:36:24.5914509Z Copying blob sha256:faf49d0505fffcb8bf50d938dfc4c7690bb7d1c2843a4c1c03de1586e16b428c -2025-11-24T08:36:24.6958299Z Copying blob sha256:94dd3e4aad5ebca228940ed1efdcaec99322879b211cdf17457b990d47b32913 -2025-11-24T08:36:24.9013362Z Copying blob sha256:773cd02ddd657f0a689e83b30ceb83d15e1400c31cda55292238baf87ecbdc16 -2025-11-24T08:36:25.0729408Z Copying blob sha256:63c33a538dbcbad36293951329da0c41d4b0870de48bfe265dff5cdd7f7f7610 -2025-11-24T08:36:25.1915257Z Copying blob sha256:55991ce51cac61b9e4ae73861e69fc5ee2342217cf0b58302d087fbecf76cd09 -2025-11-24T08:36:25.3654986Z Copying blob sha256:8be438b1714059c26c01c881054551be43277f4052fa23cd3711edbaa9c0d0e9 -2025-11-24T08:36:25.6090176Z Copying blob sha256:63af43f699dd7a835f87ed3f6aeb2ea191e8b101898115a6e94a8a4de2b35842 -2025-11-24T08:36:25.7083307Z Copying blob sha256:5e4ffd0878824645af7e27a59a6a747f101a0dcb986bec98b1d59760c3fc8d6b -2025-11-24T08:36:25.8847788Z Copying blob sha256:4ddc208db1fdeff70278e991a7c0436c212f411e4ff5bbbb7afa5027d814e0c1 -2025-11-24T08:36:26.2405355Z Copying blob sha256:5929896e7bd14e512897e46b1a3c0e7ba7884b12464c97226782abd3ae331bc2 -2025-11-24T08:36:26.3471803Z Copying blob sha256:14cd3b0420b97b35b936f3a3458c6b0b891ac4efea377ad549d1b661f4ed873f -2025-11-24T08:36:26.5156807Z Copying blob sha256:d381ef6b99233fa5a62855574428d295a4a49caf2309c110c51d3e880ded6637 -2025-11-24T08:36:27.8496671Z Copying blob sha256:dea0625e1a7c07f8192e0e90d091ca1d23aac188522122b975fe55420cbc6a95 -2025-11-24T08:36:27.9829832Z Copying config sha256:6b1e38763f401204ef3314d1336da548e58e7d78f3258b5e51b53393e2d403da -2025-11-24T08:36:28.0954986Z Writing manifest to image destination -2025-11-24T08:36:28.1258902Z Fetching quay.io_calico_typha_v3.27.4… -2025-11-24T08:36:28.5410933Z Getting image source signatures -2025-11-24T08:36:28.5412317Z Copying blob sha256:1fe0d56c2a2c0acd8a1ad078ce42d16a769da392fdf7e0a82f9437047e6b8efc -2025-11-24T08:36:28.6963594Z Copying blob sha256:375341233c66200d2ae8e398a2190aa648cccbde8b74f90a8274383e1edb696b -2025-11-24T08:36:28.8165353Z Copying blob sha256:2fab60388b61aed10f439191393a9090fe612ef398c199e96c0c94448cf8e283 -2025-11-24T08:36:28.9446335Z Copying blob sha256:e29096e2cef45a6de85a91f990934f7ecf0344a21bf1c21b6eb130771e772b77 -2025-11-24T08:36:29.0669978Z Copying blob sha256:362b95f009c773ba77c965e094009ae2585e5c8a729a8155780bdff15fe26ff2 -2025-11-24T08:36:29.1992859Z Copying blob sha256:7b5f5e388f2d424a5523dd6e6985e2eca98dd94d79bbdfcca9356877aa107d3a -2025-11-24T08:36:29.3324350Z Copying blob sha256:2baeab3ae5e12c600515b3c41905140fe858ef92746617fd81b088880e781687 -2025-11-24T08:36:29.4744448Z Copying blob sha256:7dfd79581ecacaf9127d28fb14709c66811c832acb390cc9df4b129b0512daa5 -2025-11-24T08:36:29.5675550Z Copying blob sha256:fb8f9fc820d4d8eabe6808ce7cf418b014ad6118313e8eca6e3b9586f01536f6 -2025-11-24T08:36:29.6706045Z Copying blob sha256:e8231bfb0440e76807c6b8156b1518e633fe53f13e3591641ad665c9dbb9032e -2025-11-24T08:36:29.7898226Z Copying blob sha256:f16d2b607ec7ec580d3ad7c6b11e8afa3e13dea3f37b136963d037826cfcd681 -2025-11-24T08:36:29.8888448Z Copying blob sha256:3703686046e548aa195cb0d4dd6bd1f4aad8ef798522b1bfb3302751bdce2451 -2025-11-24T08:36:31.3913537Z Copying blob sha256:51999a530a44cbf73cc02f315ac4a7b729e3db5b47209df7143c8bc93a553acc -2025-11-24T08:36:31.5188666Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:36:31.6605080Z Copying config sha256:dd1ce37f1c3174afb553751cca85db20de604d73d9f61fd17866435773676eb3 -2025-11-24T08:36:31.7562192Z Writing manifest to image destination -2025-11-24T08:36:31.7866795Z Fetching quay.io_calico_apiserver_v3.27.4… -2025-11-24T08:36:32.3554391Z Getting image source signatures -2025-11-24T08:36:32.3555739Z Copying blob sha256:df88a43f57aedf07097a7139767194db0c7c001052026bccbd5d30dde8888855 -2025-11-24T08:36:32.7544719Z Copying blob sha256:9772537a22bb35cb1d910b7ac7f18ed9139e84620ffd8eac6789f9240a58b397 -2025-11-24T08:36:34.1101285Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:36:34.1537597Z Copying config sha256:7516425fa942158abee1c9c2720d1d1f73fc2e8342ab74f01dd755b544849ac9 -2025-11-24T08:36:34.3914253Z Writing manifest to image destination -2025-11-24T08:36:34.4205732Z Fetching quay.io_jetstack_cert-manager-controller_v1.16.3… -2025-11-24T08:36:34.8459927Z Getting image source signatures -2025-11-24T08:36:34.8461421Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e -2025-11-24T08:36:34.9407571Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:36:34.9946437Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 -2025-11-24T08:36:35.0656896Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:36:35.1854161Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:36:35.3115887Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:36:35.3775117Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:36:35.4933609Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:36:35.5644965Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:36:35.6345065Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:36:35.6958558Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:36:35.7576556Z Copying blob sha256:463a4d7bd9093d82535cdbe61ae1eca85f2cd2207c7a4987a6fad24d1cf465f4 -2025-11-24T08:36:36.2787999Z Copying blob sha256:ba9e915126ef65cde90869ea19b3f39799ddc0f3f92e5f9630968de06a5d6d2e -2025-11-24T08:36:36.3547563Z Copying blob sha256:401d2d02970d98c06becea33967d192f282f72ea225d9053809b10e1c3032796 -2025-11-24T08:36:36.4206510Z Copying config sha256:27ebcc620bde4c43ac64f806f158db24396a214799e386c2fc74a5a310cbe497 -2025-11-24T08:36:36.4825889Z Writing manifest to image destination -2025-11-24T08:36:36.5123962Z Fetching quay.io_jetstack_cert-manager-cainjector_v1.16.3… -2025-11-24T08:36:36.8786983Z Getting image source signatures -2025-11-24T08:36:36.8788475Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e -2025-11-24T08:36:36.9478698Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:36:37.0566110Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 -2025-11-24T08:36:37.1157548Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:36:37.1674481Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:36:37.2071597Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:36:37.2477477Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:36:37.2967130Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:36:37.3636183Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:36:37.4227729Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:36:37.5815000Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:36:37.6348701Z Copying blob sha256:1aa0540810224901d8cb3638d2f916af752cb65b5a178b794cd7945b3037db75 -2025-11-24T08:36:38.0571080Z Copying blob sha256:a345aba268ae5fe90dbc43121cae1a772fc7c0e12f17fc02be0816254b1c86ac -2025-11-24T08:36:38.2067613Z Copying blob sha256:401d2d02970d98c06becea33967d192f282f72ea225d9053809b10e1c3032796 -2025-11-24T08:36:38.3034569Z Copying config sha256:ce7242a2b54beda8b4a2079d5d783a823af40d6d56d6a51decc8acc01c22849f -2025-11-24T08:36:38.3926453Z Writing manifest to image destination -2025-11-24T08:36:38.4237543Z Fetching quay.io_jetstack_cert-manager-webhook_v1.16.3… -2025-11-24T08:36:38.9904662Z Getting image source signatures -2025-11-24T08:36:38.9906159Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e -2025-11-24T08:36:39.0816830Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:36:39.1488998Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 -2025-11-24T08:36:39.2074604Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:36:39.2589762Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:36:39.3084537Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:36:39.3605543Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:36:39.4478601Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:36:39.4974311Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:36:39.5591943Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:36:39.6011230Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:36:39.6546010Z Copying blob sha256:489ca288d73032b835c7468a5b211cacb7d126fc47b92635530135fc7818dbb2 -2025-11-24T08:36:40.1625583Z Copying blob sha256:6bbf7e6890da395925b0f834abca6f762e37b8b54d9cedec672af6ae4096cf5d -2025-11-24T08:36:40.2906220Z Copying blob sha256:39d87579bed9b6c4e041e7b3b28c25bd2359e66e99edb87fe7c93d7f4cbf1c94 -2025-11-24T08:36:40.5388587Z Copying config sha256:d995a297967012c97f18ca941dc0ebeebc94722ba00c758cf87edcb540782f22 -2025-11-24T08:36:40.6265062Z Writing manifest to image destination -2025-11-24T08:36:40.6561535Z Fetching quay.io_jetstack_cert-manager-startupapicheck_v1.16.3… -2025-11-24T08:36:41.1647140Z Getting image source signatures -2025-11-24T08:36:41.1649448Z Copying blob sha256:38f4a9ccb8d62f4168780896f524ce01523288287378716797bde25dfa5ce41e -2025-11-24T08:36:41.2962526Z Copying blob sha256:2e4cf50eeb92ac3a7afe75e15d96a26dee99449f86b46c75b5d95f4418a5bca0 -2025-11-24T08:36:41.4316142Z Copying blob sha256:d44d440ac96b51f08f1fcd10f8cc4f7bfd58971b754e0b6cfea9b83e0f73c8f5 -2025-11-24T08:36:41.5400091Z Copying blob sha256:0f8b424aa0b96c1c388a5fd4d90735604459256336853082afb61733438872b5 -2025-11-24T08:36:41.6429424Z Copying blob sha256:d557676654e572af3e3173c90e7874644207fda32cd87e9d3d66b5d7b98a7b21 -2025-11-24T08:36:41.7286204Z Copying blob sha256:d82bc7a76a838c9a4a6025192429c2fed58f73742ef1fb9c8bb7b995fc3b7213 -2025-11-24T08:36:41.8511963Z Copying blob sha256:d858cbc252ade14879807ff8dbc3043a26bbdb92087da98cda831ee040b172b3 -2025-11-24T08:36:41.9581248Z Copying blob sha256:1069fc2daed1aceff7232f4b8ab21200dd3d8b04f61be9da86977a34a105dfdc -2025-11-24T08:36:42.0419689Z Copying blob sha256:b40161cd83fc5d470d6abe50e87aa288481b6b89137012881d74187cfbf9f502 -2025-11-24T08:36:42.1446001Z Copying blob sha256:3f4e2c5863480125882d92060440a5250766bce764fee10acdbac18c872e4dc7 -2025-11-24T08:36:42.2464581Z Copying blob sha256:80a8c047508ae5cd6a591060fc43422cb8e3aea1bd908d913e8f0146e2297fea -2025-11-24T08:36:42.3605820Z Copying blob sha256:ed9d74fe3f43cfd57b281fbc2d0b7259be1e30644500cc06f569029448c4db3c -2025-11-24T08:36:42.7853069Z Copying blob sha256:f337015610d918db9f28625e0522a65553721879b7e26c0b1aee63b17cce7bc8 -2025-11-24T08:36:42.8734978Z Copying blob sha256:0381129cf2590e0cb552b4b458960847d3e410791dfe9701cf52ca6bffca9cb4 -2025-11-24T08:36:43.0054225Z Copying config sha256:361dc433e4fbd87505da3c7a5b0179e9ff0fe070950809aeb08fdc90d59e0218 -2025-11-24T08:36:43.1188109Z Writing manifest to image destination -2025-11-24T08:36:43.1484737Z Fetching docker.io_library_nginx_1.25.4-alpine… -2025-11-24T08:36:43.4995140Z Getting image source signatures -2025-11-24T08:36:43.4996862Z Copying blob sha256:619be1103602d98e1963557998c954c892b3872986c27365e9f651f5bc27cab8 -2025-11-24T08:36:43.6310832Z Copying blob sha256:ed3e62e73b33c9cfa4b253060771e4a9eebb751ab438052f197e847b4553a9ac -2025-11-24T08:36:43.7207471Z Copying blob sha256:5126dce06df729f9a22956013e160f8b581d47095beec332d647a5c1119b2411 -2025-11-24T08:36:43.7776141Z Copying blob sha256:1d0dd2dc2265a581798226f7c79d134ac797f42db3f934dd4af1d38a6b89ce5c -2025-11-24T08:36:43.8313753Z Copying blob sha256:2b1ab92f023179da00446365a60daa60d72a1edeb697fb81811e086eba2e0170 -2025-11-24T08:36:43.8856747Z Copying blob sha256:6eba808ac059320c42179a6590b021f8695d3f12c2afa8745e219f635acf19d4 -2025-11-24T08:36:43.9385554Z Copying blob sha256:57038e85fbb88e96e34a84b125e568f540437561adb363fa791ff9e94e153dc1 -2025-11-24T08:36:43.9906655Z Copying blob sha256:eec94c9845c062c9f3495ce861d2bd9507bd7a13710de6b89a195a6b089ea8a7 -2025-11-24T08:36:44.2988851Z Copying config sha256:e289a478ace02cd72f0a71a5b2ec0594495e1fae85faa10aae3b0da530812608 -2025-11-24T08:36:44.3456420Z Writing manifest to image destination -2025-11-24T08:36:44.3747016Z Fetching bats_bats_1.11.1… -2025-11-24T08:36:44.7168753Z Getting image source signatures -2025-11-24T08:36:44.7170499Z Copying blob sha256:da9db072f522755cbeb85be2b3f84059b70571b229512f1571d9217b77e1087f -2025-11-24T08:36:44.8849521Z Copying blob sha256:a04a532fe6b3090c443d3b77bfd0eac9df544aae821dd8042656b3ae67c0f1e4 -2025-11-24T08:36:45.1293033Z Copying blob sha256:0d4b3a33902803938e5d80451e77d2dad62576c6bfe2b6b0c00ef50ad56878ac -2025-11-24T08:36:45.3929881Z Copying blob sha256:6962e7ed832b66931e8a5ab887a7087aba81caa6c3257188688d21fbfa8e4164 -2025-11-24T08:36:45.6079255Z Copying blob sha256:082bdccbe5c5e3768134fc4d8c51ac7e652ce609baf0ac7205b9870f8f33250b -2025-11-24T08:36:45.6746195Z Copying blob sha256:c66b6cb36790804a34f950a7c384389bb4ed1f8bb3579a3198902f792aaef65e -2025-11-24T08:36:45.8934232Z Copying blob sha256:b82de1fce2cadcceb54b342f11dbc6fa3ec96b021617eaa98f86e6a024bc56ba -2025-11-24T08:36:45.9457359Z Copying blob sha256:d579f034ff8ae645a6cd6cdff2b20c287dd6474c7d09973760c60067f479b79a -2025-11-24T08:36:46.1839524Z Copying blob sha256:901e282fb71426b8365e1954996707f2dd6ace7d049f4bf6cc7a7c4b972232bd -2025-11-24T08:36:46.4063569Z Copying blob sha256:1e378bb6fc4544a410eeed626da34cf24140c72f003b4c2846b339ce779c6072 -2025-11-24T08:36:46.6751447Z Copying blob sha256:9f9ca3eb988f2feb8b60f6a427b9086c78c1b06370eea70c0347dd6c62ec9e01 -2025-11-24T08:36:46.7299148Z Copying blob sha256:94fe2f36add512c2c82a3bc6adce857f26ee54d0b22e099f2f7772bcabe3b158 -2025-11-24T08:36:46.8878957Z Copying blob sha256:a5f6c05532f4fb414c54a4bd4da7a6951b976a99c77b11fe4e83b705c8ab6949 -2025-11-24T08:36:46.9636763Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:36:47.0130097Z Copying config sha256:2e13dc02bd621b82753aae8b00c99c938be7b6538afa5957b3e9e93646fe0524 -2025-11-24T08:36:47.1947941Z Writing manifest to image destination -2025-11-24T08:36:47.2244750Z Fetching cr.step.sm_smallstep_step-ca_0.25.3-rc7… -2025-11-24T08:36:48.0282014Z Getting image source signatures -2025-11-24T08:36:48.0283412Z Copying blob sha256:661ff4d9561e3fd050929ee5097067c34bafc523ee60f5294a37fd08056a73ca -2025-11-24T08:36:48.2278136Z Copying blob sha256:07a3a0958d5d81b355b10f8c25552c8952c39cd316893543e623fde24bbeea43 -2025-11-24T08:36:48.4163412Z Copying blob sha256:99a3a7f5703a9e1557fb46b4f1ae4225a08adc6445b76226a35edb10ed9a1cbb -2025-11-24T08:36:48.7483198Z Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 -2025-11-24T08:36:48.8235226Z Copying blob sha256:859dd081a6c374b7e2d4e3bd0afe062900e14309518289cbc24778884205eb15 -2025-11-24T08:36:49.1706017Z Copying blob sha256:db045f559b870377e8a93251efcac16a3eef0f7dbf839f65ed1d8e2e02dd6d04 -2025-11-24T08:36:49.4010294Z Copying blob sha256:948a5b50a06b2b08ac0da063b2599f9f1d213d8ec88d6f775efada004de858e4 -2025-11-24T08:36:49.4766925Z Copying config sha256:b2c26b6e463243926e3000e7b762e9570f411047d18c2e16b4368adb89246609 -2025-11-24T08:36:49.5455251Z Writing manifest to image destination -2025-11-24T08:36:49.5746763Z Fetching registry.k8s.io_ingress-nginx_kube-webhook-certgen_v20231011-8b53cabe0… -2025-11-24T08:36:49.8366043Z Getting image source signatures -2025-11-24T08:36:49.8367483Z Copying blob sha256:07a64a71e01156f8f99039bc246149925c6d1480d3957de78510bbec6ec68f7a -2025-11-24T08:36:49.9763530Z Copying blob sha256:fe5ca62666f04366c8e7f605aa82997d71320183e99962fa76b3209fdfbb8b58 -2025-11-24T08:36:50.0285962Z Copying blob sha256:b02a7525f878e61fc1ef8a7405a2cc17f866e8de222c1c98fd6681aff6e509db -2025-11-24T08:36:50.1125254Z Copying blob sha256:fcb6f6d2c9986d9cd6a2ea3cc2936e5fc613e09f1af9042329011e43057f3265 -2025-11-24T08:36:50.1755622Z Copying blob sha256:e8c73c638ae9ec5ad70c49df7e484040d889cca6b4a9af056579c3d058ea93f0 -2025-11-24T08:36:50.2334617Z Copying blob sha256:1e3d9b7d145208fa8fa3ee1c9612d0adaac7255f1bbc9ddea7e461e0b317805c -2025-11-24T08:36:50.2817889Z Copying blob sha256:4aa0ea1413d37a58615488592a0b827ea4b2e48fa5a77cf707d0e35f025e613f -2025-11-24T08:36:50.3393839Z Copying blob sha256:7c881f9ab25e0d86562a123b5fb56aebf8aa0ddd7d48ef602faf8d1e7cf43d8c -2025-11-24T08:36:50.3939242Z Copying blob sha256:5627a970d25e752d971a501ec7e35d0d6fdcd4a3ce9e958715a686853024794a -2025-11-24T08:36:50.4558339Z Copying blob sha256:2c4dd5b4623218986c85279026f1a22956f34a231537163efd271a60d7bb09cf -2025-11-24T08:36:51.0018119Z Copying config sha256:1ebff0f9671bc015dc340b12c5bf6f3dbda7d0a8b5332bd095f21bd52e1b30fb -2025-11-24T08:36:51.0508246Z Writing manifest to image destination -2025-11-24T08:36:51.0793801Z Fetching ghcr.io_kube-vip_kube-vip_v0.8.0… -2025-11-24T08:36:51.3212231Z Getting image source signatures -2025-11-24T08:36:51.3228368Z Copying blob sha256:b51852ab3b96e132408f25499cfcf1976f354c5c929038d04a1655d155d091a7 -2025-11-24T08:36:51.3972238Z Copying blob sha256:a43b7e93fb2ba2368ba2860665763645bed785aed968d866e6d9a2fe398832b1 -2025-11-24T08:36:51.7867583Z Copying config sha256:38af8ddebf499adc4631fe68b0ee224ffd6d7dd6b4aeeb393aff3d33cb94eb12 -2025-11-24T08:36:51.8506787Z Writing manifest to image destination -2025-11-24T08:36:55.9437707Z Processing wire binaries /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output ... -2025-11-24T08:36:57.8770229Z this path will be fetched (391.52 MiB download, 657.55 MiB unpacked): -2025-11-24T08:36:57.8771389Z /nix/store/k624zhj0qk58mjliwbz9x1x5lzzw63sg-wire-binaries -2025-11-24T08:36:57.8778867Z copying path '/nix/store/k624zhj0qk58mjliwbz9x1x5lzzw63sg-wire-binaries' from 'https://wire-server.cachix.org'... -2025-11-24T08:37:05.7064118Z Writing wire binaries into /home/runner/work/wire-server-deploy/wire-server-deploy/offline/default-build/output/versions/wire-binaries.json -2025-11-24T08:54:10.9180952Z tar: Removing leading `../../../' from member names -2025-11-24T08:54:10.9183548Z tar: Removing leading `../../../' from hard link targets -2025-11-24T08:54:11.4425581Z ##[group]Run aws s3 cp offline/default-build/output/assets.tgz s3://public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz -2025-11-24T08:54:11.4427113Z aws s3 cp offline/default-build/output/assets.tgz s3://public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz -2025-11-24T08:54:11.4428817Z echo "Uploaded to: https://s3-$AWS_REGION.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz" -2025-11-24T08:54:11.4539773Z shell: /usr/bin/bash -e {0} -2025-11-24T08:54:11.4540245Z env: -2025-11-24T08:54:11.4540648Z TMPDIR: /home/runner/work/_temp -2025-11-24T08:54:11.4541640Z CACHIX_SIGNING_KEY: *** -2025-11-24T08:54:11.4542416Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf -2025-11-24T08:54:11.4543538Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ -2025-11-24T08:54:11.4544163Z AWS_ACCESS_KEY_ID: *** -2025-11-24T08:54:11.4544694Z AWS_SECRET_ACCESS_KEY: *** -2025-11-24T08:54:11.4545130Z AWS_REGION: eu-west-1 -2025-11-24T08:54:11.4545549Z ##[endgroup] -2025-11-24T08:54:13.2809765Z Completed 256.0 KiB/9.9 GiB (350.7 KiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.3749339Z Completed 512.0 KiB/9.9 GiB (622.5 KiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.4643017Z Completed 768.0 KiB/9.9 GiB (838.0 KiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.4665550Z Completed 1.0 MiB/9.9 GiB (1018.0 KiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.4672223Z Completed 1.2 MiB/9.9 GiB (1.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.4677330Z Completed 1.5 MiB/9.9 GiB (1.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.4822871Z Completed 1.8 MiB/9.9 GiB (1.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5320948Z Completed 2.0 MiB/9.9 GiB (2.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5356674Z Completed 2.2 MiB/9.9 GiB (2.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5359050Z Completed 2.5 MiB/9.9 GiB (2.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5581627Z Completed 2.8 MiB/9.9 GiB (2.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5591630Z Completed 3.0 MiB/9.9 GiB (2.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5598628Z Completed 3.2 MiB/9.9 GiB (3.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5604257Z Completed 3.5 MiB/9.9 GiB (3.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5609453Z Completed 3.8 MiB/9.9 GiB (3.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5614644Z Completed 4.0 MiB/9.9 GiB (3.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5652332Z Completed 4.2 MiB/9.9 GiB (3.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.5730680Z Completed 4.5 MiB/9.9 GiB (4.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6046685Z Completed 4.8 MiB/9.9 GiB (4.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6051504Z Completed 5.0 MiB/9.9 GiB (4.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6254443Z Completed 5.2 MiB/9.9 GiB (4.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6267205Z Completed 5.5 MiB/9.9 GiB (4.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6431519Z Completed 5.8 MiB/9.9 GiB (4.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6492904Z Completed 6.0 MiB/9.9 GiB (5.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6505945Z Completed 6.2 MiB/9.9 GiB (5.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6519348Z Completed 6.5 MiB/9.9 GiB (5.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6548807Z Completed 6.8 MiB/9.9 GiB (5.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6619403Z Completed 7.0 MiB/9.9 GiB (5.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6622189Z Completed 7.2 MiB/9.9 GiB (6.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6635878Z Completed 7.5 MiB/9.9 GiB (6.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6962830Z Completed 7.8 MiB/9.9 GiB (6.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6987012Z Completed 8.0 MiB/9.9 GiB (6.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.6994450Z Completed 8.2 MiB/9.9 GiB (6.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7139678Z Completed 8.5 MiB/9.9 GiB (6.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7155973Z Completed 8.8 MiB/9.9 GiB (7.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7163640Z Completed 9.0 MiB/9.9 GiB (7.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7170214Z Completed 9.2 MiB/9.9 GiB (7.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7185582Z Completed 9.5 MiB/9.9 GiB (7.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7411419Z Completed 9.8 MiB/9.9 GiB (7.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7423932Z Completed 10.0 MiB/9.9 GiB (7.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7432844Z Completed 10.2 MiB/9.9 GiB (8.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7441704Z Completed 10.5 MiB/9.9 GiB (8.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7444832Z Completed 10.8 MiB/9.9 GiB (8.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7450677Z Completed 11.0 MiB/9.9 GiB (8.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7456335Z Completed 11.2 MiB/9.9 GiB (8.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7461192Z Completed 11.5 MiB/9.9 GiB (8.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7548702Z Completed 11.8 MiB/9.9 GiB (9.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7554911Z Completed 12.0 MiB/9.9 GiB (9.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7569586Z Completed 12.2 MiB/9.9 GiB (9.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7576444Z Completed 12.5 MiB/9.9 GiB (9.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7885999Z Completed 12.8 MiB/9.9 GiB (9.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7901649Z Completed 13.0 MiB/9.9 GiB (9.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.7918625Z Completed 13.2 MiB/9.9 GiB (9.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8055975Z Completed 13.5 MiB/9.9 GiB (10.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8068142Z Completed 13.8 MiB/9.9 GiB (10.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8069574Z Completed 14.0 MiB/9.9 GiB (10.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8101321Z Completed 14.2 MiB/9.9 GiB (10.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8109930Z Completed 14.5 MiB/9.9 GiB (10.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8132423Z Completed 14.8 MiB/9.9 GiB (10.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8330056Z Completed 15.0 MiB/9.9 GiB (11.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8336096Z Completed 15.2 MiB/9.9 GiB (11.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8342099Z Completed 15.5 MiB/9.9 GiB (11.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8378524Z Completed 15.8 MiB/9.9 GiB (11.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8380224Z Completed 16.0 MiB/9.9 GiB (11.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8389929Z Completed 16.2 MiB/9.9 GiB (11.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8409189Z Completed 16.5 MiB/9.9 GiB (12.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8410472Z Completed 16.8 MiB/9.9 GiB (12.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8417196Z Completed 17.0 MiB/9.9 GiB (12.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8423160Z Completed 17.2 MiB/9.9 GiB (12.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8428458Z Completed 17.5 MiB/9.9 GiB (12.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8433977Z Completed 17.8 MiB/9.9 GiB (12.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8439393Z Completed 18.0 MiB/9.9 GiB (13.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8445695Z Completed 18.2 MiB/9.9 GiB (13.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8451166Z Completed 18.5 MiB/9.9 GiB (13.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8456943Z Completed 18.8 MiB/9.9 GiB (13.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8503223Z Completed 19.0 MiB/9.9 GiB (13.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8513576Z Completed 19.2 MiB/9.9 GiB (13.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8519556Z Completed 19.5 MiB/9.9 GiB (14.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8532230Z Completed 19.8 MiB/9.9 GiB (14.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8535164Z Completed 20.0 MiB/9.9 GiB (14.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8540690Z Completed 20.2 MiB/9.9 GiB (14.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8773895Z Completed 20.5 MiB/9.9 GiB (14.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8781420Z Completed 20.8 MiB/9.9 GiB (14.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8788821Z Completed 21.0 MiB/9.9 GiB (14.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8798842Z Completed 21.2 MiB/9.9 GiB (15.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8806465Z Completed 21.5 MiB/9.9 GiB (15.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8841649Z Completed 21.8 MiB/9.9 GiB (15.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8858489Z Completed 22.0 MiB/9.9 GiB (15.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8860465Z Completed 22.2 MiB/9.9 GiB (15.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8867432Z Completed 22.5 MiB/9.9 GiB (15.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8875721Z Completed 22.8 MiB/9.9 GiB (15.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8881995Z Completed 23.0 MiB/9.9 GiB (16.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8940323Z Completed 23.2 MiB/9.9 GiB (16.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8948669Z Completed 23.5 MiB/9.9 GiB (16.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8956631Z Completed 23.8 MiB/9.9 GiB (16.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8965455Z Completed 24.0 MiB/9.9 GiB (16.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8975150Z Completed 24.2 MiB/9.9 GiB (16.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.8981788Z Completed 24.5 MiB/9.9 GiB (17.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9021319Z Completed 24.8 MiB/9.9 GiB (17.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9039316Z Completed 25.0 MiB/9.9 GiB (17.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9046222Z Completed 25.2 MiB/9.9 GiB (17.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9118688Z Completed 25.5 MiB/9.9 GiB (17.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9125819Z Completed 25.8 MiB/9.9 GiB (17.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9131829Z Completed 26.0 MiB/9.9 GiB (17.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9246825Z Completed 26.2 MiB/9.9 GiB (18.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9253405Z Completed 26.5 MiB/9.9 GiB (18.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9260713Z Completed 26.8 MiB/9.9 GiB (18.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9302487Z Completed 27.0 MiB/9.9 GiB (18.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9399825Z Completed 27.2 MiB/9.9 GiB (18.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9409915Z Completed 27.5 MiB/9.9 GiB (18.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9418184Z Completed 27.8 MiB/9.9 GiB (18.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9423127Z Completed 28.0 MiB/9.9 GiB (18.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9667178Z Completed 28.2 MiB/9.9 GiB (19.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9678313Z Completed 28.5 MiB/9.9 GiB (18.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9690919Z Completed 28.8 MiB/9.9 GiB (19.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9714754Z Completed 29.0 MiB/9.9 GiB (19.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9722369Z Completed 29.2 MiB/9.9 GiB (19.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9737858Z Completed 29.5 MiB/9.9 GiB (19.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9744921Z Completed 29.8 MiB/9.9 GiB (19.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9750674Z Completed 30.0 MiB/9.9 GiB (19.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9760309Z Completed 30.2 MiB/9.9 GiB (19.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9839819Z Completed 30.5 MiB/9.9 GiB (20.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9845311Z Completed 30.8 MiB/9.9 GiB (20.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9854657Z Completed 31.0 MiB/9.9 GiB (20.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9859626Z Completed 31.2 MiB/9.9 GiB (20.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9865452Z Completed 31.5 MiB/9.9 GiB (20.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9870727Z Completed 31.8 MiB/9.9 GiB (20.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9877362Z Completed 32.0 MiB/9.9 GiB (20.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9885246Z Completed 32.2 MiB/9.9 GiB (21.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9893144Z Completed 32.5 MiB/9.9 GiB (21.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9898457Z Completed 32.8 MiB/9.9 GiB (21.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9934352Z Completed 33.0 MiB/9.9 GiB (21.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9941879Z Completed 33.2 MiB/9.9 GiB (21.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9947043Z Completed 33.5 MiB/9.9 GiB (21.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9956251Z Completed 33.8 MiB/9.9 GiB (22.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9963816Z Completed 34.0 MiB/9.9 GiB (22.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:13.9968787Z Completed 34.2 MiB/9.9 GiB (22.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0019274Z Completed 34.5 MiB/9.9 GiB (22.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0026413Z Completed 34.8 MiB/9.9 GiB (22.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0032449Z Completed 35.0 MiB/9.9 GiB (22.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0138687Z Completed 35.2 MiB/9.9 GiB (22.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0302518Z Completed 35.5 MiB/9.9 GiB (22.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0309827Z Completed 35.8 MiB/9.9 GiB (22.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0316928Z Completed 36.0 MiB/9.9 GiB (22.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0325214Z Completed 36.2 MiB/9.9 GiB (23.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0333395Z Completed 36.5 MiB/9.9 GiB (23.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0340198Z Completed 36.8 MiB/9.9 GiB (23.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0571856Z Completed 37.0 MiB/9.9 GiB (23.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0580388Z Completed 37.2 MiB/9.9 GiB (23.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0586834Z Completed 37.5 MiB/9.9 GiB (23.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0607190Z Completed 37.8 MiB/9.9 GiB (23.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0611287Z Completed 38.0 MiB/9.9 GiB (23.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0618011Z Completed 38.2 MiB/9.9 GiB (23.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0624238Z Completed 38.5 MiB/9.9 GiB (24.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0637818Z Completed 38.8 MiB/9.9 GiB (24.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0652146Z Completed 39.0 MiB/9.9 GiB (24.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0658685Z Completed 39.2 MiB/9.9 GiB (24.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0668053Z Completed 39.5 MiB/9.9 GiB (24.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0680884Z Completed 39.8 MiB/9.9 GiB (24.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0685158Z Completed 40.0 MiB/9.9 GiB (24.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0699139Z Completed 40.2 MiB/9.9 GiB (25.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0701986Z Completed 40.5 MiB/9.9 GiB (25.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0727421Z Completed 40.8 MiB/9.9 GiB (25.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0728553Z Completed 41.0 MiB/9.9 GiB (25.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0739887Z Completed 41.2 MiB/9.9 GiB (25.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0746290Z Completed 41.5 MiB/9.9 GiB (25.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0753147Z Completed 41.8 MiB/9.9 GiB (25.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0759814Z Completed 42.0 MiB/9.9 GiB (26.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0766563Z Completed 42.2 MiB/9.9 GiB (26.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0772086Z Completed 42.5 MiB/9.9 GiB (26.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0778115Z Completed 42.8 MiB/9.9 GiB (26.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0789026Z Completed 43.0 MiB/9.9 GiB (26.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0795869Z Completed 43.2 MiB/9.9 GiB (26.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0802809Z Completed 43.5 MiB/9.9 GiB (26.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0808903Z Completed 43.8 MiB/9.9 GiB (27.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0813845Z Completed 44.0 MiB/9.9 GiB (27.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0841627Z Completed 44.2 MiB/9.9 GiB (27.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0850201Z Completed 44.5 MiB/9.9 GiB (27.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0862783Z Completed 44.8 MiB/9.9 GiB (27.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0928891Z Completed 45.0 MiB/9.9 GiB (27.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0933402Z Completed 45.2 MiB/9.9 GiB (27.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0943236Z Completed 45.5 MiB/9.9 GiB (27.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.0952271Z Completed 45.8 MiB/9.9 GiB (28.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1035741Z Completed 46.0 MiB/9.9 GiB (28.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1079900Z Completed 46.2 MiB/9.9 GiB (28.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1209557Z Completed 46.5 MiB/9.9 GiB (28.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1216548Z Completed 46.8 MiB/9.9 GiB (28.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1224895Z Completed 47.0 MiB/9.9 GiB (28.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1229701Z Completed 47.2 MiB/9.9 GiB (28.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1237123Z Completed 47.5 MiB/9.9 GiB (28.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1244822Z Completed 47.8 MiB/9.9 GiB (28.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1250785Z Completed 48.0 MiB/9.9 GiB (28.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1256356Z Completed 48.2 MiB/9.9 GiB (28.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1275364Z Completed 48.5 MiB/9.9 GiB (29.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1281726Z Completed 48.8 MiB/9.9 GiB (29.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1287651Z Completed 49.0 MiB/9.9 GiB (29.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1293216Z Completed 49.2 MiB/9.9 GiB (29.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1466755Z Completed 49.5 MiB/9.9 GiB (29.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1474366Z Completed 49.8 MiB/9.9 GiB (29.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1481114Z Completed 50.0 MiB/9.9 GiB (29.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1488517Z Completed 50.2 MiB/9.9 GiB (29.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1495760Z Completed 50.5 MiB/9.9 GiB (29.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1502001Z Completed 50.8 MiB/9.9 GiB (30.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1509214Z Completed 51.0 MiB/9.9 GiB (30.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1517082Z Completed 51.2 MiB/9.9 GiB (30.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1558251Z Completed 51.5 MiB/9.9 GiB (30.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1565743Z Completed 51.8 MiB/9.9 GiB (30.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1569996Z Completed 52.0 MiB/9.9 GiB (30.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1585714Z Completed 52.2 MiB/9.9 GiB (30.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1590265Z Completed 52.5 MiB/9.9 GiB (30.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1602324Z Completed 52.8 MiB/9.9 GiB (31.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1609959Z Completed 53.0 MiB/9.9 GiB (31.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1619303Z Completed 53.2 MiB/9.9 GiB (31.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1635506Z Completed 53.5 MiB/9.9 GiB (31.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1653340Z Completed 53.8 MiB/9.9 GiB (31.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1657364Z Completed 54.0 MiB/9.9 GiB (31.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1686200Z Completed 54.2 MiB/9.9 GiB (31.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1690133Z Completed 54.5 MiB/9.9 GiB (31.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1696204Z Completed 54.8 MiB/9.9 GiB (32.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1699084Z Completed 55.0 MiB/9.9 GiB (32.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1750737Z Completed 55.2 MiB/9.9 GiB (32.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1754880Z Completed 55.5 MiB/9.9 GiB (32.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1784686Z Completed 55.8 MiB/9.9 GiB (32.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1810271Z Completed 56.0 MiB/9.9 GiB (32.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1843954Z Completed 56.2 MiB/9.9 GiB (32.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1854700Z Completed 56.5 MiB/9.9 GiB (32.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1860902Z Completed 56.8 MiB/9.9 GiB (32.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1870432Z Completed 57.0 MiB/9.9 GiB (33.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1891198Z Completed 57.2 MiB/9.9 GiB (33.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1905193Z Completed 57.5 MiB/9.9 GiB (33.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1926085Z Completed 57.8 MiB/9.9 GiB (33.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1939473Z Completed 58.0 MiB/9.9 GiB (33.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1957990Z Completed 58.2 MiB/9.9 GiB (33.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.1963521Z Completed 58.5 MiB/9.9 GiB (33.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2001447Z Completed 58.8 MiB/9.9 GiB (33.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2015611Z Completed 59.0 MiB/9.9 GiB (33.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2016775Z Completed 59.2 MiB/9.9 GiB (34.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2021794Z Completed 59.5 MiB/9.9 GiB (34.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2042391Z Completed 59.8 MiB/9.9 GiB (34.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2052427Z Completed 60.0 MiB/9.9 GiB (34.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2057678Z Completed 60.2 MiB/9.9 GiB (34.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2068304Z Completed 60.5 MiB/9.9 GiB (34.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2082913Z Completed 60.8 MiB/9.9 GiB (34.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2110105Z Completed 61.0 MiB/9.9 GiB (34.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2115516Z Completed 61.2 MiB/9.9 GiB (34.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2118303Z Completed 61.5 MiB/9.9 GiB (35.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2130592Z Completed 61.8 MiB/9.9 GiB (35.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2162612Z Completed 62.0 MiB/9.9 GiB (35.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2166106Z Completed 62.2 MiB/9.9 GiB (35.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2167334Z Completed 62.5 MiB/9.9 GiB (35.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2179665Z Completed 62.8 MiB/9.9 GiB (35.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2184905Z Completed 63.0 MiB/9.9 GiB (35.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2191203Z Completed 63.2 MiB/9.9 GiB (35.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2197684Z Completed 63.5 MiB/9.9 GiB (36.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2203458Z Completed 63.8 MiB/9.9 GiB (36.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2208688Z Completed 64.0 MiB/9.9 GiB (36.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2221765Z Completed 64.2 MiB/9.9 GiB (36.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2223736Z Completed 64.5 MiB/9.9 GiB (36.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2235772Z Completed 64.8 MiB/9.9 GiB (36.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2245162Z Completed 65.0 MiB/9.9 GiB (36.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2488232Z Completed 65.2 MiB/9.9 GiB (36.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2494251Z Completed 65.5 MiB/9.9 GiB (36.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2501885Z Completed 65.8 MiB/9.9 GiB (36.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2517451Z Completed 66.0 MiB/9.9 GiB (36.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2529408Z Completed 66.2 MiB/9.9 GiB (36.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2540334Z Completed 66.5 MiB/9.9 GiB (37.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2616067Z Completed 66.8 MiB/9.9 GiB (37.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2624701Z Completed 67.0 MiB/9.9 GiB (37.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2632207Z Completed 67.2 MiB/9.9 GiB (37.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2639164Z Completed 67.5 MiB/9.9 GiB (37.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2645769Z Completed 67.8 MiB/9.9 GiB (37.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2652843Z Completed 68.0 MiB/9.9 GiB (37.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2674080Z Completed 68.2 MiB/9.9 GiB (37.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2691850Z Completed 68.5 MiB/9.9 GiB (37.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2702063Z Completed 68.8 MiB/9.9 GiB (38.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2711656Z Completed 69.0 MiB/9.9 GiB (38.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2731547Z Completed 69.2 MiB/9.9 GiB (38.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2744720Z Completed 69.5 MiB/9.9 GiB (38.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2746151Z Completed 69.8 MiB/9.9 GiB (38.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2757037Z Completed 70.0 MiB/9.9 GiB (38.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2794530Z Completed 70.2 MiB/9.9 GiB (38.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2814352Z Completed 70.5 MiB/9.9 GiB (38.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2816424Z Completed 70.8 MiB/9.9 GiB (38.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2861075Z Completed 71.0 MiB/9.9 GiB (38.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2939655Z Completed 71.2 MiB/9.9 GiB (39.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2954306Z Completed 71.5 MiB/9.9 GiB (39.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2959049Z Completed 71.8 MiB/9.9 GiB (39.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2965797Z Completed 72.0 MiB/9.9 GiB (39.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.2972821Z Completed 72.2 MiB/9.9 GiB (39.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3010146Z Completed 72.5 MiB/9.9 GiB (39.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3031674Z Completed 72.8 MiB/9.9 GiB (39.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3096513Z Completed 73.0 MiB/9.9 GiB (39.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3105712Z Completed 73.2 MiB/9.9 GiB (39.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3125930Z Completed 73.5 MiB/9.9 GiB (39.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3134656Z Completed 73.8 MiB/9.9 GiB (39.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3140280Z Completed 74.0 MiB/9.9 GiB (39.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3147451Z Completed 74.2 MiB/9.9 GiB (40.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3155502Z Completed 74.5 MiB/9.9 GiB (40.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3164284Z Completed 74.8 MiB/9.9 GiB (40.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3170557Z Completed 75.0 MiB/9.9 GiB (40.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3521271Z Completed 75.2 MiB/9.9 GiB (40.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3529635Z Completed 75.5 MiB/9.9 GiB (39.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3539440Z Completed 75.8 MiB/9.9 GiB (40.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3547382Z Completed 76.0 MiB/9.9 GiB (40.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3554719Z Completed 76.2 MiB/9.9 GiB (40.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3594757Z Completed 76.5 MiB/9.9 GiB (40.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3602130Z Completed 76.8 MiB/9.9 GiB (40.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3610541Z Completed 77.0 MiB/9.9 GiB (40.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3616717Z Completed 77.2 MiB/9.9 GiB (40.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3626531Z Completed 77.5 MiB/9.9 GiB (40.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3632494Z Completed 77.8 MiB/9.9 GiB (40.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3643413Z Completed 78.0 MiB/9.9 GiB (40.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3666271Z Completed 78.2 MiB/9.9 GiB (41.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3672409Z Completed 78.5 MiB/9.9 GiB (41.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3738202Z Completed 78.8 MiB/9.9 GiB (41.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3944233Z Completed 79.0 MiB/9.9 GiB (41.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.3996975Z Completed 79.2 MiB/9.9 GiB (40.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4025532Z Completed 79.5 MiB/9.9 GiB (41.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4047483Z Completed 79.8 MiB/9.9 GiB (41.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4068839Z Completed 80.0 MiB/9.9 GiB (41.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4077323Z Completed 80.2 MiB/9.9 GiB (41.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4085513Z Completed 80.5 MiB/9.9 GiB (41.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4094788Z Completed 80.8 MiB/9.9 GiB (41.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4103094Z Completed 81.0 MiB/9.9 GiB (41.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4130348Z Completed 81.2 MiB/9.9 GiB (41.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4147966Z Completed 81.5 MiB/9.9 GiB (41.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4155576Z Completed 81.8 MiB/9.9 GiB (41.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4161837Z Completed 82.0 MiB/9.9 GiB (41.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4167575Z Completed 82.2 MiB/9.9 GiB (42.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4173590Z Completed 82.5 MiB/9.9 GiB (42.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4179546Z Completed 82.8 MiB/9.9 GiB (42.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4185455Z Completed 83.0 MiB/9.9 GiB (42.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4191331Z Completed 83.2 MiB/9.9 GiB (42.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4198190Z Completed 83.5 MiB/9.9 GiB (42.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4365953Z Completed 83.8 MiB/9.9 GiB (42.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4371190Z Completed 84.0 MiB/9.9 GiB (42.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4378331Z Completed 84.2 MiB/9.9 GiB (42.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4384599Z Completed 84.5 MiB/9.9 GiB (42.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4390626Z Completed 84.8 MiB/9.9 GiB (42.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4396457Z Completed 85.0 MiB/9.9 GiB (42.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4402844Z Completed 85.2 MiB/9.9 GiB (43.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4409216Z Completed 85.5 MiB/9.9 GiB (43.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4415834Z Completed 85.8 MiB/9.9 GiB (43.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4421858Z Completed 86.0 MiB/9.9 GiB (43.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4515104Z Completed 86.2 MiB/9.9 GiB (43.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4523201Z Completed 86.5 MiB/9.9 GiB (43.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4532838Z Completed 86.8 MiB/9.9 GiB (43.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4538784Z Completed 87.0 MiB/9.9 GiB (43.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4544144Z Completed 87.2 MiB/9.9 GiB (43.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4549753Z Completed 87.5 MiB/9.9 GiB (43.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4555680Z Completed 87.8 MiB/9.9 GiB (43.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4754026Z Completed 88.0 MiB/9.9 GiB (44.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4760626Z Completed 88.2 MiB/9.9 GiB (43.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4768300Z Completed 88.5 MiB/9.9 GiB (43.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4775587Z Completed 88.8 MiB/9.9 GiB (44.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4782959Z Completed 89.0 MiB/9.9 GiB (44.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4789586Z Completed 89.2 MiB/9.9 GiB (44.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4797348Z Completed 89.5 MiB/9.9 GiB (44.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4804012Z Completed 89.8 MiB/9.9 GiB (44.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4810280Z Completed 90.0 MiB/9.9 GiB (44.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4826510Z Completed 90.2 MiB/9.9 GiB (44.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4836381Z Completed 90.5 MiB/9.9 GiB (44.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4877683Z Completed 90.8 MiB/9.9 GiB (44.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4902555Z Completed 91.0 MiB/9.9 GiB (44.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4913962Z Completed 91.2 MiB/9.9 GiB (44.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4922168Z Completed 91.5 MiB/9.9 GiB (45.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4930241Z Completed 91.8 MiB/9.9 GiB (45.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4939948Z Completed 92.0 MiB/9.9 GiB (45.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4943962Z Completed 92.2 MiB/9.9 GiB (45.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4950700Z Completed 92.5 MiB/9.9 GiB (45.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4958856Z Completed 92.8 MiB/9.9 GiB (45.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4966002Z Completed 93.0 MiB/9.9 GiB (45.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4972605Z Completed 93.2 MiB/9.9 GiB (45.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.4979984Z Completed 93.5 MiB/9.9 GiB (45.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5032341Z Completed 93.8 MiB/9.9 GiB (46.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5045552Z Completed 94.0 MiB/9.9 GiB (46.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5055427Z Completed 94.2 MiB/9.9 GiB (46.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5063114Z Completed 94.5 MiB/9.9 GiB (46.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5070185Z Completed 94.8 MiB/9.9 GiB (46.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5078078Z Completed 95.0 MiB/9.9 GiB (46.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5084487Z Completed 95.2 MiB/9.9 GiB (46.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5092962Z Completed 95.5 MiB/9.9 GiB (46.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5099363Z Completed 95.8 MiB/9.9 GiB (46.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5105722Z Completed 96.0 MiB/9.9 GiB (46.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5197060Z Completed 96.2 MiB/9.9 GiB (46.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5202194Z Completed 96.5 MiB/9.9 GiB (46.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5207897Z Completed 96.8 MiB/9.9 GiB (46.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5213834Z Completed 97.0 MiB/9.9 GiB (47.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5233592Z Completed 97.2 MiB/9.9 GiB (47.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5244866Z Completed 97.5 MiB/9.9 GiB (47.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5253224Z Completed 97.8 MiB/9.9 GiB (47.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5269137Z Completed 98.0 MiB/9.9 GiB (47.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5271920Z Completed 98.2 MiB/9.9 GiB (47.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5307891Z Completed 98.5 MiB/9.9 GiB (47.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5317332Z Completed 98.8 MiB/9.9 GiB (47.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5327617Z Completed 99.0 MiB/9.9 GiB (47.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5342341Z Completed 99.2 MiB/9.9 GiB (47.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5351858Z Completed 99.5 MiB/9.9 GiB (47.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5356964Z Completed 99.8 MiB/9.9 GiB (48.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5367412Z Completed 100.0 MiB/9.9 GiB (48.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5372453Z Completed 100.2 MiB/9.9 GiB (48.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5379736Z Completed 100.5 MiB/9.9 GiB (48.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5395487Z Completed 100.8 MiB/9.9 GiB (48.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5400402Z Completed 101.0 MiB/9.9 GiB (48.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5423074Z Completed 101.2 MiB/9.9 GiB (48.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5440168Z Completed 101.5 MiB/9.9 GiB (48.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5465133Z Completed 101.8 MiB/9.9 GiB (48.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5471770Z Completed 102.0 MiB/9.9 GiB (48.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5475634Z Completed 102.2 MiB/9.9 GiB (48.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5503456Z Completed 102.5 MiB/9.9 GiB (49.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5512001Z Completed 102.8 MiB/9.9 GiB (49.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5518025Z Completed 103.0 MiB/9.9 GiB (49.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5542066Z Completed 103.2 MiB/9.9 GiB (49.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5546070Z Completed 103.5 MiB/9.9 GiB (49.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5560233Z Completed 103.8 MiB/9.9 GiB (49.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5563916Z Completed 104.0 MiB/9.9 GiB (49.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5675300Z Completed 104.2 MiB/9.9 GiB (49.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5684734Z Completed 104.5 MiB/9.9 GiB (49.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5697090Z Completed 104.8 MiB/9.9 GiB (49.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5705854Z Completed 105.0 MiB/9.9 GiB (49.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5723937Z Completed 105.2 MiB/9.9 GiB (49.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5725160Z Completed 105.5 MiB/9.9 GiB (49.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5732349Z Completed 105.8 MiB/9.9 GiB (50.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5739556Z Completed 106.0 MiB/9.9 GiB (50.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5746884Z Completed 106.2 MiB/9.9 GiB (50.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5783703Z Completed 106.5 MiB/9.9 GiB (50.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5823382Z Completed 106.8 MiB/9.9 GiB (50.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5833548Z Completed 107.0 MiB/9.9 GiB (50.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5843324Z Completed 107.2 MiB/9.9 GiB (50.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5851097Z Completed 107.5 MiB/9.9 GiB (50.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5863227Z Completed 107.8 MiB/9.9 GiB (50.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5877065Z Completed 108.0 MiB/9.9 GiB (50.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5879975Z Completed 108.2 MiB/9.9 GiB (50.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5894084Z Completed 108.5 MiB/9.9 GiB (50.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5895408Z Completed 108.8 MiB/9.9 GiB (51.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5924683Z Completed 109.0 MiB/9.9 GiB (51.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5925876Z Completed 109.2 MiB/9.9 GiB (51.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5926984Z Completed 109.5 MiB/9.9 GiB (51.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5933449Z Completed 109.8 MiB/9.9 GiB (51.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5940485Z Completed 110.0 MiB/9.9 GiB (51.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5947543Z Completed 110.2 MiB/9.9 GiB (51.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5960195Z Completed 110.5 MiB/9.9 GiB (51.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5965578Z Completed 110.8 MiB/9.9 GiB (51.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5980427Z Completed 111.0 MiB/9.9 GiB (51.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5984108Z Completed 111.2 MiB/9.9 GiB (52.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.5998553Z Completed 111.5 MiB/9.9 GiB (52.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6000336Z Completed 111.8 MiB/9.9 GiB (52.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6014525Z Completed 112.0 MiB/9.9 GiB (52.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6015697Z Completed 112.2 MiB/9.9 GiB (52.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6026346Z Completed 112.5 MiB/9.9 GiB (52.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6034748Z Completed 112.8 MiB/9.9 GiB (52.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6044831Z Completed 113.0 MiB/9.9 GiB (52.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6050930Z Completed 113.2 MiB/9.9 GiB (52.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6056260Z Completed 113.5 MiB/9.9 GiB (52.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6060945Z Completed 113.8 MiB/9.9 GiB (53.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6113694Z Completed 114.0 MiB/9.9 GiB (53.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6121036Z Completed 114.2 MiB/9.9 GiB (53.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6128119Z Completed 114.5 MiB/9.9 GiB (53.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6141186Z Completed 114.8 MiB/9.9 GiB (53.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6155385Z Completed 115.0 MiB/9.9 GiB (53.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6158670Z Completed 115.2 MiB/9.9 GiB (53.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6173063Z Completed 115.5 MiB/9.9 GiB (53.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6175385Z Completed 115.8 MiB/9.9 GiB (53.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6185026Z Completed 116.0 MiB/9.9 GiB (53.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6197425Z Completed 116.2 MiB/9.9 GiB (53.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6210648Z Completed 116.5 MiB/9.9 GiB (53.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6243314Z Completed 116.8 MiB/9.9 GiB (54.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6251775Z Completed 117.0 MiB/9.9 GiB (54.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6255771Z Completed 117.2 MiB/9.9 GiB (54.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6282498Z Completed 117.5 MiB/9.9 GiB (54.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6293020Z Completed 117.8 MiB/9.9 GiB (54.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6304142Z Completed 118.0 MiB/9.9 GiB (54.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6337380Z Completed 118.2 MiB/9.9 GiB (54.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6360769Z Completed 118.5 MiB/9.9 GiB (54.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6388618Z Completed 118.8 MiB/9.9 GiB (54.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6400659Z Completed 119.0 MiB/9.9 GiB (54.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6401397Z Completed 119.2 MiB/9.9 GiB (54.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6434258Z Completed 119.5 MiB/9.9 GiB (54.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6455164Z Completed 119.8 MiB/9.9 GiB (54.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6469755Z Completed 120.0 MiB/9.9 GiB (54.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6497478Z Completed 120.2 MiB/9.9 GiB (54.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6516999Z Completed 120.5 MiB/9.9 GiB (55.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6525014Z Completed 120.8 MiB/9.9 GiB (55.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6551423Z Completed 121.0 MiB/9.9 GiB (55.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6571216Z Completed 121.2 MiB/9.9 GiB (55.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6605752Z Completed 121.5 MiB/9.9 GiB (55.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6617235Z Completed 121.8 MiB/9.9 GiB (55.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6637606Z Completed 122.0 MiB/9.9 GiB (55.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6647725Z Completed 122.2 MiB/9.9 GiB (55.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6668444Z Completed 122.5 MiB/9.9 GiB (55.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6683946Z Completed 122.8 MiB/9.9 GiB (55.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6716376Z Completed 123.0 MiB/9.9 GiB (55.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6720650Z Completed 123.2 MiB/9.9 GiB (55.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6735346Z Completed 123.5 MiB/9.9 GiB (55.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6764931Z Completed 123.8 MiB/9.9 GiB (55.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6773370Z Completed 124.0 MiB/9.9 GiB (55.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6791654Z Completed 124.2 MiB/9.9 GiB (56.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6821055Z Completed 124.5 MiB/9.9 GiB (56.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6846432Z Completed 124.8 MiB/9.9 GiB (56.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6864768Z Completed 125.0 MiB/9.9 GiB (56.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6889181Z Completed 125.2 MiB/9.9 GiB (56.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6897553Z Completed 125.5 MiB/9.9 GiB (56.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6906100Z Completed 125.8 MiB/9.9 GiB (56.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6928757Z Completed 126.0 MiB/9.9 GiB (56.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6966727Z Completed 126.2 MiB/9.9 GiB (56.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6991127Z Completed 126.5 MiB/9.9 GiB (56.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.6992230Z Completed 126.8 MiB/9.9 GiB (56.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7011385Z Completed 127.0 MiB/9.9 GiB (56.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7018302Z Completed 127.2 MiB/9.9 GiB (56.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7041137Z Completed 127.5 MiB/9.9 GiB (56.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7042055Z Completed 127.8 MiB/9.9 GiB (56.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7056873Z Completed 128.0 MiB/9.9 GiB (57.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7099348Z Completed 128.2 MiB/9.9 GiB (57.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7111967Z Completed 128.5 MiB/9.9 GiB (57.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7129172Z Completed 128.8 MiB/9.9 GiB (57.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7157727Z Completed 129.0 MiB/9.9 GiB (57.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7161952Z Completed 129.2 MiB/9.9 GiB (57.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7196501Z Completed 129.5 MiB/9.9 GiB (57.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7217249Z Completed 129.8 MiB/9.9 GiB (57.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7237525Z Completed 130.0 MiB/9.9 GiB (57.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7238737Z Completed 130.2 MiB/9.9 GiB (57.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7278579Z Completed 130.5 MiB/9.9 GiB (57.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7289448Z Completed 130.8 MiB/9.9 GiB (57.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7297891Z Completed 131.0 MiB/9.9 GiB (57.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7307565Z Completed 131.2 MiB/9.9 GiB (57.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7312054Z Completed 131.5 MiB/9.9 GiB (57.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7347105Z Completed 131.8 MiB/9.9 GiB (58.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7399297Z Completed 132.0 MiB/9.9 GiB (58.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7429275Z Completed 132.2 MiB/9.9 GiB (58.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7430922Z Completed 132.5 MiB/9.9 GiB (58.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7432109Z Completed 132.8 MiB/9.9 GiB (58.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7450289Z Completed 133.0 MiB/9.9 GiB (58.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7464957Z Completed 133.2 MiB/9.9 GiB (58.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7468270Z Completed 133.5 MiB/9.9 GiB (58.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7483166Z Completed 133.8 MiB/9.9 GiB (58.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7535230Z Completed 134.0 MiB/9.9 GiB (58.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7554387Z Completed 134.2 MiB/9.9 GiB (58.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7577068Z Completed 134.5 MiB/9.9 GiB (58.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7591808Z Completed 134.8 MiB/9.9 GiB (58.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7598820Z Completed 135.0 MiB/9.9 GiB (58.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7615269Z Completed 135.2 MiB/9.9 GiB (58.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7627872Z Completed 135.5 MiB/9.9 GiB (58.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7666712Z Completed 135.8 MiB/9.9 GiB (58.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7709634Z Completed 136.0 MiB/9.9 GiB (58.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7731818Z Completed 136.2 MiB/9.9 GiB (58.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7737479Z Completed 136.5 MiB/9.9 GiB (59.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7744163Z Completed 136.8 MiB/9.9 GiB (59.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7745500Z Completed 137.0 MiB/9.9 GiB (59.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7785507Z Completed 137.2 MiB/9.9 GiB (59.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7786602Z Completed 137.5 MiB/9.9 GiB (59.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7799029Z Completed 137.8 MiB/9.9 GiB (59.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7874964Z Completed 138.0 MiB/9.9 GiB (59.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7886906Z Completed 138.2 MiB/9.9 GiB (59.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7888224Z Completed 138.5 MiB/9.9 GiB (59.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7907997Z Completed 138.8 MiB/9.9 GiB (59.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7919450Z Completed 139.0 MiB/9.9 GiB (59.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7922488Z Completed 139.2 MiB/9.9 GiB (59.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7945188Z Completed 139.5 MiB/9.9 GiB (59.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7964486Z Completed 139.8 MiB/9.9 GiB (59.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7990962Z Completed 140.0 MiB/9.9 GiB (59.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.7997249Z Completed 140.2 MiB/9.9 GiB (59.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8035932Z Completed 140.5 MiB/9.9 GiB (60.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8040490Z Completed 140.8 MiB/9.9 GiB (60.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8057772Z Completed 141.0 MiB/9.9 GiB (60.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8065378Z Completed 141.2 MiB/9.9 GiB (60.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8080776Z Completed 141.5 MiB/9.9 GiB (60.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8123440Z Completed 141.8 MiB/9.9 GiB (60.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8178905Z Completed 142.0 MiB/9.9 GiB (60.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8190158Z Completed 142.2 MiB/9.9 GiB (60.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8207346Z Completed 142.5 MiB/9.9 GiB (60.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8215476Z Completed 142.8 MiB/9.9 GiB (60.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8233385Z Completed 143.0 MiB/9.9 GiB (60.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8240046Z Completed 143.2 MiB/9.9 GiB (60.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8295933Z Completed 143.5 MiB/9.9 GiB (60.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8316796Z Completed 143.8 MiB/9.9 GiB (60.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8333361Z Completed 144.0 MiB/9.9 GiB (60.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8336346Z Completed 144.2 MiB/9.9 GiB (60.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8357958Z Completed 144.5 MiB/9.9 GiB (60.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8365299Z Completed 144.8 MiB/9.9 GiB (60.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8409575Z Completed 145.0 MiB/9.9 GiB (61.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8427413Z Completed 145.2 MiB/9.9 GiB (61.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8434572Z Completed 145.5 MiB/9.9 GiB (61.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8435735Z Completed 145.8 MiB/9.9 GiB (61.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8476413Z Completed 146.0 MiB/9.9 GiB (61.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8532384Z Completed 146.2 MiB/9.9 GiB (61.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8536390Z Completed 146.5 MiB/9.9 GiB (61.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8547398Z Completed 146.8 MiB/9.9 GiB (61.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8549789Z Completed 147.0 MiB/9.9 GiB (61.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8557484Z Completed 147.2 MiB/9.9 GiB (61.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8587345Z Completed 147.5 MiB/9.9 GiB (61.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8611430Z Completed 147.8 MiB/9.9 GiB (61.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8621076Z Completed 148.0 MiB/9.9 GiB (61.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8626476Z Completed 148.2 MiB/9.9 GiB (61.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8655189Z Completed 148.5 MiB/9.9 GiB (61.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8692070Z Completed 148.8 MiB/9.9 GiB (61.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8695029Z Completed 149.0 MiB/9.9 GiB (61.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8721885Z Completed 149.2 MiB/9.9 GiB (61.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8735980Z Completed 149.5 MiB/9.9 GiB (61.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8759356Z Completed 149.8 MiB/9.9 GiB (62.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8768184Z Completed 150.0 MiB/9.9 GiB (62.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8780200Z Completed 150.2 MiB/9.9 GiB (62.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8783708Z Completed 150.5 MiB/9.9 GiB (62.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8822517Z Completed 150.8 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8864222Z Completed 151.0 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8866060Z Completed 151.2 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8930701Z Completed 151.5 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.8946742Z Completed 151.8 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9014285Z Completed 152.0 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9038871Z Completed 152.2 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9088552Z Completed 152.5 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9131911Z Completed 152.8 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9139443Z Completed 153.0 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9191547Z Completed 153.2 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9266349Z Completed 153.5 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9271613Z Completed 153.8 MiB/9.9 GiB (62.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9310547Z Completed 154.0 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9362249Z Completed 154.2 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9376546Z Completed 154.5 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9384610Z Completed 154.8 MiB/9.9 GiB (62.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9388579Z Completed 155.0 MiB/9.9 GiB (62.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9397812Z Completed 155.2 MiB/9.9 GiB (62.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9405759Z Completed 155.5 MiB/9.9 GiB (62.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9415383Z Completed 155.8 MiB/9.9 GiB (62.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9425080Z Completed 156.0 MiB/9.9 GiB (62.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9430121Z Completed 156.2 MiB/9.9 GiB (62.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9440897Z Completed 156.5 MiB/9.9 GiB (63.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9451785Z Completed 156.8 MiB/9.9 GiB (63.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9457988Z Completed 157.0 MiB/9.9 GiB (63.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9466764Z Completed 157.2 MiB/9.9 GiB (63.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9472976Z Completed 157.5 MiB/9.9 GiB (63.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9514266Z Completed 157.8 MiB/9.9 GiB (63.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9519638Z Completed 158.0 MiB/9.9 GiB (63.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9557439Z Completed 158.2 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9597632Z Completed 158.5 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9628161Z Completed 158.8 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9681174Z Completed 159.0 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9709081Z Completed 159.2 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9749895Z Completed 159.5 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9760703Z Completed 159.8 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9763412Z Completed 160.0 MiB/9.9 GiB (63.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9771008Z Completed 160.2 MiB/9.9 GiB (63.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9779823Z Completed 160.5 MiB/9.9 GiB (63.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9786661Z Completed 160.8 MiB/9.9 GiB (63.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9797986Z Completed 161.0 MiB/9.9 GiB (63.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9825416Z Completed 161.2 MiB/9.9 GiB (63.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9832333Z Completed 161.5 MiB/9.9 GiB (64.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9840742Z Completed 161.8 MiB/9.9 GiB (64.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9848953Z Completed 162.0 MiB/9.9 GiB (64.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9857033Z Completed 162.2 MiB/9.9 GiB (64.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:14.9895174Z Completed 162.5 MiB/9.9 GiB (64.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0117304Z Completed 162.8 MiB/9.9 GiB (64.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0148794Z Completed 163.0 MiB/9.9 GiB (63.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0255899Z Completed 163.2 MiB/9.9 GiB (63.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0284794Z Completed 163.5 MiB/9.9 GiB (63.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0294770Z Completed 163.8 MiB/9.9 GiB (63.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0318652Z Completed 164.0 MiB/9.9 GiB (63.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0334788Z Completed 164.2 MiB/9.9 GiB (63.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0343845Z Completed 164.5 MiB/9.9 GiB (63.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0354655Z Completed 164.8 MiB/9.9 GiB (64.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0357857Z Completed 165.0 MiB/9.9 GiB (64.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0373329Z Completed 165.2 MiB/9.9 GiB (64.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0392312Z Completed 165.5 MiB/9.9 GiB (64.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0397239Z Completed 165.8 MiB/9.9 GiB (64.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0428406Z Completed 166.0 MiB/9.9 GiB (64.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0438987Z Completed 166.2 MiB/9.9 GiB (64.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0454315Z Completed 166.5 MiB/9.9 GiB (64.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0460357Z Completed 166.8 MiB/9.9 GiB (64.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0471666Z Completed 167.0 MiB/9.9 GiB (64.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0477767Z Completed 167.2 MiB/9.9 GiB (64.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0488804Z Completed 167.5 MiB/9.9 GiB (64.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0509339Z Completed 167.8 MiB/9.9 GiB (64.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0519240Z Completed 168.0 MiB/9.9 GiB (64.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0526242Z Completed 168.2 MiB/9.9 GiB (64.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0543562Z Completed 168.5 MiB/9.9 GiB (64.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0622416Z Completed 168.8 MiB/9.9 GiB (65.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0652916Z Completed 169.0 MiB/9.9 GiB (64.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0656638Z Completed 169.2 MiB/9.9 GiB (64.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0663332Z Completed 169.5 MiB/9.9 GiB (65.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0672978Z Completed 169.8 MiB/9.9 GiB (65.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0682037Z Completed 170.0 MiB/9.9 GiB (65.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0694138Z Completed 170.2 MiB/9.9 GiB (65.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0699936Z Completed 170.5 MiB/9.9 GiB (65.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0731471Z Completed 170.8 MiB/9.9 GiB (65.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0768097Z Completed 171.0 MiB/9.9 GiB (65.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0770983Z Completed 171.2 MiB/9.9 GiB (65.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0783404Z Completed 171.5 MiB/9.9 GiB (65.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0785460Z Completed 171.8 MiB/9.9 GiB (65.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0792964Z Completed 172.0 MiB/9.9 GiB (65.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0802811Z Completed 172.2 MiB/9.9 GiB (65.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0809428Z Completed 172.5 MiB/9.9 GiB (65.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0816658Z Completed 172.8 MiB/9.9 GiB (65.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0823802Z Completed 173.0 MiB/9.9 GiB (65.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0831291Z Completed 173.2 MiB/9.9 GiB (66.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0842133Z Completed 173.5 MiB/9.9 GiB (66.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0851588Z Completed 173.8 MiB/9.9 GiB (66.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0860900Z Completed 174.0 MiB/9.9 GiB (66.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0865488Z Completed 174.2 MiB/9.9 GiB (66.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0875815Z Completed 174.5 MiB/9.9 GiB (66.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0880410Z Completed 174.8 MiB/9.9 GiB (66.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0892936Z Completed 175.0 MiB/9.9 GiB (66.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0895922Z Completed 175.2 MiB/9.9 GiB (66.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0901065Z Completed 175.5 MiB/9.9 GiB (66.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0907531Z Completed 175.8 MiB/9.9 GiB (66.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0913631Z Completed 176.0 MiB/9.9 GiB (66.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0919547Z Completed 176.2 MiB/9.9 GiB (66.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0925888Z Completed 176.5 MiB/9.9 GiB (67.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.0931924Z Completed 176.8 MiB/9.9 GiB (67.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1048594Z Completed 177.0 MiB/9.9 GiB (67.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1056559Z Completed 177.2 MiB/9.9 GiB (67.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1063244Z Completed 177.5 MiB/9.9 GiB (67.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1069988Z Completed 177.8 MiB/9.9 GiB (67.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1076704Z Completed 178.0 MiB/9.9 GiB (67.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1083960Z Completed 178.2 MiB/9.9 GiB (67.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1090645Z Completed 178.5 MiB/9.9 GiB (67.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1097691Z Completed 178.8 MiB/9.9 GiB (67.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1104747Z Completed 179.0 MiB/9.9 GiB (67.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1112074Z Completed 179.2 MiB/9.9 GiB (67.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1181819Z Completed 179.5 MiB/9.9 GiB (67.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1199136Z Completed 179.8 MiB/9.9 GiB (67.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1200429Z Completed 180.0 MiB/9.9 GiB (67.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1204010Z Completed 180.2 MiB/9.9 GiB (67.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1221040Z Completed 180.5 MiB/9.9 GiB (67.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1223884Z Completed 180.8 MiB/9.9 GiB (67.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1294030Z Completed 181.0 MiB/9.9 GiB (67.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1343506Z Completed 181.2 MiB/9.9 GiB (68.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1353124Z Completed 181.5 MiB/9.9 GiB (67.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1360811Z Completed 181.8 MiB/9.9 GiB (67.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1386746Z Completed 182.0 MiB/9.9 GiB (68.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1388787Z Completed 182.2 MiB/9.9 GiB (68.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1401962Z Completed 182.5 MiB/9.9 GiB (68.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1418788Z Completed 182.8 MiB/9.9 GiB (68.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1445536Z Completed 183.0 MiB/9.9 GiB (68.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1446647Z Completed 183.2 MiB/9.9 GiB (68.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1460534Z Completed 183.5 MiB/9.9 GiB (68.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1466481Z Completed 183.8 MiB/9.9 GiB (68.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1478778Z Completed 184.0 MiB/9.9 GiB (68.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1498207Z Completed 184.2 MiB/9.9 GiB (68.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1507674Z Completed 184.5 MiB/9.9 GiB (68.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1519545Z Completed 184.8 MiB/9.9 GiB (68.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1531770Z Completed 185.0 MiB/9.9 GiB (68.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1547722Z Completed 185.2 MiB/9.9 GiB (68.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1559740Z Completed 185.5 MiB/9.9 GiB (68.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1593949Z Completed 185.8 MiB/9.9 GiB (68.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1595448Z Completed 186.0 MiB/9.9 GiB (68.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1600919Z Completed 186.2 MiB/9.9 GiB (69.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1617585Z Completed 186.5 MiB/9.9 GiB (69.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1626348Z Completed 186.8 MiB/9.9 GiB (69.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1632490Z Completed 187.0 MiB/9.9 GiB (69.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1645677Z Completed 187.2 MiB/9.9 GiB (69.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1670003Z Completed 187.5 MiB/9.9 GiB (69.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1685997Z Completed 187.8 MiB/9.9 GiB (69.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1698584Z Completed 188.0 MiB/9.9 GiB (69.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1716006Z Completed 188.2 MiB/9.9 GiB (69.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1734075Z Completed 188.5 MiB/9.9 GiB (69.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1742899Z Completed 188.8 MiB/9.9 GiB (69.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1769478Z Completed 189.0 MiB/9.9 GiB (69.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1784150Z Completed 189.2 MiB/9.9 GiB (69.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1789822Z Completed 189.5 MiB/9.9 GiB (69.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1812491Z Completed 189.8 MiB/9.9 GiB (69.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1833157Z Completed 190.0 MiB/9.9 GiB (69.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1835682Z Completed 190.2 MiB/9.9 GiB (69.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1841804Z Completed 190.5 MiB/9.9 GiB (69.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1854698Z Completed 190.8 MiB/9.9 GiB (70.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1857587Z Completed 191.0 MiB/9.9 GiB (70.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1863334Z Completed 191.2 MiB/9.9 GiB (70.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1877376Z Completed 191.5 MiB/9.9 GiB (70.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1879531Z Completed 191.8 MiB/9.9 GiB (70.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1892786Z Completed 192.0 MiB/9.9 GiB (70.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1897012Z Completed 192.2 MiB/9.9 GiB (70.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1908519Z Completed 192.5 MiB/9.9 GiB (70.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1915279Z Completed 192.8 MiB/9.9 GiB (70.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1922020Z Completed 193.0 MiB/9.9 GiB (70.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1927536Z Completed 193.2 MiB/9.9 GiB (70.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1933387Z Completed 193.5 MiB/9.9 GiB (70.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1965169Z Completed 193.8 MiB/9.9 GiB (70.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1985228Z Completed 194.0 MiB/9.9 GiB (70.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.1987780Z Completed 194.2 MiB/9.9 GiB (70.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2001501Z Completed 194.5 MiB/9.9 GiB (71.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2009465Z Completed 194.8 MiB/9.9 GiB (71.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2014516Z Completed 195.0 MiB/9.9 GiB (71.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2022034Z Completed 195.2 MiB/9.9 GiB (71.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2029604Z Completed 195.5 MiB/9.9 GiB (71.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2036596Z Completed 195.8 MiB/9.9 GiB (71.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2072428Z Completed 196.0 MiB/9.9 GiB (71.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2073972Z Completed 196.2 MiB/9.9 GiB (71.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2077179Z Completed 196.5 MiB/9.9 GiB (71.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2092035Z Completed 196.8 MiB/9.9 GiB (71.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2096224Z Completed 197.0 MiB/9.9 GiB (71.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2099908Z Completed 197.2 MiB/9.9 GiB (71.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2110849Z Completed 197.5 MiB/9.9 GiB (71.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2126321Z Completed 197.8 MiB/9.9 GiB (71.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2141130Z Completed 198.0 MiB/9.9 GiB (71.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2163355Z Completed 198.2 MiB/9.9 GiB (71.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2164546Z Completed 198.5 MiB/9.9 GiB (72.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2165601Z Completed 198.8 MiB/9.9 GiB (72.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2186510Z Completed 199.0 MiB/9.9 GiB (72.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2201090Z Completed 199.2 MiB/9.9 GiB (72.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2228997Z Completed 199.5 MiB/9.9 GiB (72.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2242616Z Completed 199.8 MiB/9.9 GiB (72.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2277779Z Completed 200.0 MiB/9.9 GiB (72.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2310081Z Completed 200.2 MiB/9.9 GiB (72.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2315839Z Completed 200.5 MiB/9.9 GiB (72.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2321398Z Completed 200.8 MiB/9.9 GiB (72.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2328871Z Completed 201.0 MiB/9.9 GiB (72.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2358221Z Completed 201.2 MiB/9.9 GiB (72.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2365373Z Completed 201.5 MiB/9.9 GiB (72.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2388389Z Completed 201.8 MiB/9.9 GiB (72.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2403342Z Completed 202.0 MiB/9.9 GiB (72.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2420399Z Completed 202.2 MiB/9.9 GiB (72.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2435312Z Completed 202.5 MiB/9.9 GiB (72.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2438975Z Completed 202.8 MiB/9.9 GiB (72.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2452095Z Completed 203.0 MiB/9.9 GiB (72.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2459831Z Completed 203.2 MiB/9.9 GiB (72.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2486124Z Completed 203.5 MiB/9.9 GiB (73.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2501866Z Completed 203.8 MiB/9.9 GiB (73.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2507818Z Completed 204.0 MiB/9.9 GiB (73.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2535237Z Completed 204.2 MiB/9.9 GiB (73.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2543010Z Completed 204.5 MiB/9.9 GiB (73.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2557867Z Completed 204.8 MiB/9.9 GiB (73.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2596117Z Completed 205.0 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2637175Z Completed 205.2 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2665055Z Completed 205.5 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2681612Z Completed 205.8 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2698328Z Completed 206.0 MiB/9.9 GiB (73.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2707153Z Completed 206.2 MiB/9.9 GiB (73.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2727068Z Completed 206.5 MiB/9.9 GiB (73.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2734020Z Completed 206.8 MiB/9.9 GiB (73.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2738440Z Completed 207.0 MiB/9.9 GiB (73.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2770204Z Completed 207.2 MiB/9.9 GiB (73.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2774925Z Completed 207.5 MiB/9.9 GiB (73.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2781468Z Completed 207.8 MiB/9.9 GiB (73.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2819620Z Completed 208.0 MiB/9.9 GiB (73.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2825316Z Completed 208.2 MiB/9.9 GiB (73.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2826478Z Completed 208.5 MiB/9.9 GiB (73.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2852834Z Completed 208.8 MiB/9.9 GiB (73.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2861504Z Completed 209.0 MiB/9.9 GiB (73.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2870855Z Completed 209.2 MiB/9.9 GiB (74.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2892972Z Completed 209.5 MiB/9.9 GiB (74.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2911382Z Completed 209.8 MiB/9.9 GiB (74.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2933400Z Completed 210.0 MiB/9.9 GiB (74.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2943310Z Completed 210.2 MiB/9.9 GiB (74.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2962818Z Completed 210.5 MiB/9.9 GiB (74.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.2994789Z Completed 210.8 MiB/9.9 GiB (74.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3014095Z Completed 211.0 MiB/9.9 GiB (74.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3029192Z Completed 211.2 MiB/9.9 GiB (74.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3030358Z Completed 211.5 MiB/9.9 GiB (74.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3048690Z Completed 211.8 MiB/9.9 GiB (74.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3091690Z Completed 212.0 MiB/9.9 GiB (74.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3098428Z Completed 212.2 MiB/9.9 GiB (74.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3113943Z Completed 212.5 MiB/9.9 GiB (74.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3122095Z Completed 212.8 MiB/9.9 GiB (74.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3125607Z Completed 213.0 MiB/9.9 GiB (74.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3168591Z Completed 213.2 MiB/9.9 GiB (74.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3197562Z Completed 213.5 MiB/9.9 GiB (74.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3205992Z Completed 213.8 MiB/9.9 GiB (74.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3208221Z Completed 214.0 MiB/9.9 GiB (74.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3216904Z Completed 214.2 MiB/9.9 GiB (74.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3265901Z Completed 214.5 MiB/9.9 GiB (74.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3275155Z Completed 214.8 MiB/9.9 GiB (74.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3287446Z Completed 215.0 MiB/9.9 GiB (74.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3296005Z Completed 215.2 MiB/9.9 GiB (75.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3339112Z Completed 215.5 MiB/9.9 GiB (75.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3364057Z Completed 215.8 MiB/9.9 GiB (75.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3368940Z Completed 216.0 MiB/9.9 GiB (75.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3379464Z Completed 216.2 MiB/9.9 GiB (75.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3433197Z Completed 216.5 MiB/9.9 GiB (75.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3435928Z Completed 216.8 MiB/9.9 GiB (75.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3441073Z Completed 217.0 MiB/9.9 GiB (75.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3453991Z Completed 217.2 MiB/9.9 GiB (75.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3469142Z Completed 217.5 MiB/9.9 GiB (75.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3488652Z Completed 217.8 MiB/9.9 GiB (75.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3500489Z Completed 218.0 MiB/9.9 GiB (75.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3534038Z Completed 218.2 MiB/9.9 GiB (75.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3551637Z Completed 218.5 MiB/9.9 GiB (75.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3561399Z Completed 218.8 MiB/9.9 GiB (75.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3571527Z Completed 219.0 MiB/9.9 GiB (75.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3587993Z Completed 219.2 MiB/9.9 GiB (75.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3589309Z Completed 219.5 MiB/9.9 GiB (75.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3649604Z Completed 219.8 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3671644Z Completed 220.0 MiB/9.9 GiB (75.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3693597Z Completed 220.2 MiB/9.9 GiB (75.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3694454Z Completed 220.5 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3733584Z Completed 220.8 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3745630Z Completed 221.0 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3778652Z Completed 221.2 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3829743Z Completed 221.5 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3865672Z Completed 221.8 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3893642Z Completed 222.0 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3916204Z Completed 222.2 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3939059Z Completed 222.5 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3989375Z Completed 222.8 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.3997777Z Completed 223.0 MiB/9.9 GiB (75.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4007292Z Completed 223.2 MiB/9.9 GiB (75.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4015070Z Completed 223.5 MiB/9.9 GiB (76.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4018279Z Completed 223.8 MiB/9.9 GiB (76.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4070560Z Completed 224.0 MiB/9.9 GiB (76.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4080924Z Completed 224.2 MiB/9.9 GiB (76.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4105283Z Completed 224.5 MiB/9.9 GiB (76.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4115398Z Completed 224.8 MiB/9.9 GiB (76.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4116779Z Completed 225.0 MiB/9.9 GiB (76.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4149725Z Completed 225.2 MiB/9.9 GiB (76.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4152846Z Completed 225.5 MiB/9.9 GiB (76.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4182083Z Completed 225.8 MiB/9.9 GiB (76.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4200474Z Completed 226.0 MiB/9.9 GiB (76.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4213306Z Completed 226.2 MiB/9.9 GiB (76.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4225969Z Completed 226.5 MiB/9.9 GiB (76.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4244614Z Completed 226.8 MiB/9.9 GiB (76.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4270628Z Completed 227.0 MiB/9.9 GiB (76.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4286300Z Completed 227.2 MiB/9.9 GiB (76.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4291759Z Completed 227.5 MiB/9.9 GiB (76.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4298893Z Completed 227.8 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4325611Z Completed 228.0 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4329599Z Completed 228.2 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4332523Z Completed 228.5 MiB/9.9 GiB (76.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4342144Z Completed 228.8 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4348233Z Completed 229.0 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4356775Z Completed 229.2 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4395626Z Completed 229.5 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4405855Z Completed 229.8 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4438266Z Completed 230.0 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4510627Z Completed 230.2 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4572167Z Completed 230.5 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4584320Z Completed 230.8 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4642471Z Completed 231.0 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4657358Z Completed 231.2 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4704934Z Completed 231.5 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4757472Z Completed 231.8 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4903709Z Completed 232.0 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4927848Z Completed 232.2 MiB/9.9 GiB (76.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4930773Z Completed 232.5 MiB/9.9 GiB (76.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4950309Z Completed 232.8 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4965210Z Completed 233.0 MiB/9.9 GiB (76.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4966906Z Completed 233.2 MiB/9.9 GiB (76.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4986237Z Completed 233.5 MiB/9.9 GiB (76.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.4997828Z Completed 233.8 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5023489Z Completed 234.0 MiB/9.9 GiB (76.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5044653Z Completed 234.2 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5086336Z Completed 234.5 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5100922Z Completed 234.8 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5146260Z Completed 235.0 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5151585Z Completed 235.2 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5160850Z Completed 235.5 MiB/9.9 GiB (77.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5182295Z Completed 235.8 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5184947Z Completed 236.0 MiB/9.9 GiB (77.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5221772Z Completed 236.2 MiB/9.9 GiB (77.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5240656Z Completed 236.5 MiB/9.9 GiB (77.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5251151Z Completed 236.8 MiB/9.9 GiB (77.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5289787Z Completed 237.0 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5293221Z Completed 237.2 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5342327Z Completed 237.5 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5366083Z Completed 237.8 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5402452Z Completed 238.0 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5405127Z Completed 238.2 MiB/9.9 GiB (77.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5425751Z Completed 238.5 MiB/9.9 GiB (77.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5460207Z Completed 238.8 MiB/9.9 GiB (77.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5461416Z Completed 239.0 MiB/9.9 GiB (77.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5464111Z Completed 239.2 MiB/9.9 GiB (77.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5503398Z Completed 239.5 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5513514Z Completed 239.8 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5521253Z Completed 240.0 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5542965Z Completed 240.2 MiB/9.9 GiB (77.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5544086Z Completed 240.5 MiB/9.9 GiB (77.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5561204Z Completed 240.8 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5588350Z Completed 241.0 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5596247Z Completed 241.2 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5609297Z Completed 241.5 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5668912Z Completed 241.8 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5794005Z Completed 242.0 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5820496Z Completed 242.2 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5833323Z Completed 242.5 MiB/9.9 GiB (77.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5846340Z Completed 242.8 MiB/9.9 GiB (77.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5853123Z Completed 243.0 MiB/9.9 GiB (77.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5870569Z Completed 243.2 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5886445Z Completed 243.5 MiB/9.9 GiB (77.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5919809Z Completed 243.8 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5921841Z Completed 244.0 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.5944304Z Completed 244.2 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6014508Z Completed 244.5 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6039004Z Completed 244.8 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6075198Z Completed 245.0 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6105766Z Completed 245.2 MiB/9.9 GiB (77.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6108413Z Completed 245.5 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6128320Z Completed 245.8 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6137095Z Completed 246.0 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6180966Z Completed 246.2 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6188218Z Completed 246.5 MiB/9.9 GiB (78.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6194196Z Completed 246.8 MiB/9.9 GiB (78.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6202553Z Completed 247.0 MiB/9.9 GiB (78.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6216634Z Completed 247.2 MiB/9.9 GiB (78.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6223068Z Completed 247.5 MiB/9.9 GiB (78.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6231770Z Completed 247.8 MiB/9.9 GiB (78.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6240523Z Completed 248.0 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6263599Z Completed 248.2 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6344128Z Completed 248.5 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6365666Z Completed 248.8 MiB/9.9 GiB (78.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6403806Z Completed 249.0 MiB/9.9 GiB (78.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6408908Z Completed 249.2 MiB/9.9 GiB (78.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6440058Z Completed 249.5 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6441226Z Completed 249.8 MiB/9.9 GiB (78.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6458711Z Completed 250.0 MiB/9.9 GiB (78.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6488867Z Completed 250.2 MiB/9.9 GiB (78.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6505371Z Completed 250.5 MiB/9.9 GiB (78.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6517782Z Completed 250.8 MiB/9.9 GiB (78.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6550925Z Completed 251.0 MiB/9.9 GiB (78.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6556248Z Completed 251.2 MiB/9.9 GiB (78.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6559283Z Completed 251.5 MiB/9.9 GiB (78.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6574222Z Completed 251.8 MiB/9.9 GiB (78.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6581644Z Completed 252.0 MiB/9.9 GiB (78.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6589789Z Completed 252.2 MiB/9.9 GiB (78.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6593903Z Completed 252.5 MiB/9.9 GiB (78.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6605093Z Completed 252.8 MiB/9.9 GiB (79.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6607760Z Completed 253.0 MiB/9.9 GiB (79.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6617036Z Completed 253.2 MiB/9.9 GiB (79.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6624001Z Completed 253.5 MiB/9.9 GiB (79.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6630567Z Completed 253.8 MiB/9.9 GiB (79.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6684793Z Completed 254.0 MiB/9.9 GiB (79.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6690761Z Completed 254.2 MiB/9.9 GiB (79.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6696975Z Completed 254.5 MiB/9.9 GiB (79.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6702339Z Completed 254.8 MiB/9.9 GiB (79.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6716084Z Completed 255.0 MiB/9.9 GiB (79.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6752850Z Completed 255.2 MiB/9.9 GiB (79.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6777896Z Completed 255.5 MiB/9.9 GiB (79.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6781799Z Completed 255.8 MiB/9.9 GiB (79.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6791719Z Completed 256.0 MiB/9.9 GiB (79.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6816934Z Completed 256.2 MiB/9.9 GiB (79.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6840652Z Completed 256.5 MiB/9.9 GiB (79.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6852522Z Completed 256.8 MiB/9.9 GiB (79.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6872840Z Completed 257.0 MiB/9.9 GiB (79.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6911879Z Completed 257.2 MiB/9.9 GiB (79.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6918086Z Completed 257.5 MiB/9.9 GiB (79.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6927293Z Completed 257.8 MiB/9.9 GiB (79.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6930141Z Completed 258.0 MiB/9.9 GiB (79.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6950371Z Completed 258.2 MiB/9.9 GiB (79.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.6994365Z Completed 258.5 MiB/9.9 GiB (79.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7000558Z Completed 258.8 MiB/9.9 GiB (79.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7011136Z Completed 259.0 MiB/9.9 GiB (79.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7030860Z Completed 259.2 MiB/9.9 GiB (79.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7039808Z Completed 259.5 MiB/9.9 GiB (80.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7046438Z Completed 259.8 MiB/9.9 GiB (80.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7113416Z Completed 260.0 MiB/9.9 GiB (80.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7129860Z Completed 260.2 MiB/9.9 GiB (80.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7142110Z Completed 260.5 MiB/9.9 GiB (80.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7143969Z Completed 260.8 MiB/9.9 GiB (80.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7187602Z Completed 261.0 MiB/9.9 GiB (80.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7219585Z Completed 261.2 MiB/9.9 GiB (80.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7220473Z Completed 261.5 MiB/9.9 GiB (80.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7228608Z Completed 261.8 MiB/9.9 GiB (80.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7230886Z Completed 262.0 MiB/9.9 GiB (80.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7248574Z Completed 262.2 MiB/9.9 GiB (80.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7286639Z Completed 262.5 MiB/9.9 GiB (80.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7328744Z Completed 262.8 MiB/9.9 GiB (80.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7344798Z Completed 263.0 MiB/9.9 GiB (80.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7352183Z Completed 263.2 MiB/9.9 GiB (80.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7357232Z Completed 263.5 MiB/9.9 GiB (80.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7369713Z Completed 263.8 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7401445Z Completed 264.0 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7426698Z Completed 264.2 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7457508Z Completed 264.5 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7469001Z Completed 264.8 MiB/9.9 GiB (80.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7480014Z Completed 265.0 MiB/9.9 GiB (80.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7507696Z Completed 265.2 MiB/9.9 GiB (80.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7515241Z Completed 265.5 MiB/9.9 GiB (80.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7533990Z Completed 265.8 MiB/9.9 GiB (80.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7572812Z Completed 266.0 MiB/9.9 GiB (80.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7576389Z Completed 266.2 MiB/9.9 GiB (80.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7588617Z Completed 266.5 MiB/9.9 GiB (80.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7597629Z Completed 266.8 MiB/9.9 GiB (80.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7626747Z Completed 267.0 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7648722Z Completed 267.2 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7663260Z Completed 267.5 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7697319Z Completed 267.8 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7716603Z Completed 268.0 MiB/9.9 GiB (80.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7729628Z Completed 268.2 MiB/9.9 GiB (81.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7741821Z Completed 268.5 MiB/9.9 GiB (81.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7750418Z Completed 268.8 MiB/9.9 GiB (81.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7762567Z Completed 269.0 MiB/9.9 GiB (81.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7778588Z Completed 269.2 MiB/9.9 GiB (81.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7816980Z Completed 269.5 MiB/9.9 GiB (81.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7842037Z Completed 269.8 MiB/9.9 GiB (81.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7845086Z Completed 270.0 MiB/9.9 GiB (81.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7859720Z Completed 270.2 MiB/9.9 GiB (81.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7892514Z Completed 270.5 MiB/9.9 GiB (81.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7909140Z Completed 270.8 MiB/9.9 GiB (81.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7920969Z Completed 271.0 MiB/9.9 GiB (81.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7927702Z Completed 271.2 MiB/9.9 GiB (81.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7976798Z Completed 271.5 MiB/9.9 GiB (81.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7977997Z Completed 271.8 MiB/9.9 GiB (81.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7987772Z Completed 272.0 MiB/9.9 GiB (81.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.7994465Z Completed 272.2 MiB/9.9 GiB (81.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8008416Z Completed 272.5 MiB/9.9 GiB (81.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8026511Z Completed 272.8 MiB/9.9 GiB (81.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8054526Z Completed 273.0 MiB/9.9 GiB (81.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8067681Z Completed 273.2 MiB/9.9 GiB (81.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8099117Z Completed 273.5 MiB/9.9 GiB (81.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8130696Z Completed 273.8 MiB/9.9 GiB (81.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8132229Z Completed 274.0 MiB/9.9 GiB (81.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8147383Z Completed 274.2 MiB/9.9 GiB (81.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8150654Z Completed 274.5 MiB/9.9 GiB (81.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8160245Z Completed 274.8 MiB/9.9 GiB (81.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8163363Z Completed 275.0 MiB/9.9 GiB (81.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8175521Z Completed 275.2 MiB/9.9 GiB (82.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8241146Z Completed 275.5 MiB/9.9 GiB (82.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8266536Z Completed 275.8 MiB/9.9 GiB (81.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8286093Z Completed 276.0 MiB/9.9 GiB (81.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8289036Z Completed 276.2 MiB/9.9 GiB (82.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8293527Z Completed 276.5 MiB/9.9 GiB (82.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8297229Z Completed 276.8 MiB/9.9 GiB (82.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8311637Z Completed 277.0 MiB/9.9 GiB (82.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8394928Z Completed 277.2 MiB/9.9 GiB (82.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8406731Z Completed 277.5 MiB/9.9 GiB (82.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8425786Z Completed 277.8 MiB/9.9 GiB (82.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8426978Z Completed 278.0 MiB/9.9 GiB (82.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8437626Z Completed 278.2 MiB/9.9 GiB (82.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8438970Z Completed 278.5 MiB/9.9 GiB (82.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8455071Z Completed 278.8 MiB/9.9 GiB (82.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8470297Z Completed 279.0 MiB/9.9 GiB (82.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8520655Z Completed 279.2 MiB/9.9 GiB (82.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8556127Z Completed 279.5 MiB/9.9 GiB (82.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8561532Z Completed 279.8 MiB/9.9 GiB (82.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8568313Z Completed 280.0 MiB/9.9 GiB (82.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8584481Z Completed 280.2 MiB/9.9 GiB (82.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8590616Z Completed 280.5 MiB/9.9 GiB (82.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8601121Z Completed 280.8 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8645620Z Completed 281.0 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8682307Z Completed 281.2 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8684049Z Completed 281.5 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8697448Z Completed 281.8 MiB/9.9 GiB (82.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8715087Z Completed 282.0 MiB/9.9 GiB (82.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8716215Z Completed 282.2 MiB/9.9 GiB (82.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8728847Z Completed 282.5 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8784733Z Completed 282.8 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8806297Z Completed 283.0 MiB/9.9 GiB (82.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8831351Z Completed 283.2 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8845357Z Completed 283.5 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8846501Z Completed 283.8 MiB/9.9 GiB (82.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8847531Z Completed 284.0 MiB/9.9 GiB (82.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8908785Z Completed 284.2 MiB/9.9 GiB (83.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8919886Z Completed 284.5 MiB/9.9 GiB (82.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8938354Z Completed 284.8 MiB/9.9 GiB (82.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8953749Z Completed 285.0 MiB/9.9 GiB (83.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8958918Z Completed 285.2 MiB/9.9 GiB (83.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8966659Z Completed 285.5 MiB/9.9 GiB (83.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.8981569Z Completed 285.8 MiB/9.9 GiB (83.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9017905Z Completed 286.0 MiB/9.9 GiB (83.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9058844Z Completed 286.2 MiB/9.9 GiB (83.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9065801Z Completed 286.5 MiB/9.9 GiB (83.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9070586Z Completed 286.8 MiB/9.9 GiB (83.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9086796Z Completed 287.0 MiB/9.9 GiB (83.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9092566Z Completed 287.2 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9113976Z Completed 287.5 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9175738Z Completed 287.8 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9183814Z Completed 288.0 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9191499Z Completed 288.2 MiB/9.9 GiB (83.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9197609Z Completed 288.5 MiB/9.9 GiB (83.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9236983Z Completed 288.8 MiB/9.9 GiB (83.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9238160Z Completed 289.0 MiB/9.9 GiB (83.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9240333Z Completed 289.2 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9299422Z Completed 289.5 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9306073Z Completed 289.8 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9340579Z Completed 290.0 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9341736Z Completed 290.2 MiB/9.9 GiB (83.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9348155Z Completed 290.5 MiB/9.9 GiB (83.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9353413Z Completed 290.8 MiB/9.9 GiB (83.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9370841Z Completed 291.0 MiB/9.9 GiB (83.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9447560Z Completed 291.2 MiB/9.9 GiB (83.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9451634Z Completed 291.5 MiB/9.9 GiB (83.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9452922Z Completed 291.8 MiB/9.9 GiB (83.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9464449Z Completed 292.0 MiB/9.9 GiB (83.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9470653Z Completed 292.2 MiB/9.9 GiB (83.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9494433Z Completed 292.5 MiB/9.9 GiB (83.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9503627Z Completed 292.8 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9566755Z Completed 293.0 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9578459Z Completed 293.2 MiB/9.9 GiB (83.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9624698Z Completed 293.5 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9633815Z Completed 293.8 MiB/9.9 GiB (83.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9638190Z Completed 294.0 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9641980Z Completed 294.2 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9662240Z Completed 294.5 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9709627Z Completed 294.8 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9713271Z Completed 295.0 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9788786Z Completed 295.2 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9797307Z Completed 295.5 MiB/9.9 GiB (83.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9798443Z Completed 295.8 MiB/9.9 GiB (84.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9799516Z Completed 296.0 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9806177Z Completed 296.2 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9866103Z Completed 296.5 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9881203Z Completed 296.8 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9934753Z Completed 297.0 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9949360Z Completed 297.2 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:15.9964350Z Completed 297.5 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0005272Z Completed 297.8 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0014285Z Completed 298.0 MiB/9.9 GiB (84.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0038150Z Completed 298.2 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0068777Z Completed 298.5 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0096483Z Completed 298.8 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0132445Z Completed 299.0 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0133872Z Completed 299.2 MiB/9.9 GiB (84.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0151292Z Completed 299.5 MiB/9.9 GiB (84.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0165484Z Completed 299.8 MiB/9.9 GiB (84.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0196441Z Completed 300.0 MiB/9.9 GiB (84.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0206923Z Completed 300.2 MiB/9.9 GiB (84.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0219355Z Completed 300.5 MiB/9.9 GiB (84.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0229137Z Completed 300.8 MiB/9.9 GiB (84.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0265410Z Completed 301.0 MiB/9.9 GiB (84.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0284423Z Completed 301.2 MiB/9.9 GiB (84.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0305989Z Completed 301.5 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0325120Z Completed 301.8 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0341677Z Completed 302.0 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0361191Z Completed 302.2 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0371377Z Completed 302.5 MiB/9.9 GiB (84.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0393661Z Completed 302.8 MiB/9.9 GiB (84.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0418951Z Completed 303.0 MiB/9.9 GiB (84.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0428329Z Completed 303.2 MiB/9.9 GiB (84.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0460316Z Completed 303.5 MiB/9.9 GiB (84.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0466675Z Completed 303.8 MiB/9.9 GiB (84.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0481999Z Completed 304.0 MiB/9.9 GiB (84.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0523013Z Completed 304.2 MiB/9.9 GiB (84.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0527418Z Completed 304.5 MiB/9.9 GiB (84.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0542829Z Completed 304.8 MiB/9.9 GiB (84.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0555145Z Completed 305.0 MiB/9.9 GiB (84.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0563847Z Completed 305.2 MiB/9.9 GiB (84.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0576302Z Completed 305.5 MiB/9.9 GiB (84.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0580102Z Completed 305.8 MiB/9.9 GiB (84.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0592061Z Completed 306.0 MiB/9.9 GiB (85.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0598177Z Completed 306.2 MiB/9.9 GiB (85.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0609889Z Completed 306.5 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0614774Z Completed 306.8 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0648230Z Completed 307.0 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0678360Z Completed 307.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0761390Z Completed 307.5 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0769523Z Completed 307.8 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0777718Z Completed 308.0 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0784014Z Completed 308.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0794765Z Completed 308.5 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0799479Z Completed 308.8 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0806739Z Completed 309.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0817028Z Completed 309.2 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0823990Z Completed 309.5 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0830482Z Completed 309.8 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0833443Z Completed 310.0 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0840897Z Completed 310.2 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.0989350Z Completed 310.5 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1055141Z Completed 310.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1142357Z Completed 311.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1188960Z Completed 311.2 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1233339Z Completed 311.5 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1240541Z Completed 311.8 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1245963Z Completed 312.0 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1270996Z Completed 312.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1272323Z Completed 312.5 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1286486Z Completed 312.8 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1294420Z Completed 313.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1310163Z Completed 313.2 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1327159Z Completed 313.5 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1342041Z Completed 313.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1343337Z Completed 314.0 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1358803Z Completed 314.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1366180Z Completed 314.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1374435Z Completed 314.8 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1464736Z Completed 315.0 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1468444Z Completed 315.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1485018Z Completed 315.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1503637Z Completed 315.8 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1516443Z Completed 316.0 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1604850Z Completed 316.2 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1662061Z Completed 316.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1671723Z Completed 316.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1695479Z Completed 317.0 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1718514Z Completed 317.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1727271Z Completed 317.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1735264Z Completed 317.8 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1743411Z Completed 318.0 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1750155Z Completed 318.2 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1760894Z Completed 318.5 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1769878Z Completed 318.8 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1785912Z Completed 319.0 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.1964959Z Completed 319.2 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2135195Z Completed 319.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2144140Z Completed 319.8 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2155930Z Completed 320.0 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2168970Z Completed 320.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2193810Z Completed 320.5 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2214977Z Completed 320.8 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2234284Z Completed 321.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2257413Z Completed 321.2 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2263679Z Completed 321.5 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2271886Z Completed 321.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2516835Z Completed 322.0 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2522371Z Completed 322.2 MiB/9.9 GiB (85.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2527670Z Completed 322.5 MiB/9.9 GiB (85.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2533287Z Completed 322.8 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2538980Z Completed 323.0 MiB/9.9 GiB (85.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2545194Z Completed 323.2 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2574049Z Completed 323.5 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2578170Z Completed 323.8 MiB/9.9 GiB (85.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2594469Z Completed 324.0 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2596985Z Completed 324.2 MiB/9.9 GiB (85.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2606473Z Completed 324.5 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2620389Z Completed 324.8 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2628411Z Completed 325.0 MiB/9.9 GiB (85.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2636657Z Completed 325.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2644618Z Completed 325.5 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2651509Z Completed 325.8 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2659785Z Completed 326.0 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2667609Z Completed 326.2 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2675428Z Completed 326.5 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2682125Z Completed 326.8 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2844802Z Completed 327.0 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2849552Z Completed 327.2 MiB/9.9 GiB (85.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2855786Z Completed 327.5 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2861137Z Completed 327.8 MiB/9.9 GiB (85.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2867025Z Completed 328.0 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2872418Z Completed 328.2 MiB/9.9 GiB (85.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2877986Z Completed 328.5 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2887117Z Completed 328.8 MiB/9.9 GiB (85.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2901239Z Completed 329.0 MiB/9.9 GiB (85.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2907046Z Completed 329.2 MiB/9.9 GiB (85.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2916644Z Completed 329.5 MiB/9.9 GiB (86.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2920849Z Completed 329.8 MiB/9.9 GiB (86.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2928020Z Completed 330.0 MiB/9.9 GiB (86.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2934737Z Completed 330.2 MiB/9.9 GiB (86.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2941716Z Completed 330.5 MiB/9.9 GiB (86.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2949052Z Completed 330.8 MiB/9.9 GiB (86.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2955902Z Completed 331.0 MiB/9.9 GiB (86.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2962922Z Completed 331.2 MiB/9.9 GiB (86.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2969377Z Completed 331.5 MiB/9.9 GiB (86.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2975652Z Completed 331.8 MiB/9.9 GiB (86.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2990297Z Completed 332.0 MiB/9.9 GiB (86.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2991648Z Completed 332.2 MiB/9.9 GiB (86.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.2998042Z Completed 332.5 MiB/9.9 GiB (86.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3008803Z Completed 332.8 MiB/9.9 GiB (86.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3010890Z Completed 333.0 MiB/9.9 GiB (86.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3017533Z Completed 333.2 MiB/9.9 GiB (86.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3025439Z Completed 333.5 MiB/9.9 GiB (86.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3052592Z Completed 333.8 MiB/9.9 GiB (86.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3061437Z Completed 334.0 MiB/9.9 GiB (86.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3065802Z Completed 334.2 MiB/9.9 GiB (86.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3076247Z Completed 334.5 MiB/9.9 GiB (86.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3083934Z Completed 334.8 MiB/9.9 GiB (87.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3092162Z Completed 335.0 MiB/9.9 GiB (87.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3099300Z Completed 335.2 MiB/9.9 GiB (87.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3105335Z Completed 335.5 MiB/9.9 GiB (87.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3116010Z Completed 335.8 MiB/9.9 GiB (87.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3140950Z Completed 336.0 MiB/9.9 GiB (87.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3154764Z Completed 336.2 MiB/9.9 GiB (87.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3164672Z Completed 336.5 MiB/9.9 GiB (87.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3178611Z Completed 336.8 MiB/9.9 GiB (87.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3184998Z Completed 337.0 MiB/9.9 GiB (87.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3191930Z Completed 337.2 MiB/9.9 GiB (87.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3199257Z Completed 337.5 MiB/9.9 GiB (87.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3205816Z Completed 337.8 MiB/9.9 GiB (87.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3221850Z Completed 338.0 MiB/9.9 GiB (87.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3229767Z Completed 338.2 MiB/9.9 GiB (87.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3237085Z Completed 338.5 MiB/9.9 GiB (87.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3243836Z Completed 338.8 MiB/9.9 GiB (87.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3253929Z Completed 339.0 MiB/9.9 GiB (87.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3263626Z Completed 339.2 MiB/9.9 GiB (87.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3269429Z Completed 339.5 MiB/9.9 GiB (87.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3277151Z Completed 339.8 MiB/9.9 GiB (87.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3281316Z Completed 340.0 MiB/9.9 GiB (87.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3287735Z Completed 340.2 MiB/9.9 GiB (87.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3293913Z Completed 340.5 MiB/9.9 GiB (88.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3299943Z Completed 340.8 MiB/9.9 GiB (88.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3306612Z Completed 341.0 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3312519Z Completed 341.2 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3318738Z Completed 341.5 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3324724Z Completed 341.8 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3441663Z Completed 342.0 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3451552Z Completed 342.2 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3462289Z Completed 342.5 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3476117Z Completed 342.8 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3479086Z Completed 343.0 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3490520Z Completed 343.2 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3496229Z Completed 343.5 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3505737Z Completed 343.8 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3514893Z Completed 344.0 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3525776Z Completed 344.2 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3531500Z Completed 344.5 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3545842Z Completed 344.8 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3767451Z Completed 345.0 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3774611Z Completed 345.2 MiB/9.9 GiB (88.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3791848Z Completed 345.5 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3794018Z Completed 345.8 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3819881Z Completed 346.0 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3821870Z Completed 346.2 MiB/9.9 GiB (88.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3835221Z Completed 346.5 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3849033Z Completed 346.8 MiB/9.9 GiB (88.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3851662Z Completed 347.0 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3879260Z Completed 347.2 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3903514Z Completed 347.5 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3911926Z Completed 347.8 MiB/9.9 GiB (88.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3948581Z Completed 348.0 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3963752Z Completed 348.2 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.3983952Z Completed 348.5 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4001469Z Completed 348.8 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4008172Z Completed 349.0 MiB/9.9 GiB (88.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4031688Z Completed 349.2 MiB/9.9 GiB (88.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4067137Z Completed 349.5 MiB/9.9 GiB (88.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4069635Z Completed 349.8 MiB/9.9 GiB (88.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4077678Z Completed 350.0 MiB/9.9 GiB (88.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4105885Z Completed 350.2 MiB/9.9 GiB (88.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4134167Z Completed 350.5 MiB/9.9 GiB (88.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4148451Z Completed 350.8 MiB/9.9 GiB (88.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4152456Z Completed 351.0 MiB/9.9 GiB (88.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4154223Z Completed 351.2 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4196241Z Completed 351.5 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4242348Z Completed 351.8 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4258322Z Completed 352.0 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4261995Z Completed 352.2 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4283963Z Completed 352.5 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4332776Z Completed 352.8 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4337042Z Completed 353.0 MiB/9.9 GiB (88.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4342532Z Completed 353.2 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4358518Z Completed 353.5 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4379132Z Completed 353.8 MiB/9.9 GiB (89.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4438882Z Completed 354.0 MiB/9.9 GiB (89.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4443659Z Completed 354.2 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4459550Z Completed 354.5 MiB/9.9 GiB (88.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4460735Z Completed 354.8 MiB/9.9 GiB (89.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4466027Z Completed 355.0 MiB/9.9 GiB (89.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4476998Z Completed 355.2 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4522955Z Completed 355.5 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4545581Z Completed 355.8 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4553595Z Completed 356.0 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4565925Z Completed 356.2 MiB/9.9 GiB (89.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4583541Z Completed 356.5 MiB/9.9 GiB (89.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4601136Z Completed 356.8 MiB/9.9 GiB (89.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4605215Z Completed 357.0 MiB/9.9 GiB (89.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4637054Z Completed 357.2 MiB/9.9 GiB (89.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4640623Z Completed 357.5 MiB/9.9 GiB (89.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4649266Z Completed 357.8 MiB/9.9 GiB (89.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4675797Z Completed 358.0 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4700129Z Completed 358.2 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4721507Z Completed 358.5 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4746174Z Completed 358.8 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4747479Z Completed 359.0 MiB/9.9 GiB (89.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4755943Z Completed 359.2 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4774891Z Completed 359.5 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4804267Z Completed 359.8 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4815995Z Completed 360.0 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4847568Z Completed 360.2 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4883322Z Completed 360.5 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4891195Z Completed 360.8 MiB/9.9 GiB (89.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4892339Z Completed 361.0 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4894578Z Completed 361.2 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4953811Z Completed 361.5 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4981572Z Completed 361.8 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.4982916Z Completed 362.0 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5011587Z Completed 362.2 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5064230Z Completed 362.5 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5094448Z Completed 362.8 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5101514Z Completed 363.0 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5105273Z Completed 363.2 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5164187Z Completed 363.5 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5205997Z Completed 363.8 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5210400Z Completed 364.0 MiB/9.9 GiB (89.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5220412Z Completed 364.2 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5251415Z Completed 364.5 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5256693Z Completed 364.8 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5273569Z Completed 365.0 MiB/9.9 GiB (89.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5280983Z Completed 365.2 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5301986Z Completed 365.5 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5344421Z Completed 365.8 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5361661Z Completed 366.0 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5378244Z Completed 366.2 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5406168Z Completed 366.5 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5417685Z Completed 366.8 MiB/9.9 GiB (89.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5433955Z Completed 367.0 MiB/9.9 GiB (89.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5435968Z Completed 367.2 MiB/9.9 GiB (89.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5437972Z Completed 367.5 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5474006Z Completed 367.8 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5489661Z Completed 368.0 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5549300Z Completed 368.2 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5559615Z Completed 368.5 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5570331Z Completed 368.8 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5593051Z Completed 369.0 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5594591Z Completed 369.2 MiB/9.9 GiB (90.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5613054Z Completed 369.5 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5641499Z Completed 369.8 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5650391Z Completed 370.0 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5719721Z Completed 370.2 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5739479Z Completed 370.5 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5756704Z Completed 370.8 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5757783Z Completed 371.0 MiB/9.9 GiB (90.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5782458Z Completed 371.2 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5794418Z Completed 371.5 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5804514Z Completed 371.8 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5814725Z Completed 372.0 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5879615Z Completed 372.2 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5886743Z Completed 372.5 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5890449Z Completed 372.8 MiB/9.9 GiB (90.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5899918Z Completed 373.0 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5941199Z Completed 373.2 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5956521Z Completed 373.5 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5966500Z Completed 373.8 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.5967653Z Completed 374.0 MiB/9.9 GiB (90.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6039707Z Completed 374.2 MiB/9.9 GiB (90.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6050113Z Completed 374.5 MiB/9.9 GiB (90.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6053739Z Completed 374.8 MiB/9.9 GiB (90.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6068046Z Completed 375.0 MiB/9.9 GiB (90.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6071232Z Completed 375.2 MiB/9.9 GiB (90.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6081685Z Completed 375.5 MiB/9.9 GiB (90.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6100019Z Completed 375.8 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6124110Z Completed 376.0 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6175423Z Completed 376.2 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6201409Z Completed 376.5 MiB/9.9 GiB (90.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6204144Z Completed 376.8 MiB/9.9 GiB (90.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6205236Z Completed 377.0 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6218898Z Completed 377.2 MiB/9.9 GiB (90.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6233252Z Completed 377.5 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6260274Z Completed 377.8 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6261524Z Completed 378.0 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6330842Z Completed 378.2 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6335735Z Completed 378.5 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6343294Z Completed 378.8 MiB/9.9 GiB (90.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6352232Z Completed 379.0 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6368416Z Completed 379.2 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6397949Z Completed 379.5 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6415061Z Completed 379.8 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6416322Z Completed 380.0 MiB/9.9 GiB (90.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6457194Z Completed 380.2 MiB/9.9 GiB (90.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6464016Z Completed 380.5 MiB/9.9 GiB (90.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6474958Z Completed 380.8 MiB/9.9 GiB (90.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6488092Z Completed 381.0 MiB/9.9 GiB (90.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6521325Z Completed 381.2 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6545814Z Completed 381.5 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6555511Z Completed 381.8 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6582427Z Completed 382.0 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6598641Z Completed 382.2 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6608413Z Completed 382.5 MiB/9.9 GiB (91.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6630369Z Completed 382.8 MiB/9.9 GiB (91.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6640650Z Completed 383.0 MiB/9.9 GiB (91.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6677821Z Completed 383.2 MiB/9.9 GiB (91.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6683612Z Completed 383.5 MiB/9.9 GiB (91.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6690971Z Completed 383.8 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6709779Z Completed 384.0 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6729509Z Completed 384.2 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6743032Z Completed 384.5 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6765976Z Completed 384.8 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6797556Z Completed 385.0 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6811021Z Completed 385.2 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6838561Z Completed 385.5 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6851448Z Completed 385.8 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6852396Z Completed 386.0 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6860261Z Completed 386.2 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6902095Z Completed 386.5 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6911463Z Completed 386.8 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6947626Z Completed 387.0 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6959190Z Completed 387.2 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6965315Z Completed 387.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.6973599Z Completed 387.8 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7023307Z Completed 388.0 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7031250Z Completed 388.2 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7056360Z Completed 388.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7057342Z Completed 388.8 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7071297Z Completed 389.0 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7076336Z Completed 389.2 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7124924Z Completed 389.5 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7131002Z Completed 389.8 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7151414Z Completed 390.0 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7161932Z Completed 390.2 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7174405Z Completed 390.5 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7203524Z Completed 390.8 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7216917Z Completed 391.0 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7226949Z Completed 391.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7246421Z Completed 391.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7283949Z Completed 391.8 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7289774Z Completed 392.0 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7295526Z Completed 392.2 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7314818Z Completed 392.5 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7348603Z Completed 392.8 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7373109Z Completed 393.0 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7377913Z Completed 393.2 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7380716Z Completed 393.5 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7419312Z Completed 393.8 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7440130Z Completed 394.0 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7454498Z Completed 394.2 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7458458Z Completed 394.5 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7483745Z Completed 394.8 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7491272Z Completed 395.0 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7498725Z Completed 395.2 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7510139Z Completed 395.5 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7581455Z Completed 395.8 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7625531Z Completed 396.0 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7647290Z Completed 396.2 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7726704Z Completed 396.5 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7752387Z Completed 396.8 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7753881Z Completed 397.0 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7849132Z Completed 397.2 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7854048Z Completed 397.5 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7884507Z Completed 397.8 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7981819Z Completed 398.0 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7988027Z Completed 398.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.7992975Z Completed 398.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8060343Z Completed 398.8 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8065713Z Completed 399.0 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8104460Z Completed 399.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8132513Z Completed 399.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8133943Z Completed 399.8 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8204039Z Completed 400.0 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8215529Z Completed 400.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8268363Z Completed 400.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8296413Z Completed 400.8 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8347267Z Completed 401.0 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8376738Z Completed 401.2 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8389844Z Completed 401.5 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8403163Z Completed 401.8 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8447745Z Completed 402.0 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8557938Z Completed 402.2 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8673625Z Completed 402.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8686050Z Completed 402.8 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8784391Z Completed 403.0 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8795410Z Completed 403.2 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8868125Z Completed 403.5 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8895145Z Completed 403.8 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8897326Z Completed 404.0 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8910419Z Completed 404.2 MiB/9.9 GiB (91.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8914339Z Completed 404.5 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8924845Z Completed 404.8 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8936911Z Completed 405.0 MiB/9.9 GiB (91.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8949980Z Completed 405.2 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8954839Z Completed 405.5 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8964807Z Completed 405.8 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.8971583Z Completed 406.0 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9001960Z Completed 406.2 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9003417Z Completed 406.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9007596Z Completed 406.8 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9058716Z Completed 407.0 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9059967Z Completed 407.2 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9119660Z Completed 407.5 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9181828Z Completed 407.8 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9187040Z Completed 408.0 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9224027Z Completed 408.2 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9281057Z Completed 408.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9291591Z Completed 408.8 MiB/9.9 GiB (91.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9296661Z Completed 409.0 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9313911Z Completed 409.2 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9320944Z Completed 409.5 MiB/9.9 GiB (91.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9334953Z Completed 409.8 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9338194Z Completed 410.0 MiB/9.9 GiB (91.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9343543Z Completed 410.2 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9352222Z Completed 410.5 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9358839Z Completed 410.8 MiB/9.9 GiB (91.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9385325Z Completed 411.0 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9398069Z Completed 411.2 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9400726Z Completed 411.5 MiB/9.9 GiB (91.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9407212Z Completed 411.8 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9419997Z Completed 412.0 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9435973Z Completed 412.2 MiB/9.9 GiB (91.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9439763Z Completed 412.5 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9466519Z Completed 412.8 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9476364Z Completed 413.0 MiB/9.9 GiB (92.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9490138Z Completed 413.2 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9503107Z Completed 413.5 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9508800Z Completed 413.8 MiB/9.9 GiB (92.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9535796Z Completed 414.0 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9539974Z Completed 414.2 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9558857Z Completed 414.5 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9566935Z Completed 414.8 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9607750Z Completed 415.0 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9618250Z Completed 415.2 MiB/9.9 GiB (92.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9630634Z Completed 415.5 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9639146Z Completed 415.8 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9668688Z Completed 416.0 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9680137Z Completed 416.2 MiB/9.9 GiB (92.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9690015Z Completed 416.5 MiB/9.9 GiB (92.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9714595Z Completed 416.8 MiB/9.9 GiB (92.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9722536Z Completed 417.0 MiB/9.9 GiB (92.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9734582Z Completed 417.2 MiB/9.9 GiB (92.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9745654Z Completed 417.5 MiB/9.9 GiB (92.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9756301Z Completed 417.8 MiB/9.9 GiB (92.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9764356Z Completed 418.0 MiB/9.9 GiB (92.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9767553Z Completed 418.2 MiB/9.9 GiB (92.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9772570Z Completed 418.5 MiB/9.9 GiB (92.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9779330Z Completed 418.8 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9830936Z Completed 419.0 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9836249Z Completed 419.2 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9842166Z Completed 419.5 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9843238Z Completed 419.8 MiB/9.9 GiB (92.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9870039Z Completed 420.0 MiB/9.9 GiB (92.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9877369Z Completed 420.2 MiB/9.9 GiB (92.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9890194Z Completed 420.5 MiB/9.9 GiB (92.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9892549Z Completed 420.8 MiB/9.9 GiB (92.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9905469Z Completed 421.0 MiB/9.9 GiB (92.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9909166Z Completed 421.2 MiB/9.9 GiB (92.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9921483Z Completed 421.5 MiB/9.9 GiB (93.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9924862Z Completed 421.8 MiB/9.9 GiB (93.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9935541Z Completed 422.0 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9944106Z Completed 422.2 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9955506Z Completed 422.5 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9966146Z Completed 422.8 MiB/9.9 GiB (93.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9969099Z Completed 423.0 MiB/9.9 GiB (93.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9983210Z Completed 423.2 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9986117Z Completed 423.5 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:16.9998542Z Completed 423.8 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0169202Z Completed 424.0 MiB/9.9 GiB (93.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0195270Z Completed 424.2 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0207266Z Completed 424.5 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0213735Z Completed 424.8 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0220007Z Completed 425.0 MiB/9.9 GiB (93.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0228920Z Completed 425.2 MiB/9.9 GiB (93.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0235307Z Completed 425.5 MiB/9.9 GiB (93.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0241378Z Completed 425.8 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0249733Z Completed 426.0 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0257751Z Completed 426.2 MiB/9.9 GiB (93.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0266572Z Completed 426.5 MiB/9.9 GiB (93.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0277341Z Completed 426.8 MiB/9.9 GiB (93.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0284645Z Completed 427.0 MiB/9.9 GiB (93.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0305972Z Completed 427.2 MiB/9.9 GiB (93.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0307460Z Completed 427.5 MiB/9.9 GiB (93.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0311558Z Completed 427.8 MiB/9.9 GiB (93.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0344461Z Completed 428.0 MiB/9.9 GiB (93.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0347891Z Completed 428.2 MiB/9.9 GiB (93.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0356354Z Completed 428.5 MiB/9.9 GiB (93.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0363096Z Completed 428.8 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0419469Z Completed 429.0 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0425045Z Completed 429.2 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0436970Z Completed 429.5 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0462255Z Completed 429.8 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0468110Z Completed 430.0 MiB/9.9 GiB (93.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0475909Z Completed 430.2 MiB/9.9 GiB (93.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0511175Z Completed 430.5 MiB/9.9 GiB (93.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0517099Z Completed 430.8 MiB/9.9 GiB (93.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0520771Z Completed 431.0 MiB/9.9 GiB (93.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0546957Z Completed 431.2 MiB/9.9 GiB (93.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0552827Z Completed 431.5 MiB/9.9 GiB (93.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0570903Z Completed 431.8 MiB/9.9 GiB (93.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0591117Z Completed 432.0 MiB/9.9 GiB (93.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0592444Z Completed 432.2 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0644422Z Completed 432.5 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0666772Z Completed 432.8 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0669910Z Completed 433.0 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0674545Z Completed 433.2 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0744871Z Completed 433.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0751734Z Completed 433.8 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0753047Z Completed 434.0 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0781339Z Completed 434.2 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0813834Z Completed 434.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0833804Z Completed 434.8 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0874619Z Completed 435.0 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0881992Z Completed 435.2 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0923715Z Completed 435.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0947601Z Completed 435.8 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0950568Z Completed 436.0 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.0976419Z Completed 436.2 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1001071Z Completed 436.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1033824Z Completed 436.8 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1081022Z Completed 437.0 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1082202Z Completed 437.2 MiB/9.9 GiB (94.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1098483Z Completed 437.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1103689Z Completed 437.8 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1121704Z Completed 438.0 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1174914Z Completed 438.2 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1176067Z Completed 438.5 MiB/9.9 GiB (94.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1188146Z Completed 438.8 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1226521Z Completed 439.0 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1227785Z Completed 439.2 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1276953Z Completed 439.5 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1287763Z Completed 439.8 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1305120Z Completed 440.0 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1307248Z Completed 440.2 MiB/9.9 GiB (94.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1321823Z Completed 440.5 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1353752Z Completed 440.8 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1373409Z Completed 441.0 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1386226Z Completed 441.2 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1421812Z Completed 441.5 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1451891Z Completed 441.8 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1468776Z Completed 442.0 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1470508Z Completed 442.2 MiB/9.9 GiB (94.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1482798Z Completed 442.5 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1515329Z Completed 442.8 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1553653Z Completed 443.0 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1563528Z Completed 443.2 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1572394Z Completed 443.5 MiB/9.9 GiB (94.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1586849Z Completed 443.8 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1595562Z Completed 444.0 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1618232Z Completed 444.2 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1633306Z Completed 444.5 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1656868Z Completed 444.8 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1694266Z Completed 445.0 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1711295Z Completed 445.2 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1717601Z Completed 445.5 MiB/9.9 GiB (94.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1725995Z Completed 445.8 MiB/9.9 GiB (94.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1760175Z Completed 446.0 MiB/9.9 GiB (94.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1762235Z Completed 446.2 MiB/9.9 GiB (94.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1772981Z Completed 446.5 MiB/9.9 GiB (94.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1803655Z Completed 446.8 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1816777Z Completed 447.0 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1837941Z Completed 447.2 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1842507Z Completed 447.5 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1875012Z Completed 447.8 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1911392Z Completed 448.0 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1917894Z Completed 448.2 MiB/9.9 GiB (94.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1925854Z Completed 448.5 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1938677Z Completed 448.8 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1948527Z Completed 449.0 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.1982374Z Completed 449.2 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2023046Z Completed 449.5 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2031893Z Completed 449.8 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2050400Z Completed 450.0 MiB/9.9 GiB (94.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2060073Z Completed 450.2 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2084844Z Completed 450.5 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2096755Z Completed 450.8 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2106446Z Completed 451.0 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2115453Z Completed 451.2 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2167381Z Completed 451.5 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2196142Z Completed 451.8 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2197236Z Completed 452.0 MiB/9.9 GiB (94.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2212585Z Completed 452.2 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2245401Z Completed 452.5 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2258691Z Completed 452.8 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2270807Z Completed 453.0 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2288842Z Completed 453.2 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2328134Z Completed 453.5 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2346873Z Completed 453.8 MiB/9.9 GiB (95.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2360360Z Completed 454.0 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2371033Z Completed 454.2 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2392293Z Completed 454.5 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2396836Z Completed 454.8 MiB/9.9 GiB (95.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2402334Z Completed 455.0 MiB/9.9 GiB (95.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2410695Z Completed 455.2 MiB/9.9 GiB (95.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2444462Z Completed 455.5 MiB/9.9 GiB (95.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2448186Z Completed 455.8 MiB/9.9 GiB (95.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2472255Z Completed 456.0 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2499013Z Completed 456.2 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2530767Z Completed 456.5 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2534042Z Completed 456.8 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2537853Z Completed 457.0 MiB/9.9 GiB (95.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2546532Z Completed 457.2 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2574726Z Completed 457.5 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2601705Z Completed 457.8 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2605374Z Completed 458.0 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2613676Z Completed 458.2 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2655213Z Completed 458.5 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2683915Z Completed 458.8 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2685232Z Completed 459.0 MiB/9.9 GiB (95.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2696973Z Completed 459.2 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2718125Z Completed 459.5 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2739746Z Completed 459.8 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2740873Z Completed 460.0 MiB/9.9 GiB (95.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2768196Z Completed 460.2 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2774991Z Completed 460.5 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2813366Z Completed 460.8 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2814423Z Completed 461.0 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2851458Z Completed 461.2 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2863333Z Completed 461.5 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2893573Z Completed 461.8 MiB/9.9 GiB (95.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2894611Z Completed 462.0 MiB/9.9 GiB (95.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2896379Z Completed 462.2 MiB/9.9 GiB (95.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2906364Z Completed 462.5 MiB/9.9 GiB (95.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2907170Z Completed 462.8 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.2964929Z Completed 463.0 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3001994Z Completed 463.2 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3004867Z Completed 463.5 MiB/9.9 GiB (95.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3034229Z Completed 463.8 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3040732Z Completed 464.0 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3056381Z Completed 464.2 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3057752Z Completed 464.5 MiB/9.9 GiB (95.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3060601Z Completed 464.8 MiB/9.9 GiB (95.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3066104Z Completed 465.0 MiB/9.9 GiB (95.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3115809Z Completed 465.2 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3118753Z Completed 465.5 MiB/9.9 GiB (95.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3154689Z Completed 465.8 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3170454Z Completed 466.0 MiB/9.9 GiB (95.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3180875Z Completed 466.2 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3183220Z Completed 466.5 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3187769Z Completed 466.8 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3221111Z Completed 467.0 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3247259Z Completed 467.2 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3289315Z Completed 467.5 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3297516Z Completed 467.8 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3298841Z Completed 468.0 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3305767Z Completed 468.2 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3339011Z Completed 468.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3359042Z Completed 468.8 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3388064Z Completed 469.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3395991Z Completed 469.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3415049Z Completed 469.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3432925Z Completed 469.8 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3443151Z Completed 470.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3447665Z Completed 470.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3496575Z Completed 470.5 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3497726Z Completed 470.8 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3525304Z Completed 471.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3542057Z Completed 471.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3557538Z Completed 471.5 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3572512Z Completed 471.8 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3604217Z Completed 472.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3619740Z Completed 472.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3637354Z Completed 472.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3643114Z Completed 472.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3651327Z Completed 473.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3700260Z Completed 473.2 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3706551Z Completed 473.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3717625Z Completed 473.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3754230Z Completed 474.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3760619Z Completed 474.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3813041Z Completed 474.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3814164Z Completed 474.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3815216Z Completed 475.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3844448Z Completed 475.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3871234Z Completed 475.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3897810Z Completed 475.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3911396Z Completed 476.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3917959Z Completed 476.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3930040Z Completed 476.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3939116Z Completed 476.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3965088Z Completed 477.0 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3976684Z Completed 477.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.3977514Z Completed 477.5 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4013652Z Completed 477.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4019464Z Completed 478.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4020995Z Completed 478.2 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4113569Z Completed 478.5 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4120224Z Completed 478.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4123227Z Completed 479.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4234049Z Completed 479.2 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4258251Z Completed 479.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4266930Z Completed 479.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4329685Z Completed 480.0 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4356565Z Completed 480.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4366365Z Completed 480.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4446116Z Completed 480.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4468773Z Completed 481.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4478593Z Completed 481.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4554596Z Completed 481.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4591701Z Completed 481.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4594150Z Completed 482.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4643400Z Completed 482.2 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4685043Z Completed 482.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4757625Z Completed 482.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4801906Z Completed 483.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4844844Z Completed 483.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4851597Z Completed 483.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4890096Z Completed 483.8 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4893462Z Completed 484.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4932883Z Completed 484.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.4934005Z Completed 484.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5065309Z Completed 484.8 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5071782Z Completed 485.0 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5151887Z Completed 485.2 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5206031Z Completed 485.5 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5212991Z Completed 485.8 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5215073Z Completed 486.0 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5228289Z Completed 486.2 MiB/9.9 GiB (96.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5237827Z Completed 486.5 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5246657Z Completed 486.8 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5257148Z Completed 487.0 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5265752Z Completed 487.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5277568Z Completed 487.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5286256Z Completed 487.8 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5294556Z Completed 488.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5303352Z Completed 488.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5306435Z Completed 488.5 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5385118Z Completed 488.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5414183Z Completed 489.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5484386Z Completed 489.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5523184Z Completed 489.5 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5529761Z Completed 489.8 MiB/9.9 GiB (96.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5545188Z Completed 490.0 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5546374Z Completed 490.2 MiB/9.9 GiB (96.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5554857Z Completed 490.5 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5569545Z Completed 490.8 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5581395Z Completed 491.0 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5587442Z Completed 491.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5591967Z Completed 491.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5603265Z Completed 491.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5609327Z Completed 492.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5615939Z Completed 492.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5626727Z Completed 492.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5724665Z Completed 492.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5787135Z Completed 493.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5794958Z Completed 493.2 MiB/9.9 GiB (96.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5802112Z Completed 493.5 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5808970Z Completed 493.8 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5814588Z Completed 494.0 MiB/9.9 GiB (96.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5833062Z Completed 494.2 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5840380Z Completed 494.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5847076Z Completed 494.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5855517Z Completed 495.0 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5864562Z Completed 495.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5950233Z Completed 495.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5958102Z Completed 495.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5969674Z Completed 496.0 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5978274Z Completed 496.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5989341Z Completed 496.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.5999217Z Completed 496.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6009750Z Completed 497.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6040704Z Completed 497.2 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6047834Z Completed 497.5 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6055244Z Completed 497.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6075265Z Completed 498.0 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6153760Z Completed 498.2 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6167381Z Completed 498.5 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6175798Z Completed 498.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6183713Z Completed 499.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6191778Z Completed 499.2 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6200749Z Completed 499.5 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6209442Z Completed 499.8 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6218136Z Completed 500.0 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6444906Z Completed 500.2 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6451673Z Completed 500.5 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6459049Z Completed 500.8 MiB/9.9 GiB (96.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6470574Z Completed 501.0 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6486878Z Completed 501.2 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6505330Z Completed 501.5 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6508990Z Completed 501.8 MiB/9.9 GiB (96.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6523063Z Completed 502.0 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6524989Z Completed 502.2 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6565810Z Completed 502.5 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6568135Z Completed 502.8 MiB/9.9 GiB (96.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6570370Z Completed 503.0 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6602999Z Completed 503.2 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6607713Z Completed 503.5 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6608424Z Completed 503.8 MiB/9.9 GiB (96.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6615349Z Completed 504.0 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6631933Z Completed 504.2 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6634815Z Completed 504.5 MiB/9.9 GiB (96.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6646349Z Completed 504.8 MiB/9.9 GiB (97.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6649033Z Completed 505.0 MiB/9.9 GiB (97.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6661191Z Completed 505.2 MiB/9.9 GiB (97.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6666081Z Completed 505.5 MiB/9.9 GiB (97.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6678516Z Completed 505.8 MiB/9.9 GiB (97.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6682287Z Completed 506.0 MiB/9.9 GiB (97.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6689392Z Completed 506.2 MiB/9.9 GiB (97.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6701645Z Completed 506.5 MiB/9.9 GiB (97.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6706063Z Completed 506.8 MiB/9.9 GiB (97.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6718424Z Completed 507.0 MiB/9.9 GiB (97.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6729903Z Completed 507.2 MiB/9.9 GiB (97.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6736612Z Completed 507.5 MiB/9.9 GiB (97.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6743465Z Completed 507.8 MiB/9.9 GiB (97.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6750082Z Completed 508.0 MiB/9.9 GiB (97.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6758069Z Completed 508.2 MiB/9.9 GiB (97.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6765208Z Completed 508.5 MiB/9.9 GiB (97.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6773207Z Completed 508.8 MiB/9.9 GiB (97.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6780346Z Completed 509.0 MiB/9.9 GiB (97.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6787425Z Completed 509.2 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6795041Z Completed 509.5 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6843348Z Completed 509.8 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6855430Z Completed 510.0 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6869298Z Completed 510.2 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6877068Z Completed 510.5 MiB/9.9 GiB (97.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6885183Z Completed 510.8 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6895990Z Completed 511.0 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6916968Z Completed 511.2 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6939278Z Completed 511.5 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6947773Z Completed 511.8 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.6953754Z Completed 512.0 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7025372Z Completed 512.2 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7033845Z Completed 512.5 MiB/9.9 GiB (97.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7063236Z Completed 512.8 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7072505Z Completed 513.0 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7081243Z Completed 513.2 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7104711Z Completed 513.5 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7108666Z Completed 513.8 MiB/9.9 GiB (97.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7119673Z Completed 514.0 MiB/9.9 GiB (97.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7131246Z Completed 514.2 MiB/9.9 GiB (97.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7147187Z Completed 514.5 MiB/9.9 GiB (97.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7155261Z Completed 514.8 MiB/9.9 GiB (97.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7163473Z Completed 515.0 MiB/9.9 GiB (98.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7194779Z Completed 515.2 MiB/9.9 GiB (98.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7200624Z Completed 515.5 MiB/9.9 GiB (98.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7208559Z Completed 515.8 MiB/9.9 GiB (98.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7218765Z Completed 516.0 MiB/9.9 GiB (98.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7225777Z Completed 516.2 MiB/9.9 GiB (98.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7232509Z Completed 516.5 MiB/9.9 GiB (98.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7240948Z Completed 516.8 MiB/9.9 GiB (98.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7246792Z Completed 517.0 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7301498Z Completed 517.2 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7306895Z Completed 517.5 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7312078Z Completed 517.8 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7317138Z Completed 518.0 MiB/9.9 GiB (98.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7322021Z Completed 518.2 MiB/9.9 GiB (98.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7327515Z Completed 518.5 MiB/9.9 GiB (98.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7332498Z Completed 518.8 MiB/9.9 GiB (98.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7337753Z Completed 519.0 MiB/9.9 GiB (98.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7343276Z Completed 519.2 MiB/9.9 GiB (98.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7348878Z Completed 519.5 MiB/9.9 GiB (98.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7369584Z Completed 519.8 MiB/9.9 GiB (98.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7375682Z Completed 520.0 MiB/9.9 GiB (98.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7381915Z Completed 520.2 MiB/9.9 GiB (98.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7393730Z Completed 520.5 MiB/9.9 GiB (98.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7410663Z Completed 520.8 MiB/9.9 GiB (98.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7417705Z Completed 521.0 MiB/9.9 GiB (98.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7430264Z Completed 521.2 MiB/9.9 GiB (98.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7433582Z Completed 521.5 MiB/9.9 GiB (98.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7451213Z Completed 521.8 MiB/9.9 GiB (98.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7453114Z Completed 522.0 MiB/9.9 GiB (98.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7454330Z Completed 522.2 MiB/9.9 GiB (98.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7486776Z Completed 522.5 MiB/9.9 GiB (98.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7489554Z Completed 522.8 MiB/9.9 GiB (98.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7496233Z Completed 523.0 MiB/9.9 GiB (98.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7528227Z Completed 523.2 MiB/9.9 GiB (98.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7531162Z Completed 523.5 MiB/9.9 GiB (98.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7537368Z Completed 523.8 MiB/9.9 GiB (98.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7564066Z Completed 524.0 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7566394Z Completed 524.2 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7583203Z Completed 524.5 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7590433Z Completed 524.8 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7600767Z Completed 525.0 MiB/9.9 GiB (99.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7610575Z Completed 525.2 MiB/9.9 GiB (99.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7626899Z Completed 525.5 MiB/9.9 GiB (99.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7628728Z Completed 525.8 MiB/9.9 GiB (99.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7644068Z Completed 526.0 MiB/9.9 GiB (99.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7646718Z Completed 526.2 MiB/9.9 GiB (99.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7668111Z Completed 526.5 MiB/9.9 GiB (99.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7674511Z Completed 526.8 MiB/9.9 GiB (99.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7682232Z Completed 527.0 MiB/9.9 GiB (99.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7690924Z Completed 527.2 MiB/9.9 GiB (99.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7698745Z Completed 527.5 MiB/9.9 GiB (99.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7708077Z Completed 527.8 MiB/9.9 GiB (99.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7715704Z Completed 528.0 MiB/9.9 GiB (99.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7724904Z Completed 528.2 MiB/9.9 GiB (99.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7731765Z Completed 528.5 MiB/9.9 GiB (99.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7744827Z Completed 528.8 MiB/9.9 GiB (99.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7747706Z Completed 529.0 MiB/9.9 GiB (99.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7759908Z Completed 529.2 MiB/9.9 GiB (99.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7765228Z Completed 529.5 MiB/9.9 GiB (99.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7776501Z Completed 529.8 MiB/9.9 GiB (99.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7779542Z Completed 530.0 MiB/9.9 GiB (99.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7787329Z Completed 530.2 MiB/9.9 GiB (99.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7794281Z Completed 530.5 MiB/9.9 GiB (99.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7802402Z Completed 530.8 MiB/9.9 GiB (99.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7812814Z Completed 531.0 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7836642Z Completed 531.2 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7846920Z Completed 531.5 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7852891Z Completed 531.8 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7946390Z Completed 532.0 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7961430Z Completed 532.2 MiB/9.9 GiB (99.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7969769Z Completed 532.5 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.7989894Z Completed 532.8 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8003528Z Completed 533.0 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8025757Z Completed 533.2 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8031155Z Completed 533.5 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8086142Z Completed 533.8 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8097550Z Completed 534.0 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8114426Z Completed 534.2 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8132423Z Completed 534.5 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8140803Z Completed 534.8 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8147402Z Completed 535.0 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8213101Z Completed 535.2 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8246789Z Completed 535.5 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8254867Z Completed 535.8 MiB/9.9 GiB (99.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8264177Z Completed 536.0 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8281503Z Completed 536.2 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8290093Z Completed 536.5 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8314852Z Completed 536.8 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8348684Z Completed 537.0 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8367656Z Completed 537.2 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8386690Z Completed 537.5 MiB/9.9 GiB (99.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8392900Z Completed 537.8 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8412800Z Completed 538.0 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8414269Z Completed 538.2 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8467703Z Completed 538.5 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8479793Z Completed 538.8 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8516086Z Completed 539.0 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8520466Z Completed 539.2 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8527473Z Completed 539.5 MiB/9.9 GiB (100.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8532072Z Completed 539.8 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8583512Z Completed 540.0 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8593278Z Completed 540.2 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8616565Z Completed 540.5 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8652238Z Completed 540.8 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8658058Z Completed 541.0 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8664464Z Completed 541.2 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8698137Z Completed 541.5 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8730250Z Completed 541.8 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8740529Z Completed 542.0 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8760720Z Completed 542.2 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8763241Z Completed 542.5 MiB/9.9 GiB (100.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8768559Z Completed 542.8 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8773206Z Completed 543.0 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8819158Z Completed 543.2 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8827146Z Completed 543.5 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8871823Z Completed 543.8 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8875648Z Completed 544.0 MiB/9.9 GiB (100.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8882931Z Completed 544.2 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8886911Z Completed 544.5 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8923058Z Completed 544.8 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8952009Z Completed 545.0 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8959902Z Completed 545.2 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8967341Z Completed 545.5 MiB/9.9 GiB (100.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8973645Z Completed 545.8 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.8987838Z Completed 546.0 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9031157Z Completed 546.2 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9057285Z Completed 546.5 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9071029Z Completed 546.8 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9072162Z Completed 547.0 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9089581Z Completed 547.2 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9108583Z Completed 547.5 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9137969Z Completed 547.8 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9139996Z Completed 548.0 MiB/9.9 GiB (100.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9145834Z Completed 548.2 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9185597Z Completed 548.5 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9205143Z Completed 548.8 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9231458Z Completed 549.0 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9247956Z Completed 549.2 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9253569Z Completed 549.5 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9289621Z Completed 549.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9291622Z Completed 550.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9324710Z Completed 550.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9328373Z Completed 550.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9362235Z Completed 550.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9363498Z Completed 551.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9385515Z Completed 551.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9404099Z Completed 551.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9461201Z Completed 551.8 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9466956Z Completed 552.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9494472Z Completed 552.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9510011Z Completed 552.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9521774Z Completed 552.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9560300Z Completed 553.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9597926Z Completed 553.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9645253Z Completed 553.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9645995Z Completed 553.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9671741Z Completed 554.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9700318Z Completed 554.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9714195Z Completed 554.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9744353Z Completed 554.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9797304Z Completed 555.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9812529Z Completed 555.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9825414Z Completed 555.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9852870Z Completed 555.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9860717Z Completed 556.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9861691Z Completed 556.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9921943Z Completed 556.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9960327Z Completed 556.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9963530Z Completed 557.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9964773Z Completed 557.2 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9968021Z Completed 557.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:17.9995683Z Completed 557.8 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0034503Z Completed 558.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0046362Z Completed 558.2 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0054230Z Completed 558.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0079872Z Completed 558.8 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0085247Z Completed 559.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0107790Z Completed 559.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0111991Z Completed 559.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0169385Z Completed 559.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0185973Z Completed 560.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0191279Z Completed 560.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0201658Z Completed 560.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0229943Z Completed 560.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0234037Z Completed 561.0 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0243699Z Completed 561.2 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0272427Z Completed 561.5 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0275020Z Completed 561.8 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0280414Z Completed 562.0 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0309347Z Completed 562.2 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0405619Z Completed 562.5 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0407887Z Completed 562.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0465616Z Completed 563.0 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0546692Z Completed 563.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0613908Z Completed 563.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0693506Z Completed 563.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0708034Z Completed 564.0 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0717898Z Completed 564.2 MiB/9.9 GiB (100.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0724276Z Completed 564.5 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0730592Z Completed 564.8 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0736950Z Completed 565.0 MiB/9.9 GiB (100.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0746038Z Completed 565.2 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0753768Z Completed 565.5 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0756199Z Completed 565.8 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0763310Z Completed 566.0 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0769535Z Completed 566.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0777328Z Completed 566.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0813604Z Completed 566.8 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0853849Z Completed 567.0 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0900234Z Completed 567.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0927493Z Completed 567.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0970916Z Completed 567.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0976531Z Completed 568.0 MiB/9.9 GiB (100.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0992346Z Completed 568.2 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.0996431Z Completed 568.5 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1006325Z Completed 568.8 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1024650Z Completed 569.0 MiB/9.9 GiB (100.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1029844Z Completed 569.2 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1055644Z Completed 569.5 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1064345Z Completed 569.8 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1071424Z Completed 570.0 MiB/9.9 GiB (100.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1080854Z Completed 570.2 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1106115Z Completed 570.5 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1116421Z Completed 570.8 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1117341Z Completed 571.0 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1159297Z Completed 571.2 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1165302Z Completed 571.5 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1187635Z Completed 571.8 MiB/9.9 GiB (101.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1199319Z Completed 572.0 MiB/9.9 GiB (101.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1206295Z Completed 572.2 MiB/9.9 GiB (101.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1211748Z Completed 572.5 MiB/9.9 GiB (101.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1217922Z Completed 572.8 MiB/9.9 GiB (101.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1223364Z Completed 573.0 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1249634Z Completed 573.2 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1253945Z Completed 573.5 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1265603Z Completed 573.8 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1272087Z Completed 574.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1280175Z Completed 574.2 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1291362Z Completed 574.5 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1297206Z Completed 574.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1426900Z Completed 575.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1441274Z Completed 575.2 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1447994Z Completed 575.5 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1455583Z Completed 575.8 MiB/9.9 GiB (101.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1461806Z Completed 576.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1467959Z Completed 576.2 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1474743Z Completed 576.5 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1480179Z Completed 576.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1498920Z Completed 577.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1507316Z Completed 577.2 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1516204Z Completed 577.5 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1624246Z Completed 577.8 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1639564Z Completed 578.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1647823Z Completed 578.2 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1657639Z Completed 578.5 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1665382Z Completed 578.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1673170Z Completed 579.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1693443Z Completed 579.2 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1699942Z Completed 579.5 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1706628Z Completed 579.8 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1712796Z Completed 580.0 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1868485Z Completed 580.2 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1897391Z Completed 580.5 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1912459Z Completed 580.8 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1927269Z Completed 581.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1943807Z Completed 581.2 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1952447Z Completed 581.5 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1981587Z Completed 581.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.1994598Z Completed 582.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2005606Z Completed 582.2 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2044579Z Completed 582.5 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2118258Z Completed 582.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2125168Z Completed 583.0 MiB/9.9 GiB (101.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2136338Z Completed 583.2 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2143965Z Completed 583.5 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2150048Z Completed 583.8 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2167573Z Completed 584.0 MiB/9.9 GiB (101.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2181519Z Completed 584.2 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2190133Z Completed 584.5 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2207077Z Completed 584.8 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2212435Z Completed 585.0 MiB/9.9 GiB (101.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2225167Z Completed 585.2 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2227884Z Completed 585.5 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2233220Z Completed 585.8 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2238046Z Completed 586.0 MiB/9.9 GiB (101.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2243398Z Completed 586.2 MiB/9.9 GiB (101.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2248542Z Completed 586.5 MiB/9.9 GiB (101.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2253283Z Completed 586.8 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2258272Z Completed 587.0 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2263832Z Completed 587.2 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2268992Z Completed 587.5 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2340357Z Completed 587.8 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2347092Z Completed 588.0 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2354765Z Completed 588.2 MiB/9.9 GiB (101.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2361969Z Completed 588.5 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2370781Z Completed 588.8 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2378980Z Completed 589.0 MiB/9.9 GiB (101.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2385155Z Completed 589.2 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2394510Z Completed 589.5 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2404432Z Completed 589.8 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2411846Z Completed 590.0 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2478319Z Completed 590.2 MiB/9.9 GiB (102.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2484053Z Completed 590.5 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2489381Z Completed 590.8 MiB/9.9 GiB (102.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2494983Z Completed 591.0 MiB/9.9 GiB (102.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2500875Z Completed 591.2 MiB/9.9 GiB (102.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2506032Z Completed 591.5 MiB/9.9 GiB (102.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2511755Z Completed 591.8 MiB/9.9 GiB (102.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2517069Z Completed 592.0 MiB/9.9 GiB (102.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2523061Z Completed 592.2 MiB/9.9 GiB (102.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2529146Z Completed 592.5 MiB/9.9 GiB (102.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2540609Z Completed 592.8 MiB/9.9 GiB (102.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2559499Z Completed 593.0 MiB/9.9 GiB (102.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2567451Z Completed 593.2 MiB/9.9 GiB (102.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2577511Z Completed 593.5 MiB/9.9 GiB (102.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2584306Z Completed 593.8 MiB/9.9 GiB (102.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2592872Z Completed 594.0 MiB/9.9 GiB (102.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2602177Z Completed 594.2 MiB/9.9 GiB (102.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2608113Z Completed 594.5 MiB/9.9 GiB (102.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2620972Z Completed 594.8 MiB/9.9 GiB (102.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2639128Z Completed 595.0 MiB/9.9 GiB (102.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2658760Z Completed 595.2 MiB/9.9 GiB (102.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2660005Z Completed 595.5 MiB/9.9 GiB (102.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2665972Z Completed 595.8 MiB/9.9 GiB (102.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2680006Z Completed 596.0 MiB/9.9 GiB (102.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2681551Z Completed 596.2 MiB/9.9 GiB (102.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2697897Z Completed 596.5 MiB/9.9 GiB (102.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2700983Z Completed 596.8 MiB/9.9 GiB (102.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2721340Z Completed 597.0 MiB/9.9 GiB (102.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2731577Z Completed 597.2 MiB/9.9 GiB (102.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2748258Z Completed 597.5 MiB/9.9 GiB (102.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2754891Z Completed 597.8 MiB/9.9 GiB (102.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2762473Z Completed 598.0 MiB/9.9 GiB (102.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2770865Z Completed 598.2 MiB/9.9 GiB (102.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2778299Z Completed 598.5 MiB/9.9 GiB (102.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2788424Z Completed 598.8 MiB/9.9 GiB (102.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2797327Z Completed 599.0 MiB/9.9 GiB (102.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2812361Z Completed 599.2 MiB/9.9 GiB (102.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2813819Z Completed 599.5 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2820026Z Completed 599.8 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2852572Z Completed 600.0 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2860782Z Completed 600.2 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2873652Z Completed 600.5 MiB/9.9 GiB (103.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2877327Z Completed 600.8 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2890629Z Completed 601.0 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2900849Z Completed 601.2 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2914581Z Completed 601.5 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2935497Z Completed 601.8 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2941610Z Completed 602.0 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.2979888Z Completed 602.2 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3037797Z Completed 602.5 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3046746Z Completed 602.8 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3057898Z Completed 603.0 MiB/9.9 GiB (103.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3065984Z Completed 603.2 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3073754Z Completed 603.5 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3094257Z Completed 603.8 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3102019Z Completed 604.0 MiB/9.9 GiB (103.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3110426Z Completed 604.2 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3125205Z Completed 604.5 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3130720Z Completed 604.8 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3148310Z Completed 605.0 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3153989Z Completed 605.2 MiB/9.9 GiB (103.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3160726Z Completed 605.5 MiB/9.9 GiB (103.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3168264Z Completed 605.8 MiB/9.9 GiB (103.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3205152Z Completed 606.0 MiB/9.9 GiB (103.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3206144Z Completed 606.2 MiB/9.9 GiB (103.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3206907Z Completed 606.5 MiB/9.9 GiB (103.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3207535Z Completed 606.8 MiB/9.9 GiB (103.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3208142Z Completed 607.0 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3236782Z Completed 607.2 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3246706Z Completed 607.5 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3255447Z Completed 607.8 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3263491Z Completed 608.0 MiB/9.9 GiB (103.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3272380Z Completed 608.2 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3280863Z Completed 608.5 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3290927Z Completed 608.8 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3297380Z Completed 609.0 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3306053Z Completed 609.2 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3312480Z Completed 609.5 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3391901Z Completed 609.8 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3399748Z Completed 610.0 MiB/9.9 GiB (103.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3408613Z Completed 610.2 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3419073Z Completed 610.5 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3424029Z Completed 610.8 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3431159Z Completed 611.0 MiB/9.9 GiB (103.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3438914Z Completed 611.2 MiB/9.9 GiB (103.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3445724Z Completed 611.5 MiB/9.9 GiB (103.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3454678Z Completed 611.8 MiB/9.9 GiB (103.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3469316Z Completed 612.0 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3473500Z Completed 612.2 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3483436Z Completed 612.5 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3561948Z Completed 612.8 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3568525Z Completed 613.0 MiB/9.9 GiB (103.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3584518Z Completed 613.2 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3592341Z Completed 613.5 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3599805Z Completed 613.8 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3607776Z Completed 614.0 MiB/9.9 GiB (104.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3615303Z Completed 614.2 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3643243Z Completed 614.5 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3651168Z Completed 614.8 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3658612Z Completed 615.0 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3677234Z Completed 615.2 MiB/9.9 GiB (104.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3685121Z Completed 615.5 MiB/9.9 GiB (104.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3693411Z Completed 615.8 MiB/9.9 GiB (104.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3700518Z Completed 616.0 MiB/9.9 GiB (104.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3709752Z Completed 616.2 MiB/9.9 GiB (104.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3719190Z Completed 616.5 MiB/9.9 GiB (104.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3723867Z Completed 616.8 MiB/9.9 GiB (104.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3731724Z Completed 617.0 MiB/9.9 GiB (104.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3759746Z Completed 617.2 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3761204Z Completed 617.5 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3777958Z Completed 617.8 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3784379Z Completed 618.0 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3795060Z Completed 618.2 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3878891Z Completed 618.5 MiB/9.9 GiB (104.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3887928Z Completed 618.8 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3899089Z Completed 619.0 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3906264Z Completed 619.2 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3913235Z Completed 619.5 MiB/9.9 GiB (104.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3918514Z Completed 619.8 MiB/9.9 GiB (104.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3924293Z Completed 620.0 MiB/9.9 GiB (104.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3930580Z Completed 620.2 MiB/9.9 GiB (104.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3944647Z Completed 620.5 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3950913Z Completed 620.8 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3963506Z Completed 621.0 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.3994082Z Completed 621.2 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4004479Z Completed 621.5 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4011182Z Completed 621.8 MiB/9.9 GiB (104.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4032357Z Completed 622.0 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4033535Z Completed 622.2 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4041256Z Completed 622.5 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4051524Z Completed 622.8 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4060779Z Completed 623.0 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4070859Z Completed 623.2 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4076963Z Completed 623.5 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4089996Z Completed 623.8 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4093431Z Completed 624.0 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4108538Z Completed 624.2 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4112462Z Completed 624.5 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4136662Z Completed 624.8 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4140912Z Completed 625.0 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4150045Z Completed 625.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4174232Z Completed 625.5 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4195676Z Completed 625.8 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4203688Z Completed 626.0 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4211560Z Completed 626.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4217221Z Completed 626.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4305119Z Completed 626.8 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4311788Z Completed 627.0 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4321974Z Completed 627.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4332095Z Completed 627.5 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4339110Z Completed 627.8 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4346662Z Completed 628.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4353736Z Completed 628.2 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4361693Z Completed 628.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4369464Z Completed 628.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4386981Z Completed 629.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4457567Z Completed 629.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4477340Z Completed 629.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4486589Z Completed 629.8 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4494685Z Completed 630.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4504194Z Completed 630.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4512602Z Completed 630.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4520628Z Completed 630.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4538865Z Completed 631.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4549941Z Completed 631.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4558238Z Completed 631.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4599814Z Completed 631.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4610490Z Completed 632.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4618603Z Completed 632.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4626064Z Completed 632.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4633438Z Completed 632.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4641071Z Completed 633.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4651426Z Completed 633.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4681236Z Completed 633.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4699339Z Completed 633.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4720716Z Completed 634.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4778120Z Completed 634.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4789160Z Completed 634.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4794893Z Completed 634.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4806057Z Completed 635.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4812588Z Completed 635.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4819729Z Completed 635.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4827387Z Completed 635.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4837130Z Completed 636.0 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4853645Z Completed 636.2 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4861875Z Completed 636.5 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4864151Z Completed 636.8 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4898048Z Completed 637.0 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4913204Z Completed 637.2 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4926076Z Completed 637.5 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4941096Z Completed 637.8 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4971533Z Completed 638.0 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4977356Z Completed 638.2 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.4986853Z Completed 638.5 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5000064Z Completed 638.8 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5005540Z Completed 639.0 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5011900Z Completed 639.2 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5019568Z Completed 639.5 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5041586Z Completed 639.8 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5223013Z Completed 640.0 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5227966Z Completed 640.2 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5358327Z Completed 640.5 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5378153Z Completed 640.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5520540Z Completed 641.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5533561Z Completed 641.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5562930Z Completed 641.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5676204Z Completed 641.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5687163Z Completed 642.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5703520Z Completed 642.2 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5709881Z Completed 642.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5717010Z Completed 642.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5723664Z Completed 643.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5730249Z Completed 643.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5736557Z Completed 643.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5750473Z Completed 643.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5758192Z Completed 644.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5772055Z Completed 644.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5797846Z Completed 644.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5812171Z Completed 644.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5826715Z Completed 645.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5843668Z Completed 645.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5879096Z Completed 645.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5903301Z Completed 645.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5915926Z Completed 646.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5929256Z Completed 646.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.5937683Z Completed 646.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6355938Z Completed 646.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6360849Z Completed 647.0 MiB/9.9 GiB (104.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6367228Z Completed 647.2 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6372952Z Completed 647.5 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6377775Z Completed 647.8 MiB/9.9 GiB (104.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6382832Z Completed 648.0 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6396718Z Completed 648.2 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6404619Z Completed 648.5 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6418025Z Completed 648.8 MiB/9.9 GiB (104.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6419343Z Completed 649.0 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6432883Z Completed 649.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6443112Z Completed 649.5 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6453452Z Completed 649.8 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6457102Z Completed 650.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6463658Z Completed 650.2 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6469374Z Completed 650.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6476709Z Completed 650.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6489193Z Completed 651.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6508872Z Completed 651.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6515688Z Completed 651.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6555358Z Completed 651.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6556875Z Completed 652.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6560207Z Completed 652.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6561398Z Completed 652.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6565421Z Completed 652.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6583813Z Completed 653.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6601714Z Completed 653.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6603231Z Completed 653.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6604016Z Completed 653.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6614433Z Completed 654.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6631721Z Completed 654.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6672559Z Completed 654.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6706116Z Completed 654.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6714655Z Completed 655.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6728170Z Completed 655.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6733782Z Completed 655.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6755265Z Completed 655.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6764489Z Completed 656.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6772009Z Completed 656.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6778727Z Completed 656.5 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6787108Z Completed 656.8 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6794740Z Completed 657.0 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6801651Z Completed 657.2 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.6809362Z Completed 657.5 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7277197Z Completed 657.8 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7285599Z Completed 658.0 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7294692Z Completed 658.2 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7300786Z Completed 658.5 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7307483Z Completed 658.8 MiB/9.9 GiB (105.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7325577Z Completed 659.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7337284Z Completed 659.2 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7347525Z Completed 659.5 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7352790Z Completed 659.8 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7366886Z Completed 660.0 MiB/9.9 GiB (105.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7371474Z Completed 660.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7393081Z Completed 660.5 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7402006Z Completed 660.8 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7423926Z Completed 661.0 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7430036Z Completed 661.2 MiB/9.9 GiB (105.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7441709Z Completed 661.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7467403Z Completed 661.8 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7474903Z Completed 662.0 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7477721Z Completed 662.2 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7490841Z Completed 662.5 MiB/9.9 GiB (105.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7493054Z Completed 662.8 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7502917Z Completed 663.0 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7512384Z Completed 663.2 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7519700Z Completed 663.5 MiB/9.9 GiB (105.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7527676Z Completed 663.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7535321Z Completed 664.0 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7541131Z Completed 664.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7547402Z Completed 664.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7553615Z Completed 664.8 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7628918Z Completed 665.0 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7654722Z Completed 665.2 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7658933Z Completed 665.5 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7672340Z Completed 665.8 MiB/9.9 GiB (105.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7677178Z Completed 666.0 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7687059Z Completed 666.2 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7695168Z Completed 666.5 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7704836Z Completed 666.8 MiB/9.9 GiB (105.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7715189Z Completed 667.0 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7723249Z Completed 667.2 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7731124Z Completed 667.5 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7747256Z Completed 667.8 MiB/9.9 GiB (105.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7765358Z Completed 668.0 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7769073Z Completed 668.2 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7787531Z Completed 668.5 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7798147Z Completed 668.8 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7805166Z Completed 669.0 MiB/9.9 GiB (105.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7821094Z Completed 669.2 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7835090Z Completed 669.5 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7841293Z Completed 669.8 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7882962Z Completed 670.0 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7906834Z Completed 670.2 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7910281Z Completed 670.5 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7953726Z Completed 670.8 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7956114Z Completed 671.0 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7966675Z Completed 671.2 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7986204Z Completed 671.5 MiB/9.9 GiB (105.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.7993234Z Completed 671.8 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8003579Z Completed 672.0 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8028583Z Completed 672.2 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8040771Z Completed 672.5 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8047473Z Completed 672.8 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8062250Z Completed 673.0 MiB/9.9 GiB (106.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8075649Z Completed 673.2 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8077751Z Completed 673.5 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8102164Z Completed 673.8 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8136567Z Completed 674.0 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8144380Z Completed 674.2 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8161750Z Completed 674.5 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8176729Z Completed 674.8 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8183118Z Completed 675.0 MiB/9.9 GiB (106.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8199944Z Completed 675.2 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8216874Z Completed 675.5 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8231054Z Completed 675.8 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8237645Z Completed 676.0 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8243300Z Completed 676.2 MiB/9.9 GiB (106.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8252489Z Completed 676.5 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8278861Z Completed 676.8 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8283386Z Completed 677.0 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8285455Z Completed 677.2 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8314596Z Completed 677.5 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8342459Z Completed 677.8 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8347840Z Completed 678.0 MiB/9.9 GiB (106.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8374287Z Completed 678.2 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8395562Z Completed 678.5 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8407262Z Completed 678.8 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8411374Z Completed 679.0 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8436774Z Completed 679.2 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8449419Z Completed 679.5 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8458958Z Completed 679.8 MiB/9.9 GiB (106.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8477378Z Completed 680.0 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8485819Z Completed 680.2 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8497452Z Completed 680.5 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8513769Z Completed 680.8 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8523940Z Completed 681.0 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8527253Z Completed 681.2 MiB/9.9 GiB (106.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8559633Z Completed 681.5 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8560344Z Completed 681.8 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8570097Z Completed 682.0 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8585543Z Completed 682.2 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8622130Z Completed 682.5 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8626803Z Completed 682.8 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8645451Z Completed 683.0 MiB/9.9 GiB (106.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8652918Z Completed 683.2 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8689137Z Completed 683.5 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8699311Z Completed 683.8 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8727407Z Completed 684.0 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8734391Z Completed 684.2 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8751990Z Completed 684.5 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8775411Z Completed 684.8 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8801740Z Completed 685.0 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8811089Z Completed 685.2 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8850337Z Completed 685.5 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8856149Z Completed 685.8 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8858122Z Completed 686.0 MiB/9.9 GiB (106.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8876928Z Completed 686.2 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8899700Z Completed 686.5 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8935160Z Completed 686.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8977015Z Completed 687.0 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8977787Z Completed 687.2 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8978465Z Completed 687.5 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.8999850Z Completed 687.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9018425Z Completed 688.0 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9045652Z Completed 688.2 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9059465Z Completed 688.5 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9074750Z Completed 688.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9091247Z Completed 689.0 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9111264Z Completed 689.2 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9137346Z Completed 689.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9139856Z Completed 689.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9167330Z Completed 690.0 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9202478Z Completed 690.2 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9252262Z Completed 690.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9259819Z Completed 690.8 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9261292Z Completed 691.0 MiB/9.9 GiB (106.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9269077Z Completed 691.2 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9276093Z Completed 691.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9293861Z Completed 691.8 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9334312Z Completed 692.0 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9338677Z Completed 692.2 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9346420Z Completed 692.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9381641Z Completed 692.8 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9399788Z Completed 693.0 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9426977Z Completed 693.2 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9441374Z Completed 693.5 MiB/9.9 GiB (106.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9463080Z Completed 693.8 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9488652Z Completed 694.0 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9491978Z Completed 694.2 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9494568Z Completed 694.5 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9517850Z Completed 694.8 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9527315Z Completed 695.0 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9579720Z Completed 695.2 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9592158Z Completed 695.5 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9606525Z Completed 695.8 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9618143Z Completed 696.0 MiB/9.9 GiB (107.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9621207Z Completed 696.2 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9630933Z Completed 696.5 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9661778Z Completed 696.8 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9663269Z Completed 697.0 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9702383Z Completed 697.2 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9721703Z Completed 697.5 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9741644Z Completed 697.8 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9751094Z Completed 698.0 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9791781Z Completed 698.2 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9793203Z Completed 698.5 MiB/9.9 GiB (107.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9799970Z Completed 698.8 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9816943Z Completed 699.0 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9817887Z Completed 699.2 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9858384Z Completed 699.5 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9890600Z Completed 699.8 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9915231Z Completed 700.0 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9919312Z Completed 700.2 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9920400Z Completed 700.5 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9921510Z Completed 700.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9957422Z Completed 701.0 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:18.9994654Z Completed 701.2 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0019448Z Completed 701.5 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0036937Z Completed 701.8 MiB/9.9 GiB (107.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0038503Z Completed 702.0 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0055972Z Completed 702.2 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0057224Z Completed 702.5 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0110614Z Completed 702.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0119229Z Completed 703.0 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0141536Z Completed 703.2 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0154817Z Completed 703.5 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0162007Z Completed 703.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0178723Z Completed 704.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0209641Z Completed 704.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0241421Z Completed 704.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0247412Z Completed 704.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0277218Z Completed 705.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0284414Z Completed 705.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0285585Z Completed 705.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0335295Z Completed 705.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0358500Z Completed 706.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0366939Z Completed 706.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0385786Z Completed 706.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0389912Z Completed 706.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0395353Z Completed 707.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0450412Z Completed 707.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0471166Z Completed 707.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0483256Z Completed 707.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0484132Z Completed 708.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0490169Z Completed 708.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0496478Z Completed 708.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0555686Z Completed 708.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0561082Z Completed 709.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0603857Z Completed 709.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0610043Z Completed 709.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0617473Z Completed 709.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0627723Z Completed 710.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0673778Z Completed 710.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0716186Z Completed 710.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0733237Z Completed 710.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0748097Z Completed 711.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0786215Z Completed 711.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0817822Z Completed 711.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0836508Z Completed 711.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0862032Z Completed 712.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0867736Z Completed 712.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0870447Z Completed 712.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0939371Z Completed 712.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0959623Z Completed 713.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0975833Z Completed 713.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0982517Z Completed 713.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.0987039Z Completed 713.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1044947Z Completed 714.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1079371Z Completed 714.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1104760Z Completed 714.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1116037Z Completed 714.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1154466Z Completed 715.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1157992Z Completed 715.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1167510Z Completed 715.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1231036Z Completed 715.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1238128Z Completed 716.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1266199Z Completed 716.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1305525Z Completed 716.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1326221Z Completed 716.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1343249Z Completed 717.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1348595Z Completed 717.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1354908Z Completed 717.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1399258Z Completed 717.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1424772Z Completed 718.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1451950Z Completed 718.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1454619Z Completed 718.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1489162Z Completed 718.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1490736Z Completed 719.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1506985Z Completed 719.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1538465Z Completed 719.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1545455Z Completed 719.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1579146Z Completed 720.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1581672Z Completed 720.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1611336Z Completed 720.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1630821Z Completed 720.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1636784Z Completed 721.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1643784Z Completed 721.2 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1651039Z Completed 721.5 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1661123Z Completed 721.8 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1675222Z Completed 722.0 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1723474Z Completed 722.2 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1802473Z Completed 722.5 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1839763Z Completed 722.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1931631Z Completed 723.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.1976222Z Completed 723.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2033738Z Completed 723.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2041584Z Completed 723.8 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2051034Z Completed 724.0 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2070283Z Completed 724.2 MiB/9.9 GiB (107.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2074421Z Completed 724.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2098819Z Completed 724.8 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2102602Z Completed 725.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2105455Z Completed 725.2 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2111580Z Completed 725.5 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2157144Z Completed 725.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2170289Z Completed 726.0 MiB/9.9 GiB (107.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2173357Z Completed 726.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2209468Z Completed 726.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2210830Z Completed 726.8 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2225884Z Completed 727.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2231786Z Completed 727.2 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2241663Z Completed 727.5 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2289867Z Completed 727.8 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2292983Z Completed 728.0 MiB/9.9 GiB (107.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2296113Z Completed 728.2 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2305938Z Completed 728.5 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2316590Z Completed 728.8 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2326285Z Completed 729.0 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2335530Z Completed 729.2 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2398866Z Completed 729.5 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2418729Z Completed 729.8 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2424658Z Completed 730.0 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2433691Z Completed 730.2 MiB/9.9 GiB (107.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2440601Z Completed 730.5 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2446897Z Completed 730.8 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2459110Z Completed 731.0 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2465201Z Completed 731.2 MiB/9.9 GiB (107.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2469439Z Completed 731.5 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2471544Z Completed 731.8 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2478407Z Completed 732.0 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2504050Z Completed 732.2 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2509195Z Completed 732.5 MiB/9.9 GiB (107.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2523726Z Completed 732.8 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2530816Z Completed 733.0 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2550264Z Completed 733.2 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2556440Z Completed 733.5 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2583972Z Completed 733.8 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2590276Z Completed 734.0 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2595866Z Completed 734.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2604331Z Completed 734.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2606215Z Completed 734.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2615330Z Completed 735.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2625865Z Completed 735.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2644614Z Completed 735.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2659634Z Completed 735.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2669395Z Completed 736.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2671185Z Completed 736.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2678235Z Completed 736.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2685114Z Completed 736.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2814322Z Completed 737.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2927706Z Completed 737.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2944046Z Completed 737.5 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2955679Z Completed 737.8 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2969528Z Completed 738.0 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.2980275Z Completed 738.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3025258Z Completed 738.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3026387Z Completed 738.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3034254Z Completed 739.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3042945Z Completed 739.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3056779Z Completed 739.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3069451Z Completed 739.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3092575Z Completed 740.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3110715Z Completed 740.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3120776Z Completed 740.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3145931Z Completed 740.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3158839Z Completed 741.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3194108Z Completed 741.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3209934Z Completed 741.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3217187Z Completed 741.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3224269Z Completed 742.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3238774Z Completed 742.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3344962Z Completed 742.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3350283Z Completed 742.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3357360Z Completed 743.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3366820Z Completed 743.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3373671Z Completed 743.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3380876Z Completed 743.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3390332Z Completed 744.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3399910Z Completed 744.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3423453Z Completed 744.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3440629Z Completed 744.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3504848Z Completed 745.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3517069Z Completed 745.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3527657Z Completed 745.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3537624Z Completed 745.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3549476Z Completed 746.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3556669Z Completed 746.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3609162Z Completed 746.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3615897Z Completed 746.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3622906Z Completed 747.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3628719Z Completed 747.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3856818Z Completed 747.5 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3868943Z Completed 747.8 MiB/9.9 GiB (107.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3891522Z Completed 748.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3921133Z Completed 748.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3930231Z Completed 748.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3937579Z Completed 748.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3965077Z Completed 749.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3967363Z Completed 749.2 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.3996639Z Completed 749.5 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4008799Z Completed 749.8 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4013180Z Completed 750.0 MiB/9.9 GiB (108.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4034407Z Completed 750.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4048516Z Completed 750.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4074629Z Completed 750.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4083578Z Completed 751.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4116005Z Completed 751.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4151513Z Completed 751.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4152776Z Completed 751.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4156457Z Completed 752.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4166241Z Completed 752.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4195347Z Completed 752.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4262502Z Completed 752.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4264580Z Completed 753.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4275232Z Completed 753.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4282144Z Completed 753.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4303088Z Completed 753.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4328837Z Completed 754.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4384830Z Completed 754.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4393919Z Completed 754.5 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4407275Z Completed 754.8 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4417329Z Completed 755.0 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4427133Z Completed 755.2 MiB/9.9 GiB (108.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4443426Z Completed 755.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4444394Z Completed 755.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4513694Z Completed 756.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4529202Z Completed 756.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4531205Z Completed 756.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4539232Z Completed 756.8 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4546888Z Completed 757.0 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4568049Z Completed 757.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4578940Z Completed 757.5 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4596301Z Completed 757.8 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4639287Z Completed 758.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4650767Z Completed 758.2 MiB/9.9 GiB (108.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4656930Z Completed 758.5 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4664350Z Completed 758.8 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4668755Z Completed 759.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4736604Z Completed 759.2 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4743914Z Completed 759.5 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4750350Z Completed 759.8 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4751455Z Completed 760.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4771154Z Completed 760.2 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4818034Z Completed 760.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4843981Z Completed 760.8 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4873685Z Completed 761.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4876172Z Completed 761.2 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4878845Z Completed 761.5 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4884638Z Completed 761.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4900578Z Completed 762.0 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4942997Z Completed 762.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.4985896Z Completed 762.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5006857Z Completed 762.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5014404Z Completed 763.0 MiB/9.9 GiB (108.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5041988Z Completed 763.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5043603Z Completed 763.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5065288Z Completed 763.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5095047Z Completed 764.0 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5117667Z Completed 764.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5129225Z Completed 764.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5146597Z Completed 764.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5162448Z Completed 765.0 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5183263Z Completed 765.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5210383Z Completed 765.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5224857Z Completed 765.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5254317Z Completed 766.0 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5259112Z Completed 766.2 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5264278Z Completed 766.5 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5285869Z Completed 766.8 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5328662Z Completed 767.0 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5356659Z Completed 767.2 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5377479Z Completed 767.5 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5387607Z Completed 767.8 MiB/9.9 GiB (108.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5409450Z Completed 768.0 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5410534Z Completed 768.2 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5419794Z Completed 768.5 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5421217Z Completed 768.8 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5466957Z Completed 769.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5496551Z Completed 769.2 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5513160Z Completed 769.5 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5525990Z Completed 769.8 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5554389Z Completed 770.0 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5577591Z Completed 770.2 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5580196Z Completed 770.5 MiB/9.9 GiB (108.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5591958Z Completed 770.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5611437Z Completed 771.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5650783Z Completed 771.2 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5671124Z Completed 771.5 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5672277Z Completed 771.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5692126Z Completed 772.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5700008Z Completed 772.2 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5741351Z Completed 772.5 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5771358Z Completed 772.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5791942Z Completed 773.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5793699Z Completed 773.2 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5810433Z Completed 773.5 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5826495Z Completed 773.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5838988Z Completed 774.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5846463Z Completed 774.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5919915Z Completed 774.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5946601Z Completed 774.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5966812Z Completed 775.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.5983257Z Completed 775.2 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6025346Z Completed 775.5 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6029000Z Completed 775.8 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6035540Z Completed 776.0 MiB/9.9 GiB (108.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6037177Z Completed 776.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6056818Z Completed 776.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6081028Z Completed 776.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6091974Z Completed 777.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6124135Z Completed 777.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6130824Z Completed 777.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6145989Z Completed 777.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6165248Z Completed 778.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6183925Z Completed 778.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6195563Z Completed 778.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6242091Z Completed 778.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6243385Z Completed 779.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6249181Z Completed 779.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6280939Z Completed 779.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6281831Z Completed 779.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6298895Z Completed 780.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6362603Z Completed 780.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6367830Z Completed 780.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6394416Z Completed 780.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6419077Z Completed 781.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6437459Z Completed 781.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6443331Z Completed 781.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6481253Z Completed 781.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6504393Z Completed 782.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6572280Z Completed 782.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6600589Z Completed 782.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6612175Z Completed 782.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6617482Z Completed 783.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6648732Z Completed 783.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6674957Z Completed 783.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6680330Z Completed 783.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6703929Z Completed 784.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6759170Z Completed 784.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6782403Z Completed 784.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6806767Z Completed 784.8 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6807912Z Completed 785.0 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6818716Z Completed 785.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6821227Z Completed 785.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6859703Z Completed 785.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6903653Z Completed 786.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6911542Z Completed 786.2 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6915592Z Completed 786.5 MiB/9.9 GiB (108.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6936942Z Completed 786.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6943832Z Completed 787.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6945248Z Completed 787.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.6999828Z Completed 787.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7006243Z Completed 787.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7020728Z Completed 788.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7022954Z Completed 788.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7059400Z Completed 788.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7070709Z Completed 788.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7112367Z Completed 789.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7113632Z Completed 789.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7126571Z Completed 789.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7141957Z Completed 789.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7189057Z Completed 790.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7190285Z Completed 790.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7237038Z Completed 790.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7250953Z Completed 790.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7264971Z Completed 791.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7336264Z Completed 791.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7338062Z Completed 791.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7349099Z Completed 791.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7349988Z Completed 792.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7362960Z Completed 792.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7409677Z Completed 792.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7459541Z Completed 792.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7464058Z Completed 793.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7475908Z Completed 793.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7479481Z Completed 793.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7505211Z Completed 793.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7564766Z Completed 794.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7592100Z Completed 794.2 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7621462Z Completed 794.5 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7629807Z Completed 794.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7648864Z Completed 795.0 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7660176Z Completed 795.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7703687Z Completed 795.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7704886Z Completed 795.8 MiB/9.9 GiB (108.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7705600Z Completed 796.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7751666Z Completed 796.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7756804Z Completed 796.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7768979Z Completed 796.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7781522Z Completed 797.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7831039Z Completed 797.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7842284Z Completed 797.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7847963Z Completed 797.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7875767Z Completed 798.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7876981Z Completed 798.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7909701Z Completed 798.5 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7933769Z Completed 798.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7963328Z Completed 799.0 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.7974277Z Completed 799.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8006065Z Completed 799.5 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8010365Z Completed 799.8 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8035805Z Completed 800.0 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8041932Z Completed 800.2 MiB/9.9 GiB (108.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8062431Z Completed 800.5 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8063679Z Completed 800.8 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8088697Z Completed 801.0 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8124074Z Completed 801.2 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8136012Z Completed 801.5 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8168181Z Completed 801.8 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8169166Z Completed 802.0 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8175454Z Completed 802.2 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8204155Z Completed 802.5 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8227515Z Completed 802.8 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8228871Z Completed 803.0 MiB/9.9 GiB (109.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8245000Z Completed 803.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8280293Z Completed 803.5 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8281472Z Completed 803.8 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8295917Z Completed 804.0 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8328360Z Completed 804.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8346028Z Completed 804.5 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8352345Z Completed 804.8 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8361637Z Completed 805.0 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8404260Z Completed 805.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8409939Z Completed 805.5 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8434564Z Completed 805.8 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8441357Z Completed 806.0 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8444771Z Completed 806.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8464784Z Completed 806.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8505676Z Completed 806.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8560185Z Completed 807.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8561307Z Completed 807.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8574253Z Completed 807.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8577075Z Completed 807.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8599243Z Completed 808.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8605673Z Completed 808.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8662216Z Completed 808.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8725783Z Completed 808.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8731433Z Completed 809.0 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8752258Z Completed 809.2 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8764842Z Completed 809.5 MiB/9.9 GiB (109.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8769676Z Completed 809.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8778283Z Completed 810.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8825614Z Completed 810.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8839416Z Completed 810.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8871513Z Completed 810.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8877433Z Completed 811.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8879006Z Completed 811.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8909679Z Completed 811.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8955091Z Completed 811.8 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8963649Z Completed 812.0 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8966441Z Completed 812.2 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8970449Z Completed 812.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8978737Z Completed 812.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.8990476Z Completed 813.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9053471Z Completed 813.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9058118Z Completed 813.5 MiB/9.9 GiB (109.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9074813Z Completed 813.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9102068Z Completed 814.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9126269Z Completed 814.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9127896Z Completed 814.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9158544Z Completed 814.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9165654Z Completed 815.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9168452Z Completed 815.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9221535Z Completed 815.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9230261Z Completed 815.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9263207Z Completed 816.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9269284Z Completed 816.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9277475Z Completed 816.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9285782Z Completed 816.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9302125Z Completed 817.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9328444Z Completed 817.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9334400Z Completed 817.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9357230Z Completed 817.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9367500Z Completed 818.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9377128Z Completed 818.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9381732Z Completed 818.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9390983Z Completed 818.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9421141Z Completed 819.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9444798Z Completed 819.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9506156Z Completed 819.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9516730Z Completed 819.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9518920Z Completed 820.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9535172Z Completed 820.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9541278Z Completed 820.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9551545Z Completed 820.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9574711Z Completed 821.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9695827Z Completed 821.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9704051Z Completed 821.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9706567Z Completed 821.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9720523Z Completed 822.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9789304Z Completed 822.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9816023Z Completed 822.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9835707Z Completed 822.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9847927Z Completed 823.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9916420Z Completed 823.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9926504Z Completed 823.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9929449Z Completed 823.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9970462Z Completed 824.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:19.9997843Z Completed 824.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0047354Z Completed 824.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0048671Z Completed 824.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0052103Z Completed 825.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0113728Z Completed 825.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0136204Z Completed 825.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0170087Z Completed 825.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0188573Z Completed 826.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0208158Z Completed 826.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0221168Z Completed 826.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0242997Z Completed 826.8 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0253505Z Completed 827.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0268151Z Completed 827.2 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0278808Z Completed 827.5 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0306600Z Completed 827.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0318241Z Completed 828.0 MiB/9.9 GiB (109.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0330074Z Completed 828.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0333229Z Completed 828.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0346244Z Completed 828.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0373853Z Completed 829.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0390015Z Completed 829.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0412036Z Completed 829.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0442297Z Completed 829.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0462388Z Completed 830.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0494230Z Completed 830.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0528404Z Completed 830.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0533392Z Completed 830.8 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0535226Z Completed 831.0 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0558254Z Completed 831.2 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0577612Z Completed 831.5 MiB/9.9 GiB (109.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0583934Z Completed 831.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0588082Z Completed 832.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0637794Z Completed 832.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0644959Z Completed 832.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0655063Z Completed 832.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0668159Z Completed 833.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0700021Z Completed 833.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0707009Z Completed 833.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0782943Z Completed 833.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0787041Z Completed 834.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0788475Z Completed 834.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0810176Z Completed 834.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0834445Z Completed 834.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0881117Z Completed 835.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0890991Z Completed 835.2 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0896162Z Completed 835.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0906034Z Completed 835.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0918279Z Completed 836.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0967933Z Completed 836.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0996724Z Completed 836.5 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.0997722Z Completed 836.8 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1001469Z Completed 837.0 MiB/9.9 GiB (109.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1004428Z Completed 837.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1010452Z Completed 837.5 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1066988Z Completed 837.8 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1101290Z Completed 838.0 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1111858Z Completed 838.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1119807Z Completed 838.5 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1124992Z Completed 838.8 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1130830Z Completed 839.0 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1165848Z Completed 839.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1186428Z Completed 839.5 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1202420Z Completed 839.8 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1212976Z Completed 840.0 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1250310Z Completed 840.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1289827Z Completed 840.5 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1307685Z Completed 840.8 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1313424Z Completed 841.0 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1320700Z Completed 841.2 MiB/9.9 GiB (109.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1346908Z Completed 841.5 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1360689Z Completed 841.8 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1375738Z Completed 842.0 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1404642Z Completed 842.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1414548Z Completed 842.5 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1415976Z Completed 842.8 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1477159Z Completed 843.0 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1481734Z Completed 843.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1485196Z Completed 843.5 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1510366Z Completed 843.8 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1521114Z Completed 844.0 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1530641Z Completed 844.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1586383Z Completed 844.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1588498Z Completed 844.8 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1611002Z Completed 845.0 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1630428Z Completed 845.2 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1635010Z Completed 845.5 MiB/9.9 GiB (109.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1645025Z Completed 845.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1688815Z Completed 846.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1704697Z Completed 846.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1727618Z Completed 846.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1731257Z Completed 846.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1756548Z Completed 847.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1778858Z Completed 847.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1807999Z Completed 847.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1827350Z Completed 847.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1839026Z Completed 848.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1844311Z Completed 848.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1879789Z Completed 848.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1896782Z Completed 848.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1933446Z Completed 849.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1954476Z Completed 849.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1960572Z Completed 849.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1975823Z Completed 849.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.1997565Z Completed 850.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2024079Z Completed 850.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2055918Z Completed 850.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2097841Z Completed 850.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2111181Z Completed 851.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2120641Z Completed 851.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2129259Z Completed 851.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2146074Z Completed 851.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2152006Z Completed 852.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2219118Z Completed 852.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2230929Z Completed 852.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2232048Z Completed 852.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2233422Z Completed 853.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2241144Z Completed 853.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2267066Z Completed 853.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2331500Z Completed 853.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2332789Z Completed 854.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2335546Z Completed 854.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2342971Z Completed 854.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2368087Z Completed 854.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2376456Z Completed 855.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2426743Z Completed 855.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2456521Z Completed 855.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2460666Z Completed 855.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2463249Z Completed 856.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2515104Z Completed 856.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2528205Z Completed 856.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2562318Z Completed 856.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2566611Z Completed 857.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2590660Z Completed 857.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2595860Z Completed 857.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2646970Z Completed 857.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2653004Z Completed 858.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2696553Z Completed 858.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2721721Z Completed 858.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2744620Z Completed 858.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2756787Z Completed 859.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2772488Z Completed 859.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2773829Z Completed 859.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2827478Z Completed 859.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2837986Z Completed 860.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2847139Z Completed 860.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2891488Z Completed 860.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2893073Z Completed 860.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2897374Z Completed 861.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2979751Z Completed 861.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.2984675Z Completed 861.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3000257Z Completed 861.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3009194Z Completed 862.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3044370Z Completed 862.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3068031Z Completed 862.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3105274Z Completed 862.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3151257Z Completed 863.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3164729Z Completed 863.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3165967Z Completed 863.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3214474Z Completed 863.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3242321Z Completed 864.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3243663Z Completed 864.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3331932Z Completed 864.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3333309Z Completed 864.8 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3339465Z Completed 865.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3360630Z Completed 865.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3390279Z Completed 865.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3402231Z Completed 865.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3445065Z Completed 866.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3467797Z Completed 866.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3471792Z Completed 866.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3540009Z Completed 866.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3563075Z Completed 867.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3564101Z Completed 867.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3564776Z Completed 867.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3601580Z Completed 867.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3620086Z Completed 868.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3655352Z Completed 868.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3657983Z Completed 868.5 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3663559Z Completed 868.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3689821Z Completed 869.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3715317Z Completed 869.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3753284Z Completed 869.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3798083Z Completed 869.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3810066Z Completed 870.0 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3815084Z Completed 870.2 MiB/9.9 GiB (109.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3816960Z Completed 870.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3845925Z Completed 870.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3872312Z Completed 871.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3895614Z Completed 871.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3913082Z Completed 871.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3941018Z Completed 871.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3947542Z Completed 872.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.3949077Z Completed 872.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4008045Z Completed 872.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4011832Z Completed 872.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4049858Z Completed 873.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4051095Z Completed 873.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4076961Z Completed 873.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4080584Z Completed 873.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4085131Z Completed 874.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4142073Z Completed 874.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4159888Z Completed 874.5 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4167069Z Completed 874.8 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4190420Z Completed 875.0 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4193088Z Completed 875.2 MiB/9.9 GiB (109.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4197580Z Completed 875.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4240989Z Completed 875.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4260524Z Completed 876.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4273228Z Completed 876.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4275810Z Completed 876.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4303310Z Completed 876.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4324927Z Completed 877.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4337003Z Completed 877.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4345644Z Completed 877.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4375364Z Completed 877.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4393467Z Completed 878.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4440631Z Completed 878.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4448206Z Completed 878.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4473648Z Completed 878.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4487545Z Completed 879.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4506694Z Completed 879.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4535948Z Completed 879.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4582048Z Completed 879.8 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4591043Z Completed 880.0 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4606362Z Completed 880.2 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4615039Z Completed 880.5 MiB/9.9 GiB (110.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4621691Z Completed 880.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4626860Z Completed 881.0 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4676968Z Completed 881.2 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4704699Z Completed 881.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4717504Z Completed 881.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4735855Z Completed 882.0 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4742793Z Completed 882.2 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4759815Z Completed 882.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4760992Z Completed 882.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4789142Z Completed 883.0 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4842075Z Completed 883.2 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4857917Z Completed 883.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4880220Z Completed 883.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4884404Z Completed 884.0 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4885819Z Completed 884.2 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4891676Z Completed 884.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4903537Z Completed 884.8 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4935605Z Completed 885.0 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4988733Z Completed 885.2 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.4998365Z Completed 885.5 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5002214Z Completed 885.8 MiB/9.9 GiB (110.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5015990Z Completed 886.0 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5025259Z Completed 886.2 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5043468Z Completed 886.5 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5047201Z Completed 886.8 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5059768Z Completed 887.0 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5138306Z Completed 887.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5150402Z Completed 887.5 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5167805Z Completed 887.8 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5168821Z Completed 888.0 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5174953Z Completed 888.2 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5183334Z Completed 888.5 MiB/9.9 GiB (110.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5184698Z Completed 888.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5185454Z Completed 889.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5252035Z Completed 889.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5273876Z Completed 889.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5301351Z Completed 889.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5332315Z Completed 890.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5333677Z Completed 890.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5334738Z Completed 890.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5335411Z Completed 890.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5342467Z Completed 891.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5397706Z Completed 891.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5426802Z Completed 891.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5445063Z Completed 891.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5462112Z Completed 892.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5474400Z Completed 892.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5486049Z Completed 892.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5488986Z Completed 892.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5501995Z Completed 893.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5506403Z Completed 893.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5583652Z Completed 893.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5599235Z Completed 893.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5600875Z Completed 894.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5602587Z Completed 894.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5604055Z Completed 894.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5645334Z Completed 894.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5646759Z Completed 895.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5680249Z Completed 895.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5720251Z Completed 895.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5739430Z Completed 895.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5740603Z Completed 896.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5793894Z Completed 896.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5796693Z Completed 896.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5807383Z Completed 896.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5845055Z Completed 897.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5846134Z Completed 897.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5853051Z Completed 897.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5970794Z Completed 897.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5978480Z Completed 898.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5983669Z Completed 898.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.5994300Z Completed 898.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6003323Z Completed 898.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6046752Z Completed 899.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6114138Z Completed 899.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6115571Z Completed 899.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6119603Z Completed 899.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6121753Z Completed 900.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6133209Z Completed 900.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6170163Z Completed 900.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6226057Z Completed 900.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6227180Z Completed 901.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6238392Z Completed 901.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6243636Z Completed 901.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6250636Z Completed 901.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6260606Z Completed 902.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6270606Z Completed 902.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6310003Z Completed 902.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6316702Z Completed 902.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6335996Z Completed 903.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6349919Z Completed 903.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6379492Z Completed 903.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6386443Z Completed 903.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6395982Z Completed 904.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6398255Z Completed 904.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6412520Z Completed 904.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6454928Z Completed 904.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6463846Z Completed 905.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6509272Z Completed 905.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6510983Z Completed 905.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6531284Z Completed 905.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6550516Z Completed 906.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6570740Z Completed 906.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6579393Z Completed 906.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6581929Z Completed 906.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6597464Z Completed 907.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6611041Z Completed 907.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6662778Z Completed 907.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6692247Z Completed 907.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6736534Z Completed 908.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6772776Z Completed 908.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6807269Z Completed 908.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6823427Z Completed 908.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6957480Z Completed 909.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6964530Z Completed 909.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6990552Z Completed 909.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.6991640Z Completed 909.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7051841Z Completed 910.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7082337Z Completed 910.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7117521Z Completed 910.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7157729Z Completed 910.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7200448Z Completed 911.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7208085Z Completed 911.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7234611Z Completed 911.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7247167Z Completed 911.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7269400Z Completed 912.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7302550Z Completed 912.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7349992Z Completed 912.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7361462Z Completed 912.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7377142Z Completed 913.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7399586Z Completed 913.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7428869Z Completed 913.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7446359Z Completed 913.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7507773Z Completed 914.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7513798Z Completed 914.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7524814Z Completed 914.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7551913Z Completed 914.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7553384Z Completed 915.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7562155Z Completed 915.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7576097Z Completed 915.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7619903Z Completed 915.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7636438Z Completed 916.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7650151Z Completed 916.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7671458Z Completed 916.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7695253Z Completed 916.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7699175Z Completed 917.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7735468Z Completed 917.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7781999Z Completed 917.5 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7783890Z Completed 917.8 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7797754Z Completed 918.0 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7808136Z Completed 918.2 MiB/9.9 GiB (110.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7813350Z Completed 918.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7827923Z Completed 918.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7856787Z Completed 919.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7877695Z Completed 919.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7908573Z Completed 919.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7932563Z Completed 919.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7940806Z Completed 920.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7941864Z Completed 920.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7959192Z Completed 920.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.7966713Z Completed 920.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8002992Z Completed 921.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8046821Z Completed 921.2 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8053658Z Completed 921.5 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8059297Z Completed 921.8 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8060528Z Completed 922.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8075994Z Completed 922.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8088428Z Completed 922.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8159947Z Completed 922.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8162297Z Completed 923.0 MiB/9.9 GiB (110.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8175814Z Completed 923.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8177071Z Completed 923.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8190553Z Completed 923.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8217574Z Completed 924.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8269804Z Completed 924.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8277348Z Completed 924.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8284048Z Completed 924.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8301249Z Completed 925.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8329441Z Completed 925.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8370148Z Completed 925.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8371216Z Completed 925.8 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8385656Z Completed 926.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8393922Z Completed 926.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8403281Z Completed 926.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8460290Z Completed 926.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8481000Z Completed 927.0 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8487927Z Completed 927.2 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8506645Z Completed 927.5 MiB/9.9 GiB (110.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8524009Z Completed 927.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8558888Z Completed 928.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8562915Z Completed 928.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8564227Z Completed 928.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8580294Z Completed 928.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8587187Z Completed 929.0 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8591871Z Completed 929.2 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8616793Z Completed 929.5 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8624176Z Completed 929.8 MiB/9.9 GiB (110.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8628443Z Completed 930.0 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8641975Z Completed 930.2 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8655020Z Completed 930.5 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8660754Z Completed 930.8 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8686520Z Completed 931.0 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8700062Z Completed 931.2 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8712041Z Completed 931.5 MiB/9.9 GiB (110.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8713754Z Completed 931.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8746781Z Completed 932.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8754354Z Completed 932.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8772236Z Completed 932.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8780560Z Completed 932.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8800640Z Completed 933.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8861669Z Completed 933.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8874993Z Completed 933.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8909558Z Completed 933.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8914657Z Completed 934.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8915599Z Completed 934.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8958655Z Completed 934.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.8996959Z Completed 934.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9015160Z Completed 935.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9027372Z Completed 935.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9065685Z Completed 935.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9066992Z Completed 935.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9081218Z Completed 936.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9106012Z Completed 936.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9122143Z Completed 936.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9149939Z Completed 936.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9176172Z Completed 937.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9191429Z Completed 937.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9235792Z Completed 937.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9243429Z Completed 937.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9263161Z Completed 938.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9264316Z Completed 938.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9281401Z Completed 938.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9316466Z Completed 938.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9348994Z Completed 939.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9359976Z Completed 939.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9369992Z Completed 939.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9386243Z Completed 939.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9393192Z Completed 940.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9441336Z Completed 940.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9480042Z Completed 940.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9489933Z Completed 940.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9495534Z Completed 941.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9500706Z Completed 941.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9574187Z Completed 941.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9597975Z Completed 941.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9623333Z Completed 942.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9624496Z Completed 942.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9654368Z Completed 942.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9690348Z Completed 942.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9717217Z Completed 943.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9756167Z Completed 943.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9805212Z Completed 943.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9806353Z Completed 943.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9841059Z Completed 944.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9846070Z Completed 944.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9847165Z Completed 944.5 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9848224Z Completed 944.8 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9897083Z Completed 945.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9899048Z Completed 945.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9900836Z Completed 945.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9906225Z Completed 945.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9962337Z Completed 946.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9979941Z Completed 946.2 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:20.9986163Z Completed 946.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0018769Z Completed 946.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0030457Z Completed 947.0 MiB/9.9 GiB (110.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0031608Z Completed 947.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0054219Z Completed 947.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0079108Z Completed 947.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0113862Z Completed 948.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0124942Z Completed 948.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0126334Z Completed 948.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0132912Z Completed 948.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0185184Z Completed 949.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0196479Z Completed 949.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0229105Z Completed 949.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0248404Z Completed 949.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0260860Z Completed 950.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0265849Z Completed 950.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0317050Z Completed 950.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0351607Z Completed 950.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0353245Z Completed 951.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0374073Z Completed 951.2 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0375375Z Completed 951.5 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0380225Z Completed 951.8 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0406072Z Completed 952.0 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0435794Z Completed 952.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0458146Z Completed 952.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0481461Z Completed 952.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0488102Z Completed 953.0 MiB/9.9 GiB (110.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0495480Z Completed 953.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0505013Z Completed 953.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0546423Z Completed 953.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0586148Z Completed 954.0 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0587314Z Completed 954.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0596206Z Completed 954.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0613894Z Completed 954.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0629734Z Completed 955.0 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0641606Z Completed 955.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0684998Z Completed 955.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0686487Z Completed 955.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0709100Z Completed 956.0 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0720356Z Completed 956.2 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0750744Z Completed 956.5 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0761106Z Completed 956.8 MiB/9.9 GiB (111.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0772334Z Completed 957.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0778621Z Completed 957.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0824157Z Completed 957.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0825238Z Completed 957.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0856743Z Completed 958.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0860368Z Completed 958.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0866963Z Completed 958.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0894046Z Completed 958.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0908149Z Completed 959.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0936270Z Completed 959.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0943686Z Completed 959.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0944751Z Completed 959.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.0993543Z Completed 960.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1019571Z Completed 960.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1020376Z Completed 960.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1052523Z Completed 960.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1066940Z Completed 961.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1116155Z Completed 961.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1123724Z Completed 961.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1148174Z Completed 961.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1174547Z Completed 962.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1182317Z Completed 962.2 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1236062Z Completed 962.5 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1237172Z Completed 962.8 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1238542Z Completed 963.0 MiB/9.9 GiB (111.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1242457Z Completed 963.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1253975Z Completed 963.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1281703Z Completed 963.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1314611Z Completed 964.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1345268Z Completed 964.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1370215Z Completed 964.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1375045Z Completed 964.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1381634Z Completed 965.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1414017Z Completed 965.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1415444Z Completed 965.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1449475Z Completed 965.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1463530Z Completed 966.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1470575Z Completed 966.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1517388Z Completed 966.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1543607Z Completed 966.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1544670Z Completed 967.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1545376Z Completed 967.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1552867Z Completed 967.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1592933Z Completed 967.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1616413Z Completed 968.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1643663Z Completed 968.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1667383Z Completed 968.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1708317Z Completed 968.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1716697Z Completed 969.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1722016Z Completed 969.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1744871Z Completed 969.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1807931Z Completed 969.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1836932Z Completed 970.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1841527Z Completed 970.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1882066Z Completed 970.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1893473Z Completed 970.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1916015Z Completed 971.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1944487Z Completed 971.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1950688Z Completed 971.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1964850Z Completed 971.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.1999820Z Completed 972.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2050499Z Completed 972.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2062386Z Completed 972.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2074099Z Completed 972.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2105932Z Completed 973.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2120348Z Completed 973.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2133616Z Completed 973.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2138758Z Completed 973.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2156289Z Completed 974.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2188910Z Completed 974.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2218355Z Completed 974.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2254553Z Completed 974.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2255704Z Completed 975.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2282958Z Completed 975.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2309158Z Completed 975.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2325768Z Completed 975.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2336383Z Completed 976.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2369810Z Completed 976.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2382294Z Completed 976.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2402439Z Completed 976.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2431870Z Completed 977.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2448076Z Completed 977.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2494961Z Completed 977.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2516190Z Completed 977.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2540924Z Completed 978.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2554462Z Completed 978.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2576089Z Completed 978.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2613488Z Completed 978.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2639444Z Completed 979.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2647701Z Completed 979.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2677491Z Completed 979.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2685282Z Completed 979.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2707511Z Completed 980.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2752328Z Completed 980.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2762383Z Completed 980.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2781201Z Completed 980.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2808567Z Completed 981.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2827258Z Completed 981.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2853517Z Completed 981.5 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2870615Z Completed 981.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2878205Z Completed 982.0 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2879278Z Completed 982.2 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2930756Z Completed 982.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2939474Z Completed 982.8 MiB/9.9 GiB (111.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2943209Z Completed 983.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2954400Z Completed 983.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.2988382Z Completed 983.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3018038Z Completed 983.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3024422Z Completed 984.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3027405Z Completed 984.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3036043Z Completed 984.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3082467Z Completed 984.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3106923Z Completed 985.0 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3119687Z Completed 985.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3120745Z Completed 985.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3130653Z Completed 985.8 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3184918Z Completed 986.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3190729Z Completed 986.2 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3196507Z Completed 986.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3204913Z Completed 986.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3241676Z Completed 987.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3260010Z Completed 987.2 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3284500Z Completed 987.5 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3292558Z Completed 987.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3299028Z Completed 988.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3360250Z Completed 988.2 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3367793Z Completed 988.5 MiB/9.9 GiB (111.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3370935Z Completed 988.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3375361Z Completed 989.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3383203Z Completed 989.2 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3451394Z Completed 989.5 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3469195Z Completed 989.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3471782Z Completed 990.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3495250Z Completed 990.2 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3496535Z Completed 990.5 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3514057Z Completed 990.8 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3515441Z Completed 991.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3518614Z Completed 991.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3529387Z Completed 991.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3556389Z Completed 991.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3586247Z Completed 992.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3597323Z Completed 992.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3617553Z Completed 992.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3627175Z Completed 992.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3687479Z Completed 993.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3705553Z Completed 993.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3724540Z Completed 993.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3735446Z Completed 993.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3760207Z Completed 994.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3763361Z Completed 994.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3810697Z Completed 994.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3840316Z Completed 994.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3875918Z Completed 995.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3903512Z Completed 995.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3926365Z Completed 995.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3956443Z Completed 995.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3962068Z Completed 996.0 MiB/9.9 GiB (111.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.3968241Z Completed 996.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4009309Z Completed 996.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4019129Z Completed 996.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4026249Z Completed 997.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4044262Z Completed 997.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4055231Z Completed 997.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4101902Z Completed 997.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4129237Z Completed 998.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4145922Z Completed 998.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4153676Z Completed 998.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4178800Z Completed 998.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4213737Z Completed 999.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4246558Z Completed 999.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4267433Z Completed 999.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4283395Z Completed 999.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4295257Z Completed 1000.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4317746Z Completed 1000.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4318963Z Completed 1000.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4391362Z Completed 1000.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4392986Z Completed 1001.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4400825Z Completed 1001.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4404242Z Completed 1001.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4409747Z Completed 1001.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4457413Z Completed 1002.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4502265Z Completed 1002.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4503814Z Completed 1002.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4512833Z Completed 1002.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4519880Z Completed 1003.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4523140Z Completed 1003.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4586022Z Completed 1003.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4607127Z Completed 1003.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4622594Z Completed 1004.0 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4637038Z Completed 1004.2 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4640805Z Completed 1004.5 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4653148Z Completed 1004.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4690918Z Completed 1005.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4705244Z Completed 1005.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4756602Z Completed 1005.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4757954Z Completed 1005.8 MiB/9.9 GiB (111.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4776033Z Completed 1006.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4779285Z Completed 1006.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4813598Z Completed 1006.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4823787Z Completed 1006.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4837034Z Completed 1007.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4877706Z Completed 1007.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4879841Z Completed 1007.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4923710Z Completed 1007.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4930871Z Completed 1008.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4935718Z Completed 1008.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.4989990Z Completed 1008.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5000604Z Completed 1008.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5002151Z Completed 1009.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5012270Z Completed 1009.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5039102Z Completed 1009.5 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5049001Z Completed 1009.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5063991Z Completed 1010.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5073714Z Completed 1010.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5125055Z Completed 1010.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5137558Z Completed 1010.8 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5161275Z Completed 1011.0 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5162992Z Completed 1011.2 MiB/9.9 GiB (111.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5190525Z Completed 1011.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5195964Z Completed 1011.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5228320Z Completed 1012.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5242121Z Completed 1012.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5261990Z Completed 1012.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5270424Z Completed 1012.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5307206Z Completed 1013.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5331369Z Completed 1013.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5357044Z Completed 1013.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5397248Z Completed 1013.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5423594Z Completed 1014.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5426258Z Completed 1014.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5443563Z Completed 1014.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5473269Z Completed 1014.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5478167Z Completed 1015.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5488408Z Completed 1015.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5547905Z Completed 1015.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5549583Z Completed 1015.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5574408Z Completed 1016.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5596867Z Completed 1016.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5600126Z Completed 1016.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5608666Z Completed 1016.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5653698Z Completed 1017.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5655177Z Completed 1017.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5685702Z Completed 1017.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5720530Z Completed 1017.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5745951Z Completed 1018.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5746849Z Completed 1018.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5754894Z Completed 1018.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5780260Z Completed 1018.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5815225Z Completed 1019.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5837757Z Completed 1019.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5840274Z Completed 1019.5 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5862435Z Completed 1019.8 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5881199Z Completed 1020.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5887321Z Completed 1020.2 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5933384Z Completed 1020.5 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5959348Z Completed 1020.8 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5960701Z Completed 1021.0 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5963008Z Completed 1021.2 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.5994384Z Completed 1021.5 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6037446Z Completed 1021.8 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6064698Z Completed 1022.0 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6075136Z Completed 1022.2 MiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6091352Z Completed 1022.5 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6108584Z Completed 1022.8 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6147336Z Completed 1023.0 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6170189Z Completed 1023.2 MiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6230199Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6249108Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6295138Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6296360Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6297508Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6306199Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6360738Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6368089Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6386305Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6476000Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6518982Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6524812Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6530971Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6552520Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6585013Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6586349Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6639441Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6640498Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6649923Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6670367Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6690918Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6694386Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6706584Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6743464Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6747681Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6785551Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6803113Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6815537Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6830580Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6859103Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6862794Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6904601Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6906267Z Completed 1.0 GiB/9.9 GiB (111.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6907758Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6942146Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6972387Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6980601Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.6994423Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7023622Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7035313Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7056683Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7086737Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7095246Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7108910Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7135680Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7151222Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7184425Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7193495Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7194462Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7229567Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7237295Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7238683Z Completed 1.0 GiB/9.9 GiB (111.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7274387Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7294898Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7316145Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7321463Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7342316Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7343508Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7362364Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7414721Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7423683Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7440572Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7459713Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7466232Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7479410Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7530562Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7540019Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7547140Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7564072Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7586964Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7595132Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7669771Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7679019Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7680493Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7681450Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7700560Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7724567Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7746841Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7788523Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7789657Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7800742Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7802018Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7867207Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7875539Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7929077Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7943999Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7946183Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7947822Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.7989652Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8047290Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8062878Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8076733Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8097343Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8099576Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8143339Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8168314Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8192325Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8198223Z Completed 1.0 GiB/9.9 GiB (111.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8203435Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8228389Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8230874Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8279951Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8299081Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8302601Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8306102Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8322186Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8331955Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8399534Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8400480Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8429098Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8430128Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8431621Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8438484Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8463959Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8518205Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8531033Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8532240Z Completed 1.0 GiB/9.9 GiB (112.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8538746Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8561844Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8578041Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8614890Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8646863Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8648230Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8659980Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8669334Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8684189Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8688597Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8717253Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8764215Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8792094Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8803232Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8806227Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8811576Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8828047Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8863066Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8870409Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8931037Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8943286Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8945258Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8949864Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.8969541Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9008086Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9009458Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9044547Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9046921Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9111087Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9115344Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9161837Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9217053Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9218237Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9269020Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9273718Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9294832Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9304068Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9350764Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9363229Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9376956Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9403837Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9427309Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9450377Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9469579Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9482053Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9483822Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9515881Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9548072Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9554898Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9578515Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9583387Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9610698Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9624317Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9647513Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9667885Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9677539Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9751047Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9766922Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9776975Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9790447Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9793140Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9845407Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9861286Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9864952Z Completed 1.0 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9871409Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9883120Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9946958Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9954100Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9955588Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9956427Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:21.9990078Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0024158Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0049385Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0052945Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0062087Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0068364Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0133915Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0155706Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0171679Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0173176Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0190761Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0241716Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0289157Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0295932Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0300019Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0319695Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0357714Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0363853Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0399841Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0456290Z Completed 1.0 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0541729Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0551423Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0566328Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0570296Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0579919Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0626734Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0667062Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0678414Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0680810Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0691262Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0701879Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0768149Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0785433Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0790825Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0805751Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0825729Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0835717Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0888841Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0912457Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0950863Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0951907Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0953362Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.0989255Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1020511Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1031600Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1053595Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1095862Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1097118Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1136011Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1141776Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1170010Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1173222Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1197028Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1227385Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1245290Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1248842Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1269986Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1302061Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1307735Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1337121Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1351957Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1361684Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1389200Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1443381Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1453635Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1457548Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1502559Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1506123Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1531970Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1541738Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1598654Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1627804Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1659351Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1688105Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1717240Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1733985Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1738927Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1770576Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1773414Z Completed 1.1 GiB/9.9 GiB (112.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1776078Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1813611Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1834254Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1838842Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1872037Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1885179Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1893585Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1927043Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1949065Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1950322Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1980116Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.1988020Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2012788Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2043050Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2046792Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2067660Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2086215Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2113473Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2150695Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2170564Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2181458Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2194077Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2212560Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2214403Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2259781Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2268993Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2273026Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2300920Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2325047Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2335681Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2373275Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2391840Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2397657Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2416397Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2426247Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2439742Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2474143Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2492005Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2512316Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2519287Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2529959Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2554213Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2572597Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2615841Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2637493Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2651144Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2655814Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2681663Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2723980Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2777389Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2778807Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2794300Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2816488Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2826460Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2843330Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2857785Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2902407Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2916994Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2923623Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2951444Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.2960577Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3010995Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3027992Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3065270Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3098337Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3102597Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3148510Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3191418Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3193390Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3258107Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3272815Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3330422Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3354065Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3379771Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3381379Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3395337Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3425432Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3444571Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3470055Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3481888Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3514401Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3519619Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3538738Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3539885Z Completed 1.1 GiB/9.9 GiB (112.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3569784Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3587481Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3624252Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3632191Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3633429Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3652377Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3685544Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3713658Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3717927Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3739702Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3746136Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3747032Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3795847Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3830014Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3847811Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3849190Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3858747Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3869194Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3920571Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3944996Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3948633Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3977864Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3978729Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.3979653Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4032829Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4056099Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4059365Z Completed 1.1 GiB/9.9 GiB (112.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4090429Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4094856Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4104891Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4112872Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4169413Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4181485Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4186330Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4198143Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4204092Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4249660Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4261460Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4288918Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4324553Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4338725Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4339846Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4352369Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4376071Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4393465Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4424569Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4439489Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4452908Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4502854Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4515177Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4523145Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4524564Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4536316Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4587087Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4593650Z Completed 1.1 GiB/9.9 GiB (112.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4597260Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4606259Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4637176Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4661513Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4667868Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4680442Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4749201Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4760263Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4775071Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4785523Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4793528Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4805259Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4872612Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4881753Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4900173Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4922608Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4945450Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4953480Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.4967530Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5021906Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5025366Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5042315Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5043810Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5065607Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5095023Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5102355Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5137200Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5138551Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5160491Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5164789Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5224289Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5225667Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5243265Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5246617Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5260434Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5262780Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5310260Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5353628Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5373704Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5374972Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5404658Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5407259Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5408615Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5457139Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5471402Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5510385Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5521087Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5532033Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5551452Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5557222Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5569997Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5591807Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5662473Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5673044Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5701887Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5702964Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5753513Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5754877Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5755792Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5821664Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5849030Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5860430Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5886846Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5889147Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5910682Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.5912360Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6035674Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6042084Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6049529Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6057816Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6067094Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6083598Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6148622Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6191611Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6192969Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6194264Z Completed 1.1 GiB/9.9 GiB (112.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6209772Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6222313Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6253628Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6296130Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6304552Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6310118Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6348695Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6353276Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6367453Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6380002Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6426721Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6427911Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6448570Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6463945Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6477169Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6507124Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6538169Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6539118Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6561056Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6575618Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6608313Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6631300Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6638989Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6661504Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6683221Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6684335Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6709076Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6743080Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6746204Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6763623Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6778977Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6806238Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6838878Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6847534Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6859822Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6894848Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6900322Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6911056Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6916159Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6985009Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.6990863Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7004146Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7008928Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7035382Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7112945Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7119984Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7129029Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7179185Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7196315Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7215777Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7236582Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7251421Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7300262Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7306114Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7319431Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7421820Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7423574Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7440241Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7486473Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7491489Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7499748Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7542971Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7571426Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7591099Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7602267Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7617518Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7624397Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7657343Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7701610Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7704869Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7720500Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7745564Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7786043Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7789945Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7840748Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7845955Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7850677Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7870151Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7886107Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7961657Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7969091Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.7994723Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8009083Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8011906Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8049434Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8104703Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8135120Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8142875Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8147011Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8165095Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8200855Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8208315Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8233066Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8237736Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8262908Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8295994Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8297261Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8331395Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8332359Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8353219Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8385476Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8401930Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8421030Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8422174Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8462530Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8490911Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8498756Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8518639Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8539606Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8573636Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8574830Z Completed 1.1 GiB/9.9 GiB (112.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8596843Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8597993Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8613574Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8650204Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8666407Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8682571Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8699283Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8726106Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8742438Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8763340Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8771230Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8791576Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8834433Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8835238Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8856973Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8863674Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8879259Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8910744Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8921370Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8946878Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8971124Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.8989173Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9000996Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9011968Z Completed 1.1 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9027319Z Completed 1.1 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9032391Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9082367Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9091044Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9099045Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9104217Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9147523Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9187945Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9195028Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9215526Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9216992Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9245745Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9276064Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9298154Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9327865Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9338648Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9384854Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9396436Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9421711Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9439135Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9461137Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9481458Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9485949Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9528234Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9553878Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9580548Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9605399Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9631590Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9641444Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9661861Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9722155Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9724461Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9788740Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9802168Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9810060Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9816753Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9823182Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9843407Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9870970Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9904560Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9927903Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9934044Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9954002Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9955421Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:22.9959659Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0034615Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0048095Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0061505Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0063214Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0108377Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0112115Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0165942Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0189115Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0224609Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0231151Z Completed 1.2 GiB/9.9 GiB (112.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0232557Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0233803Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0268659Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0301549Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0335938Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0345485Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0346558Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0369192Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0405047Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0417578Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0454420Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0455772Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0471675Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0483300Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0528369Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0529676Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0547434Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0582802Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0589450Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0636497Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0639218Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0642933Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0651314Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0712555Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0752262Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0761046Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0763137Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0767770Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0781587Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0805120Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0856194Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0871303Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0893202Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0894006Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0894668Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0929878Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.0997641Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1031167Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1034415Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1043676Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1073518Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1074864Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1076831Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1169353Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1198213Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1199077Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1221024Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1255461Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1275643Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1281932Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1343268Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1357410Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1384428Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1405254Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1406195Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1420736Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1434132Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1445249Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1483186Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1512187Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1537583Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1563497Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1567074Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1580652Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1591518Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1629243Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1630338Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1678321Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1693378Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1694748Z Completed 1.2 GiB/9.9 GiB (112.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1711734Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1717534Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1734600Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1755681Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1800820Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1821065Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1824526Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1842171Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1844356Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1875231Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1886300Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1932792Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1947877Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1957722Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1968417Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.1989608Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2023514Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2027651Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2065870Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2072438Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2076918Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2094684Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2106329Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2166271Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2194894Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2211331Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2212233Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2226130Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2227321Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2281782Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2337818Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2349856Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2366022Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2368827Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2369859Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2378160Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2431001Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2476507Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2482969Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2509312Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2510611Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2512128Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2536314Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2582834Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2597860Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2615234Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2623728Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2625916Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2666012Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2667055Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2672349Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2716882Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2750633Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2751481Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2798639Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2809395Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2828995Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2853558Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2862980Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2864058Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2920743Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2932011Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2986150Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2992123Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.2996796Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3030787Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3031958Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3077634Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3078599Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3110928Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3119446Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3130400Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3136538Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3172329Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3175066Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3221047Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3233490Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3239299Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3265171Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3281496Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3305087Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3322157Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3326095Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3341937Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3367205Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3399765Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3430487Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3440383Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3450745Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3470179Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3501214Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3514424Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3538834Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3542235Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3570513Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3583699Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3593325Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3608206Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3633808Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3659184Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3672276Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3703581Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3705334Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3721414Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3758902Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3765743Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3798307Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3799363Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3860542Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3878371Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3881650Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3930095Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3954144Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.3961020Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4011223Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4073771Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4087015Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4123183Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4136220Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4141320Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4151778Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4226226Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4229300Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4233184Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4251001Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4262294Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4310889Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4321100Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4339746Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4350904Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4370939Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4378825Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4435498Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4448189Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4454563Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4476420Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4492584Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4505447Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4543436Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4551201Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4552558Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4604733Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4605566Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4618815Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4665404Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4690129Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4715371Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4742142Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4748723Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4802589Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4816744Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4845158Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4849275Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4864045Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4878410Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4947303Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4948703Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4950023Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.4984416Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5002972Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5028342Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5038062Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5105923Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5107268Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5122904Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5148873Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5195069Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5222588Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5226176Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5250302Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5255651Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5259977Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5320276Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5338314Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5349007Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5369729Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5372483Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5388805Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5428704Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5452491Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5467207Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5468767Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5485934Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5527384Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5560393Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5564288Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5582198Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5597656Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5636485Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5643109Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5646468Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5671571Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5701768Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5725380Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5738328Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5749642Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5760994Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5798933Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5820537Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5843254Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5850118Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5856069Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5900194Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5906390Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5946045Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5947227Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5948325Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.5979376Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6042443Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6050198Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6064387Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6065686Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6103222Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6148615Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6156490Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6184024Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6185317Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6198844Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6249404Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6384303Z Completed 1.2 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6390939Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6419461Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6465963Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6527214Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6538392Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6574337Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6603196Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6636799Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6650314Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6658713Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6676892Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6745323Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6762913Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6774333Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6779858Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6788542Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6806898Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6874505Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6879040Z Completed 1.2 GiB/9.9 GiB (112.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6894734Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6895685Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6913338Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6927461Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6974747Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6984167Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.6990499Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7013263Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7019350Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7031960Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7087303Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7101405Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7108102Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7115310Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7124409Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7131009Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7189483Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7215469Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7219866Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7226012Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7234442Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7259299Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7295141Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7349667Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7362887Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7368306Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7374224Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7406435Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7441299Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7487838Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7489070Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7511943Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7546538Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7547903Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7556545Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7595778Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7617946Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7628656Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7671567Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7684151Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7734935Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7741635Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7748212Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7765222Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7766276Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7833548Z Completed 1.2 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7860565Z Completed 1.2 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7865787Z Completed 1.3 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7869420Z Completed 1.3 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7881645Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7894901Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7925499Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7973138Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7983127Z Completed 1.3 GiB/9.9 GiB (113.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.7991998Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8024343Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8033863Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8035014Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8056563Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8103601Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8117568Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8118894Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8123619Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8162754Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8169125Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8193640Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8222575Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8235457Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8242873Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8280486Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8290424Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8303113Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8318448Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8332243Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8347749Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8383667Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8395330Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8417223Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8419162Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8440045Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8474893Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8477410Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8512238Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8516372Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8533570Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8565314Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8571913Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8623017Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8660632Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8670000Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8690500Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8701364Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8784511Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8807315Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8830827Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8875750Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8913677Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8916488Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8919486Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8968593Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.8993174Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9002476Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9027381Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9028563Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9040765Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9047466Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9059028Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9123593Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9141719Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9163143Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9180456Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9183557Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9185444Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9187516Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9207343Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9257543Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9267643Z Completed 1.3 GiB/9.9 GiB (113.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9279311Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9299924Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9319419Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9339397Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9364249Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9371518Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9390252Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9401281Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9436201Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9437571Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9494135Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9513715Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9528641Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9546962Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9566444Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9593946Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9618650Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9630981Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9646480Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9665332Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9681327Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9726894Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9730236Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9763433Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9779084Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9791605Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9798740Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9840203Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9846426Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9869773Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9893613Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9922401Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9939926Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9957887Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9963415Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:23.9983551Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0021075Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0026699Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0045800Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0073503Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0103756Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0107448Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0129611Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0142183Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0150583Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0180084Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0189934Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0253567Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0254860Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0256031Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0266196Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0279710Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0326724Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0327965Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0359323Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0376755Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0390101Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0400632Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0401808Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0484267Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0485932Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0489580Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0504666Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0545628Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0578571Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0585523Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0600894Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0610333Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0626730Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0638806Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0674527Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0683265Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0719588Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0745358Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0755144Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0772488Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0795798Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0850384Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0864401Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0865217Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0870804Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0876684Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0912551Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0948910Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0989280Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.0995938Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1001049Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1001966Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1005885Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1108895Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1134458Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1160436Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1167027Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1168411Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1183180Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1229430Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1272145Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1273958Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1302978Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1322945Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1332278Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1388959Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1396179Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1426681Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1435329Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1442940Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1450055Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1505885Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1507939Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1525313Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1547716Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1561066Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1564200Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1628403Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1629407Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1635947Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1648646Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1668116Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1701535Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1748831Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1757422Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1775886Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1793309Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1841627Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1850639Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1864443Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1873574Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1878518Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.1901517Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2049977Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2061777Z Completed 1.3 GiB/9.9 GiB (113.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2063631Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2064535Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2085682Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2087514Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2088631Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2149882Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2187225Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2191078Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2207163Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2215197Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2260260Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2268651Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2291254Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2295377Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2310419Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2363603Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2379390Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2398208Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2401622Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2432504Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2446095Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2493143Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2494096Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2528587Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2543560Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2560486Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2571123Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2602844Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2619312Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2631409Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2647400Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2684453Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2695083Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2715396Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2720127Z Completed 1.3 GiB/9.9 GiB (113.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2750218Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2765253Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2792817Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2802197Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2810139Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2816467Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2831498Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2867079Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2882569Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2884075Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2907296Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2928936Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2941708Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2974585Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.2996075Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3020338Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3030431Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3052817Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3054868Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3078019Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3118562Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3132052Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3148956Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3154888Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3180308Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3213684Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3242188Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3249696Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3257036Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3269031Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3318593Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3388191Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3399138Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3425029Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3435982Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3453019Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3508626Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3566565Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3577088Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3584113Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3613136Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3628927Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3659536Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3679296Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3699975Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3705293Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3717871Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3740079Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3754130Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3789706Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3805249Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3808813Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3814109Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3853826Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3880237Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3895098Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3900812Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3907046Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3953898Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3974896Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3982250Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.3983556Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4012393Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4070260Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4071167Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4071854Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4078577Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4103841Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4146875Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4175140Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4180131Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4181085Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4214690Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4241693Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4258151Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4281384Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4293113Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4317950Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4348245Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4376601Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4399215Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4401344Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4411659Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4438686Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4446206Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4530590Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4538305Z Completed 1.3 GiB/9.9 GiB (113.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4556249Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4566621Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4577666Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4590762Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4624021Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4658859Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4678367Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4690847Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4711566Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4716275Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4758654Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4778223Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4799462Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4804478Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4819087Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4835350Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4885000Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4904236Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4911780Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4913108Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4936777Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4942963Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4967763Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.4998309Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5027460Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5034738Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5045824Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5081006Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5088440Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5099587Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5136015Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5155989Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5166937Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5224068Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5231665Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5236049Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5253929Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5256244Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5265778Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5337197Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5395194Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5414457Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5419880Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5421141Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5433871Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5497350Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5500247Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5511615Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5549014Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5558646Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5559386Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5602808Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5623859Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5648586Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5682391Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5686113Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5689870Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5715358Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5721389Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5728076Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5792413Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5802519Z Completed 1.3 GiB/9.9 GiB (113.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5810612Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5811824Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5831919Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5853201Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5876681Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5907040Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5930347Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5961312Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5978475Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5989784Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.5993103Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6057733Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6059043Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6082933Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6122052Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6135545Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6143042Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6150895Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6178353Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6207744Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6245347Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6259448Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6260399Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6270114Z Completed 1.3 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6281970Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6292969Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6337947Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6356418Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6369834Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6378078Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6401073Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6416680Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6454154Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6468951Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6500148Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6501472Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6561763Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6571476Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6575750Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6579548Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6591419Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6623137Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6628039Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6669418Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6684430Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6722111Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6725363Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6736135Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6765125Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6768366Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6810221Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6836885Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6837825Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6838482Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6860960Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6890327Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6931146Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6954155Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6968749Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.6984323Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7010915Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7038682Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7048461Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7093064Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7171992Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7200572Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7236698Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7237738Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7316565Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7317618Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7319809Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7370416Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7376044Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7379937Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7403695Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7441640Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7450561Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7474080Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7485920Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7492302Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7510278Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7571080Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7580226Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7590301Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7591875Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7598362Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7633036Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7677988Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7702443Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7711240Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7715931Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7722330Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7727836Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7781686Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7808211Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7816959Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7850776Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7852534Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7861247Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7873657Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7937167Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.7944081Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8013903Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8045888Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8064743Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8071367Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8100490Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8106717Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8126195Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8172935Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8177418Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8231512Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8238325Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8250078Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8251320Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8309935Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8319279Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8332512Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8397734Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8407486Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8412982Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8460773Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8495096Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8513577Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8530444Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8540655Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8558533Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8582957Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8597824Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8614632Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8659702Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8665827Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8685395Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8713122Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8714071Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8778481Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8798496Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8817209Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8831799Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8833574Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8877303Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8881650Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8931766Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8933807Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8946555Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8975040Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8980712Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.8993628Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9019995Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9072032Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9085778Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9092010Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9123686Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9126204Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9141593Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9148573Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9201997Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9217216Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9231663Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9244287Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9261370Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9268292Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9339130Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9346443Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9361977Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9363172Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9386183Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9391452Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9413949Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9458015Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9488834Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9490262Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9494107Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9495340Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9509693Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9560122Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9566268Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9604716Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9632100Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9636121Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9668312Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9697495Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9735014Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9764145Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9765492Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9803417Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9823343Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9863555Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9870904Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9891428Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9920050Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9946598Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9954248Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9967106Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:24.9970792Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0020965Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0031809Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0054848Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0055988Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0079000Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0091003Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0102261Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0142166Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0151172Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0157946Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0205405Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0211546Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0237407Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0279853Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0322519Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0323709Z Completed 1.4 GiB/9.9 GiB (113.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0329861Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0352978Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0368812Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0392073Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0438993Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0457862Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0479471Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0480615Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0521180Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0536618Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0557134Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0567711Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0571024Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0594288Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0629473Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0638725Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0670968Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0672449Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0694294Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0721978Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0734051Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0758002Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0787419Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0788979Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0796859Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0824802Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0839621Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0886813Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0901989Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0920128Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0921637Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0947072Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0947935Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.0997761Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1011323Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1015469Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1036601Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1072036Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1109517Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1126993Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1139831Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1144833Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1168697Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1218297Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1248357Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1260353Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1273053Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1275487Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1324655Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1376160Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1381242Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1403897Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1415873Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1416969Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1452584Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1488109Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1517439Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1538392Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1549209Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1561722Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1587178Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1625094Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1655943Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1675649Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1685607Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1712121Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1745341Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1757763Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1765427Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1803158Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1855382Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1856518Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1857572Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1871182Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1888519Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1918223Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1965094Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1970547Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.1978595Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2003550Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2004897Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2042178Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2107714Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2115515Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2117047Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2133596Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2148789Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2177792Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2220697Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2238469Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2254197Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2269167Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2294818Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2312047Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2343299Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2386468Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2396583Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2412436Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2424862Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2425847Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2457505Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2517991Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2532274Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2533428Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2540308Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2542139Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2574714Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2620565Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2635779Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2650522Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2655425Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2670353Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2709223Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2742905Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2749069Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2762898Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2786496Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2801305Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2819719Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2859540Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2868137Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2878941Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2911123Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2912318Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2980656Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2981798Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.2985872Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3000237Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3003946Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3014602Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3099871Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3131849Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3134284Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3137115Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3151902Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3166981Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3248601Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3263664Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3280602Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3287676Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3291260Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3300825Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3385083Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3397577Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3398990Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3416787Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3426794Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3434496Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3441024Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3484705Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3498654Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3533956Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3535407Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3536602Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3553458Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3593159Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3614227Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3659575Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3669965Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3682376Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3691655Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3708068Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3759995Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3811063Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3826728Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3828571Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3830051Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3889871Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3907008Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3979857Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.3993944Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4003858Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4011877Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4041187Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4054192Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4105183Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4118484Z Completed 1.4 GiB/9.9 GiB (113.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4123655Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4154617Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4159601Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4184977Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4212989Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4227990Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4242201Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4258822Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4278075Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4314598Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4330429Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4368740Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4380965Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4381966Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4417308Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4418713Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4449131Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4473483Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4488255Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4494966Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4524415Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4531640Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4570034Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4583587Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4588137Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4618789Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4646730Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4657582Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4696378Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4702476Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4727112Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4729181Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4769120Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4784704Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4834345Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4837306Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4850666Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4879074Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4903204Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4942148Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4957147Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4993315Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.4996217Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5020937Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5069254Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5070142Z Completed 1.4 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5097185Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5109366Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5137220Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5147885Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5163637Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5193868Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5218997Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5256024Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5258076Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5266928Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5295083Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5327274Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5394665Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5397220Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5415160Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5456435Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5457972Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5471449Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5493808Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5548026Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5566500Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5567850Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5596493Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5611403Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5612504Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5621543Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5676034Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5681006Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5685600Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5699535Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5713980Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5736811Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5755773Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5800553Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5813062Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5822803Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5838420Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5842899Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5856844Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5907738Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5930200Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5941304Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5945974Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.5948099Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6002429Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6034564Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6054878Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6085200Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6086289Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6097344Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6132930Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6139385Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6167515Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6173544Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6252205Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6253522Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6263988Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6266624Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6267901Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6309428Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6362051Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6369001Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6407178Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6418523Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6473366Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6493736Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6534126Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6534974Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6567273Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6582154Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6593625Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6636974Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6668370Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6685502Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6686674Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6704865Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6716353Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6731002Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6754226Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6796265Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6815260Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6833285Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6844640Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6847171Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6859649Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6924119Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6925242Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6940870Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6949100Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6956787Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.6985701Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7023588Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7063538Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7064883Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7099688Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7110771Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7147003Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7154915Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7203712Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7211424Z Completed 1.5 GiB/9.9 GiB (113.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7227208Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7238168Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7251800Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7271783Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7303508Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7318931Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7336124Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7351730Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7366275Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7382881Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7415154Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7439920Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7458869Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7464214Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7470422Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7481721Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7523529Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7554893Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7591878Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7599640Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7615206Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7623286Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7629978Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7674944Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7699498Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7727210Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7731285Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7743084Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7745194Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7754655Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7822316Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7860842Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7862436Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7863709Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7868050Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7876169Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7895397Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7944691Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7961876Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7977744Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7979617Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7984916Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.7995206Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8056190Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8094938Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8107116Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8114200Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8123297Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8165164Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8186443Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8247307Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8277622Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8290797Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8291742Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8307307Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8310759Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8376591Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8407622Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8423364Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8424359Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8443960Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8446908Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8459965Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8500504Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8542321Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8543674Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8544641Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8563333Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8565774Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8616458Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8642274Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8654551Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8679365Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8750397Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8765243Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8786325Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8807662Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8809023Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8810083Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8840555Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8909335Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8926019Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8933673Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8955834Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8969992Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.8981869Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9019360Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9024063Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9051503Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9068822Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9072473Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9084819Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9105062Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9135954Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9145954Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9169456Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9190063Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9233718Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9239217Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9261101Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9307938Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9320358Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9333060Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9358729Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9370377Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9450655Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9455853Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9457195Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9482194Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9490180Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9535893Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9546597Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9553826Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9559275Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9565124Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9612248Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9626209Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9648803Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9664267Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9685246Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9691421Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9721728Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9750561Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9753008Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9756756Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9788749Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9814577Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9830215Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9839797Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9849668Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9901246Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9917603Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9930102Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9950894Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:25.9974551Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0012231Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0018264Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0022901Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0045271Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0081834Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0091706Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0155736Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0165952Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0172576Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0182081Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0213819Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0237948Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0251968Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0266133Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0287269Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0298358Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0329111Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0349579Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0367122Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0399591Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0405582Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0449305Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0450346Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0542879Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0554136Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0590324Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0652425Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0673602Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0679702Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0706331Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0707735Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0708935Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0788934Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0792337Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0824892Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0835593Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0840883Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0900218Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0906448Z Completed 1.5 GiB/9.9 GiB (113.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0931491Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0939360Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0968806Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.0989488Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1011266Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1020530Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1044452Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1050506Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1085442Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1119650Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1131807Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1138803Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1148842Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1190313Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1199361Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1204380Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1235800Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1246576Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1285925Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1298451Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1300303Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1326327Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1348181Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1383056Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1396656Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1413231Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1423052Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1429304Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1437640Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1484889Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1493908Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1498402Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1529291Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1540385Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1567072Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1590265Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1615416Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1633311Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1645171Z Completed 1.5 GiB/9.9 GiB (114.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1650566Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1657709Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1674889Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1681573Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1691966Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1698635Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1706395Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1717382Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1728416Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1742285Z Completed 1.5 GiB/9.9 GiB (114.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1762824Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1777239Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1786541Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1788765Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1849941Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1853941Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1864180Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1880258Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1889973Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1896470Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1913775Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1968042Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1985873Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.1993908Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2001110Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2026503Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2065562Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2072227Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2101625Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2109609Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2131205Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2158091Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2190994Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2204653Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2217640Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2237884Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2267784Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2299369Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2317805Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2343073Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2361327Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2372216Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2400246Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2431809Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2440067Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2455325Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2466376Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2473579Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2506495Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2547462Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2556377Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2558033Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2595975Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2599527Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2609664Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2690842Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2724655Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2746361Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2751109Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2752239Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2753852Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2776245Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2808694Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2851332Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2883348Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2889677Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2901968Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2903318Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2915841Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.2949338Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3000174Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3014767Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3025593Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3029769Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3061997Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3063346Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3132613Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3168514Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3174177Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3192870Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3194086Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3258847Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3260341Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3300839Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3305447Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3306661Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3310900Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3362829Z Completed 1.5 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3395236Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3417762Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3441798Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3459452Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3510495Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3529320Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3537947Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3550887Z Completed 1.5 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3555383Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3560523Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3614475Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3652133Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3663664Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3668483Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3678600Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3679468Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3717959Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3775574Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3780189Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3782933Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3784414Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3795217Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3824191Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3884623Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3891625Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3895306Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3919991Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3940083Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.3945657Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4001766Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4018387Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4024835Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4042290Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4056903Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4057741Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4073313Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4121525Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4154469Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4210835Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4212048Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4213262Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4214895Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4244100Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4280378Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4300640Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4318748Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4349843Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4351216Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4368062Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4399215Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4438343Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4439849Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4478224Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4485818Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4499232Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4500555Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4571189Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4635016Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4636066Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4643516Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4655762Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4714278Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4750240Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4755807Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4762853Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4776936Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4819629Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4826404Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4850946Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4852901Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4881406Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4925784Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4948486Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4964739Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4971139Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4991538Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.4994384Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5011995Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5078504Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5079714Z Completed 1.6 GiB/9.9 GiB (114.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5080654Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5101814Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5115904Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5153470Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5166781Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5185310Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5194413Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5197123Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5253622Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5260911Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5270854Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5296728Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5322237Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5329279Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5348194Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5379023Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5379939Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5409936Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5431251Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5450052Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5483419Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5484624Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5527678Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5534120Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5562237Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5601483Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5609962Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5625409Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5639653Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5691284Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5694338Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5725503Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5726611Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5770029Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5804506Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5809385Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5813956Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5836841Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5866669Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5867861Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5879077Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5924309Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5939528Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5940498Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.5995300Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6023618Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6052264Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6053838Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6078287Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6091574Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6092861Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6134730Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6139514Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6148628Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6173225Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6214859Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6220598Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6222831Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6247477Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6271433Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6295393Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6331457Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6338129Z Completed 1.6 GiB/9.9 GiB (114.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6347980Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6349273Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6362332Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6395607Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6411254Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6429070Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6448941Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6471832Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6483298Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6506624Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6526904Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6541809Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6553718Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6584172Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6595883Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6618223Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6637942Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6653223Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6669950Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6690482Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6691470Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6729966Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6737892Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6762873Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6779075Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6787556Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6811200Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6852978Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6882267Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6889324Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6901460Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6909568Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6969671Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.6972980Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7012453Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7046796Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7109613Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7111004Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7168315Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7186150Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7196883Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7218605Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7243683Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7264088Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7297679Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7310237Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7346879Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7363525Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7372299Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7377828Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7400836Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7409912Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7465153Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7484999Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7488792Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7504568Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7517609Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7539608Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7580511Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7594303Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7607288Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7608402Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7639612Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7647529Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7696878Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7720761Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7728726Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7755076Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7786740Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7788881Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7826636Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7837362Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7857421Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7866705Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7887401Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7916611Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7945688Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7975179Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7984529Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.7986110Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8004028Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8029151Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8052494Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8061071Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8072119Z Completed 1.6 GiB/9.9 GiB (114.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8076364Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8097249Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8130384Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8142873Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8160995Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8173637Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8206493Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8213641Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8222430Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8256041Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8298500Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8300631Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8315381Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8368536Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8381583Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8392175Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8401299Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8407838Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8408783Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8489926Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8501475Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8502943Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8505472Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8518185Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8519352Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8603055Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8635529Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8636367Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8642492Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8677036Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8684728Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8718271Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8730308Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8768924Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8780697Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8787697Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8818787Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8845312Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8897732Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8901754Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8913504Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8937557Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8984261Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.8986399Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9011874Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9028035Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9059564Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9082913Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9098940Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9100103Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9140284Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9171170Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9177474Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9197155Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9214039Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9225633Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9274716Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9285320Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9291537Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9307440Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9308730Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9363516Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9367673Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9385627Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9390690Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9435902Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9465692Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9476861Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9487902Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9494964Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9504992Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9605707Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9608548Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9611717Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9619329Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9640248Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9641392Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9688148Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9717924Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9719068Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9729602Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9753892Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9787969Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9798655Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9805951Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9815655Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9827596Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9830234Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9911355Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9916398Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9923623Z Completed 1.6 GiB/9.9 GiB (114.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9940502Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9945469Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9983820Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:26.9996930Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0001727Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0014409Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0028611Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0039994Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0052212Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0057334Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0069483Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0076489Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0098600Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0100964Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0115357Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0129597Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0153129Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0176411Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0201563Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0203700Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0228440Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0238744Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0267720Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0268976Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0302897Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0340308Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0367484Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0400203Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0446624Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0454077Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0458159Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0492345Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0521133Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0537172Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0558873Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0590310Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0631827Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0633515Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0653406Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0675938Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0700983Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0714974Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0749231Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0765320Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0777383Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0794277Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0799975Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0808397Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0856497Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0874473Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0878332Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0914273Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0926789Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0948740Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.0999004Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1002492Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1020029Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1045809Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1071677Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1077819Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1110229Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1123911Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1125265Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1210580Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1212536Z Completed 1.6 GiB/9.9 GiB (114.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1221976Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1240167Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1244794Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1279283Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1324849Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1328106Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1352920Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1354130Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1355184Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1393738Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1410324Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1440361Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1445067Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1451117Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1452890Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1510463Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1517413Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1548314Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1558817Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1570248Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1574271Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1632242Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1639953Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1657580Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1658546Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1680790Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1693110Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1778399Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1789698Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1799066Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1800639Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1804505Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1809858Z Completed 1.6 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1829625Z Completed 1.6 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1838362Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1904547Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1934855Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1943471Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1962589Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1968858Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.1970495Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2053397Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2056464Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2059466Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2064163Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2104581Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2111423Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2165876Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2183566Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2211180Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2213133Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2226305Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2270720Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2295335Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2317996Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2332609Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2341371Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2354585Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2382461Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2413465Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2455056Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2469206Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2474597Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2486735Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2495223Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2502324Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2526508Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2558844Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2574372Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2599110Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2609523Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2635411Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2645629Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2686583Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2693703Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2699875Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2741907Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2750473Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2775409Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2778890Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2796806Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2819916Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2846574Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2853100Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2903158Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.2975122Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3003139Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3004637Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3008690Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3028866Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3105934Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3107233Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3110152Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3123686Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3130093Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3149243Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3266087Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3279486Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3282863Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3291884Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3311184Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3313580Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3355415Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3362493Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3460934Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3462343Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3463812Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3527882Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3529905Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3536775Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3556142Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3596290Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3630841Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3631955Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3643729Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3666308Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3684886Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3722787Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3747122Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3757528Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3763982Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3794244Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3817341Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3831897Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3874110Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3898807Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3902005Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3923400Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3932527Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3941369Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.3991444Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4021116Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4025170Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4032585Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4074132Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4092880Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4123961Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4128263Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4133916Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4149791Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4192970Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4216838Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4248573Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4258905Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4275565Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4284270Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4323730Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4342082Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4353193Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4375977Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4391742Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4401009Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4433684Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4458066Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4470759Z Completed 1.7 GiB/9.9 GiB (114.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4491023Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4492795Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4502404Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4549230Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4550468Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4603963Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4633338Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4643796Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4658203Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4669621Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4672487Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4683420Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4748489Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4751209Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4765637Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4795441Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4804385Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4807425Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4821979Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4850662Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4868660Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4912251Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4920297Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4927387Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4942882Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4949335Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.4988516Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5035851Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5040121Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5049350Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5050756Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5057315Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5096577Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5160044Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5169517Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5175625Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5196717Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5204896Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5205974Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5240375Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5293113Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5302833Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5312150Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5321603Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5323773Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5351128Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5388298Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5404689Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5452377Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5456084Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5456992Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5482142Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5485811Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5520477Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5527112Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5567637Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5580458Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5593293Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5640494Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5647820Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5663474Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5695669Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5712588Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5760333Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5805503Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5823391Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5824509Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5844184Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5851706Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5880466Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5929682Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5938403Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5948135Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5966250Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5984666Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.5993324Z Completed 1.7 GiB/9.9 GiB (114.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6032846Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6034291Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6036061Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6037171Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6087391Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6104934Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6109835Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6133483Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6147211Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6149120Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6177331Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6223778Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6225059Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6248972Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6250287Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6271186Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6299037Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6364086Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6372331Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6375161Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6383709Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6410447Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6459993Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6480697Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6482389Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6484692Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6513367Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6529500Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6543795Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6583417Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6588729Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6595340Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6606481Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6639270Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6654654Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6660246Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6694557Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6701973Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6706302Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6738339Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6777785Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6794279Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6802108Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6878965Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6904397Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6920133Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6926103Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6934960Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6937146Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6960382Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6966838Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6969482Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6976078Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6981980Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.6996304Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7011652Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7026786Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7035091Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7044159Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7059681Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7067587Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7096102Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7171512Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7187297Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7193455Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7260260Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7295212Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7317344Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7376440Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7394190Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7404528Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7458305Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7470792Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7483255Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7491446Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7509862Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7521545Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7527332Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7532842Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7560368Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7575377Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7586125Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7601377Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7607710Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7623332Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7630353Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7641783Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7663758Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7682897Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7700823Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7743376Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7776424Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7787282Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7830211Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7861561Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7892814Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7910891Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7918108Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7919982Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7937526Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7972125Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.7995554Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8003147Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8007797Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8012106Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8018813Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8165139Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8262889Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8269920Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8315506Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8355617Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8380791Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8397112Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8398634Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8426697Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8431150Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8454346Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8459147Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8463252Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8471983Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8510864Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8517392Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8526471Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8567444Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8571814Z Completed 1.7 GiB/9.9 GiB (114.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8576793Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8602429Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8611438Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8614647Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8649295Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8651368Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8656326Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8682792Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8685116Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8695542Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8728214Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8734721Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8735805Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8777541Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8779596Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8788109Z Completed 1.7 GiB/9.9 GiB (115.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8797786Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8813627Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8814815Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8835377Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8859860Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8892949Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8936977Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8945179Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8951876Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8993356Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.8998125Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9007419Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9010189Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9019053Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9025566Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9030299Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9038590Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9044037Z Completed 1.7 GiB/9.9 GiB (115.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9048629Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9062201Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9070105Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9076991Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9083813Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9090666Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9102290Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9110461Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9112294Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9118591Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9125480Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9264480Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9284207Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9311391Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9314664Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9342200Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9353149Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9361976Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9377207Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9378921Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9404797Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9420350Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9429271Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9463740Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9485165Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9487983Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9511826Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9528195Z Completed 1.7 GiB/9.9 GiB (115.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9533639Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9563785Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9591957Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9625961Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9627502Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9628731Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9631161Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9667984Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9676246Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9719112Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9720292Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9727834Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9732803Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9743599Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9748798Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9761037Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9771170Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9780878Z Completed 1.7 GiB/9.9 GiB (115.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9786333Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9793393Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9801041Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9808234Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9815564Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9831108Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9838294Z Completed 1.7 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9843942Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9911515Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9919153Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9925616Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9931842Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9939491Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9948070Z Completed 1.8 GiB/9.9 GiB (115.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9958828Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9967316Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:27.9976286Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0012361Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0018468Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0020176Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0028975Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0036531Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0041374Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0049170Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0056795Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0064773Z Completed 1.8 GiB/9.9 GiB (115.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0079219Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0082384Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0089476Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0101881Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0109929Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0119575Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0130407Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0133730Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0140550Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0147945Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0156321Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0171846Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0182752Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0218947Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0221007Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0258733Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0265791Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0287357Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0337530Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0348153Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0393128Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0401821Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0436697Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0441200Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0498140Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0508014Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0517122Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0531704Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0584510Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0592833Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0639162Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0657652Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0671069Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0675354Z Completed 1.8 GiB/9.9 GiB (115.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0695481Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0698544Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0720564Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0729773Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0738523Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0747665Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0754417Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0764063Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0769939Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0778966Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0786157Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0796611Z Completed 1.8 GiB/9.9 GiB (115.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0798636Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0809837Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0811450Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0824574Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0829772Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0843962Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0857955Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0884418Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0924034Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0930504Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0943370Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0961573Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.0976477Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1003504Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1025802Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1051748Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1060102Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1065929Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1075762Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1083822Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1119621Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1140630Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1180484Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1185065Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1185980Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1219426Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1226817Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1275178Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1279457Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1291363Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1339754Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1349884Z Completed 1.8 GiB/9.9 GiB (115.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1355100Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1362071Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1404963Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1414989Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1437283Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1462561Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1470073Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1476405Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1498738Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1521027Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1562201Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1575846Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1590791Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1591955Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1657578Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1658641Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1664429Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1687922Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1697049Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1711278Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1773010Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1774335Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1781261Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1814388Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1827341Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1856422Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1868063Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1890788Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1896606Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1920853Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1945718Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1983031Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.1992892Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2007389Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2017792Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2019525Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2050176Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2088973Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2093741Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2096903Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2119646Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2125508Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2176360Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2193130Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2198736Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2209097Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2252077Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2275164Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2290897Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2294965Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2310543Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2349633Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2375393Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2383589Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2384464Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2391457Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2440468Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2446990Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2473141Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2476109Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2519535Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2527506Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2556289Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2563284Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2570808Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2620063Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2664296Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2698779Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2724659Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2745210Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2748350Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2783446Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2823723Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2877484Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2883324Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2890091Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2906496Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2926298Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2934686Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2969477Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2988963Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.2992556Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3005767Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3025307Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3051560Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3083447Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3088805Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3090498Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3105037Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3145596Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3172802Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3186583Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3192953Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3216722Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3257056Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3283801Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3286157Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3290446Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3300227Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3308084Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3345984Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3350073Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3378240Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3379331Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3388985Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3400994Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3421347Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3481118Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3483235Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3490730Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3515732Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3623389Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3646590Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3659910Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3745100Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3770671Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3777053Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3800160Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3849039Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3864252Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3867694Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3879016Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3915385Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3947635Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3956529Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3970372Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3978448Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.3990149Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4009852Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4018576Z Completed 1.8 GiB/9.9 GiB (115.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4031046Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4037137Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4045818Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4059653Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4063845Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4067432Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4085724Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4098711Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4138333Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4161396Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4187614Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4188479Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4216469Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4225614Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4264934Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4356016Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4368270Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4378148Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4388995Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4407001Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4415180Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4426479Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4433357Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4441836Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4443864Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4450408Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4458731Z Completed 1.8 GiB/9.9 GiB (116.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4468312Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4496563Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4502606Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4509041Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4514802Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4521418Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4530414Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4538371Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4546711Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4552546Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4560443Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4600867Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4648909Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4725653Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4731706Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4780907Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4794302Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4803011Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4807013Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4818019Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4824287Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4825279Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4870823Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4875647Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4888948Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4911608Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4912884Z Completed 1.8 GiB/9.9 GiB (116.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4918261Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4927013Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4965227Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4977431Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.4980302Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5003277Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5015811Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5027175Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5045734Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5072140Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5083607Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5089911Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5131858Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5138955Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5151498Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5168965Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5173999Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5201477Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5203718Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5212235Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5268991Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5276132Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5286143Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5303535Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5315082Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5327026Z Completed 1.8 GiB/9.9 GiB (116.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5343248Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5352341Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5361264Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5368342Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5394031Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5397029Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5402278Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5409889Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5478731Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5479886Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5480983Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5519134Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5520655Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5521792Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5559754Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5567342Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5572057Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5573401Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5618684Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5628484Z Completed 1.8 GiB/9.9 GiB (116.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5642233Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5645816Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5669212Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5685112Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5697421Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5713442Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5720576Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5724697Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5769183Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5788033Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5804151Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5812166Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5845150Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5866344Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5882463Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5887438Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5920131Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5924378Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5938373Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5961976Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5982408Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.5988192Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6007670Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6032207Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6052396Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6071497Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6075487Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6090301Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6094873Z Completed 1.8 GiB/9.9 GiB (116.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6132844Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6134352Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6136423Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6137729Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6140199Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6167286Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6174889Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6184497Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6203116Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6213991Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6225159Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6240566Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6249875Z Completed 1.8 GiB/9.9 GiB (116.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6259566Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6266319Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6302248Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6309330Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6323655Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6331814Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6345971Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6355220Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6375277Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6381475Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6386841Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6396127Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6412846Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6421760Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6426572Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6452210Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6465845Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6471352Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6508796Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6514818Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6545136Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6552192Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6603299Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6626864Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6645358Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6690886Z Completed 1.8 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6697962Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6736343Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6840029Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6863167Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6864202Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6882384Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6883777Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6915362Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6916383Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6969612Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.6996028Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7026626Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7032323Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7063676Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7064561Z Completed 1.8 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7102866Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7118706Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7133922Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7150733Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7167187Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7196794Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7201826Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7206574Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7263805Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7269366Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7273208Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7293893Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7324708Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7326862Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7375068Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7395069Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7398191Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7400605Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7412595Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7458512Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7476540Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7493129Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7503064Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7511979Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7541682Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7576852Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7589336Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7601375Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7604805Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7611841Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7657109Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7685415Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7692208Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7700496Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7704381Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7735276Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7775224Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7784826Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7793875Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7804592Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7810782Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7849372Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7863407Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7880947Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7915548Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7927823Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7950373Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7965497Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.7969317Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8009532Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8015897Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8020663Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8060747Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8089731Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8099709Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8100639Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8106449Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8122813Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8156722Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8202267Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8204262Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8205856Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8229963Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8277263Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8300282Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8317646Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8323671Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8347591Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8382815Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8384171Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8390307Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8475880Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8512559Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8537029Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8546492Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8551860Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8553362Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8590507Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8612578Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8638022Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8673474Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8685541Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8697098Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8719947Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8751374Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8792410Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8803204Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8806299Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8832181Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8835021Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8875018Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8880325Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8889521Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8893667Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8949242Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8950087Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8951250Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.8963681Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9001434Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9016441Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9025933Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9054164Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9067526Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9083719Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9104359Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9129932Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9134152Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9156418Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9171951Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9199556Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9206240Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9222113Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9312262Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9321588Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9325906Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9338831Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9471862Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9504177Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9511427Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9524503Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9560523Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9620096Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9626075Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9639269Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9650297Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9666295Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9680317Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9691261Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9696610Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9724823Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9731999Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9739876Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9757179Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9772273Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9801480Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9849207Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9867046Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9924379Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9945861Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9992934Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:28.9994864Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0022851Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0036433Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0079476Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0089286Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0090714Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0138091Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0154712Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0191474Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0209103Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0217078Z Completed 1.9 GiB/9.9 GiB (116.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0225743Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0226813Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0289657Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0291865Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0297256Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0300997Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0329792Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0338127Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0339328Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0365505Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0377529Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0384943Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0391828Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0405682Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0422461Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0428982Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0435136Z Completed 1.9 GiB/9.9 GiB (116.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0443787Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0449037Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0456123Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0461985Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0463789Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0470408Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0485515Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0492894Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0515884Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0530054Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0563161Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0570038Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0577051Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0589262Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0624627Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0628773Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0683876Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0704920Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0712862Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0738180Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0745740Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0829366Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0839494Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0845996Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0850181Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0856002Z Completed 1.9 GiB/9.9 GiB (116.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0884002Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0900040Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0903292Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0942130Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0943694Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0951450Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0956949Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0966760Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.0980180Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1001320Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1009611Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1045175Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1053249Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1076097Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1097825Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1144467Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1159128Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1162192Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1191687Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1228013Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1248943Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1262478Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1289362Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1295273Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1327138Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1329673Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1354352Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1367479Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1449326Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1450868Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1452235Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1454430Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1498897Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1514709Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1536581Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1551688Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1576125Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1586478Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1593121Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1618264Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1663496Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1685102Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1700160Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1705094Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1727156Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1734275Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1747467Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1777154Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1778646Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1811782Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1832392Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1857600Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1858685Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1901024Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1908705Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1924827Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1935275Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1962402Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.1971382Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2003421Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2031153Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2040088Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2067284Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2074793Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2094008Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2135513Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2141118Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2146011Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2180820Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2190366Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2192001Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2225560Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2250733Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2264713Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2289276Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2304499Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2305346Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2345788Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2356937Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2381334Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2407219Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2426429Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2427636Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2461492Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2475799Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2476880Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2483315Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2528636Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2549671Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2554538Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2590215Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2593806Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2608766Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2613839Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2670428Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2709679Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2720974Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2725840Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2790260Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2839114Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2942562Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2956284Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2975484Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.2988830Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3005547Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3014042Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3019696Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3067608Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3105339Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3124181Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3130745Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3139161Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3149635Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3180046Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3183636Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3245254Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3252883Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3258457Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3264013Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3270373Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3309241Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3331951Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3369021Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3379770Z Completed 1.9 GiB/9.9 GiB (116.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3383790Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3393910Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3402042Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3438124Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3466231Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3481068Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3493407Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3524342Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3525903Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3536948Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3567246Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3588820Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3595125Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3613356Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3641613Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3642545Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3658466Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3712999Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3720312Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3726779Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3730309Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3751000Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3771326Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3811774Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3818263Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3819314Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3822352Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3847170Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3875940Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3916383Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3920144Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3943623Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3952612Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3972398Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.3986484Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4046702Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4050846Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4066183Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4084916Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4086240Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4089435Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4115921Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4192909Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4214029Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4215239Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4216283Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4219626Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4235785Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4249809Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4254100Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4305234Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4314531Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4336066Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4367379Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4379562Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4384780Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4411336Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4439317Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4443483Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4499953Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4517997Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4554376Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4563890Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4590305Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4591608Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4618877Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4625684Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4657058Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4740415Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4743962Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4758857Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4763623Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4773693Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4800122Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4815401Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4830083Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4905291Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4915349Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4927603Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4961558Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4971770Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.4988897Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5012174Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5026898Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5045692Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5065832Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5071428Z Completed 1.9 GiB/9.9 GiB (117.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5089594Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5129911Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5147602Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5154225Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5185663Z Completed 1.9 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5201651Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5207012Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5253377Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5255352Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5264511Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5300146Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5321140Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5325050Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5350471Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5356223Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5364973Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5377246Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5413727Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5437631Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5438772Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5451050Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5476876Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5502321Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5511387Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5513584Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5545163Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5566666Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5575896Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5620481Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5623495Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5635049Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5652956Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5688138Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5708539Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5730882Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5737849Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5744746Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5763892Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5775741Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5788718Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5793581Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5795270Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5841709Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5851262Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5860573Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5893767Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5910059Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5937720Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5953057Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.5980371Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6017487Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6059727Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6071955Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6101903Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6103453Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6148368Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6152588Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6166470Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6206557Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6219433Z Completed 2.0 GiB/9.9 GiB (117.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6238513Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6251949Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6255174Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6286542Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6317804Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6330442Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6334789Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6351887Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6389361Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6402045Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6411729Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6419943Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6455623Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6461020Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6467633Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6501070Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6523810Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6525723Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6545273Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6563422Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6573308Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6576379Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6585870Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6607949Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6618642Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6637136Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6664009Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6672595Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6688003Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6721089Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6733511Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6751648Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6758836Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6768768Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6844886Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6854565Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6866856Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6878437Z Completed 2.0 GiB/9.9 GiB (117.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6884731Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6891288Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6895306Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6910010Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6946056Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6953251Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6961312Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6969243Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6979043Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6989612Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.6999850Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7004437Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7067490Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7101400Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7107242Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7112867Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7137184Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7196965Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7201507Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7222200Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7232000Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7265070Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7268748Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7280146Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7287888Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7324750Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7342440Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7352539Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7359921Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7369536Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7373046Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7382203Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7397650Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7400938Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7412998Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7428035Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7463368Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7472847Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7488506Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7505079Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7508645Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7540500Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7565077Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7575217Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7589129Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7644481Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7664489Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7672817Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7776264Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7826480Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7830286Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7849957Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7857450Z Completed 2.0 GiB/9.9 GiB (117.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7860752Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7877033Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7882178Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7904694Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7913740Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7923708Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7947059Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7958734Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.7992413Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8018468Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8021997Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8036803Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8067961Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8070793Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8090845Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8101578Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8115123Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8158537Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8160022Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8171247Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8200545Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8205031Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8241165Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8257604Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8258446Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8313196Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8342464Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8348846Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8355960Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8369800Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8403949Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8411637Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8446913Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8460081Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8496145Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8505352Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8513392Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8519043Z Completed 2.0 GiB/9.9 GiB (117.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8531699Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8558903Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8567345Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8588458Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8609212Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8615289Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8618648Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8620909Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8630948Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8682043Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8712511Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8725944Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8752070Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8759011Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8779098Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8789310Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8808331Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8811066Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8835115Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8837931Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8859134Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8870763Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8943131Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8951730Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8955669Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8984533Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.8989191Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9016147Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9055749Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9090732Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9121900Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9138585Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9139763Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9156087Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9171593Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9196428Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9215860Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9223816Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9234559Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9279055Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9293520Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9298370Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9322139Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9330565Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9345090Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9395694Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9408519Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9414650Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9415366Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9452148Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9471877Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9480146Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9490187Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9528747Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9547307Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9549635Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9557582Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9608250Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9614464Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9644926Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9663316Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9682196Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9691466Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9721216Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9783668Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9812962Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9822341Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9830705Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9835470Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9896596Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9897752Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9929568Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9936311Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9956102Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9972900Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:29.9984204Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0022871Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0031482Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0058424Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0063941Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0095456Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0099496Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0107498Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0124185Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0184453Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0191260Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0198878Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0223760Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0251353Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0265699Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0349208Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0368912Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0388982Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0402327Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0411053Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0449692Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0454190Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0506224Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0538532Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0546753Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0582041Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0595310Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0604366Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0611960Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0635251Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0640599Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0658812Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0708836Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0724723Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0731220Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0733402Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0768057Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0775346Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0815042Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0850220Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0855036Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0862766Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0872294Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0876097Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0914822Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0952325Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.0979384Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1005012Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1013464Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1014442Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1033639Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1072401Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1094258Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1103412Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1114273Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1151590Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1166863Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1206242Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1227077Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1253191Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1283696Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1301619Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1340792Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1356303Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1391036Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1406058Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1418974Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1420298Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1444767Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1478431Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1503563Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1520590Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1525284Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1547043Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1554816Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1565918Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1628569Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1647921Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1653883Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1678839Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1689497Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1713481Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1728002Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1747736Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1762019Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1784470Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1804748Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1809687Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1836348Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1849660Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1859991Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1911039Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1917187Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1929318Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1956422Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1968052Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.1981578Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2009169Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2038053Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2068472Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2105842Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2110895Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2118120Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2140267Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2176774Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2205058Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2241885Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2284711Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2285769Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2296246Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2303851Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2318035Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2335256Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2381180Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2384949Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2406843Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2422089Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2454365Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2455847Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2495879Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2531725Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2537700Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2569482Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2570667Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2576093Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2602391Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2620535Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2646257Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2675265Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2677181Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2720685Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2727293Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2729358Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2743878Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2824005Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2825177Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2836564Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2846564Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2864679Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2933580Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2935424Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.2974179Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3000825Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3023364Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3049191Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3050287Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3076247Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3084185Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3151654Z Completed 2.0 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3188985Z Completed 2.0 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3191920Z Completed 2.1 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3200131Z Completed 2.1 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3200972Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3236543Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3241061Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3297553Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3308014Z Completed 2.1 GiB/9.9 GiB (117.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3329670Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3331559Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3339280Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3350250Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3367473Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3437242Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3456935Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3465976Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3466893Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3483869Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3499742Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3544582Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3570482Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3571734Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3576235Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3593830Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3619092Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3664234Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3669294Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3695798Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3699747Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3702001Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3743082Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3781853Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3782806Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3794477Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3802964Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3809120Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3842548Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3889383Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3895923Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3897577Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3904497Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3906372Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3981808Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3989245Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3990245Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3994168Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.3997141Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4085825Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4087313Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4092491Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4093766Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4102163Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4179340Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4187740Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4193801Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4200367Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4205574Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4248461Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4279108Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4317589Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4328769Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4330074Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4354271Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4363680Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4369713Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4409657Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4464404Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4486570Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4500921Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4507070Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4517111Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4569431Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4586032Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4595275Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4605665Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4626788Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4649051Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4666279Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4718896Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4733680Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4745320Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4761821Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4788169Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4789627Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4817158Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4866969Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4871713Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4888367Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4892953Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4907187Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4943390Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4981403Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4989169Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.4995101Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5006645Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5008431Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5042232Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5087079Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5090115Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5111938Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5117581Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5142849Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5192108Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5197497Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5223436Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5230479Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5269492Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5280627Z Completed 2.1 GiB/9.9 GiB (117.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5300638Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5308638Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5328863Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5358130Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5364588Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5385422Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5417267Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5433077Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5446700Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5489566Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5490850Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5495725Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5537124Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5542567Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5573683Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5585772Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5617973Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5627721Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5632480Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5667036Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5669530Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5709734Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5715396Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5730055Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5740662Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5754127Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5767062Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5777248Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5785109Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5796096Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5805249Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5824240Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5887378Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5888649Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5914489Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5920788Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5938294Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5990417Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.5999287Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6009380Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6023868Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6056843Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6084317Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6098815Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6104719Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6151402Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6153732Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6233007Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6251123Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6260095Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6298216Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6340903Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6363937Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6386409Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6401239Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6419356Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6453318Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6480210Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6489870Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6512587Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6534352Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6549776Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6591728Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6610239Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6624911Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6634112Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6643027Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6666102Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6667291Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6673348Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6700381Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6707130Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6732190Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6741834Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6760628Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6764612Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6781128Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6782868Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6796814Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6802568Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6842502Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6878359Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6879931Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6904816Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6907559Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6942819Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6948794Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.6961136Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7005948Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7079455Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7086782Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7119731Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7135619Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7142232Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7157225Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7168673Z Completed 2.1 GiB/9.9 GiB (117.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7175149Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7181746Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7184705Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7198663Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7205581Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7216670Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7227936Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7251788Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7262061Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7312356Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7351810Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7352558Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7367159Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7380263Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7406160Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7415047Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7435448Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7440696Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7451049Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7470501Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7471655Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7477004Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7483298Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7492370Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7513973Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7524171Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7539113Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7558386Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7581353Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7583349Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7597196Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7625953Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7636895Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7654545Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7658313Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7684515Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7689777Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7709122Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7730473Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7743046Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7771355Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7822001Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7826243Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.7850894Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8041411Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8056078Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8066537Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8074918Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8087834Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8103871Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8116763Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8134629Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8140441Z Completed 2.1 GiB/9.9 GiB (117.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8147087Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8152545Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8163347Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8169194Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8180909Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8186258Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8192084Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8198458Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8207062Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8214355Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8276394Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8298231Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8303399Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8305414Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8337108Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8360162Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8368858Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8376413Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8386054Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8391773Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8404064Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8411958Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8423681Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8451656Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8462871Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8490842Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8545166Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8560097Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8590417Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8627880Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8678548Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8805735Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8811929Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8819312Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8826203Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8831921Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8838596Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8844973Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8850927Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8857202Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8863404Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8956481Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8974086Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8980801Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8989476Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.8997181Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9009055Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9033690Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9040729Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9054661Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9059677Z Completed 2.1 GiB/9.9 GiB (117.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9069716Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9099770Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9114627Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9119534Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9133530Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9145354Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9186878Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9189731Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9212055Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9230098Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9249372Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9250742Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9281975Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9299190Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9307148Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9337400Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9348678Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9366900Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9369740Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9412955Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9420231Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9424060Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9426979Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9458387Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9463054Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9467692Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9491529Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9498696Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9509090Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9516591Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9523304Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9531687Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9661702Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9666931Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9672550Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9678670Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9684320Z Completed 2.1 GiB/9.9 GiB (118.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9689669Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9695316Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9700534Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9706292Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9712000Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9731404Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9737941Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9745100Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9751722Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9758175Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9765276Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9771495Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9778643Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9785345Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9791068Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9874900Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9894716Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9904267Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:30.9984943Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0012204Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0018606Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0025702Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0063183Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0066476Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0087019Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0100550Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0127635Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0151684Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0153209Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0172232Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0204532Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0215718Z Completed 2.1 GiB/9.9 GiB (118.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0224753Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0231876Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0261254Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0265040Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0276877Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0286066Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0291920Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0295828Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0306972Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0313725Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0341012Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0345313Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0353582Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0361286Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0386684Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0392969Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0398997Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0419950Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0437988Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0575553Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0582273Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0589475Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0597582Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0605025Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0613139Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0620829Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0627513Z Completed 2.1 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0634047Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0641547Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0650282Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0669175Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0676257Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0682972Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0688715Z Completed 2.1 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0695504Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0701537Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0707833Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0714419Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0720015Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0911448Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0937550Z Completed 2.2 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0941192Z Completed 2.2 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0964688Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.0973882Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1023710Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1044052Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1047806Z Completed 2.2 GiB/9.9 GiB (118.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1055191Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1073631Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1080609Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1087401Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1093926Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1100205Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1106511Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1112816Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1118288Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1124628Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1131475Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1201400Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1210080Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1223602Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1232099Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1238034Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1251583Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1254821Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1265424Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1271128Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1318228Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1336483Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1343003Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1358883Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1506012Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1513255Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1521521Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1529842Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1537989Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1544476Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1552167Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1562958Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1571965Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1583084Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1586847Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1598423Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1679205Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1685422Z Completed 2.2 GiB/9.9 GiB (118.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1692928Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1699175Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1707512Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1711737Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1719698Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1723887Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1735821Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1736539Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1784930Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1827670Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1869454Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1892268Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1938948Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1945887Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1958421Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1973507Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1995532Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.1996737Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2014527Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2018937Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2029334Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2035032Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2048453Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2052521Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2063879Z Completed 2.2 GiB/9.9 GiB (118.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2066848Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2077624Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2080289Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2091466Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2099005Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2122794Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2125284Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2130792Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2140394Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2151889Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2157416Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2164336Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2172069Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2179949Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2186724Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2273397Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2282438Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2288240Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2295344Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2301720Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2308526Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2317582Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2323353Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2329372Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2336429Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2418061Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2440369Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2577775Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2585848Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2593814Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2600377Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2606849Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2615855Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2622354Z Completed 2.2 GiB/9.9 GiB (118.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2629994Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2635440Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2649952Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2657559Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2663149Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2668408Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2674971Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2683263Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2686615Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2699819Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2707066Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2713151Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2720050Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2728308Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2737704Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2799462Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2828004Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2853138Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2869623Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2902224Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2907867Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2914264Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2934367Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2939220Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2948244Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2957657Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2968748Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2973168Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2991028Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.2995431Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3009919Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3192030Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3199740Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3207854Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3216680Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3224848Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3231829Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3239799Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3247890Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3254878Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3261491Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3474780Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3492374Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3499546Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3507827Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3515461Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3522094Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3529235Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3536452Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3558063Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3565559Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3569517Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3583719Z Completed 2.2 GiB/9.9 GiB (118.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3604492Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3611463Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3623897Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3630703Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3638733Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3652328Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3677315Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3678528Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3694497Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3714096Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3721769Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3727191Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3750009Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3766646Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3781905Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3793261Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3801231Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3821846Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3827431Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3831391Z Completed 2.2 GiB/9.9 GiB (118.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3844492Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3846694Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3860329Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3868091Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3873590Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3881031Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3888269Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3895806Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3902290Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.3910431Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4077111Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4082926Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4088771Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4093799Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4099581Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4112323Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4120499Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4126702Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4137681Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4148736Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4154703Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4159371Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4166073Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4172449Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4178633Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4183372Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4188761Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4194880Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4200935Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4205791Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4375385Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4387401Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4467951Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4480944Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4498596Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4506140Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4516805Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4532244Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4537261Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4549293Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4577893Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4595006Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4601321Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4618220Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4620101Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4637325Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4655799Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4708256Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4721830Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4744393Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4749970Z Completed 2.2 GiB/9.9 GiB (118.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4762041Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4766570Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4781129Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4788005Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4794813Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4800976Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4807131Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4834058Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4840985Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4847418Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4854044Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4860485Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4866975Z Completed 2.2 GiB/9.9 GiB (118.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4873604Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4879873Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4886748Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4893114Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4921147Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4926408Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4931340Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4936895Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4941692Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4946860Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4951684Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4957351Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4961960Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4967377Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.4995010Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5004660Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5013432Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5022128Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5035414Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5039444Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5055613Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5057562Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5067114Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5073926Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5082114Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5090681Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5261699Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5270277Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5277383Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5284652Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5292985Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5299513Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5307353Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5314828Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5321378Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5328702Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5352905Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5369796Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5383977Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5422162Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5457239Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5499290Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5521791Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5538407Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5564038Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5699492Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5705704Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5713323Z Completed 2.2 GiB/9.9 GiB (119.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5719537Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5756534Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5763705Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5771204Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5778988Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5786825Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5793711Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5799120Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5806190Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5813353Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5819377Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5879819Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5887999Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5895418Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5903467Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5913464Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5929505Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5933617Z Completed 2.2 GiB/9.9 GiB (119.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5948534Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5951275Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5969913Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5974708Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.5987610Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6009827Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6020807Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6025019Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6033298Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6041799Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6049403Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6058142Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6066668Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6167326Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6177337Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6196110Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6204976Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6215202Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6223739Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6234123Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6242878Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6252573Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6263088Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6344402Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6378511Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6420644Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6432514Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6440054Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6446651Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6453147Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6460445Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6467122Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6473946Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6479396Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6486179Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6492017Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6691279Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6698757Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6707450Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6714386Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6721409Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6728980Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6737136Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6744183Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6750069Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6757088Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6793858Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6802940Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6813544Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6823507Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6847702Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6859726Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6865790Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6879570Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6886462Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6889370Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6899958Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.6936431Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7071743Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7077557Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7090555Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7102063Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7111352Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7127186Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7128704Z Completed 2.2 GiB/9.9 GiB (119.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7147738Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7158027Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7168464Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7177592Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7180244Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7186811Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7193118Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7199493Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7205617Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7211752Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7218267Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7224977Z Completed 2.2 GiB/9.9 GiB (119.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7238978Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7243684Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7250110Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7256572Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7263465Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7271837Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7278879Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7287435Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7293496Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7301886Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7309180Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7329213Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7337444Z Completed 2.2 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7353238Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7355485Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7361711Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7369736Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7382225Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7395533Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7400827Z Completed 2.2 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7410037Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7415785Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7423469Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7431673Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7436224Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7442175Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7448726Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7454355Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7460214Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7466243Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7472773Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7627594Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7637332Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7707892Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7717729Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7885777Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7889066Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7896238Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7902028Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7908368Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7914801Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7920980Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7930169Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7934716Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7940800Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7969458Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.7979383Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8071636Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8096243Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8105363Z Completed 2.3 GiB/9.9 GiB (119.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8115019Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8121987Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8129827Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8149021Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8163768Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8165410Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8180488Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8181402Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8194777Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8204252Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8208462Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8222141Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8233280Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8236489Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8246472Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8253085Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8265194Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8269778Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8301901Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8307149Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8318736Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8337342Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8353118Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8362865Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8371403Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8378226Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8389530Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8398885Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8404323Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8413043Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8420924Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8429234Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8434929Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8440294Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8446368Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8784704Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8791060Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8809221Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8812211Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8828413Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8830149Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8844761Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8845902Z Completed 2.3 GiB/9.9 GiB (119.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8860138Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8867119Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8878166Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8888505Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8896256Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8903680Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8907357Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8921117Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8924062Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8930171Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8937113Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.8992892Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9013445Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9023616Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9033457Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9042235Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9050475Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9068056Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9075703Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9087293Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9105670Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9113868Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9123359Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9131820Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9194483Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9217631Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9263949Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9275418Z Completed 2.3 GiB/9.9 GiB (119.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9281846Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9297420Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9333404Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9334678Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9342307Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9372600Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9373899Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9379015Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9382914Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9397541Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9408782Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9422562Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9439419Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9443402Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9473240Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9494015Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9495106Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9536515Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9539789Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9547013Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9569579Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9574470Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9586114Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9684400Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9691452Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9705620Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9715791Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9729564Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9735425Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9748608Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9756644Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9771509Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9773228Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9787595Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9790927Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9806332Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9809775Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9827183Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9844364Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9853495Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9860350Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9891942Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9909578Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9933883Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:31.9999753Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0035012Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0063446Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0102846Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0124873Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0175063Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0208509Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0233001Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0254254Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0271333Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0273511Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0285595Z Completed 2.3 GiB/9.9 GiB (119.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0301090Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0302403Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0334412Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0336863Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0345395Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0391598Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0393417Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0408687Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0410789Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0430647Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0452047Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0454327Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0468740Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0488416Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0505481Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0513113Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0526861Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0550658Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0564909Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0598854Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0605418Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0628916Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0653527Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0668996Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0678995Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0710727Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0713040Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0731264Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0736243Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0744210Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0778467Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0782859Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0793377Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0812998Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0818404Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0830905Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0832436Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0847794Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0848916Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0861471Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0864423Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0877021Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0879612Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0891249Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.0898099Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1087468Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1158594Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1160773Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1174261Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1191062Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1202125Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1212335Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1228109Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1240114Z Completed 2.3 GiB/9.9 GiB (119.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1244882Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1271530Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1275925Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1280437Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1312075Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1354332Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1356764Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1367173Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1398708Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1417661Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1425424Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1437789Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1450876Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1474931Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1476038Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1493399Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1501929Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1526777Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1547748Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1556161Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1588934Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1598928Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1618819Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1625910Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1641559Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1654260Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1669687Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1683277Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1704448Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1714826Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1732897Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1748149Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1765329Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1789687Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1835303Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1841431Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1846823Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1852254Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1857886Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1863192Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1868505Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1873955Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1879422Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.1885241Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2016054Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2088990Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2091079Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2097005Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2116896Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2131555Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2139761Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2149241Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2164153Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2173247Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2204523Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2224824Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2237729Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2281704Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2289197Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2318113Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2345132Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2397754Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2399642Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2423137Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2433784Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2448706Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2496020Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2505436Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2530932Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2559388Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2565125Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2583275Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2617834Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2632380Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2647398Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2668549Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2688576Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2730422Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2738042Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2743785Z Completed 2.3 GiB/9.9 GiB (119.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2754861Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2765851Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2785289Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2792946Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2809207Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2825138Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2841836Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2856141Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2871059Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2874221Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2894598Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2895967Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2900214Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2929097Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2934018Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2957060Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2977698Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.2998396Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3049258Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3072288Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3079748Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3081083Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3103077Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3145977Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3181771Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3184418Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3191895Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3198244Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3217767Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3255632Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3274286Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3298983Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3308446Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3322330Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3345125Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3346313Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3363909Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3382969Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3409341Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3417835Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3445170Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3516283Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3530880Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3561408Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3568129Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3574651Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3598742Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3601371Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3602790Z Completed 2.3 GiB/9.9 GiB (120.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3613769Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3615079Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3621949Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3642455Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3652127Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3662271Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3668792Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3677423Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3700414Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3708625Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3718619Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3731645Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3739910Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3749396Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3752354Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3781591Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3787223Z Completed 2.3 GiB/9.9 GiB (120.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3799307Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3807055Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3815642Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3828261Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3840421Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3842445Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3867122Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3900320Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3913025Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3957987Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.3985955Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4005896Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4029498Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4081428Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4092905Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4102503Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4119531Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4135925Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4161738Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4177639Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4182399Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4190017Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4208239Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4216841Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4236325Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4241497Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4271882Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4282969Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4286222Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4293015Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4323351Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4345901Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4351706Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4365366Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4437871Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4456090Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4461060Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4491445Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4498432Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4514082Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4521566Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4541898Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4552263Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4568215Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4599722Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4626066Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4630126Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4637687Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4665842Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4681373Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4689864Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4716251Z Completed 2.3 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4733226Z Completed 2.4 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4742861Z Completed 2.4 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4750645Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4775537Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4802063Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4861209Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4864562Z Completed 2.4 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4870429Z Completed 2.4 GiB/9.9 GiB (120.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4889640Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4917145Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4928776Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4932896Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4954298Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4966132Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4992157Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.4993291Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5043272Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5048357Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5064676Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5096271Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5115540Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5124501Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5171092Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5184399Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5195120Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5225676Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5230969Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5248489Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5309825Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5324479Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5327430Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5348699Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5370551Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5410382Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5418309Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5432235Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5445042Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5452390Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5468743Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5501992Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5503410Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5511630Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5524264Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5548232Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5586230Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5608478Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5624172Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5630344Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5650009Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5681453Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5705116Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5711256Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5745364Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5767784Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5793619Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5797430Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5801373Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5840779Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5841977Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5850709Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5900408Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5910487Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5915929Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5938377Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5943035Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.5989167Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6037562Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6044230Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6053230Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6070962Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6075606Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6109677Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6171784Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6173768Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6174771Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6176981Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6180002Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6183604Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6198146Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6247552Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6259569Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6260821Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6270681Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6330447Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6345782Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6350330Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6373814Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6386401Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6422992Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6430715Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6454633Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6471895Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6489437Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6521796Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6526015Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6562523Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6563899Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6605439Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6616070Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6623087Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6635193Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6646133Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6687823Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6703696Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6725478Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6728078Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6750610Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6780273Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6791602Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6801556Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6828117Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6851602Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6854869Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6868171Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6879514Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6882229Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6900227Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.6905486Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7002953Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7010316Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7011362Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7016999Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7053122Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7060286Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7127824Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7144427Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7197222Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7234910Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7244705Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7305197Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7335722Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7336846Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7393545Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7394819Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7408917Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7437028Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7454045Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7455479Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7483349Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7520669Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7530438Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7544609Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7565781Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7595411Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7633250Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7646829Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7655493Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7661157Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7701007Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7754749Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7757814Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7773381Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7793883Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7797443Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7831141Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7849290Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7879716Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7881048Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7881874Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7931140Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7940898Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7961138Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7991331Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.7999692Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8013344Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8024186Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8063660Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8077600Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8080948Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8108644Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8138172Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8148543Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8159019Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8165608Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8217527Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8221386Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8227480Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8237424Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8243928Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8259232Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8264454Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8279878Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8331924Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8360384Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8388919Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8394109Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8437422Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8443950Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8469115Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8509099Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8516815Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8537552Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8549903Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8570799Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8633106Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8661109Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8662272Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8701214Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8743534Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8755388Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8756544Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8766700Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8819341Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8865952Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8868283Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8882140Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8891352Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8898515Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8899801Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8978000Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8987292Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.8988822Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9016957Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9037585Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9038783Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9062607Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9076838Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9115176Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9120774Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9140235Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9155514Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9171830Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9178013Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9198449Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9226657Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9246771Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9281727Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9291252Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9305572Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9309368Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9320452Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9341950Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9352033Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9363640Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9423274Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9431905Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9438163Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9469413Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9477420Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9478735Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9485745Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9530278Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9546564Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9551852Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9569269Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9586884Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9610933Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9643258Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9650653Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9659315Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9694163Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9704381Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9734509Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9763866Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9781727Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9820220Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9851455Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9886424Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9902442Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9939200Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9974889Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:32.9983740Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0001450Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0006029Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0043540Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0065135Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0088706Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0099533Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0101295Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0113393Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0147638Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0183929Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0185054Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0212055Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0230824Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0236549Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0238462Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0289573Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0331034Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0337331Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0346514Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0347237Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0380102Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0445819Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0459883Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0463470Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0475192Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0485670Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0570127Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0625771Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0635592Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0651955Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0712548Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0713800Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0737312Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0774319Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0775722Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0808305Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0829929Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0859796Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0879020Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0892975Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0902444Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.0947304Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1004003Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1005369Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1006570Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1053491Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1098349Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1104622Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1110581Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1118628Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1146453Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1165522Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1169424Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1217011Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1243102Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1268122Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1273303Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1279579Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1292844Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1309592Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1356861Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1364070Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1372925Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1384454Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1395538Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1422055Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1460064Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1470814Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1488630Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1490350Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1491276Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1548402Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1574426Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1575536Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1593681Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1601559Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1608673Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1660255Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1682589Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1684755Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1721325Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1722484Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1726945Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1793753Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1794925Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1796155Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1818346Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1856473Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1878361Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1882003Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1914036Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1946997Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1948284Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1957214Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1977247Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.1994586Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2030553Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2037909Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2051674Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2073791Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2101535Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2115860Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2134186Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2186291Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2190066Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2196830Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2213733Z Completed 2.4 GiB/9.9 GiB (120.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2214622Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2232392Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2255089Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2263026Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2281573Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2317712Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2343810Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2359805Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2370846Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2381103Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2394140Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2433478Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2439078Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2449853Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2472302Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2485826Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2510371Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2523369Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2536057Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2590389Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2594106Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2619280Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2625268Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2632970Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2639432Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2654394Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2669245Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2698518Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2769230Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2783950Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2788559Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2791855Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2819383Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2842429Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2880221Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2932474Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2937943Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2939124Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2940428Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2972796Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.2974265Z Completed 2.4 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3003421Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3040610Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3042166Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3056983Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3097319Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3098632Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3129154Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3155515Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3159236Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3185533Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3188029Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3194103Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3253164Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3268532Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3283134Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3284043Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3314164Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3327082Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3356219Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3360054Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3370029Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3406891Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3431729Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3440574Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3447604Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3452825Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3515039Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3522211Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3539489Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3540555Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3541476Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3614083Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3622986Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3624062Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3643619Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3644880Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3688997Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3716749Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3727995Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3739123Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3752464Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3784343Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3799650Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3810669Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3820485Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3830884Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3852929Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3888214Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3904632Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3936422Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.3955568Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4004345Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4017943Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4041156Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4053056Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4096944Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4113711Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4115364Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4131930Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4140997Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4156119Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4163595Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4184762Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4210482Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4245851Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4269659Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4279114Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4285146Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4308667Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4342977Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4395862Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4396712Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4410230Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4426873Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4464420Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4481078Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4499673Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4516085Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4523746Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4558946Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4584419Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4591444Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4623040Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4634485Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4681155Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4698743Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4712084Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4736494Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4741104Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4792604Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4827160Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4832241Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4850778Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4858534Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4899455Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4917323Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4926575Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4929181Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4947556Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.4990225Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5000904Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5009840Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5018285Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5062595Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5068073Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5074560Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5086414Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5094121Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5109860Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5146159Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5183930Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5186589Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5228746Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5274733Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5317669Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5349297Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5373617Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5390614Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5402199Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5403424Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5467257Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5468096Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5482203Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5486221Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5496885Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5543730Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5548352Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5567819Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5587074Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5590587Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5596283Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5627279Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5633832Z Completed 2.5 GiB/9.9 GiB (120.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5661028Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5680350Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5681754Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5721597Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5731850Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5745618Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5746956Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5763870Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5787050Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5801547Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5803844Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5823735Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5842848Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5847687Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5878013Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5893891Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5913411Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5919783Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5928996Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5940545Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5962524Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5970182Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5984785Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.5995800Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6004449Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6027098Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6034031Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6043884Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6061268Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6075070Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6081450Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6099314Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6128223Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6129402Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6143406Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6179097Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6234678Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6308834Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6320298Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6369532Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6403114Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6406895Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6446739Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6494171Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6515091Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6522424Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6541367Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6578975Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6580208Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6610812Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6625049Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6647175Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6686349Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6758959Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6764530Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6775023Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6779318Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6788853Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6789616Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6874594Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6901301Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6903036Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6911125Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6912867Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6923756Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6995263Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.6996459Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7022875Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7028347Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7034711Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7035842Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7091470Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7094835Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7111395Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7134560Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7138625Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7154188Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7190160Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7211037Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7213101Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7232463Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7244565Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7260889Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7262286Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7267457Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7319831Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7348300Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7355126Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7356234Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7392188Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7432821Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7441420Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7449686Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7480903Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7496116Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7540613Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7544924Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7551086Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7572482Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7580872Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7609906Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7642907Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7656162Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7682594Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7697238Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7707201Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7723162Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7734912Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7769526Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7797843Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7803804Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7823521Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7859900Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7865102Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7905518Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7916250Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7922895Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7942527Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7950708Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.7989658Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8004375Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8053867Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8054684Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8055329Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8069648Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8071586Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8086524Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8137955Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8160670Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8190164Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8198336Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8199464Z Completed 2.5 GiB/9.9 GiB (120.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8213084Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8219511Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8226545Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8272292Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8301893Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8307826Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8328947Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8341986Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8347630Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8353283Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8354877Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8408520Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8452145Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8464094Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8502532Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8521080Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8527490Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8553400Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8562255Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8602039Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8628226Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8647569Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8654295Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8684985Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8720637Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8743193Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8761037Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8762263Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8778115Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8830919Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8832178Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8840085Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8851565Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8859063Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8898135Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8900946Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8907814Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8958408Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8989312Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8998181Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.8999342Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9004873Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9015441Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9051496Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9096315Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9108105Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9111434Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9149519Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9150912Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9152973Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9173103Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9221898Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9227557Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9235726Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9275781Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9283315Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9312388Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9321769Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9326991Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9360545Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9373991Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9414838Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9425790Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9429686Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9448971Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9470255Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9471471Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9482183Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9516225Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9539157Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9559639Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9569187Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9573470Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9626616Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9629526Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9655240Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9661650Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9685451Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9693287Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9724290Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9753702Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9777644Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9808487Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9809328Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9818906Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9831262Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9869598Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9921325Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9923230Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9929067Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9936969Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:33.9997351Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0000779Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0013229Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0019786Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0094510Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0166890Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0188244Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0213548Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0247429Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0248805Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0257640Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0259211Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0260486Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0268489Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0301516Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0383300Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0386461Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0400611Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0420165Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0428606Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0448018Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0507827Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0522489Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0523438Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0528773Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0537451Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0538788Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0626464Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0630136Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0632209Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0639985Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0643414Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0724367Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0729578Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0740655Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0748614Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0763323Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0827524Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0841892Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0849128Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0854632Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0898571Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0903169Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0923179Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0944153Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0948065Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0977669Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.0980443Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1020340Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1030664Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1053636Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1091184Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1116076Z Completed 2.5 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1157676Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1158818Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1166590Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1178431Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1207012Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1252825Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1256872Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1259082Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1278312Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1320073Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1354051Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1371280Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1380350Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1408867Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1418513Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1441590Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1464769Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1470122Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1525798Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1535976Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1545566Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1557053Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1645630Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1646833Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1647758Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1694579Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1712134Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1713687Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1751162Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1773889Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1778778Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1787744Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1811080Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1830244Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1874336Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1925886Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1946517Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1955176Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1962989Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.1998357Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2018762Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2068947Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2070387Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2076867Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2084314Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2115446Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2133654Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2155668Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2161958Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2184630Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2217852Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2224034Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2229688Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2253800Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2290982Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2304845Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2328983Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2349289Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2376573Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2383209Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2420667Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2430720Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2438381Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2453273Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2486610Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2500093Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2528507Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2536626Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2561716Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2583363Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2587803Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2619842Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2641327Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2642435Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2664451Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2680041Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2707915Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2723800Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2748183Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2752470Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2770170Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2775721Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2795396Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2817130Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2865315Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2877463Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2886032Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2904787Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2906262Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2950939Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2970793Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2978969Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2980183Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.2990049Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3057295Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3068439Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3104448Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3105582Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3106829Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3186037Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3187309Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3200449Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3209451Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3255860Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3313325Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3314495Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3384167Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3388422Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3428766Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3483551Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3485319Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3486799Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3529903Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3551537Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3574682Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3584157Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3587740Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3637020Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3647268Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3669191Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3686573Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3687845Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3721842Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3748223Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3756978Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3775494Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3783619Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3805628Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3847733Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3859830Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3862939Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3877313Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3892932Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3924405Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3948465Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3954416Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3965256Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.3989276Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4012905Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4039736Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4050060Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4075752Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4087745Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4090144Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4117602Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4125852Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4169116Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4170226Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4224660Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4234898Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4236031Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4238458Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4253996Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4292936Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4303288Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4314957Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4363643Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4369876Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4374725Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4380915Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4395819Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4410727Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4420375Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4430504Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4440943Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4464669Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4476034Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4484119Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4527964Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4540920Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4556113Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4570247Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4594812Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4648435Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4662770Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4682315Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4708276Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4709500Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4734253Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4748114Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4765488Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4811533Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4860235Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4893930Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4896330Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4918127Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4949316Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4962574Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4963840Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.4980947Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5011420Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5039354Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5049994Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5069151Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5103115Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5126580Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5128561Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5150164Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5151214Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5160244Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5165858Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5209721Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5215850Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5255473Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5269438Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5270548Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5287293Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5293121Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5324163Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5365652Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5385071Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5391732Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5393522Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5415867Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5439692Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5477212Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5513825Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5518153Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5534336Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5538788Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5546756Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5547982Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5594384Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5641829Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5650183Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5653018Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5663504Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5669857Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5694989Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5726489Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5743427Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5769692Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5784815Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5790991Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5819615Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5821121Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5843533Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5872200Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5903088Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5911297Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5923484Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5925524Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.5929434Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6003800Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6005055Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6009674Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6020477Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6026446Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6124716Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6133779Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6141440Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6168046Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6198401Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6200074Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6210054Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6271192Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6286698Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6296279Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6331045Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6340825Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6365656Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6385433Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6409829Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6434291Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6453114Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6478816Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6498951Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6514601Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6524973Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6563139Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6569988Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6598345Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6615370Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6637713Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6665616Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6695326Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6729604Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6743094Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6747351Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6801758Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6811556Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6914799Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6929161Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6938485Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6942073Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.6952114Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7014225Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7015406Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7029367Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7084869Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7087770Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7088540Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7089328Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7112149Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7118466Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7129827Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7167777Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7199064Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7204642Z Completed 2.6 GiB/9.9 GiB (120.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7214681Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7239974Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7255085Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7293255Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7296348Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7301391Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7315464Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7351694Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7383234Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7388814Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7403271Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7407409Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7449275Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7466382Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7491152Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7505510Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7542119Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7547257Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7556488Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7585651Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7591208Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7599904Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7608489Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7667641Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7673972Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7676417Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7679864Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7697179Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7747431Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7755304Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7757688Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7776726Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7782006Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7822009Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7834632Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7835592Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7862337Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7901054Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7911467Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7947425Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7957670Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7974385Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7985281Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.7988934Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8013906Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8037126Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8041561Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8059896Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8067644Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8121061Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8144794Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8154761Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8185198Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8191426Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8231911Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8239257Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8250580Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8255321Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8283228Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8313166Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8329856Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8359293Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8369180Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8381282Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8385487Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8401968Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8437826Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8472114Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8492592Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8515709Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8517660Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8527889Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8539269Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8545917Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8615678Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8642276Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8685296Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8686424Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8687420Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8709735Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8733232Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8768429Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8793583Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8805696Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8806998Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8808057Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8847366Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8893070Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8894426Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8909713Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8914648Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8931032Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8979254Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8991386Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.8992375Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9025084Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9037018Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9041240Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9123394Z Completed 2.6 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9146104Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9168233Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9177509Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9187188Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9202520Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9241067Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9251555Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9269805Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9277539Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9311717Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9313362Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9369001Z Completed 2.6 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9372313Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9395098Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9410559Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9420385Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9460908Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9473197Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9495416Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9511967Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9522516Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9553248Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9555998Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9581426Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9583829Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9634585Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9636640Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9667991Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9677934Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9691962Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9712488Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9718991Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9760397Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9796742Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9852347Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9866893Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9888718Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9889892Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9894044Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9968489Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9990143Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9993870Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:34.9999118Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0012422Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0023476Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0078220Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0080767Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0101553Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0124145Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0141012Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0151314Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0169268Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0199372Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0224707Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0225870Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0236030Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0262341Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0292218Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0308446Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0323549Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0355145Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0369497Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0411095Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0443966Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0459683Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0473872Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0477805Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0525769Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0555193Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0590724Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0608048Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0611769Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0625309Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0632115Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0704470Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0708705Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0724794Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0730671Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0750199Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0754988Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0819750Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0829918Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0840006Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0840917Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0851404Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0873562Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0918351Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0942301Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0978975Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0980113Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.0980882Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1020082Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1039681Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1052582Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1063299Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1084913Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1094613Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1113120Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1132473Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1169339Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1183543Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1213322Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1227157Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1241156Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1272598Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1274939Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1293894Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1315116Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1338935Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1361491Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1362291Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1393362Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1413101Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1416980Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1443639Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1497700Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1510234Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1518693Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1560768Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1562032Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1576641Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1577787Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1583706Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1605330Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1679087Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1687975Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1711389Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1713037Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1713862Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1742895Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1797496Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1823545Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1829346Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1840650Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1856632Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1874144Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1897300Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1918621Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1946548Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1961875Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1971621Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.1997590Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2020516Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2029683Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2058262Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2073007Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2074116Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2082303Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2129943Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2157454Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2190774Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2199689Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2221773Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2228959Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2258424Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2282471Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2317644Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2347060Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2364464Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2370360Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2391150Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2422202Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2456973Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2458154Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2494144Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2500093Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2503740Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2553107Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2554550Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2583309Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2604403Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2605165Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2630535Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2665848Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2682944Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2689443Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2690442Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2714948Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2821036Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2822222Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2823659Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2841482Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2843733Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2894074Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2914562Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2933424Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2953274Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2956186Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2969005Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.2999899Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3003039Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3066269Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3069555Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3080903Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3085883Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3091713Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3117789Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3163979Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3179143Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3180852Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3206096Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3218393Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3236850Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3279770Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3300307Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3302401Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3311384Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3333697Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3367038Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3435804Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3437268Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3457973Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3468423Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3491811Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3499549Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3538426Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3584041Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3588601Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3592027Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3612801Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3639524Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3640696Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3690755Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3698124Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3749255Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3757259Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3790788Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3795495Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3815283Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3853986Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3869738Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3880649Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3902389Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3915608Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3969859Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.3991067Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4017666Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4035138Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4036658Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4048963Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4052593Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4117472Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4134183Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4140092Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4145993Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4175336Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4194432Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4198427Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4242912Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4256910Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4261676Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4276959Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4294706Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4309689Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4355192Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4376557Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4377602Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4383853Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4389175Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4404821Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4456082Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4474323Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4487579Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4492003Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4507611Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4508821Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4568430Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4576139Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4586433Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4608721Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4629794Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4630910Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4681527Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4694610Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4719752Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4735889Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4750873Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4773365Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4774358Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4815944Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4837809Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4864960Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4868046Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4876448Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4890885Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4914472Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4954260Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4958069Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4984737Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.4989512Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5015215Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5066959Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5083363Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5093621Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5137321Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5138509Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5157238Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5166960Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5183670Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5198003Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5270279Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5280869Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5298291Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5301885Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5321610Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5362171Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5384427Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5394199Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5406025Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5407213Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5452922Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5454127Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5511265Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5530895Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5541653Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5549940Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5551317Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5563729Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5636072Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5647082Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5650858Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5668025Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5675654Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5705204Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5755677Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5759564Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5776440Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5777554Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5801786Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5816566Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5852088Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5878297Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5886092Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5925353Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5929777Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5937274Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.5968422Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6000343Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6007201Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6020520Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6040868Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6131108Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6145712Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6150502Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6170359Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6174474Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6215482Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6253996Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6266640Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6289161Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6299942Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6307811Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6363793Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6400169Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6407560Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6432193Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6439513Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6493586Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6538290Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6539030Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6553422Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6561685Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6601661Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6612095Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6660907Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6672529Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6674173Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6723760Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6741118Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6752793Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6785799Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6795035Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6796044Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6829744Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6851321Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6861224Z Completed 2.7 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6893033Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6902997Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6917260Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6940073Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6950340Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6967135Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.6993293Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7007328Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7030711Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7048028Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7060166Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7080727Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7108847Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7134801Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7147526Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7148373Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7186255Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7207110Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7240273Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7241824Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7260908Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7273164Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7301963Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7341532Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7350023Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7373339Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7410903Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7414977Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7447957Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7469251Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7478774Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7488831Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7540472Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7547560Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7577201Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7604982Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7608854Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7644645Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7663149Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7669813Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7698651Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7711715Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7731077Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7767875Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7768957Z Completed 2.7 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7783812Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7805533Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7827867Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7838060Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7874850Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7933056Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7938087Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7965944Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.7974786Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8016241Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8045608Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8069481Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8077152Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8118243Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8152082Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8162443Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8168073Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8183340Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8196067Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8260920Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8266228Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8267305Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8284082Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8288525Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8307921Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8362603Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8373085Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8387718Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8398688Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8399686Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8416231Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8464724Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8477582Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8487980Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8511425Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8517080Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8533446Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8567935Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8576021Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8615919Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8623693Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8651767Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8672374Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8675013Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8694460Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8733208Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8741308Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8748090Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8783291Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8786270Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8803492Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8853400Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8856892Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8876054Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8915347Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8916948Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8931993Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8968869Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8992507Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.8997400Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9059872Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9061937Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9064682Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9128691Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9169648Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9202143Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9203439Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9219112Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9240831Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9278678Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9290164Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9302462Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9327051Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9346177Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9352262Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9400663Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9410475Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9422788Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9447602Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9453294Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9473109Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9495464Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9501260Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9538928Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9553056Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9583648Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9594964Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9606577Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9611180Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9659853Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9670601Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9697504Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9706988Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9731556Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9737536Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9769977Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9771233Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9821822Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9837077Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9838175Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9859598Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9869012Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9878468Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9927912Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9944473Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9945509Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9950508Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:35.9995275Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0009709Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0064571Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0084262Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0092948Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0093972Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0119393Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0160234Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0163832Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0190859Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0243227Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0251383Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0254916Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0286650Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0297599Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0352126Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0382837Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0384378Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0386352Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0447140Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0466431Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0487234Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0501297Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0522282Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0538628Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0560359Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0581649Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0604903Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0625410Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0645332Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0662591Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0668357Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0704723Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0715199Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0730959Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0755761Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0778162Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0794926Z Completed 2.8 GiB/9.9 GiB (120.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0802989Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0837192Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0841544Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0860258Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0895489Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0902094Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0928349Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0948151Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0949319Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0964302Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.0970444Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1039726Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1041012Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1056573Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1057496Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1068421Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1118006Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1128761Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1129986Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1144642Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1155178Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1194347Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1203290Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1219096Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1247512Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1271776Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1304961Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1315025Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1331130Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1345608Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1364498Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1375972Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1399759Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1420609Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1461496Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1477146Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1483641Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1490432Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1496979Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1506775Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1546865Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1629132Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1630358Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1633815Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1638343Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1649878Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1659603Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1700774Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1752374Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1793759Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1819376Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1822454Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1825244Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1846536Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1862587Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1878729Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1920019Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1934873Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1944511Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1956470Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1968450Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.1979755Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2009381Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2042484Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2059387Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2071209Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2088049Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2092410Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2123007Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2162985Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2176278Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2176996Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2185037Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2210667Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2227685Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2272327Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2285540Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2286570Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2292459Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2335198Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2371635Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2373233Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2379039Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2383301Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2432237Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2480112Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2483900Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2498007Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2503555Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2521785Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2570243Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2594497Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2603714Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2626920Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2635401Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2670617Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2689993Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2691325Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2725117Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2745330Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2753133Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2774802Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2800584Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2827252Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2831950Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2843351Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2863506Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2905935Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2916603Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2927041Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2934702Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.2981658Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3011727Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3019557Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3033306Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3048078Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3058140Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3086586Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3100243Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3135927Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3148203Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3159242Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3160164Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3207025Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3215428Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3248649Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3270058Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3274224Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3373019Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3374534Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3375854Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3394384Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3402533Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3409923Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3464045Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3474999Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3477240Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3498198Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3514499Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3536890Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3583264Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3591556Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3604833Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3615636Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3636638Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3679492Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3696559Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3701685Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3714790Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3718121Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3810449Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3826585Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3831081Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3838340Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3872148Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3932991Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3951622Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3960626Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3971962Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.3998670Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4027092Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4042532Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4070874Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4074565Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4094605Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4117276Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4145268Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4153068Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4160667Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4191297Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4202946Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4240470Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4241699Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4249936Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4265262Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4306173Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4324459Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4334487Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4335265Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4345032Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4383101Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4391900Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4402964Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4408083Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4452058Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4463661Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4465264Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4466955Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4493033Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4500754Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4546554Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4552178Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4564034Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4648954Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4653999Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4657816Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4697346Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4794478Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4804260Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4821832Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4827709Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4831998Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4840014Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4856295Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4863486Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4874630Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4882111Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4895471Z Completed 2.8 GiB/9.9 GiB (120.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4904001Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4922188Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4941719Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4961678Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4971914Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.4988385Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5002383Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5037434Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5053815Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5069890Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5093905Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5100074Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5131991Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5143343Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5170167Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5180301Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5200796Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5241273Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5269110Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5293974Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5297130Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5302786Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5348636Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5372150Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5373819Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5382565Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5407117Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5424190Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5442388Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5452783Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5489575Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5497084Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5515237Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5516689Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5525660Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5534222Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5551586Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5560474Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5575232Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5608755Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5681820Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5728072Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5746200Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5758994Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5770029Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5780355Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5789335Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5814280Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5837060Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5838935Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5864729Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5889856Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5912273Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5924504Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5945378Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5953815Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5964509Z Completed 2.8 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5991511Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.5996440Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6033894Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6040756Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6052954Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6063529Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6077725Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6129068Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6130274Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6132118Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6144591Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6168901Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6175327Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6183536Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6201427Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6213985Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6273103Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6288109Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6304896Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6308938Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6325284Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6353385Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6378359Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6384990Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6392986Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6421964Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6428645Z Completed 2.9 GiB/9.9 GiB (120.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6429958Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6479174Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6501497Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6503733Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6537080Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6563752Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6564896Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6566888Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6593027Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6598295Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6610331Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6620518Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6623134Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6634775Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6646642Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6648927Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6661393Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6681134Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6727852Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6748306Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6757091Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6763069Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6789912Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6828736Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6848062Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6854926Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6878525Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6885303Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6892908Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6951949Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6957084Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.6974999Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7005897Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7018492Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7019800Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7028545Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7073283Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7076129Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7099007Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7114424Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7123834Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7160531Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7180310Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7188028Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7206012Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7223103Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7270206Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7272169Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7276654Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7284904Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7311886Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7356552Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7370819Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7379909Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7381511Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7396310Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7428711Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7456138Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7467078Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7491186Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7506697Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7507707Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7563700Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7573369Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7593553Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7613231Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7614903Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7627989Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7689656Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7711018Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7764603Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7766755Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7780299Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7804443Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7845415Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7875545Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7890830Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7936685Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7946884Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7952909Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7954061Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7973206Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.7995680Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8064246Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8070244Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8077630Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8083863Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8088017Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8110161Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8111653Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8130374Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8175881Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8192555Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8211152Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8222198Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8231555Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8241731Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8261767Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8300113Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8315219Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8336604Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8355418Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8360546Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8365799Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8422459Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8434695Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8451245Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8472181Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8485791Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8499961Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8544039Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8571492Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8583484Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8586594Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8598932Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8632905Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8641992Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8649264Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8676647Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8707556Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8731363Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8750532Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8754964Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8767259Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8791760Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8824451Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8833414Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8838901Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8868059Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8905039Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8919905Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8929787Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8933335Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.8986213Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9014070Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9032163Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9037733Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9042427Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9089961Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9097653Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9116261Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9127154Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9146499Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9197332Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9214425Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9226257Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9234428Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9299616Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9312502Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9330321Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9338268Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9346953Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9415436Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9417200Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9459004Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9461949Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9463351Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9525439Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9538261Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9543000Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9546557Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9564399Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9638435Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9648654Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9661576Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9667772Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9670664Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9743789Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9751321Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9775227Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9776943Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9796391Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9811932Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9844018Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9859311Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9882862Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9889750Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9895565Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9948008Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9955327Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9980531Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:36.9997956Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0001700Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0006772Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0060521Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0068765Z Completed 2.9 GiB/9.9 GiB (121.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0078207Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0090330Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0091147Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0130431Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0182246Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0183634Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0185615Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0204570Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0227817Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0290282Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0291457Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0293269Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0301763Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0303106Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0376283Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0377009Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0410532Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0418271Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0419533Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0451338Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0484256Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0490190Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0512907Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0529402Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0555391Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0579808Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0583666Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0597118Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0626041Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0646288Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0673325Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0674179Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0684727Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0715984Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0740713Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0765380Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0781599Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0787034Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0822013Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0848284Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0856664Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0878397Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0923504Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0931120Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0936542Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0955526Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.0975168Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1013836Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1030779Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1036338Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1042076Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1065925Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1094060Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1154527Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1156582Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1157864Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1158868Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1161794Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1231235Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1238128Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1240361Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1243992Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1265980Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1307996Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1312203Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1330414Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1331744Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1357757Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1409745Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1427974Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1431927Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1452052Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1479132Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1543394Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1562516Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1570898Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1586336Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1591896Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1614053Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1661648Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1669424Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1690218Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1698510Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1712370Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1744153Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1759572Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1767912Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1809514Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1815653Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1821449Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1834332Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1867175Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1869446Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1925268Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1926498Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1929877Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1962586Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1977723Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.1978812Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2019819Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2027370Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2036054Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2088326Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2100760Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2107877Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2125785Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2130162Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2141348Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2199110Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2210343Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2227179Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2234924Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2249362Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2250100Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2290177Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2327334Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2343310Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2354008Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2366980Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2368253Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2403001Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2414228Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2452478Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2466671Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2475964Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2504827Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2508228Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2538497Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2557632Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2577193Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2601321Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2610982Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2628177Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2663806Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2684244Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2701787Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2711078Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2744426Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2764778Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2766036Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2834290Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2889535Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2903598Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2904431Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2917493Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2943097Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2952504Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.2987110Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3005949Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3011427Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3060376Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3107985Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3111892Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3120239Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3124354Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3145829Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3200284Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3210253Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3223303Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3236748Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3248421Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3296501Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3305021Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3324366Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3329295Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3355356Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3404255Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3405583Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3406846Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3422302Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3460487Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3482567Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3484397Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3498723Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3517894Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3550689Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3568336Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3587676Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3602327Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3619153Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3644218Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3663259Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3677889Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3691869Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3710765Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3715406Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3766231Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3767884Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3788373Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3797376Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3805722Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3865963Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3889026Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3893385Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3894749Z Completed 2.9 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3905158Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3937093Z Completed 2.9 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3948464Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3962202Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3968962Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3985599Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.3990986Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4051280Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4053044Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4063364Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4087935Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4124916Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4129576Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4153220Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4176735Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4241876Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4249324Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4295512Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4306023Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4307297Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4312982Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4333623Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4387251Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4401423Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4435263Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4436483Z Completed 3.0 GiB/9.9 GiB (121.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4459457Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4460432Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4465031Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4515791Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4530000Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4543771Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4547341Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4554694Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4572166Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4607756Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4648131Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4649723Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4662081Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4684365Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4694547Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4732281Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4750300Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4777004Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4788667Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4797888Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4820278Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4860867Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4870218Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4882960Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4907116Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4925227Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4942175Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.4959472Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5007398Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5008674Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5017131Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5041278Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5057113Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5091200Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5099331Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5110364Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5111708Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5123921Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5129127Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5143899Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5179822Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5184519Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5192819Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5208456Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5254339Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5266805Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5270437Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5311891Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5327769Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5343608Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5356664Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5376565Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5407273Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5419021Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5450400Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5456226Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5469264Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5494188Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5514010Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5517268Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5532377Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5559866Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5576690Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5578127Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5605396Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5614051Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5618731Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5627947Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5638588Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5652916Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5671130Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5718809Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5721630Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5747582Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5758750Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5831223Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5837794Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5851795Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5898347Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5937789Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5951563Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5969844Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.5999926Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6042996Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6065580Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6090536Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6129089Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6157408Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6164229Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6179384Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6211709Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6217966Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6238389Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6269755Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6287608Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6328214Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6328923Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6363269Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6407399Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6410633Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6411325Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6432438Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6440584Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6514702Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6515896Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6556134Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6566936Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6645615Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6648894Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6657895Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6683240Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6696789Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6718656Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6738066Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6742438Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6773714Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6790411Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6795852Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6830090Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6852822Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6863811Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6870053Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6880302Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6901468Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6936281Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6967335Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6970286Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6979944Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.6985410Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7020374Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7047355Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7057964Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7060901Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7075853Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7121200Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7127048Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7139642Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7164707Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7178753Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7208879Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7218824Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7232317Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7258659Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7265256Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7277622Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7283985Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7295503Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7325619Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7332250Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7343723Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7351313Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7367115Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7407364Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7413751Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7421961Z Completed 3.0 GiB/9.9 GiB (121.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7428281Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7435934Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7443541Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7452509Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7496871Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7527916Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7571411Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7594836Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7601363Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7614786Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7617532Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7631186Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7664043Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7665996Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7683436Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7714493Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7728589Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7739283Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7762004Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7793276Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7794705Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7795790Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7829232Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7836123Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7850589Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7866602Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7890760Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7895904Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7924365Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7932786Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7943846Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7956916Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7965633Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7971947Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.7983037Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8057815Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8065939Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8134218Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8176686Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8211508Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8214396Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8219657Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8246274Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8255663Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8269827Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8334241Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8351693Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8355443Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8365884Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8374093Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8390682Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8429180Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8446707Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8452994Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8459632Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8466631Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8474059Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8487997Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8499468Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8505391Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8521739Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8527042Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8545796Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8560227Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8576214Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8584803Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8631290Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8664295Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8678780Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8686527Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8731856Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8733532Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8740381Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8776220Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8785492Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8794199Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8819110Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8823430Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8848841Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8862877Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8880362Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8914718Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8930758Z Completed 3.0 GiB/9.9 GiB (121.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8934200Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8941929Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8946125Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.8958158Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9004931Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9017395Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9018518Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9024141Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9046017Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9051709Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9062485Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9068062Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9088247Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9108396Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9110587Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9149187Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9163521Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9172569Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9181996Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9189847Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9199391Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9214986Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9254128Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9282166Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9292555Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9301555Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9308455Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9369777Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9376562Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9383255Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9394107Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9409672Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9411772Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9418983Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9433140Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9438251Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9467233Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9497494Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9515914Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9540513Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9547161Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9559057Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9601006Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9618636Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9630044Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9670712Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9673686Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9743288Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9762616Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9772188Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9788383Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9816706Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9848226Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9850170Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9865402Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9880878Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9938589Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9943658Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9947275Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9960882Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:37.9993683Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0041842Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0061199Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0063686Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0071308Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0126614Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0128779Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0136696Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0139413Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0145855Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0211557Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0219787Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0221656Z Completed 3.0 GiB/9.9 GiB (121.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0223042Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0253505Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0257446Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0260997Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0268887Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0275681Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0280474Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0291987Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0298843Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0308539Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0323103Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0332048Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0342495Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0356773Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0361060Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0385470Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0441871Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0462133Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0482098Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0487923Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0527911Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0557864Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0599429Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0607053Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0611905Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0710653Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0718569Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0757397Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0763159Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0768929Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0774740Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0779270Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0784518Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0787591Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0794373Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0797324Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0813142Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0826592Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0838381Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0863183Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0881686Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0974577Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0980536Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0986409Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0993325Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.0996636Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1000639Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1025206Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1041049Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1055451Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1056511Z Completed 3.0 GiB/9.9 GiB (121.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1074322Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1091072Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1099859Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1108859Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1118117Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1127793Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1136473Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1159291Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1168495Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1177517Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1204547Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1219203Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1225699Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1247739Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1256107Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1265262Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1274513Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1281709Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1288682Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1297057Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1302839Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1308750Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1314824Z Completed 3.0 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1318452Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1449112Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1529242Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1548324Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1622022Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1631977Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1652921Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1694849Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1704629Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1713269Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1723256Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1743414Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1750474Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1756647Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1763715Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1779579Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1788919Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1800731Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1802997Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1812368Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1821200Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1829988Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1837858Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1846487Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1855736Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1863094Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1869048Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1875793Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1913384Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.1969253Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2013171Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2025595Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2036159Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2038709Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2050058Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2062219Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2066253Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2078910Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2081910Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2103313Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2104608Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2105414Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2108470Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2113449Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2165995Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2174763Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2183188Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2192107Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2200264Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2209242Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2217451Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2226779Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2235600Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2242173Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2475521Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2552143Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2561762Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2592000Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2601537Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2620749Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2634386Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2652058Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2661482Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2667226Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2684471Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2691972Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2698217Z Completed 3.1 GiB/9.9 GiB (121.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2719713Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2730359Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2740917Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2750947Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2759714Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2767537Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2784843Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2802342Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2804654Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2819116Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2824522Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2836471Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2844640Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2849583Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2857009Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2864512Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2870513Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2888368Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2894120Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2900067Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2929742Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2940398Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2952373Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2968386Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.2984002Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3019957Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3025861Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3031601Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3038172Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3050737Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3053008Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3064114Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3070686Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3085932Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3115737Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3124324Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3141805Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3161573Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3169045Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3173516Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3202570Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3208289Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3213470Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3219407Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3225217Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3231372Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3237177Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3243161Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3248896Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3450876Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3491110Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3641230Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3650922Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3661897Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3672514Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3692055Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3695237Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3713666Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3739499Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3748183Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3759185Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3779002Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3789940Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3804864Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3819907Z Completed 3.1 GiB/9.9 GiB (121.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3826017Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3840686Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3851021Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3865842Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3891551Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3914390Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3918038Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.3962221Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4008666Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4009971Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4026823Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4032186Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4067123Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4080789Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4083081Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4107211Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4150062Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4173620Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4180125Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4186016Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4220684Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4232383Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4261185Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4276882Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4289370Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4294196Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4325289Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4341312Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4358027Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4364641Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4389883Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4404784Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4407302Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4421834Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4440302Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4451182Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4483261Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4484529Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4487078Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4501258Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4519124Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4531798Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4533186Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4538867Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4547375Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4553539Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4566046Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4574828Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4580952Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4611771Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4637965Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4659921Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4680511Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4689689Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4717759Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4730803Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4761824Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4791017Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4826576Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4838042Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4851367Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4888335Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4913062Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4934832Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4949471Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.4979083Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5028729Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5032121Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5050799Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5092204Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5115590Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5131430Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5156917Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5206912Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5229731Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5232223Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5253444Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5257491Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5291631Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5301602Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5305486Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5314322Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5327990Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5337684Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5363403Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5389510Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5404439Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5405686Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5449349Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5476783Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5494160Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5502458Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5527562Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5558489Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5588013Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5618448Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5648638Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5653377Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5673360Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5696539Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5709218Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5742466Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5781639Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5783033Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5798619Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5813807Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5824067Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5856651Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5875353Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5908039Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5909155Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5929804Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5936609Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5947212Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.5984062Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6010154Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6017732Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6027703Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6048326Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6079615Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6088410Z Completed 3.1 GiB/9.9 GiB (121.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6113433Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6130943Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6146188Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6165544Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6171030Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6177962Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6183407Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6188976Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6193171Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6249329Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6254224Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6269063Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6284300Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6296171Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6329280Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6331835Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6333309Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6384217Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6423930Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6431400Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6444433Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6473194Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6493858Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6507174Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6534901Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6542272Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6570448Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6599750Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6624849Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6644452Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6658651Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6669219Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6690760Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6746323Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6753998Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6758955Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6774073Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6778429Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6807560Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6855689Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6885209Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6892095Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6895346Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6898812Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6939155Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.6987139Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7001126Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7007688Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7011071Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7013147Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7036832Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7075740Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7093248Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7113998Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7128123Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7152469Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7157291Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7177408Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7213297Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7221816Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7229120Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7270057Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7294277Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7296432Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7301909Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7354395Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7359154Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7391415Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7393750Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7416988Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7497322Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7535646Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7548661Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7551139Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7557003Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7565402Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7574245Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7636021Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7640525Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7661784Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7675674Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7676624Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7746959Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7751539Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7786335Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7811285Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7812459Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7866959Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7883843Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7887500Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7907617Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7929458Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7934836Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7954369Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7972989Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.7986117Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8029584Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8039347Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8061170Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8090743Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8124775Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8126838Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8133949Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8183309Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8199457Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8207944Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8243745Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8263983Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8278028Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8313449Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8341056Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8345869Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8355143Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8369393Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8378825Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8425832Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8427252Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8433768Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8439150Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8486201Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8496987Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8522955Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8533138Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8537526Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8571669Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8594835Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8606792Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8612843Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8619703Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8626966Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8634132Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8643929Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8645649Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8674625Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8679324Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8692245Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8708395Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8752535Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8771674Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8774432Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8779086Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8801627Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8805133Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8819383Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8855589Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8878261Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8880476Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8897613Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8899640Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8955017Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8966555Z Completed 3.1 GiB/9.9 GiB (121.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8982037Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8987658Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.8996136Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9044193Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9045892Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9058767Z Completed 3.1 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9069556Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9081597Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9095395Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9100944Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9122201Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9140081Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9192565Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9203942Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9226424Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9230462Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9266129Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9286136Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9300562Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9305401Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9319503Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9368975Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9396937Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9425631Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9431628Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9445741Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9473727Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9498712Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9520774Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9563148Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9564499Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9598143Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9617432Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9624177Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9654714Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9658722Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9714542Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9722244Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9759214Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9770184Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9775502Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9776522Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9789127Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9827852Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9854139Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9881333Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9887455Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9901850Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9910410Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9927106Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9935942Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9987623Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:38.9998813Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0010863Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0011854Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0044156Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0065659Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0070712Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0077382Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0118653Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0124226Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0125270Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0180309Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0198890Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0213317Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0220687Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0230289Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0238522Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0251149Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0299209Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0314097Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0349266Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0363259Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0364194Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0370061Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0397856Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0441446Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0452170Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0463304Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0472411Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0485646Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0491060Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0524181Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0558977Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0573488Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0582165Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0596413Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0600782Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0641680Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0693636Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0698289Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0714115Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0739808Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0767342Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0781322Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0838763Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0850522Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0878961Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0880368Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0910398Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0924364Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0932006Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0974962Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.0995598Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1007673Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1026251Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1043552Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1044716Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1053530Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1123656Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1154119Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1165173Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1186034Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1203519Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1221041Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1274766Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1275939Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1277073Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1308690Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1318430Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1324936Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1365967Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1408559Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1414004Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1417063Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1443030Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1453986Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1475155Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1502873Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1514985Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1562116Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1563804Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1565559Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1574053Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1592075Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1643013Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1646897Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1654308Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1687511Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1714405Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1720860Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1744090Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1756825Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1790623Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1806544Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1859610Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1869568Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1878760Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1897450Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1906516Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1965462Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.1994099Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2021417Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2034346Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2035566Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2077549Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2102064Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2118511Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2140641Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2143080Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2153219Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2186946Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2192244Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2204439Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2223493Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2264182Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2291659Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2303767Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2305094Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2310403Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2329452Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2377537Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2386213Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2417823Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2441649Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2451068Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2467047Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2474127Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2496859Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2535527Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2564962Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2593896Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2616581Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2632234Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2647203Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2665829Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2687571Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2734440Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2763831Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2765353Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2769313Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2789610Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2790674Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2833307Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2839574Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2903977Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2910800Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2918883Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2928711Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2936714Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.2956525Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3025235Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3026256Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3031472Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3044297Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3047099Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3111645Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3140486Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3162900Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3163784Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3172533Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3179092Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3193956Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3265704Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3275333Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3283399Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3293493Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3302989Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3327890Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3329184Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3392313Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3411765Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3414087Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3416915Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3432322Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3435098Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3465806Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3482219Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3497292Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3505287Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3537945Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3551616Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3577036Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3581687Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3614033Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3631490Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3641288Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3670716Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3675238Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3720790Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3724832Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3736994Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3755708Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3768474Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3798922Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3832545Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3846263Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3897734Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.3926637Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4052162Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4053506Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4054569Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4092268Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4094058Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4097157Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4098828Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4119845Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4122296Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4123581Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4180362Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4191603Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4208306Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4224259Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4253430Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4265148Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4290944Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4316080Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4326700Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4354562Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4367697Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4369118Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4402962Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4415074Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4436276Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4441062Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4461653Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4495434Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4508183Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4541075Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4544762Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4558256Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4579204Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4587729Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4642116Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4644769Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4649484Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4673778Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4680455Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4719525Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4729677Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4749555Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4760029Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4767503Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4806296Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4829140Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4836264Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4944280Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4953845Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4957914Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4964353Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.4979055Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5001604Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5003077Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5045793Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5054923Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5103327Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5133541Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5141640Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5170236Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5182443Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5222387Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5235485Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5257856Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5275352Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5279867Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5333324Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5335014Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5343063Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5375453Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5384417Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5416951Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5439807Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5451262Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5481801Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5486835Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5509148Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5521795Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5546085Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5558982Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5577264Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5598007Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5604395Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5630265Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5639327Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5678067Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5681662Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5712153Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5727854Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5735267Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5782560Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5791170Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5829719Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5830807Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5837013Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5860665Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5892310Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5930298Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5931654Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5941290Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5943093Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5959488Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.5997007Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6011709Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6013425Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6024816Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6055471Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6059350Z Completed 3.2 GiB/9.9 GiB (122.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6071791Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6082392Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6084975Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6093309Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6116799Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6166414Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6180660Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6194624Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6268833Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6269960Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6279189Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6291624Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6317153Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6328227Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6349850Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6364596Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6393669Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6403709Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6419277Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6435586Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6455177Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6477820Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6484686Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6496673Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6539752Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6558170Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6559285Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6582341Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6584134Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6623225Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6635640Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6643991Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6679489Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6685759Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6690663Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6697085Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6717140Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6742479Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6755715Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6770050Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6794421Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6799567Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6810476Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6863842Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6874635Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6889316Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6914447Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6941186Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6945922Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.6950520Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7012812Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7065312Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7070380Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7071737Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7073213Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7102155Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7109674Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7112253Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7133329Z Completed 3.2 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7136799Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7143877Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7173665Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7197331Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7211088Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7226860Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7271050Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7279551Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7303846Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7326412Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7327567Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7376441Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7377713Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7386908Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7406851Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7423188Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7440163Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7497525Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7499750Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7507806Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7520247Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7547197Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7567268Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7647526Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7653138Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7655803Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7676522Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7703491Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7719743Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7750276Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7778020Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7807893Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7814978Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7846550Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7881192Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7882207Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7892257Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7894004Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7954054Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7963042Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7973376Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7984470Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.7992140Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8004421Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8081079Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8091926Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8101896Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8109216Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8110368Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8111468Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8133558Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8229267Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8233116Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8234323Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8247015Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8263353Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8270310Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8285232Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8388200Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8409527Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8410823Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8415550Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8437554Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8446428Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8482974Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8487391Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8515894Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8526276Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8558143Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8559311Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8572979Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8611169Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8628552Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8654892Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8656207Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8657467Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8731688Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8732962Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8748546Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8801138Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8802022Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8810823Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8811914Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8843014Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8853582Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8905802Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8919341Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8938365Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8946193Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8958603Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8991780Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.8998261Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9021814Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9040237Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9060419Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9077319Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9097255Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9120297Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9133029Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9144148Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9182412Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9183674Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9197762Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9201127Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9246052Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9264365Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9276073Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9298868Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9307312Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9333525Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9355772Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9391158Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9408757Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9412299Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9424596Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9434725Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9461500Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9474385Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9521550Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9548254Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9562952Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9564190Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9564994Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9590624Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9631414Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9642186Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9649065Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9684357Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9685869Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9695661Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9742824Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9750669Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9756407Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9757597Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9801302Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9835059Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9839771Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9866664Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9887101Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9911036Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9920067Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9928539Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9975953Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:39.9985478Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0013080Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0025101Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0045030Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0078294Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0118950Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0124775Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0159634Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0162244Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0167876Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0222012Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0237019Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0264813Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0265604Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0281493Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0285713Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0397607Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0398861Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0400027Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0408967Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0419865Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0443797Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0494217Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0520261Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0521410Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0536148Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0553429Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0569165Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0620103Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0626180Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0647413Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0649511Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0682283Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0683723Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0724065Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0732898Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0756602Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0777918Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0785521Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0789337Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0829545Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0861440Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0862516Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0868774Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0879556Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0926662Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0939143Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0983199Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.0984653Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1000343Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1014087Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1034976Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1062577Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1095441Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1108087Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1115825Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1137193Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1146130Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1147352Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1174084Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1205598Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1226704Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1258087Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1262443Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1317771Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1319057Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1357893Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1391345Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1402103Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1409069Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1440801Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1466020Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1467108Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1475410Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1509728Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1517165Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1573547Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1574808Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1595205Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1625659Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1628814Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1664636Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1669885Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1679644Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1723425Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1730617Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1757003Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1765905Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1777098Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1785026Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1826741Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1849443Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1867914Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1869004Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1895548Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1897786Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1938060Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1949104Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1976194Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1985564Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.1991372Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2023653Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2066483Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2083226Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2113465Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2125401Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2175788Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2185316Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2186663Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2236062Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2237559Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2239875Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2261702Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2298937Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2329568Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2360487Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2363214Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2379730Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2409472Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2413459Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2428046Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2449839Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2469889Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2510649Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2516131Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2521627Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2532529Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2560172Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2626017Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2629830Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2635310Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2646295Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2659237Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2678869Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2730542Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2731738Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2772070Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2781900Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2808139Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2824130Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2850016Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2877408Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2904270Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2906301Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2938684Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2957118Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.2960538Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3008029Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3011772Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3024845Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3037702Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3059354Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3093604Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3097903Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3103591Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3137477Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3160664Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3164928Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3165949Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3210216Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3221302Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3224197Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3227556Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3259733Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3263380Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3277732Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3323611Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3334880Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3342857Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3353022Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3361242Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3365404Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3370999Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3378950Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3412412Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3434032Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3456961Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3467600Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3468872Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3480582Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3483541Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3495721Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3575107Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3583754Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3601412Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3638910Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3671708Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3694520Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3702458Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3752491Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3801493Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3806873Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3813835Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3845340Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3896478Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3909941Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3929017Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3955761Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.3994112Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4032959Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4043432Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4065693Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4103500Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4148201Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4186811Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4188032Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4196448Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4211820Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4219594Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4221844Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4245221Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4301784Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4306728Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4352602Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4389003Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4390817Z Completed 3.3 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4399285Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4436785Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4459454Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4476990Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4491028Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4501329Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4521518Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4563811Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4572534Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4583518Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4599052Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4616625Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4627751Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4672818Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4695067Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4710053Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4717541Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4741889Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4753372Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4759418Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4802906Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4804060Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4834280Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4856997Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4874101Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4879606Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4901511Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4906388Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4941022Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4963876Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4984800Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.4996786Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5009402Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5020963Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5050447Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5087352Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5100248Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5119402Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5123221Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5128622Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5154320Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5173566Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5219054Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5226803Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5228118Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5249493Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5287802Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5291168Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5302335Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5316797Z Completed 3.3 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5358472Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5364493Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5416520Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5420991Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5426265Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5467853Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5486298Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5487467Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5504323Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5511410Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5566749Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5571853Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5606533Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5620041Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5635771Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5639633Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5655858Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5668032Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5684885Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5724528Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5740742Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5769217Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5770271Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5810447Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5811806Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5835155Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5845179Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5868930Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5882301Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5887542Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5927001Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5942425Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5949539Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5954265Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.5962318Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6020165Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6021366Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6057341Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6067064Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6068255Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6069972Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6089290Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6146008Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6174275Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6193300Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6207863Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6209272Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6214124Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6243112Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6299306Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6355906Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6414201Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6430412Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6436049Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6450367Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6533451Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6553579Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6563510Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6587673Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6596106Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6606741Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6634052Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6674593Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6690256Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6706574Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6719380Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6724092Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6738906Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6780954Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6805164Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6831447Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6839532Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6841950Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6853669Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6934476Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6938627Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6940272Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6949203Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6954682Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.6971365Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7040110Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7052019Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7058927Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7068186Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7071650Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7108814Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7131378Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7144652Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7170019Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7178415Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7214360Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7228273Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7291724Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7311396Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7323446Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7324575Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7346855Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7378972Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7380363Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7428354Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7443927Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7453166Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7473038Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7474006Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7519157Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7586208Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7600416Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7622881Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7624973Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7632980Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7668232Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7691759Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7700957Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7732418Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7733713Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7768823Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7783938Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7786596Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7814427Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7816440Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7850238Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7853196Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7894073Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7909793Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7939032Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7944545Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7946935Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7970025Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.7980761Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8010593Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8035236Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8051421Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8073184Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8100138Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8104684Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8118508Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8148960Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8196432Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8216672Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8224396Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8230115Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8248329Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8275794Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8329159Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8333264Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8387296Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8388524Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8398004Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8406733Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8424166Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8426377Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8478482Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8482326Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8487860Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8534334Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8552431Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8559376Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8597804Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8626977Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8640444Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8646906Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8654925Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8676163Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8680935Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8725485Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8738184Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8757043Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8778162Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8781312Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8795702Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8822922Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8861565Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8868260Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8879504Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8901984Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8931931Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8948893Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8958379Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8977608Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.8995891Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9006817Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9045673Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9056853Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9073987Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9086604Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9097535Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9136188Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9140895Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9158744Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9173939Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9199761Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9212979Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9224576Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9257950Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9268845Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9286698Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9306406Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9326539Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9333543Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9349194Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9376662Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9382407Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9410646Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9440688Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9476790Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9492116Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9500788Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9558343Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9567446Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9591557Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9604314Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9646651Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9669394Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9712533Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9713795Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9737763Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9769985Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9779021Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9803643Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9804796Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9814558Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9896654Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9899278Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9912506Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9949699Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9951345Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9959372Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9960297Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:40.9970625Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0001491Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0017735Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0054430Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0062063Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0065644Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0092479Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0098643Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0138437Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0146844Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0148022Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0200385Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0207499Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0220097Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0236231Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0237186Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0284343Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0290664Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0302915Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0329098Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0348066Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0371325Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0384669Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0413358Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0447011Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0456498Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0468237Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0473459Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0508987Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0563159Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0583221Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0589502Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0596196Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0603425Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0656917Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0663588Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0701881Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0703022Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0705246Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0756163Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0777836Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0791442Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0816127Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0839527Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0850950Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0909640Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0912050Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0954381Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0973023Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.0997930Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1024544Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1049519Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1055270Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1118658Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1131219Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1134086Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1151474Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1176269Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1194268Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1198299Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1271412Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1294500Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1298814Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1315188Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1316773Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1326010Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1357011Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1407416Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1426174Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1437161Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1440040Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1442837Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1455433Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1470900Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1515351Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1522598Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1550119Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1551312Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1575286Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1586387Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1595647Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1621580Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1662058Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1673421Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1675498Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1698369Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1718400Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1751189Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1785257Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1789194Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1811429Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1821149Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1830612Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1872588Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1881044Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1884673Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1920699Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1928340Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1948527Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1983007Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.1986680Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2013835Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2017939Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2049994Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2057157Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2067428Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2117767Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2119030Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2126985Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2150633Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2183595Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2193450Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2235739Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2253919Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2260088Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2270925Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2282462Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2321476Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2331483Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2346486Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2384316Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2386941Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2401912Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2429228Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2433689Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2460262Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2507417Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2515365Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2527845Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2555608Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2556953Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2569382Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2631088Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2631888Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2648706Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2655424Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2671415Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2676756Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2750897Z Completed 3.4 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2757380Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2788133Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2789066Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2837828Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2861542Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2917951Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2932003Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2969550Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2970712Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.2977629Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3043346Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3082246Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3084038Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3129685Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3132770Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3175718Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3189673Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3199322Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3253558Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3258663Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3277203Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3284297Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3293206Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3300000Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3341907Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3361031Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3373065Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3379627Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3388243Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3437945Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3457387Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3470259Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3471662Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3476254Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3540801Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3556718Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3559744Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3564337Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3582278Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3630861Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3677945Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3693677Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3706514Z Completed 3.4 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3718825Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3733200Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3799540Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3823457Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3854168Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3879875Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3914904Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3956503Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3958160Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3964354Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.3986841Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4023714Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4041679Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4057681Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4063172Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4067414Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4110497Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4141300Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4153187Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4154472Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4157493Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4206275Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4236648Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4246833Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4271134Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4288034Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4307481Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4317895Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4324213Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4359216Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4389689Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4402892Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4434011Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4437787Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4457645Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4468111Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4484937Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4515317Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4531823Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4543911Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4569108Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4603615Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4604568Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4617680Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4641532Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4658993Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4666925Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4701195Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4736066Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4744292Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4763865Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4824802Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4825714Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4850977Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4869641Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4882917Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4896493Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4972347Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4985633Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.4991807Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5037061Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5038236Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5063695Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5087307Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5116385Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5121885Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5158691Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5159584Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5160612Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5170439Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5208272Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5237816Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5243292Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5279547Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5293149Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5298923Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5307726Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5309049Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5361913Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5369363Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5400519Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5408909Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5421873Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5431874Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5458646Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5495329Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5501534Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5534452Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5543804Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5552152Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5568176Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5583013Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5625918Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5635200Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5657358Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5663066Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5682326Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5699175Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5709109Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5761042Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5773080Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5780988Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5806280Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5818384Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5837744Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5848275Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5876143Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5913891Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5916683Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5971478Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.5980118Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6013093Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6014227Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6049548Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6050656Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6095546Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6116270Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6134342Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6138006Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6162797Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6180095Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6198060Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6266890Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6267630Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6276214Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6291126Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6313360Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6318089Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6344933Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6381085Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6384763Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6394326Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6421888Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6425915Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6479204Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6488293Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6496945Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6528122Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6529078Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6559453Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6601286Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6609845Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6630041Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6640822Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6653145Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6666040Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6707247Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6711955Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6734377Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6744247Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6758825Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6806062Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6815189Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6819515Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6838649Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6851717Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6891955Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6901353Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6915038Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6920700Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6941565Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.6986936Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7000112Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7013729Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7021948Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7052330Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7100777Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7114243Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7119824Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7129296Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7139827Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7154635Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7218492Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7229622Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7238352Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7241371Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7249662Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7289295Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7332182Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7339675Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7343930Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7350323Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7369816Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7408708Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7466588Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7467758Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7476204Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7490742Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7532487Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7641340Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7680395Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7777722Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7779097Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7780178Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7781065Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7781947Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7783366Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7793103Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7818033Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7833305Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7861087Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7865230Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7893025Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.7941923Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8004088Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8020672Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8034927Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8046999Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8050105Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8097338Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8149113Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8168470Z Completed 3.5 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8183299Z Completed 3.5 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8184538Z Completed 3.5 GiB/9.9 GiB (122.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8193086Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8204945Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8222348Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8271247Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8294309Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8298630Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8307524Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8333147Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8349213Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8359639Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8385352Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8407150Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8425280Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8435138Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8444928Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8484740Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8490262Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8512956Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8533711Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8539892Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8545202Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8601275Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8607231Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8622175Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8642492Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8643855Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8650371Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8697185Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8706268Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8716870Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8726763Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8746287Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8770782Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8798927Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8808185Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8829975Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8837813Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8862366Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8882104Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8919079Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8926058Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8937581Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8968470Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8989598Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.8993395Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9043409Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9048847Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9082985Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9088864Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9104768Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9121419Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9168196Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9184666Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9194041Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9195175Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9219673Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9238194Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9275592Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9276792Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9316696Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9325274Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9353542Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9354641Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9375543Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9409609Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9448476Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9467772Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9471564Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9535740Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9538516Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9550805Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9605039Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9622587Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9660841Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9661915Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9672797Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9678311Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9719859Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9743932Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9773309Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9777922Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9782827Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9784064Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9836410Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9858027Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9868514Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9869319Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9895727Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9949262Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9950412Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9959450Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9960155Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:41.9965614Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0074171Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0076684Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0083229Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0089493Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0120226Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0136697Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0154072Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0155190Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0167030Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0186988Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0263709Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0268783Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0275715Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0284850Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0305267Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0345530Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0367740Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0383346Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0384192Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0391752Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0443853Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0460201Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0484784Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0505654Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0512578Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0525456Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0526859Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0612318Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0613749Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0642488Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0643854Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0668680Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0720346Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0749177Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0750002Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0765581Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0801366Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0830947Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0833347Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0854514Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0876063Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0883399Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0929966Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0935600Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0945234Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0946657Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.0953229Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1008914Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1027909Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1036754Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1039783Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1056030Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1096129Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1105487Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1109416Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1133403Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1140210Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1151074Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1173719Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1186581Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1198882Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1219961Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1229308Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1240534Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1256282Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1287480Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1317064Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1369268Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1373070Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1409928Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1411091Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1416816Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1451619Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1454597Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1468732Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1471190Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1483374Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1491067Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1495165Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1512885Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1531315Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1557810Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1570068Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1602303Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1616267Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1630407Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1637111Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1667473Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1677417Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1727274Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1731130Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1737225Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1750889Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1786017Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1790641Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1827196Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1844738Z Completed 3.5 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1859571Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1873086Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1878973Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1904591Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1931723Z Completed 3.5 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1946440Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1979668Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.1992358Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2047852Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2048639Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2057900Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2089921Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2113807Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2127256Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2155677Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2160292Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2197652Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2234934Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2264656Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2266779Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2268114Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2298191Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2339137Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2350500Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2386310Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2393654Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2403396Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2413261Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2421759Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2503427Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2527734Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2539700Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2540851Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2548634Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2563584Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2577795Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2600685Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2637507Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2654528Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2657628Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2672460Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2686910Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2689311Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2743292Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2758680Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2763438Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2777870Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2796287Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2845545Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2852606Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2868244Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2875488Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2888010Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2942558Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2950203Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2957484Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2963433Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.2984549Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3043669Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3051719Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3053588Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3069966Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3087996Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3137834Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3140890Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3145098Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3152124Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3176503Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3231802Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3254012Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3256011Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3259809Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3262007Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3323836Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3330693Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3358624Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3367586Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3371304Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3395944Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3453865Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3455407Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3460870Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3468438Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3504388Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3505975Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3571287Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3586375Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3587516Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3611588Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3612926Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3628627Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3663054Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3710373Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3723887Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3745828Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3757026Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3801421Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3832439Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3869512Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3879295Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3934780Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3935846Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3958796Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.3960369Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4008771Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4038117Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4062311Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4083308Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4088666Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4104676Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4106924Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4149934Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4160321Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4197219Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4211972Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4217681Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4236604Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4256958Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4274899Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4299850Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4317958Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4319057Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4320097Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4367902Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4379985Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4407224Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4425574Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4426594Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4445810Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4467608Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4491107Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4533599Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4534840Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4536104Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4563738Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4565040Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4566467Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4607427Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4649301Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4658948Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4668759Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4674813Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4684156Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4687486Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4734993Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4760221Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4761365Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4790070Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4799342Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4801254Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4836613Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4858181Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4877496Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4886056Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4893303Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4915770Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4943539Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4965208Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4967571Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.4979102Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5023634Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5069094Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5076293Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5085177Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5089053Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5117310Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5188481Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5196414Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5197568Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5206719Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5230193Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5249072Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5297342Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5306644Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5312824Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5331416Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5332793Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5338156Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5386518Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5428138Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5436713Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5446335Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5450321Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5461914Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5491247Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5496368Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5552824Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5571026Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5574435Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5593930Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5601118Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5629696Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5649741Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5661858Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5707360Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5714381Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5732162Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5767113Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5824714Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5841509Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5866221Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5870153Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5897220Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5915647Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5964423Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5982098Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.5983370Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6012563Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6017130Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6171869Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6173239Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6174285Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6175302Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6201116Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6232394Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6233917Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6259209Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6268967Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6328912Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6365665Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6395871Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6412153Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6415635Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6428576Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6454491Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6489659Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6495598Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6520932Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6535749Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6554200Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6561406Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6586655Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6589865Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6624623Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6630156Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6655872Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6683907Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6696502Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6720281Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6731386Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6732510Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6766635Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6767907Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6792138Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6806685Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6839789Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6840617Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6873489Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6884188Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6920991Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6924984Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6935650Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6952576Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.6962880Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7008908Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7031058Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7034489Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7051556Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7106086Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7112569Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7116980Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7134530Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7149866Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7155853Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7205404Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7225349Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7230115Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7252972Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7260150Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7263771Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7294234Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7299104Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7336856Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7358153Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7380002Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7390583Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7426345Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7506643Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7535043Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7555367Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7573931Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7575099Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7616289Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7648428Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7687729Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7699803Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7727187Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7728207Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7741681Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7777555Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7809976Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7824270Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7849126Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7865753Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7866855Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7887252Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7936381Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7962210Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7971794Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7977786Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.7995256Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8012422Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8049015Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8062954Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8094586Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8099887Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8109321Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8113445Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8154453Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8188032Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8199806Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8201838Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8213462Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8233154Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8267259Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8286221Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8294150Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8320110Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8347976Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8362540Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8383536Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8400843Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8404479Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8427318Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8463054Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8468409Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8504959Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8516617Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8521727Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8573735Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8595301Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8596823Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8608083Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8648519Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8676698Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8725446Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8738408Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8744791Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8766804Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8797133Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8822808Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8843855Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8855926Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8877858Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8927259Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8963139Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8977194Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.8978406Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9004356Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9035396Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9072318Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9081873Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9107912Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9118098Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9137936Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9156050Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9167304Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9192552Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9229261Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9234660Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9252972Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9255718Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9278107Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9285528Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9331489Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9338251Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9348692Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9365030Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9372088Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9422320Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9432904Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9446036Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9470209Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9486474Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9501930Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9533356Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9534341Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9564738Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9579366Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9606288Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9618127Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9625434Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9642997Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9673456Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9697484Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9709882Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9741850Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9748821Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9765445Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9809157Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9819986Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9854114Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9857286Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9863387Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9896735Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9908473Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9937680Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9953237Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9963132Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:42.9993897Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0009350Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0033646Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0037356Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0046704Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0075106Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0115627Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0179200Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0200313Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0207724Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0220445Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0250709Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0255610Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0297531Z Completed 3.6 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0340084Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0381318Z Completed 3.6 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0390329Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0405563Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0425996Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0436281Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0505414Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0535146Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0590890Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0644149Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0667025Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0679362Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0708422Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0715357Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0746001Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0800179Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0812154Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0829015Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0835590Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0858638Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0860048Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0871178Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0932010Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0945267Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0950362Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0967778Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.0986575Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1010310Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1046398Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1070850Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1077669Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1101117Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1119573Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1124548Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1133989Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1178410Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1198462Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1200786Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1209705Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1221822Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1266567Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1289247Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1293535Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1312138Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1316658Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1326934Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1373214Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1404174Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1404960Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1405639Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1443082Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1447085Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1475189Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1505004Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1506023Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1553828Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1557331Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1562011Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1570578Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1587694Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1634351Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1638327Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1645904Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1649088Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1675833Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1720334Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1733324Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1740321Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1772111Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1775130Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1800793Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1820299Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1822406Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1865136Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1869112Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1894728Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1912848Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1940416Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1950732Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1986616Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.1998132Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2017571Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2035992Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2058071Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2064786Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2114060Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2143621Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2144610Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2145351Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2167779Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2172511Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2217286Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2244848Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2271547Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2274063Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2282904Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2291720Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2310851Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2320650Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2370506Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2386033Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2398736Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2413388Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2430873Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2443686Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2455452Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2487727Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2497234Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2543721Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2546673Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2547888Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2576678Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2580940Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2599848Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2609728Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2657214Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2701033Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2704102Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2711996Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2725531Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2726629Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2777361Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2800819Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2806802Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2840555Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2857024Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2861901Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2888612Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2945958Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2953806Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.2971506Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3002451Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3017023Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3029005Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3051518Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3083108Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3109758Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3115927Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3117586Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3125034Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3156963Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3200480Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3222567Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3236153Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3243487Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3263594Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3296872Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3310998Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3321730Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3329932Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3343748Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3393835Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3409687Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3419844Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3428473Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3442295Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3501976Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3503612Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3512090Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3524042Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3525290Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3596536Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3604477Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3612027Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3617961Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3623673Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3688830Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3698731Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3700023Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3701589Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3712437Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3750567Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3755122Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3766987Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3798757Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3832434Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3873752Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3892123Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3952023Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3959833Z Completed 3.7 GiB/9.9 GiB (122.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3965513Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3977373Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3985152Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.3998563Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4008161Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4026642Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4044400Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4050294Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4057825Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4070534Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4089474Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4106836Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4120619Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4140230Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4161253Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4165878Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4187326Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4194546Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4210866Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4218626Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4226476Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4238015Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4250967Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4265144Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4277219Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4298234Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4304615Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4305710Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4321012Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4338223Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4349047Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4387475Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4389677Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4434096Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4459079Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4476451Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4478092Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4565592Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4583824Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4597645Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4641495Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4663570Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4666834Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4679591Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4756055Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4778612Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4801698Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4833814Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4870826Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4888655Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4919619Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4933084Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4938346Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4939696Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4971614Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4981474Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4989716Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.4998548Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5009431Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5045698Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5105153Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5140641Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5141792Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5145568Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5176991Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5201875Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5203111Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5204150Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5221106Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5259612Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5262506Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5282265Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5283167Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5286462Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5307801Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5336201Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5342266Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5362764Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5370330Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5375805Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5381019Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5386881Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5392229Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5397641Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5402536Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5408105Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5413418Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5619601Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5624304Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5629140Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5634259Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5638825Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5644189Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5649220Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5654757Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5659579Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5663648Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5798228Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5816418Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5840498Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5910379Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5924441Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5930562Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5936706Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5943677Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.5967955Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6009917Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6063863Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6075327Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6088726Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6097226Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6120786Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6168575Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6175544Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6193449Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6229851Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6250577Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6261792Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6284708Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6293317Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6301108Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6309676Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6315174Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6348952Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6375255Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6376348Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6404429Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6423342Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6459227Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6483406Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6488427Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6491341Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6552203Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6560396Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6562462Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6569719Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6573076Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6643812Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6645288Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6646234Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6648099Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6723010Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6726218Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6734298Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6741858Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6762282Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6773833Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6808799Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6811970Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6829762Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6859658Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6867057Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6879668Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6886575Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6934463Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6948158Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6955024Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6958067Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.6960909Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7019649Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7020763Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7022245Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7030362Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7071108Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7074002Z Completed 3.7 GiB/9.9 GiB (122.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7081375Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7089444Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7096576Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7102149Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7127561Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7149782Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7171829Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7187074Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7198553Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7204794Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7223244Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7235741Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7240689Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7263544Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7283277Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7297937Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7320630Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7333424Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7342555Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7393766Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7397747Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7404241Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7427486Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7482555Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7489359Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7495803Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7532309Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7549105Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7586870Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7594276Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7595102Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7622841Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7630623Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7676289Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7688530Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7697126Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7738119Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7740587Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7746916Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7753205Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7809825Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7818946Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7844541Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7856960Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7870002Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7889127Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7924418Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7939359Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7958331Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7975945Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.7997744Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8021092Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8051426Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8085749Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8096328Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8101421Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8110866Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8134249Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8146816Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8148058Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8199266Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8214332Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8226284Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8242068Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8254466Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8261863Z Completed 3.7 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8274793Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8307120Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8370013Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8395335Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8401882Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8403307Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8420080Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8435053Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8436942Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8438315Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8615906Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8628225Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8646684Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8647631Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8665925Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8667478Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8718836Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8720600Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8766317Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8777852Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8784737Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8792952Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8801406Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8820537Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8826304Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8885311Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8903883Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8919043Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8920265Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8933248Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8945379Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8961953Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.8997694Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9039058Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9050703Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9056963Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9069507Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9074890Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9080821Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9118275Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9193062Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9204490Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9213148Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9234454Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9253824Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9266119Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9302326Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9324442Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9329919Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9354139Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9377387Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9381599Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9389300Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9432019Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9449002Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9466663Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9476162Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9508558Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9515153Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9523946Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9549057Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9578404Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9593696Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9630053Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9652206Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9682405Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9688498Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9733400Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9747127Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9765422Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9769123Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9785883Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9826811Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9839073Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9859410Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9877522Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9914060Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9927919Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9937705Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9944846Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9950573Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:43.9963676Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0009058Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0046105Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0047804Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0054930Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0066709Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0076684Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0110108Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0122980Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0130871Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0138504Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0168223Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0213605Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0218239Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0236895Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0249343Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0251588Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0303054Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0311313Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0341045Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0347304Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0350061Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0378651Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0404119Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0436067Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0447609Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0453153Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0473336Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0488055Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0542391Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0552936Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0559045Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0570287Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0601465Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0636363Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0648555Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0677084Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0698378Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0704011Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0709934Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0729446Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0797034Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0814939Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0817704Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0823320Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0857498Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0907991Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0910359Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0939316Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0947914Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.0956628Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1024538Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1025724Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1034119Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1079835Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1080817Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1126146Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1168513Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1196106Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1197534Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1249638Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1250694Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1263598Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1302494Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1354358Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1356450Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1393680Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1397507Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1398798Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1409075Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1437576Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1442393Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1453131Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1457943Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1502202Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1554971Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1567597Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1569452Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1596037Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1603836Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1638254Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1673148Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1677129Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1687848Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1688746Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1737841Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1768518Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1774881Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1778234Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1786922Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1832970Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1871975Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1885107Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1892851Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1907134Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1919060Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1933367Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1972085Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1976793Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.1995905Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2006998Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2017048Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2022147Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2055962Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2061129Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2076648Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2095102Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2105120Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2111312Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2120078Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2126963Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2134354Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2141190Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2160904Z Completed 3.8 GiB/9.9 GiB (122.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2169892Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2190168Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2202749Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2204948Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2212119Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2220717Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2229643Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2241072Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2246818Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2255898Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2269543Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2298724Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2304859Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2320834Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2375118Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2377562Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2384458Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2408339Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2423727Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2437551Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2446532Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2453099Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2469229Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2482044Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2488336Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2491587Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2518137Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2533477Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2534198Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2558475Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2569230Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2585607Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2598099Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2611009Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2627755Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2636705Z Completed 3.8 GiB/9.9 GiB (122.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2637890Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2660078Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2664757Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2681296Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2688692Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2697051Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2705677Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2712876Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2724671Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2745084Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2751391Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2767103Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2830065Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2840830Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2845361Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2865366Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2908725Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2938612Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2956230Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2980780Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.2997758Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3015487Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3027170Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3040427Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3043302Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3054828Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3057224Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3063212Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3087609Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3093655Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3120131Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3134750Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3138404Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3166256Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3174026Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3178662Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3216944Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3224004Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3226255Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3255803Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3263162Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3272452Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3294002Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3302109Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3317309Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3321579Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3339489Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3349835Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3370229Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3384936Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3396553Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3413943Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3424599Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3451813Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3498485Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3511395Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3520415Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3529881Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3550369Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3573216Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3593827Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3602229Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3610946Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3619447Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3627685Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3711705Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3713846Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3797463Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3798647Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3855070Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3895780Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3921715Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3951341Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3967203Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3975963Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.3993256Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4005068Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4016396Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4040539Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4051606Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4057285Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4092293Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4097230Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4108704Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4118007Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4170348Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4184762Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4187844Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4191757Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4231825Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4253763Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4255713Z Completed 3.8 GiB/9.9 GiB (122.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4257874Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4263857Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4274710Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4282311Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4291789Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4328286Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4335409Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4347983Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4390598Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4396201Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4411006Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4430687Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4440481Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4501580Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4505692Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4520873Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4548835Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4550932Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4590448Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4605131Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4606450Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4617668Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4630956Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4666379Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4677078Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4679159Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4698947Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4730385Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4757465Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4763679Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4772919Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4808875Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4817983Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4831298Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4842597Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4912229Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4931271Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4947665Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4948831Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4960839Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.4969460Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5004372Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5040294Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5045731Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5058740Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5072189Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5079565Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5141308Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5150026Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5151396Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5163466Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5184271Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5224610Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5227805Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5236424Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5239723Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5257839Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5296837Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5302269Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5314314Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5339949Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5358405Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5362523Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5368050Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5401738Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5412578Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5422339Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5435112Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5452599Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5461704Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5468027Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5475106Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5500852Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5512165Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5520829Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5532260Z Completed 3.8 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5549101Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5555384Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5594527Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5598021Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5628347Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5639297Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5657018Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5679692Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5680619Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5693801Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5710101Z Completed 3.8 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5729880Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5737136Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5759454Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5763371Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5765706Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5781733Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5785143Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5793227Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5801019Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5809701Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5818662Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5890642Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5906765Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.5917555Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6007090Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6015730Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6034174Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6089884Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6110795Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6168181Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6173908Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6188748Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6247533Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6254983Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6256258Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6276997Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6318550Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6330244Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6343934Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6373294Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6385509Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6419353Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6443548Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6444618Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6445688Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6481070Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6484412Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6525977Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6554463Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6586764Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6605123Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6630420Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6679862Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6689913Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6707651Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6710325Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6727763Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6767663Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6784447Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6789298Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6807316Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6816569Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6848826Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6869985Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6894845Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6901414Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6903049Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6911859Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.6946491Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7009398Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7033070Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7035915Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7037367Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7073641Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7092204Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7121574Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7134105Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7143722Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7144550Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7161901Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7193492Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7228652Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7235185Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7238991Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7246057Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7297133Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7318412Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7322614Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7329062Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7332578Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7396150Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7403318Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7410217Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7411992Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7432343Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7452285Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7462960Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7473502Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7505760Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7531354Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7551034Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7556179Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7572318Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7585279Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7645386Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7655986Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7666054Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7670879Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7713479Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7728042Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7734013Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7768460Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7774102Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7792211Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7816132Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7828629Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7852109Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7863513Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7897930Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7908149Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7919988Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7930748Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7942169Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.7993169Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8000312Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8003589Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8026325Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8031456Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8055042Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8097622Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8101507Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8107765Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8115621Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8153216Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8192171Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8196548Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8222462Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8223924Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8225209Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8306017Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8328815Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8329653Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8332190Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8342906Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8355207Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8392812Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8434449Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8443433Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8454192Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8465680Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8484992Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8497225Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8505853Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8543358Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8559863Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8610899Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8613893Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8643047Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8648338Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8677193Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8693512Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8721285Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8753144Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8758044Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8785301Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8797865Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8846229Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8860960Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8869869Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8870659Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8910020Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8924710Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8949849Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8967682Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8992340Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.8993730Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9005019Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9019064Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9059122Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9078556Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9084429Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9108828Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9122892Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9139241Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9171684Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9183014Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9215596Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9218101Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9226526Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9273466Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9289693Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9291162Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9315804Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9323493Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9374521Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9379904Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9393485Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9396668Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9397488Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9463167Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9477093Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9481802Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9485370Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9486565Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9492936Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9559169Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9577441Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9583060Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9588330Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9597343Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9648955Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9652566Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9665754Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9705858Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9706900Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9717282Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9745621Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9749581Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9831868Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9855273Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9877255Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9897215Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9910019Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9956641Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:44.9965504Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0004623Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0010810Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0016678Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0046384Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0078377Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0095058Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0103326Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0133573Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0143413Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0163834Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0191369Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0203433Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0214843Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0243512Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0270026Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0279021Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0302404Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0326929Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0388922Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0389702Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0395326Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0410518Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0415414Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0449562Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0457494Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0473677Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0476345Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0532973Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0549219Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0578153Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0579251Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0601542Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0633291Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0642548Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0654723Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0683276Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0713387Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0724175Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0725218Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0743893Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0777646Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0794177Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0810966Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0833105Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0848908Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0859209Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0860477Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0887542Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0894910Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0946996Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0948887Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.0993655Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1051969Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1090601Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1096695Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1105688Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1113356Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1119314Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1127982Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1133753Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1139820Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1147125Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1152815Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1160613Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1184384Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1201230Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1235208Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1297723Z Completed 3.9 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1341213Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1413609Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1420294Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1522351Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1551703Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1585335Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1593979Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1601629Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1612090Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1622566Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1633979Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1642313Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1651232Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1652546Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1661253Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1663253Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1671420Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1719177Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1790281Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1913075Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.1990859Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2002226Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2006842Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2018520Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2031036Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2040439Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2049993Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2058572Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2067491Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2073916Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2090579Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2122856Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2207151Z Completed 3.9 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2280252Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2397076Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2508325Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2516325Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2527291Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2551227Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2552614Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2585726Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2603548Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2605339Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2608453Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2658526Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2659955Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2670929Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2684461Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2693941Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2711529Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2733090Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2742444Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2745861Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2758793Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2763584Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2772580Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2776636Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2783925Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2852976Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2886968Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2899969Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2916153Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2928005Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2939533Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2948519Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2950436Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2957534Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2966301Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2973331Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.2988453Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3111842Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3118198Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3124180Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3130267Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3136412Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3142128Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3148252Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3161028Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3163656Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3169475Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3428841Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3438409Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3448223Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3464740Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3475049Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3481992Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3521500Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3543954Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3561015Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3581073Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3586446Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3613526Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3621413Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3624472Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3642467Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3658973Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3680594Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3711768Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3733407Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3745468Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3759127Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3777265Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3817714Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3818911Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3845539Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3856452Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3885186Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3889121Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3916389Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3922034Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3938719Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3940437Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3950168Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3963642Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3981418Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.3986613Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4001589Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4030629Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4044088Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4046432Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4065573Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4070097Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4105641Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4108617Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4110815Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4114361Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4117551Z Completed 3.9 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4122009Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4129577Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4274516Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4282987Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4291458Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4301527Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4311251Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4320938Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4330332Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4340843Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4349982Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4361111Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4377551Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4386931Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4395168Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4404145Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4432583Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4453777Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4473653Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4481440Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4526433Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4584550Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4589240Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4593281Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4636991Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4646632Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4657391Z Completed 4.0 GiB/9.9 GiB (122.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4665750Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4678598Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4715133Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4730213Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4731819Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4786202Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4793614Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4823381Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4835108Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4858059Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4866190Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4878532Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4891988Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4908801Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4914405Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4931642Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4939563Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4957313Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4975284Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.4985860Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5007367Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5015849Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5022955Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5029917Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5037961Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5045058Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5052838Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5060262Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5200401Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5208713Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5214361Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5222035Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5229219Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5237186Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5244694Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5268886Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5284559Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5293715Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5302173Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5309405Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5313113Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5324002Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5333498Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5338479Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5344093Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5348266Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5354155Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5360001Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5372131Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5378921Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5385335Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5521752Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5526509Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5565128Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5568490Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5588593Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5604275Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5644077Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5656041Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5679522Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5690102Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5696287Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5715694Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5719300Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5726350Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5745509Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5754673Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5771424Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5778273Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5819522Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5821886Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5877390Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5878722Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5880621Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5899129Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5910596Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5920905Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5938636Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5953288Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5958138Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5969905Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5973823Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.5984086Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6113158Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6121062Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6128355Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6135932Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6143256Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6151264Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6158091Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6183804Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6204886Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6243320Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6249025Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6274102Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6284118Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6287164Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6293642Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6309216Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6315096Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6324336Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6331461Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6346566Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6347768Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6370176Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6374656Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6379800Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6407785Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6415252Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6423652Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6427789Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6436042Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6464692Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6490801Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6496208Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6510241Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6554934Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6600296Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6613014Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6623446Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6632801Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.6664747Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7021736Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7028811Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7036544Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7055745Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7060924Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7066427Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7071975Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7077282Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7082946Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7088355Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7099245Z Completed 4.0 GiB/9.9 GiB (122.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7109574Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7114248Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7141814Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7153671Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7156393Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7184638Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7193502Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7215069Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7217631Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7227297Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7240945Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7250485Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7254003Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7270490Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7283083Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7284580Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7291889Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7305316Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7314381Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7327761Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7334608Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7453659Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7459136Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7464968Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7470253Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7475770Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7480711Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7486500Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7491479Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7496649Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7501445Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7513624Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7521058Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7529874Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7538139Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7546532Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7554639Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7560713Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7567815Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7575578Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7583062Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7706030Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7720634Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7721839Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7729089Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7737256Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7745568Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7814954Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7816284Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7817381Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7818512Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7978416Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7987349Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.7994560Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8002581Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8008882Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8017790Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8021081Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8027642Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8070148Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8077228Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8085705Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8092776Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8111764Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8123449Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8141821Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8146043Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8150400Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8159941Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8163750Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8194483Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8213014Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8227664Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8236905Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8373551Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8385994Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8395826Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8441140Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8451146Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8460060Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8469162Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8476765Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8493218Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8499162Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8603997Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8620299Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8624946Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8644145Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8647380Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8664667Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8669255Z Completed 4.0 GiB/9.9 GiB (122.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8683721Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8689684Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8698704Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8707320Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8714725Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8726320Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8732015Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8742820Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8748376Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8758311Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8763358Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8771631Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8840515Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8846415Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8852214Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8858254Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8864193Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8869775Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8875349Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8881314Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8887322Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8899498Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8903667Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8915768Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8925085Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8933085Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8936482Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8946346Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8955535Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8978150Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8991911Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.8995214Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9035780Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9061775Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9082911Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9134490Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9139088Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9144011Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9148909Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9154087Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9158864Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9163899Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9169032Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9174192Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9178979Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9292416Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9300766Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9310692Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9318255Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9323975Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9508459Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9510294Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9527507Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9537676Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9558171Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9572284Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9604275Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9616534Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9621722Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9654510Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9658912Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9671117Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9697252Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9698339Z Completed 4.0 GiB/9.9 GiB (123.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9712456Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9726252Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9732069Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9741763Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9752510Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9759495Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9813197Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9835134Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9866830Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9872334Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9892120Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9905396Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9947303Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9955442Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9963422Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9968335Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:45.9990735Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0004253Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0005386Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0024836Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0026939Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0038006Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0044790Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0054526Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0064364Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0071853Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0079640Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0086013Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0091147Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0097583Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0103102Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0108915Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0114643Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0119836Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0125380Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0130668Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0209069Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0217607Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0225118Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0231885Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0239921Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0248072Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0253946Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0259771Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0266125Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0272337Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0404187Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0415114Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0418264Z Completed 4.0 GiB/9.9 GiB (123.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0436735Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0442582Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0474758Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0481124Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0519126Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0528473Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0535345Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0539424Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0562157Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0570197Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0589945Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0596487Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0616571Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0629784Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0636897Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0682205Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0688375Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0692263Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0716278Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0719739Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0724998Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0733414Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0747593Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0806916Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0808724Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0812177Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0870060Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0879680Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0916694Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0927761Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0939742Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0950729Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0976588Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.0992784Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1005844Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1018435Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1057572Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1059823Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1078251Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1089322Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1094753Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1123502Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1135598Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1141361Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1166359Z Completed 4.0 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1175251Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1178067Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1206711Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1215887Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1224953Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1257134Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1259474Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1276633Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1282496Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1285694Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1301517Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1304726Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1328522Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1330976Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1342571Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1347355Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1385260Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1426657Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1437399Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1448542Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1481987Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1522284Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1541968Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1555981Z Completed 4.1 GiB/9.9 GiB (123.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1566497Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1571547Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1613209Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1640837Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1656304Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1660667Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1685819Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1697455Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1711728Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1748704Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1761353Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1784808Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1791356Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1812552Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1851376Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1854662Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1876716Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1878669Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1925190Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1930689Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1939731Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1952348Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.1984133Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2001850Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2012594Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2032192Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2033535Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2047446Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2051919Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2079624Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2080705Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2107436Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2110845Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2114765Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2136930Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2184585Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2209572Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2228231Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2297766Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2308007Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2318028Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2323749Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2329369Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2335246Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2341135Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2350907Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2360483Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2367578Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2377375Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2382192Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2388668Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2394348Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2412914Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2436677Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2440898Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2473326Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2522048Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2526738Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2587618Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2589795Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2643459Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2653989Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2658458Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2670528Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2730970Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2761698Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2785327Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2821674Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2822951Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2832087Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2840255Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2849831Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2861234Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2873659Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2884538Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2890881Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2900694Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2907454Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2923460Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2925492Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2938764Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2944339Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2960372Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.2970966Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3007762Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3025031Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3061363Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3067367Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3113526Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3137963Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3154896Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3226306Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3238645Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3245397Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3253179Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3264347Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3278049Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3281088Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3289958Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3296155Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3321503Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3342913Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3350312Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3352342Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3358209Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3544630Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3558204Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3600040Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3669206Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3689926Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3698660Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3725877Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3738225Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3761979Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3773534Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3828724Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3829761Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3840582Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3871902Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3898485Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3921609Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3929582Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3945857Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3979901Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.3987348Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4006525Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4034356Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4045079Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4053227Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4067130Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4103028Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4119446Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4122818Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4130333Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4163476Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4174219Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4197770Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4208544Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4254429Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4273423Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4284213Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4303440Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4309844Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4341698Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4349616Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4359273Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4369295Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4407380Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4429910Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4434300Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4463630Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4483778Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4497034Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4506419Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4538647Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4548140Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4560481Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4576244Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4598869Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4626107Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4627421Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4645933Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4649872Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4698696Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4727559Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4730495Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4731631Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4742128Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4796481Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4804743Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4814357Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4830621Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4860996Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4873512Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4889799Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4894422Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4942881Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4965646Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4968773Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4976145Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.4989669Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5044090Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5068674Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5089971Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5101698Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5103082Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5113324Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5126935Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5175262Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5199239Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5215396Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5228629Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5240285Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5259688Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5281132Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5352085Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5380924Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5397298Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5410207Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5416256Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5445781Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5446918Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5489804Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5529438Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5543395Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5544797Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5566666Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5595910Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5623741Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5642190Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5648677Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5654360Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5697055Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5698544Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5734410Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5757542Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5783298Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5790012Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5791004Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5813671Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5825280Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5872399Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5899951Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5903511Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5907743Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5925822Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5937335Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.5964136Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6007510Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6014857Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6020014Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6056916Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6078373Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6099460Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6122566Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6139217Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6158105Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6167728Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6179271Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6236228Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6252014Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6253316Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6257057Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6267851Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6310673Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6343572Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6354990Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6366796Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6370481Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6388390Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6428364Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6444563Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6472206Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6479913Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6491877Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6537991Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6546918Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6597268Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6598638Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6599874Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6610691Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6658876Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6686235Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6690063Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6719511Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6752008Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6755362Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6788739Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6814955Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6820111Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6839062Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6882838Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6883807Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6891981Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6919917Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6930907Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6956349Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.6967952Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7001475Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7012602Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7035240Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7044708Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7053182Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7098860Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7103618Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7121682Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7134786Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7160250Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7170008Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7186691Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7194650Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7220930Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7228358Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7254313Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7274700Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7275950Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7300860Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7332916Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7345950Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7375115Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7384265Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7427627Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7432192Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7439764Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7456771Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7486188Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7506095Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7511085Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7518703Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7570724Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7588004Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7591562Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7609366Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7620362Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7662324Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7669352Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7674411Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7706147Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7722832Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7726750Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7731744Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7754067Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7785227Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7800030Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7815783Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7824934Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7838405Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7861144Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7869810Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7890659Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7909752Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7919016Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7929063Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7931595Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7938474Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7946394Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7952917Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7956753Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7965358Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.7972081Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8009108Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8055468Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8125890Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8149677Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8193081Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8227960Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8263776Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8289915Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8331830Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8350185Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8381546Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8413937Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8449763Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8456966Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8538400Z Completed 4.1 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8539707Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8585319Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8598857Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8642074Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8667895Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8691666Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8698196Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8735070Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8742389Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8783208Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8793827Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8800334Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8822885Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8832489Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8860457Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8869668Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8878522Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8887181Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8895931Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8907935Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8924209Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.8977515Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9096478Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9187010Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9196320Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9229436Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9238161Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9253069Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9259300Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9270527Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9276236Z Completed 4.1 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9281599Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9302454Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9313623Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9324520Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9335377Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9343758Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9377301Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9398885Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9447000Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9477315Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9508387Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9519341Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9527698Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9541431Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9553012Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9561735Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9563063Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9570174Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9587889Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9603609Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9608132Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9620355Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9621389Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9639439Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9667149Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9670051Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9676438Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9711094Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9720914Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9729806Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9765120Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9781663Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9795238Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9800776Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9808070Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9824391Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:46.9836848Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0045020Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0067760Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0074527Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0082303Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0091800Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0099897Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0105785Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0112909Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0121212Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0131991Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0137024Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0148142Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0160979Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0169532Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0173741Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0181727Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0206634Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0231117Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0236022Z Completed 4.2 GiB/9.9 GiB (123.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0265108Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0277586Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0289880Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0314291Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0325771Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0337606Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0341678Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0398671Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0400580Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0401777Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0407132Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0425158Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0480605Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0497940Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0504914Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0507772Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0523627Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0563229Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0584379Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0599050Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0611903Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0635946Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0651053Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0674367Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0695542Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0703998Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0729074Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0729967Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0757477Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0768127Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0776037Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0799514Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0827268Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0833701Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0844220Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0872837Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0877706Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0897064Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0906780Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0930963Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0938576Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0948068Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0956275Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0977084Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0987655Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.0994184Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1000335Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1006791Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1011992Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1017992Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1022611Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1039909Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1062007Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1074508Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1086130Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1100719Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1115287Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1152016Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1157964Z Completed 4.2 GiB/9.9 GiB (123.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1161993Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1175286Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1209023Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1235165Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1241521Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1252057Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1261753Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1298753Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1311917Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1318897Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1343538Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1348731Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1358133Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1408673Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1414913Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1437907Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1461705Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1464386Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1475140Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1516698Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1528457Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1553450Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1563430Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1579401Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1590968Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1625416Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1638941Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1656203Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1697074Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1699777Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1711316Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1735694Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1736774Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1809832Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1815243Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1831703Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1833815Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1869833Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1923161Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1928331Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1931320Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1940514Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.1986977Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2008181Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2041515Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2071130Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2082380Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2089446Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2124399Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2131681Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2132919Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2169222Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2190187Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2191430Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2229871Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2236507Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2260641Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2271093Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2273048Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2302806Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2317840Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2333665Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2392453Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2396094Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2400995Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2408853Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2436427Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2455486Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2493729Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2495068Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2511021Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2550062Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2579641Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2591675Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2594237Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2626130Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2627218Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2673517Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2712599Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2713905Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2736818Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2746461Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2747622Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2798732Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2825750Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2846344Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2856771Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2874053Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2879862Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2928385Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2934009Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2939909Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2960970Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2976293Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.2986339Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3026642Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3082163Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3083243Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3087275Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3100051Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3149406Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3161906Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3183083Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3204115Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3211756Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3222140Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3239052Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3268246Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3283773Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3289936Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3313718Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3321875Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3344344Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3377122Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3394076Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3406983Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3413531Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3419475Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3466511Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3478528Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3498467Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3509920Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3511619Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3567204Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3570567Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3600975Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3607282Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3608660Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3653821Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3659046Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3665749Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3687470Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3694744Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3720310Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3726142Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3732210Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3757557Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3763424Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3772905Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3783463Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3790628Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3793921Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3801593Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3814863Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3823216Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3825755Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3847040Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.3907502Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4032535Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4055898Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4109396Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4115981Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4120105Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4125574Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4134961Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4143634Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4152143Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4159105Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4169150Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4188386Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4208453Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4217958Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4220571Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4253014Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4279600Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4361469Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4364705Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4429416Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4456338Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4546199Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4618112Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4622285Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4635266Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4651510Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4664590Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4674947Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4682965Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4702428Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4709711Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4711169Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4718768Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4726559Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4747268Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4868795Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4875874Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4881996Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4888346Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4894383Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4901394Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4908249Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4914066Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4919637Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4925269Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.4997929Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5028497Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5037175Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5045110Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5057408Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5068436Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5069916Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5079695Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5089115Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5107338Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5137817Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5147652Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5152955Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5225180Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5303299Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5381789Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5404528Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5407703Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5415826Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5424464Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5431110Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5439998Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5453612Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5456609Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5465814Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5484953Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5492893Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5524086Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5531751Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5550034Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5553825Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5575257Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5586685Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5598848Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5614485Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5617425Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5633153Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5636818Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5645159Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5653727Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5767854Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5775692Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5783467Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5791122Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5798270Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5807217Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5814940Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5821633Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5829255Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5835667Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5923295Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5949703Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5956173Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5978839Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5985321Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5991278Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.5998619Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6018614Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6022569Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6028635Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6055987Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6067305Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6120152Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6201478Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6207503Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6212868Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6219249Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6225195Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6231323Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6237132Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6243183Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6248619Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6254452Z Completed 4.2 GiB/9.9 GiB (123.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6281641Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6287722Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6322611Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6329862Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6337371Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6343388Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6349706Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6356994Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6364233Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6389743Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6424119Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6426403Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6438750Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6443388Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6457477Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6463359Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6477512Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6485107Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6499632Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6527372Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6531865Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6547756Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6571070Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6573595Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6583006Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6610413Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6615600Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6626503Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6649076Z Completed 4.2 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6650356Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6675289Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6690690Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6708173Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6740973Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6758030Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6764064Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6800418Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6813329Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6818952Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6820253Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6874085Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6885899Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6908135Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6909209Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6943519Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6959409Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6974552Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.6981853Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7015629Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7019714Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7025905Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7034777Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7040516Z Completed 4.3 GiB/9.9 GiB (123.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7049083Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7056220Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7065483Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7070899Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7083305Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7087184Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7092266Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7116861Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7124411Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7130903Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7146382Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7152990Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7159508Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7166343Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7173704Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7186684Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7190229Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7203990Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7207442Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7218350Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7236366Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7243972Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7251726Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7258494Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7265017Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7271863Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7287021Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7336819Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7353384Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7366831Z Completed 4.3 GiB/9.9 GiB (123.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7374067Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7383365Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7397921Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7424682Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7433635Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7454066Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7464548Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7475102Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7489780Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7512978Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7540362Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7563700Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7577701Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7583667Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7603231Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7618344Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7646774Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7651316Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7669406Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7674196Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7699903Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7731523Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7746562Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7747738Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7758905Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7795281Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7798650Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7810716Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7824534Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7830241Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7861040Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7890118Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7892343Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7935446Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7951277Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7971770Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.7987177Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8003674Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8010014Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8035593Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8044491Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8057488Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8063931Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8070161Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8080233Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8093444Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8112244Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8125942Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8130336Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8136442Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8142784Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8269837Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8305195Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8306088Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8343271Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8352611Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8358171Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8385411Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8396480Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8403550Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8424399Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8428775Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8436706Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8438746Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8479635Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8480637Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8502832Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8518439Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8541783Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8562404Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8581546Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8594059Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8621831Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8623224Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8651761Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8656735Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8696300Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8719355Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8720604Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8776271Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8790496Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8791900Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8796573Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8847889Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8857529Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8862572Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8870628Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8913787Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8927625Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8930111Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.8947879Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9009323Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9010711Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9017242Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9028854Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9040006Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9084746Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9085891Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9090381Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9103124Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9120238Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9126025Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9141860Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9156750Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9162141Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9174290Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9176471Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9208404Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9210896Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9221775Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9226615Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9266976Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9291225Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9292182Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9299378Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9340589Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9342346Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9348839Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9363639Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9365178Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9470757Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9478078Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9496266Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9569381Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9609437Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9629006Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9642436Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9652029Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9664872Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9666661Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9670345Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9677076Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9685626Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9693164Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9700089Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9716644Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9726541Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9737969Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9765810Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9791917Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9810711Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9848457Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9890001Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9943619Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9987971Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:47.9995226Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0033912Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0037040Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0040806Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0065813Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0076795Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0079211Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0095073Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0102076Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0112483Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0118668Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0127850Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0135282Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0144114Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0155203Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0164977Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0201851Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0393274Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0401600Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0447800Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0506362Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0513142Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0522198Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0531615Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0539066Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0571238Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0574188Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0580432Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0605719Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0609345Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0612610Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0625453Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0644982Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0653160Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0667156Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0758127Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0759267Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0760315Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0764762Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0778719Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0790404Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0795150Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0797668Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0835336Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0836480Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0853654Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0859533Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0864679Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0904684Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0908660Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0922537Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0960539Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0963132Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.0995208Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1001153Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1005153Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1031890Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1038161Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1057753Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1066953Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1071573Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1082159Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1088451Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1093966Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1105322Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1110644Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1341955Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1343364Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1419504Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1427121Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1434990Z Completed 4.3 GiB/9.9 GiB (123.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1439910Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1445861Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1450912Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1461398Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1479772Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1487759Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1508563Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1511813Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1556303Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1557346Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1562959Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1574015Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1611061Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1716128Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1726805Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1747375Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1753280Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1763484Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1771656Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1779735Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1786957Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1794207Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1800181Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1810862Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1825914Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1826904Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1840149Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1847227Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1853517Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1868420Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1870933Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1890714Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1931832Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1969085Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1984729Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.1996526Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2014847Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2017153Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2030304Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2037255Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2043519Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2055426Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2056555Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2104087Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2116398Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2128525Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2134264Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2159928Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2174217Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2177124Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2193457Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2216303Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2218215Z Completed 4.3 GiB/9.9 GiB (123.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2229939Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2253399Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2257778Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2266943Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2288110Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2298019Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2305893Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2325101Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2344834Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2352275Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2365766Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2386371Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2391710Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2408382Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2409457Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2479927Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2492457Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2493796Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2498819Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2523539Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2556261Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2558985Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2565873Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2575474Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2580165Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2589196Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2592978Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2603553Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2607388Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2619352Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2621155Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2635413Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2637782Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2648944Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2654470Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2660716Z Completed 4.3 GiB/9.9 GiB (124.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2674548Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2696155Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2708801Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2721492Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2750961Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2762255Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2790907Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2798298Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2813307Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2860207Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2864201Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2869835Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2922526Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2936193Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2950113Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2963638Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2973756Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2988146Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.2989333Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3001093Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3045956Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3060167Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3066301Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3093732Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3100169Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3113930Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3135688Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3143107Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3154535Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3177244Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3187561Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3206820Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3225481Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3237553Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3252848Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3273769Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3278776Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3296685Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3315073Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3320376Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3324296Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3343343Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3348978Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3352420Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3433917Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3445072Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3448381Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3480514Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3494598Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3507436Z Completed 4.3 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3522432Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3535090Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3547957Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3562945Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3575164Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3584374Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3593671Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3636178Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3643006Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3648618Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3711419Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3717311Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3722492Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3755913Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3761936Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3766891Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3843849Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3866045Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3868237Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3883004Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3912830Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3924846Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3939008Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3947130Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.3971566Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4005108Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4011332Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4026410Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4044621Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4047606Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4141347Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4143205Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4186613Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4194267Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4205047Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4248890Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4295225Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4296681Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4297981Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4299470Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4318481Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4335928Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4400068Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4405365Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4421750Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4435430Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4452523Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4457681Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4476481Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4511624Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4531579Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4534675Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4573616Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4575059Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4601993Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4616307Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4658485Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4690250Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4690957Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4700425Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4711899Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4738522Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4742440Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4778081Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4783598Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4802036Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4844294Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4860823Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4863660Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4871117Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4904661Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4919204Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4938569Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4954908Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.4960744Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5003588Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5030483Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5031754Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5042131Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5064218Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5067083Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5104070Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5117362Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5133108Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5153999Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5155105Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5158208Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5177734Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5191205Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5245125Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5246871Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5312053Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5330968Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5362568Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5401604Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5409919Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5415481Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5427561Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5433565Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5441202Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5445798Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5453243Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5485036Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5492445Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5518341Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5531061Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5539348Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5544328Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5562582Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5572099Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5593751Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5621872Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5629056Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5636031Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5642494Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5651675Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5667576Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5668866Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5677701Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5720578Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5748390Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5837912Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5844763Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5850904Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5860295Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5871198Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5878857Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5885543Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5895533Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5902363Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5910200Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5917952Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5926672Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.5973806Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6050125Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6056924Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6068351Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6082191Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6093464Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6112390Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6170226Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6268363Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6285909Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6338585Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6367560Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6386618Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6388980Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6393171Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6398638Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6418734Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6441515Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6476437Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6485832Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6514164Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6515197Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6557668Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6559532Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6568049Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6600124Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6611752Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6619349Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6634225Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6650686Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6652590Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6662494Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6694150Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6719592Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6720717Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6721845Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6741588Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6809565Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6817254Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6834566Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6862161Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6880036Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6889532Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6892782Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6900844Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6908589Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6917922Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6925659Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6934316Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6942576Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6949883Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6962031Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.6992039Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7012867Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7020391Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7023639Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7079049Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7109269Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7224084Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7237778Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7266124Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7300959Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7311689Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7354150Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7365108Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7379187Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7387795Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7397341Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7409609Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7417689Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7424764Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7430995Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7435974Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7444662Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7452991Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7462523Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7469726Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7487157Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7514676Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7532529Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7536788Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7550695Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7553716Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7576085Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7599284Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7607715Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7614886Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7700043Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7715197Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7775206Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7782499Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7788624Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7801513Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7819696Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7850382Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7888588Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7898342Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7909113Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7923871Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7958539Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7969601Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7971940Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.7987899Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8021648Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8038801Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8056231Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8061031Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8112472Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8116241Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8147378Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8150809Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8173035Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8184207Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8205208Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8222980Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8249174Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8265178Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8269023Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8283500Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8377552Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8400721Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8419740Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8425172Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8434416Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8448915Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8457961Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8503294Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8533520Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8559379Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8568496Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8578986Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8598331Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8629375Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8644425Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8657580Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8667177Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8695974Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8709978Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8724307Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8748814Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8757883Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8778076Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8786353Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8803416Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8815418Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8860449Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8879824Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8888363Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8903543Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8912524Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8927961Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8979174Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.8997247Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9023690Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9026292Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9033754Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9084875Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9093907Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9105688Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9110388Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9130779Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9183129Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9224613Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9225735Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9242897Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9248012Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9296778Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9312257Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9316168Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9326514Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9362575Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9387621Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9388587Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9391332Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9430510Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9454803Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9459201Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9470852Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9504540Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9511054Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9562994Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9570850Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9575978Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9613333Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9652321Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9743000Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9751329Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9774661Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9815677Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9825806Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9826984Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9864286Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9867499Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9877243Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9910971Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9912143Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9975188Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9977542Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:48.9986605Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0007084Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0017929Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0028071Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0068449Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0088661Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0089666Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0093846Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0119951Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0137667Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0184715Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0216735Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0228757Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0280222Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0282597Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0315858Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0406907Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0453874Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0471408Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0491710Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0508930Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0515132Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0523578Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0573199Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0589272Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0605448Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0620692Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0635354Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0640610Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0659825Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0686867Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0711861Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0743665Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0747011Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0748441Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0766516Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0799105Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0820365Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0831772Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0869427Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0886910Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0898031Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0940402Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0945143Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0956425Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0961346Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.0972033Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1021401Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1040647Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1072861Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1077713Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1089614Z Completed 4.4 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1097499Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1111739Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1126970Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1159448Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1168596Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1192488Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1215832Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1224515Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1231373Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1250973Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1255757Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1282157Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1325570Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1335892Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1345886Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1351144Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1366275Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1381430Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1422190Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1445356Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1458741Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1475414Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1477827Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1497867Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1527186Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1578651Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1605263Z Completed 4.4 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1609740Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1617658Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1625948Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1629547Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1647603Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1660035Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1705851Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1726980Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1732908Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1750011Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1756121Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1774744Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1779921Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1817046Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1851453Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1858323Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1868857Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1893238Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1901888Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1941054Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1961997Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1991426Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1993166Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.1994373Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2005304Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2059432Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2062827Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2083639Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2088091Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2114834Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2135446Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2159710Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2166544Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2190213Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2204057Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2223125Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2261251Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2271716Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2280030Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2293743Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2325299Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2352515Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2353823Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2373381Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2396191Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2408349Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2431053Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2439609Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2477967Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2479786Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2485235Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2523117Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2534476Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2551484Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2573050Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2577882Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2606768Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2618715Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2641680Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2659595Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2714828Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2748245Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2765565Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2789192Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2802258Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2812137Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2826801Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2899197Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2914767Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2971361Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2973597Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.2980328Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3098165Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3099327Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3152827Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3158158Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3170441Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3172459Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3230831Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3232506Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3233849Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3248264Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3257018Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3284246Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3344522Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3351508Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3356566Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3381401Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3385650Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3398868Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3448396Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3454178Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3470802Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3471616Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3500331Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3523271Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3554971Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3565378Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3582258Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3603503Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3626796Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3630735Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3654213Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3677443Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3690907Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3695738Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3727276Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3735385Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3746084Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3762225Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3767842Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3775470Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3826632Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3858479Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3938429Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3948359Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.3982866Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4026980Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4059094Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4067831Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4071184Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4107336Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4112471Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4139107Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4149351Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4202605Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4208429Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4221001Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4233454Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4245314Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4262160Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4307253Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4338293Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4345323Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4346498Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4353074Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4384732Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4437005Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4440726Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4465158Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4471652Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4474259Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4479674Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4551081Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4556276Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4563393Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4564726Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4602530Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4622454Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4669161Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4673806Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4682589Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4724986Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4728066Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4782511Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4824719Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4843769Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4845205Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4846317Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4850637Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4861205Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4893377Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4949743Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4969651Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4996563Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.4998899Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5001801Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5014595Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5041851Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5092926Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5109820Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5119734Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5131316Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5146591Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5150264Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5167110Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5205895Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5225664Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5230469Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5254645Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5264888Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5294284Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5305618Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5308760Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5349024Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5360995Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5448240Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5471688Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5497777Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5519406Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5545383Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5546403Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5568920Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5597670Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5625957Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5635863Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5661953Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5703571Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5708507Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5740330Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5742359Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5753825Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5790466Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5796779Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5853581Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5866674Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5867948Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5922475Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5951629Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5959446Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.5999866Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6001021Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6050110Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6073949Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6080889Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6102887Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6132977Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6135050Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6173993Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6209391Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6223875Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6228957Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6256180Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6262068Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6281889Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6333216Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6338507Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6339932Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6341030Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6360813Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6374573Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6384981Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6408819Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6446602Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6467737Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6471778Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6489053Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6519347Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6547733Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6558362Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6573075Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6579986Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6629144Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6634699Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6672255Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6675961Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6736550Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6764491Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6765510Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6812895Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6848588Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6862273Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6868945Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6901576Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6909108Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6919543Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6940345Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6983728Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.6995471Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7013554Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7023132Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7038619Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7047052Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7058865Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7089644Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7120186Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7151575Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7169126Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7181912Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7206111Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7210010Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7242445Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7266966Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7273979Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7278075Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7293729Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7336898Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7346145Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7355211Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7397651Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7408151Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7413261Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7421521Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7441218Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7469620Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7475447Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7495863Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7557537Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7567362Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7574604Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7603668Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7605566Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7609235Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7625992Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7637860Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7646081Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7704258Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7729403Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7738299Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7759145Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7770778Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7772334Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7773416Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7775821Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7788976Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7853138Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7870759Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7884499Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7914662Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7933004Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7934252Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7941319Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7956392Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7984791Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.7993267Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8032895Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8034380Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8045878Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8055472Z Completed 4.5 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8087777Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8097002Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8111803Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8122101Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8139078Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8180346Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8192378Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8206781Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8237761Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8238506Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8239158Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8255730Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8292022Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8308946Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8338841Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8339861Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8367340Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8389066Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8394253Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8410373Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8411439Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8451167Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8454975Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8464551Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8501208Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8512028Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8541935Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8560450Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8568872Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8574089Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8586675Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8626763Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8630962Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8656807Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8693468Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8696251Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8706069Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8708547Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8726268Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8759326Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8780551Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8795036Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8815183Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8816245Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8864376Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8879088Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8889273Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8907987Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8927239Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8957656Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8978006Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.8996939Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9002580Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9013044Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9043894Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9069505Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9092553Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9099348Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9108848Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9151897Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9164231Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9176881Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9218132Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9219617Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9254523Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9263453Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9268545Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9318577Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9319792Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9338426Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9353321Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9360711Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9397178Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9414775Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9440580Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9449069Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9465063Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9484699Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9508234Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9538818Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9541330Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9543498Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9575809Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9599744Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9634512Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9640129Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9654436Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9660138Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9673563Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9753811Z Completed 4.5 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9781549Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9811968Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9813601Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9830773Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9903163Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9967067Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9968390Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9969621Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:49.9970968Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0018660Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0020753Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0021938Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0028360Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0072412Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0109939Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0117304Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0153071Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0161458Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0177680Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0189156Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0197329Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0212222Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0234517Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0243048Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0248180Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0279122Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0303233Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0336441Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0342876Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0395028Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0402104Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0429538Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0462774Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0492258Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0515667Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0547744Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0569745Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0601459Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0605356Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0727840Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0752528Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0803013Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0831665Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0858309Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0905376Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0933311Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0935711Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0954093Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0965752Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0973980Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0982518Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0985294Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0994061Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.0998069Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1017545Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1024959Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1031511Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1038858Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1087119Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1134294Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1136290Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1148601Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1159254Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1160286Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1188317Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1189296Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1207621Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1240356Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1270759Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1273762Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1275194Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1276400Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1281515Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1303302Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1316509Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1325678Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1331034Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1338687Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1364534Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1373170Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1406117Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1412516Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1420558Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1449560Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1460266Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1465259Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1487587Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1493843Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1505137Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1506644Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1521017Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1524960Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1536920Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1544156Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1552560Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1559471Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1566603Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1849360Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1871359Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1881999Z Completed 4.6 GiB/9.9 GiB (124.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1892468Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1902282Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1912459Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1934694Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1943788Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.1953407Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2013032Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2016221Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2031571Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2063609Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2070179Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2077378Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2094940Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2114977Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2123571Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2137886Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2163618Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2195840Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2197017Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2202032Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2251282Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2252548Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2265952Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2312484Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2313669Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2336024Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2355942Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2374998Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2391231Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2414674Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2428040Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2470434Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2484095Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2504222Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2505509Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2519782Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2548938Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2557256Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2571934Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2583170Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2595248Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2621142Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2649775Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2650799Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2672893Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2689130Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2697645Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2706060Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2729548Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2744080Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2749237Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2761621Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2775908Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2786649Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2803433Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2808948Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2822570Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2824787Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2837281Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2920798Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2942035Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2943348Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2961641Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2967660Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.2997559Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3000640Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3017818Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3026145Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3047124Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3070276Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3091312Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3110527Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3160226Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3190080Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3220184Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3225827Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3248461Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3250383Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3309631Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3362389Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3375402Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3391695Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3430260Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3442570Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3458855Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3483344Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3491871Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3511930Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3563945Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3586222Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3600151Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3607910Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3633518Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3669930Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3715770Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3763979Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3765689Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3768018Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3774939Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3779351Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3814218Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3841580Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3870256Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3906449Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3932937Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3947662Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3985238Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3987196Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.3989576Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4009245Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4010397Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4021502Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4035293Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4123668Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4160453Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4161857Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4164646Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4174112Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4186557Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4187539Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4223306Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4239549Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4292100Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4302268Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4331538Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4347947Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4351657Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4357055Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4371490Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4406544Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4428958Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4488869Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4490075Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4507978Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4510214Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4533506Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4537801Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4563265Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4580892Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4618709Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4631509Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4641878Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4648186Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4679240Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4680123Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4708928Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4734307Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4771017Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4772475Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4774957Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4777476Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4801894Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4803757Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4870058Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4876831Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4898057Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4898996Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4899860Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4953691Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4984202Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4985392Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.4995586Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5002324Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5034952Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5051349Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5090552Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5109458Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5129579Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5130415Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5131084Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5148632Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5195772Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5214822Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5221586Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5227107Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5246908Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5296384Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5318068Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5325046Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5344975Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5372191Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5432979Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5447875Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5460424Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5464600Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5466892Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5519733Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5521930Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5526045Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5580182Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5597240Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5638038Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5644345Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5653852Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5665395Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5682413Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5732281Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5737038Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5779446Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5780653Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5783521Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5863507Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5878077Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5898986Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5906599Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5912817Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5974477Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5981202Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5982499Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.5984354Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6043480Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6083709Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6092218Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6093655Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6104658Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6146343Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6163726Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6167588Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6169504Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6186840Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6192428Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6213145Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6225295Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6241394Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6245351Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6280353Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6303332Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6325548Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6382312Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6390843Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6399959Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6415171Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6463230Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6495784Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6517587Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6533490Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6567250Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6579559Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6587040Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6623361Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6636125Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6659509Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6676097Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6677044Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6684487Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6691070Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6696650Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6722426Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6730417Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6748543Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6755892Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6785741Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6797569Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6807667Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6811664Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6828307Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6834330Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6880842Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6935872Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6949373Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6969295Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.6998624Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7000859Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7031245Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7036052Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7064490Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7088466Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7096029Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7100889Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7125775Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7138194Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7157903Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7165371Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7192402Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7234467Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7235611Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7265863Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7266861Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7267579Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7277195Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7281615Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7299293Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7308218Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7314709Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7315965Z Completed 4.6 GiB/9.9 GiB (124.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7331905Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7346100Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7353413Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7361955Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7370289Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7377113Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7395479Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7403245Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7412528Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7419387Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7425354Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7451460Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7454896Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7461629Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7469101Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7479260Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7486467Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7494603Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7501014Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7507511Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7515956Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7523195Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7553506Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7568042Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7575881Z Completed 4.6 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7596289Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7603238Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7610890Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7618644Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7658444Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7701468Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7706179Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7716348Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7758431Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7764566Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7771872Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7780669Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7786490Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7794181Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7803839Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7812471Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7818890Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7825893Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7830216Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7944069Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.7963089Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8000901Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8066623Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8118826Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8150987Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8180818Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8200327Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8219342Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8226914Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8278672Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8288453Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8296444Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8303236Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8312595Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8320914Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8329911Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8338489Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8346032Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8353472Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8372312Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8390887Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8399356Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8408832Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8440544Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8448073Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8454902Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8461088Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8471669Z Completed 4.7 GiB/9.9 GiB (124.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8477993Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8485860Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8492913Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8502071Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8509183Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8532017Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8532895Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8538969Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8561702Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8565338Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8573658Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8589546Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8594905Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8629774Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8634101Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8646899Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8652586Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8658766Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8665954Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8679168Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8689437Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8698520Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8705827Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8711365Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8729988Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8732286Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8738552Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8747409Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8755149Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8761587Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8847267Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8865281Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8921497Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.8987092Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9022595Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9055335Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9083838Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9111776Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9128728Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9136753Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9199935Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9212351Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9220891Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9228377Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9236339Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9243420Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9251631Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9259890Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9268404Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9274157Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9294472Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9311968Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9314697Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9325880Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9336461Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9346217Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9355436Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9361945Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9367402Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9390293Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9403404Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9421531Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9437761Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9443442Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9470757Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9481216Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9515991Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9538460Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9541471Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9560953Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9599160Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9610225Z Completed 4.7 GiB/9.9 GiB (124.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9621368Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9643136Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9654125Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9678974Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9690017Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9691127Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9716729Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9731708Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9752034Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9770182Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9773194Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9785437Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9823095Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9833540Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9850756Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9870445Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9896395Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9941388Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9942402Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9953258Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9956629Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:50.9963351Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0001597Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0002804Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0033095Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0050510Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0063682Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0066365Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0108498Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0109677Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0126673Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0157601Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0166280Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0184346Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0194383Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0239791Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0246976Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0262795Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0276150Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0300345Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0310387Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0329902Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0355008Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0369984Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0385465Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0401639Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0436126Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0439473Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0454024Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0475394Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0509831Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0517355Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0519196Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0529748Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0560711Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0588593Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0613040Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0614146Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0649338Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0653514Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0687245Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0740594Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0741759Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0770844Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0777289Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0790416Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0802937Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0821936Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0858499Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0870694Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0890830Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0913008Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0955253Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0959026Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.0967701Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1001624Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1013635Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1044168Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1046973Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1053204Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1097718Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1101145Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1110019Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1123009Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1172396Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1188250Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1192557Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1200516Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1218960Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1237898Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1249005Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1254478Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1292848Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1313182Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1319255Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1344746Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1380865Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1419198Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1420384Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1429111Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1448755Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1467426Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1482120Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1496153Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1501562Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1560298Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1593033Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1613319Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1691281Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1715093Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1733204Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1748405Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1789830Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1798322Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1819768Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1876732Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1898739Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1906086Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1912140Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1963152Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1968630Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.1970863Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2004886Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2033414Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2057128Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2077313Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2078891Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2119591Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2121113Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2154889Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2180157Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2185656Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2187507Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2193818Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2238820Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2244754Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2261417Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2287933Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2299238Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2327208Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2331140Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2332247Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2403390Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2404196Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2421769Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2428759Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2462878Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2478510Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2491633Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2493092Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2508883Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2533138Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2549408Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2568044Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2574183Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2595216Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2608506Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2621128Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2634715Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2646431Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2659816Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2671437Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2683752Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2688218Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2695198Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2707321Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2716088Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2731069Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2745807Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2776075Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2797499Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2814646Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2823625Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2828655Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2838084Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2840453Z Completed 4.7 GiB/9.9 GiB (124.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2853195Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2864160Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2873204Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2881976Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2889264Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2897400Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2924592Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2929122Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2932856Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2952218Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2955334Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2963257Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2970107Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2977347Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2985447Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.2992919Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3000794Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3008272Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3021433Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3033273Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3040387Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3049764Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3061422Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3081927Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3093305Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3101881Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3110246Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3121208Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3126521Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3141800Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3145809Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3158097Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3167490Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3171626Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3179142Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3191530Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3235405Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3277699Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3331726Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3365052Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3411230Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3443663Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3456750Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3472390Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3511564Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3518827Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3532325Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3555780Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3567720Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3580534Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3593842Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3606564Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3616448Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3737685Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3749088Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3757856Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3773714Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3789045Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3817507Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3831918Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3844852Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3858841Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3876735Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3902023Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3905035Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3910009Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3937169Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3971893Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.3976913Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4019640Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4048290Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4052578Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4082118Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4089202Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4096597Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4134597Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4143742Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4156832Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4172269Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4218456Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4230817Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4250729Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4256437Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4296585Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4304927Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4312596Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4325140Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4360065Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4361239Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4378311Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4388663Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4400267Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4403413Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4448386Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4449459Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4476061Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4482039Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4508429Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4511703Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4542870Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4570278Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4577984Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4581865Z Completed 4.7 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4600680Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4608085Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4615272Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4621972Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4629665Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4637904Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4654356Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4663112Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4671850Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4682235Z Completed 4.7 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4689002Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4696354Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4724362Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4727055Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4763342Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4772219Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4781397Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4799426Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4807509Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4838595Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4839927Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4869073Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4872367Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4905308Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4925373Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4951202Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.4960268Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5008496Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5021515Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5025629Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5065164Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5085654Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5101079Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5106910Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5112260Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5169072Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5174818Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5181905Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5234016Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5235388Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5255671Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5266608Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5289585Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5301261Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5322617Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5349756Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5351838Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5396086Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5411551Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5421703Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5444392Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5450571Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5491667Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5498899Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5506959Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5520723Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5525321Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5551419Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5563173Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5568602Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5609709Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5621729Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5645635Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5648469Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5659116Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5702387Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5719141Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5734511Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5744171Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5746770Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5790094Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5797068Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5819793Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5840394Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5868773Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5871206Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5888959Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5927645Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5935177Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5968561Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5969434Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5982084Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.5992278Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6016371Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6051390Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6055514Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6057280Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6087045Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6097917Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6100325Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6108392Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6120004Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6127160Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6132569Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6142188Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6154782Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6169612Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6188250Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6194877Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6205111Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6276061Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6323052Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6336251Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6376370Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6414354Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6455795Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6460898Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6486510Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6506215Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6537029Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6576672Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6597419Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6633521Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6672486Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6704868Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6718713Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6739233Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6746601Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6819144Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6829077Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6830838Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6896546Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6913988Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6932273Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.6976350Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7014482Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7051656Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7060106Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7079970Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7088096Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7096424Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7134174Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7143997Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7174267Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7217134Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7226625Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7267671Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7320880Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7341199Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7389946Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7391707Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7453304Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7460966Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7551119Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7555994Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7634699Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7674086Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7675345Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7700462Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7711644Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7722092Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7738891Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7742587Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7758756Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7762260Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7771755Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7781527Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7792989Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7804302Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7817737Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7828404Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7866657Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7900628Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7939794Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7955404Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7972548Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7984986Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.7986113Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8010329Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8021739Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8057636Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8075851Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8096595Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8111814Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8129224Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8185192Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8194493Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8219935Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8226556Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8232504Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8238624Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8244068Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8250302Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8257109Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8262870Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8269185Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8275606Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8381751Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8389221Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8394203Z Completed 4.8 GiB/9.9 GiB (124.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8399802Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8406285Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8412259Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8418946Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8425634Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8433117Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8439868Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8511954Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8517714Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8523644Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8529905Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8536478Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8541280Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8546019Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8551159Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8557792Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8570905Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8617326Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8620784Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8633427Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8640691Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8655351Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8680416Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8687807Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8699633Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8796031Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8802242Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8809697Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8817860Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8977273Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8983592Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8990178Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.8997068Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9003390Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9011660Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9020390Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9028737Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9035950Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9043160Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9071539Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9076792Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9081891Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9087122Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9092070Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9097670Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9102905Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9107801Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9112540Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9117842Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9139722Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9146385Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9156788Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9163421Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9170716Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9177430Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9183022Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9190142Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9196730Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9202014Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9294531Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9303008Z Completed 4.8 GiB/9.9 GiB (124.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9312987Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9319390Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9327290Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9335769Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9344545Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9354338Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9360907Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9367059Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9444369Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9452426Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9459239Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9474085Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9481665Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9489428Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9495902Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9502920Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9508489Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9514572Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9524640Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9536044Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9548671Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9556967Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9572568Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9597290Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9604762Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9757972Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9763640Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9769484Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9876487Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9884059Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9891491Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9899052Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9908109Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9915983Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9922519Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9930283Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9937176Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9944285Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9972302Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9977877Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:51.9983252Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0001151Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0002163Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0006045Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0012139Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0018137Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0023107Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0027948Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0058258Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0066076Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0077506Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0084856Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0091439Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0099518Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0106348Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0113882Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0119060Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0134994Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0206613Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0215145Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0222830Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0238564Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0245834Z Completed 4.8 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0252474Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0259482Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0266542Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0274686Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0281175Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0364194Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0373133Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0380355Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0394748Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0402123Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0412563Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0420108Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0428705Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0437540Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0450070Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0457892Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0466793Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0474347Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0500825Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0522028Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0531076Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0538510Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0545788Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0551466Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0560292Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0567146Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0576190Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0583562Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0593602Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0600122Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0610281Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0616272Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0625198Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0633740Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0641226Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0648170Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0776670Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0784611Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0789950Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0804324Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0811928Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0818486Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0825594Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0831648Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0839045Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0844518Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0871213Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0879814Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0887741Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0896471Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0905331Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0914017Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0919610Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0925150Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0977367Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.0984312Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1119090Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1125932Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1294788Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1308193Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1342455Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1349119Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1357126Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1364000Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1371629Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1378028Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1384708Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1388551Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1400769Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1407006Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1414408Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1417784Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1433428Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1446192Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1447337Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1456456Z Completed 4.8 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1467559Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1478304Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1483023Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1497192Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1501669Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1515173Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1524287Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1529993Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1546696Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1548171Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1556709Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1564159Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1573641Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1580242Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1672224Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1681650Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1789455Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1819219Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1828834Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1837302Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1844727Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1852227Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1860412Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1865910Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1871705Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1877651Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1883567Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1889643Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1895755Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.1901519Z Completed 4.8 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2240928Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2248024Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2255893Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2263664Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2271746Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2288578Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2318658Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2344508Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2350694Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2359421Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2377485Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2382467Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2403673Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2405364Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2421028Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2424827Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2440260Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2443636Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2456476Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2462904Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2474069Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2480125Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2487690Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2495491Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2500911Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2741603Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2764247Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2772168Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2791345Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2795532Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2808501Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2821301Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2835606Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2855688Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2864051Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2882865Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2888535Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2894588Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2900620Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2906517Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2911989Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2918567Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2924172Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2929705Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.2935792Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3144769Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3154531Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3161615Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3178435Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3180226Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3188363Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3194960Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3202885Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3211606Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3238900Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3241261Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3242595Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3269016Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3272050Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3303397Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3331252Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3661635Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3689904Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3699640Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3709944Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3717361Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3729580Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3742783Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3755303Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3785328Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3792102Z Completed 4.9 GiB/9.9 GiB (124.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3814373Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3823033Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3831179Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3840036Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3848658Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3855272Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3861195Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3867340Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3874287Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3880038Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3929319Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3932342Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3941960Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3948751Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3958044Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3964730Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3974418Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3979886Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3988392Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.3995624Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4005316Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4011861Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4039874Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4058389Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4079651Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4080538Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4107474Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4141970Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4144481Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4156396Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4179897Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4203030Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4206789Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4219975Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4249835Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4257850Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4268415Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4272799Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4285282Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4288471Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4300903Z Completed 4.9 GiB/9.9 GiB (124.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4304084Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4309544Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4315317Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4355711Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4360887Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4368803Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4371905Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4376828Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4381822Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4387256Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4392152Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4397282Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4402458Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4501743Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4508987Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4515467Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4522234Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4528966Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4538750Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4542547Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4550946Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4580666Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4582262Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4601407Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4609749Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4732115Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4749607Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4758617Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4767374Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4777213Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4787053Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4796598Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4802491Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4808642Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4814853Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4840082Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4845395Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4855302Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4867208Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4877027Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4887109Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4897144Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4903609Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4922458Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4924669Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4939173Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4947891Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4952335Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4979800Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4983093Z Completed 4.9 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4996461Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.4997970Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5019816Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5038861Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5061870Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5093197Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5110113Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5124017Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5153300Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5173830Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5186558Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5202396Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5218970Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5226309Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5233653Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5253295Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5261824Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5269417Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5275826Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5281413Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5293815Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5301381Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5307259Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5313145Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5318958Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5400136Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5408092Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5416524Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5423055Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5431886Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5439480Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5446362Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5453259Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5468365Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5481076Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5619472Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5625383Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5632309Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5638813Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5647039Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5657414Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5665839Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5678867Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5682773Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5689294Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5695719Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5712255Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5769825Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5774868Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5786056Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5797398Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5804942Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5812176Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5827607Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5848042Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5860441Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5893812Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5926259Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5939805Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5946686Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5975081Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.5980056Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6007499Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6028644Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6043925Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6057625Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6075082Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6090411Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6118095Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6125944Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6155279Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6172004Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6195147Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6198894Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6200049Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6234748Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6248823Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6266056Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6277042Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6291517Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6339089Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6365581Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6370974Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6376005Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6395608Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6405119Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6437171Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6440842Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6464197Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6467828Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6492616Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6505089Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6515368Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6543565Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6575053Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6578562Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6593718Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6635804Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6647188Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6654959Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6658455Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6723246Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6725645Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6727350Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6748909Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6781408Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6804249Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6836050Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6837161Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6846876Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6854617Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6886058Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6895302Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6931770Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6947302Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6977162Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6984418Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.6995385Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7000995Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7009207Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7017692Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7089231Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7097456Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7133279Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7138137Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7161832Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7163074Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7181541Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7207895Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7230533Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7257146Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7264046Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7292604Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7294260Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7340043Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7371677Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7405105Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7405871Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7410937Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7416389Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7476426Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7486730Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7511321Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7516648Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7520782Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7536842Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7588032Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7592533Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7594488Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7610544Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7655493Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7664978Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7676959Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7685114Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7730590Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7731918Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7740156Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7750527Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7792511Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7800377Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7816376Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7826762Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7851522Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7868672Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7881407Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7906775Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7916566Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7936918Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.7953563Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8026061Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8060196Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8094701Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8107736Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8213869Z Completed 4.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8236557Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8238415Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8243209Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8347326Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8357093Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8363941Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8375644Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8444088Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8447846Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8448759Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8490265Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8495337Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8506270Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8519976Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8558668Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8573704Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8575296Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8601593Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8634676Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8673518Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8678260Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8683644Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8692390Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8731288Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8761412Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8765631Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8775391Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8786034Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8806198Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8849794Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8853475Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8865101Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8890580Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8924211Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8930314Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8933320Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8945560Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8963157Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.8986723Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9009974Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9017144Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9031199Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9041281Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9056445Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9192414Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9216351Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9290292Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9307368Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9365877Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9394487Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9437298Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9451373Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9452203Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9500197Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9511164Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9516618Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9527407Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9532094Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9547095Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9559701Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9590639Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9596809Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9628125Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9654414Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9673955Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9676826Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9678001Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9751048Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9768847Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9769721Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9785159Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9789574Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9802389Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9898885Z Completed 4.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9900182Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9927448Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9933468Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9935721Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9950994Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:52.9997499Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0030339Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0060592Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0099170Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0130000Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0131227Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0132373Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0133676Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0146991Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0149189Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0188533Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0209431Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0247963Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0257711Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0270670Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0280100Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0320928Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0341249Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0367667Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0370295Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0384527Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0407542Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0413013Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0421796Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0433473Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0489035Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0505004Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0520484Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0539245Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0550229Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0561128Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0570691Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0617989Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0634466Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0635328Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0648520Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0658521Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0688838Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0701475Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0727851Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0756036Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0759284Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0765530Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0797297Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0834038Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0845812Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0853614Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0875095Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0880562Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0897754Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0927141Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0956957Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.0962514Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1001242Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1007136Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1037459Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1040446Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1103184Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1120335Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1141903Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1143249Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1192082Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1211066Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1254584Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1269435Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1275182Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1300006Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1328522Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1330027Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1352142Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1359657Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1392944Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1407289Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1430171Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1458468Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1466411Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1481909Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1525454Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1537595Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1582943Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1584183Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1585457Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1586461Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1587742Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1641449Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1652892Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1679726Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1694292Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1705673Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1726798Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1740552Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1758908Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1781636Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1790447Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1821431Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1831306Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1896808Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1913769Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1933145Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1935649Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1951837Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1961540Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1973369Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.1997653Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2007389Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2025189Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2043085Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2090552Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2092029Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2125292Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2134837Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2164937Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2185078Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2199361Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2200357Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2218252Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2245454Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2252405Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2289587Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2300304Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2326436Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2358222Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2379263Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2386646Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2412378Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2423017Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2433117Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2459770Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2461386Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2507580Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2520977Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2535633Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2562371Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2569464Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2589481Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2614148Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2616803Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2638606Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2654778Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2683931Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2685482Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2703504Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2728079Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2758798Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2767690Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2816353Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2817951Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2828485Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2830161Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2847674Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2865866Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2893418Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2894569Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2952309Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2953728Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2966765Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.2976044Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3001122Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3016032Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3024582Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3025908Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3061899Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3087520Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3095175Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3129224Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3145023Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3161717Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3188093Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3199815Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3207473Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3219593Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3247131Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3285730Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3287644Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3295315Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3297110Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3334775Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3343712Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3396914Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3431204Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3443181Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3502276Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3515672Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3536257Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3558702Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3574574Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3615009Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3638678Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3649745Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3680617Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3698966Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3718489Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3729644Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3753869Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3790878Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3792041Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3803081Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3811926Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3819245Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3866171Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3877256Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3923035Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3924273Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3927090Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3936676Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3954555Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.3996363Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4012942Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4021245Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4043071Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4050254Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4077679Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4102607Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4118064Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4126214Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4129849Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4147052Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4165713Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4196459Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4216622Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4229483Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4242157Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4262225Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4276321Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4296056Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4329406Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4333237Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4342857Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4366140Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4376484Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4391884Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4417613Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4430284Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4462505Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4464418Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4471618Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4506510Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4534148Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4544059Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4553566Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4560678Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4581434Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4601529Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4616839Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4626222Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4649095Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4673043Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4706367Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4707204Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4764460Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4783584Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4790240Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4811677Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4833761Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4883354Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4884582Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4906021Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4914813Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4954030Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4958687Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4981540Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.4982503Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5016158Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5053694Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5060324Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5097710Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5107179Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5115195Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5148631Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5156299Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5196040Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5202122Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5209510Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5219237Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5228338Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5263036Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5293479Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5314222Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5331250Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5332812Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5347098Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5382048Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5386374Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5400981Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5415330Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5453203Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5470525Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5528241Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5530250Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5607181Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5612809Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5640884Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5732360Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5733936Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5735051Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5810169Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5843283Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5855358Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5888100Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5959188Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.5986736Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6003715Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6061509Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6097507Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6144182Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6146411Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6167236Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6171061Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6185879Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6199356Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6205556Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6213006Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6228703Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6244242Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6259220Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6270882Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6276565Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6285075Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6315101Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6333462Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6404975Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6475680Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6566502Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6623357Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6685580Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6737345Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6743094Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6750721Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6760205Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6766835Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6771990Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6778785Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6783246Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6791811Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6801230Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6809072Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6842376Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.6952240Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7000710Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7012259Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7020262Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7044139Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7048191Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7056548Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7077258Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7094667Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7097652Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7114464Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7121570Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7129434Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7167204Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7174955Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7192055Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7215091Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7231692Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7236365Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7270100Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7272424Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7299060Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7304874Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7313605Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7324474Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7332531Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7367374Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7377986Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7389044Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7412068Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7421098Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7427429Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7445217Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7455912Z Completed 5.0 GiB/9.9 GiB (125.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7468576Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7476224Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7491014Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7497824Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7508588Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7515892Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7521901Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7529920Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7541931Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7545175Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7583230Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7589597Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7597594Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7604031Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7609967Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7615944Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7621780Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7627505Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7638014Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7645002Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7651746Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7665368Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7670048Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7680274Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7686534Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7695529Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7716658Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7719399Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7725518Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7730924Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7736891Z Completed 5.0 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7743164Z Completed 5.0 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7911280Z Completed 5.0 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7918705Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7928809Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7937288Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7960393Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7991739Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.7997382Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8026439Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8029402Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8050228Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8063024Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8067605Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8099337Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8130856Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8151256Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8163130Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8165132Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8203771Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8228019Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8229096Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8253543Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8268492Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8273102Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8286137Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8300858Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8334309Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8341203Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8363774Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8379701Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8401848Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8412918Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8424395Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8450875Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8475497Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8486456Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8498826Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8527230Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8566312Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8597443Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8606267Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8610304Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8622973Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8636109Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8693200Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8700935Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8709669Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8713424Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8723097Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8756564Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8771225Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8775913Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8813120Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8822351Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8833165Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8850341Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8857138Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8916107Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8947591Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8954707Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.8979008Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9014119Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9055057Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9064708Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9075473Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9099542Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9128255Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9169225Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9171333Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9172109Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9178803Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9233471Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9257392Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9258686Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9270186Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9276824Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9294532Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9298727Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9337391Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9350325Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9390057Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9391101Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9398793Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9413864Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9456613Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9457785Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9463523Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9469117Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9513200Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9547713Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9554176Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9569568Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9575017Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9580904Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9598898Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9617401Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9641543Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9688645Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9698817Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9710438Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9726172Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9752179Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9753656Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9759345Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9786170Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9832405Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9852509Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9863942Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9880944Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9882244Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9893318Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9902262Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9926753Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9933712Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:53.9980720Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0003106Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0021930Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0027723Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0038223Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0048450Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0056587Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0068018Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0118517Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0154483Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0167368Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0178486Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0179819Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0183302Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0196226Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0286564Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0301736Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0307702Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0309974Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0322500Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0324008Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0326305Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0336549Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0435722Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0441742Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0457741Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0459070Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0463486Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0472430Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0475294Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0493233Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0565288Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0569147Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0578685Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0585637Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0621692Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0625938Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0644603Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0663122Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0671658Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0702137Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0721887Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0723341Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0750242Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0808641Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0817306Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0850501Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0876896Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0886109Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0894617Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0922198Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0955099Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0988959Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.0996700Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1001614Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1026853Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1052345Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1084093Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1094090Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1109271Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1123311Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1134853Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1176265Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1207708Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1216579Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1218728Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1234833Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1261552Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1286492Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1300726Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1316715Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1321269Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1353102Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1392294Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1403495Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1412224Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1420416Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1437834Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1489937Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1504958Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1508924Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1530085Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1547863Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1564738Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1594604Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1595960Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1597615Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1654149Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1675211Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1683236Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1687707Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1731271Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1744451Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1753301Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1755103Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1787892Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1804542Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1823023Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1842867Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1888780Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1924029Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1937129Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.1997639Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2044788Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2073274Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2078974Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2086068Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2093067Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2104772Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2116356Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2128442Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2152932Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2172994Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2174516Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2191451Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2200770Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2205936Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2230660Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2237828Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2262113Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2263522Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2312348Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2373064Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2393886Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2457103Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2473295Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2552356Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2569182Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2623290Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2629067Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2653646Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2666558Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2684769Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2686993Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2697155Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2711373Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2718359Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2734990Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2743192Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2755613Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2765095Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2770995Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2778253Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2815609Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2947975Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.2998095Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3014578Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3026443Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3052207Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3056308Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3066194Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3095770Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3113857Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3125803Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3167908Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3175671Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3189324Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3198726Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3207268Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3213164Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3218247Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3224085Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3231309Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3237633Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3241948Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3249236Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3259966Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3348751Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3414905Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3505233Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3507058Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3514140Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3520286Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3525770Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3531605Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3545907Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3553902Z Completed 5.1 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3565112Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3571553Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3602448Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3613485Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3615195Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3650002Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3654226Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3656116Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3683962Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3698216Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3707199Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3710979Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3723133Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3725008Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3730749Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3743763Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3745009Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3756214Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3762498Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3768886Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3829370Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3835486Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3841226Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3846892Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3852466Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3858442Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3865171Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3870712Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3876549Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3882083Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3903017Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3917366Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3937124Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3949149Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3975854Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.3992345Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4017396Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4034202Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4046342Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4093403Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4106331Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4113291Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4122285Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4129415Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4147956Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4154448Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4160497Z Completed 5.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4167976Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4185962Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4191980Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4205997Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4216598Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4223429Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4230615Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4237318Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4243150Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4249693Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4256983Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4262875Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4269083Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4429152Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4433099Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4440495Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4450472Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4457753Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4469189Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4471263Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4480420Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4514297Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4528823Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4543195Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4576210Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4579622Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4586864Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4611423Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4663651Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4665274Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4666439Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4686001Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4696512Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4715398Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4743668Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4760805Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4794198Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4795831Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4797020Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4824713Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4874299Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4875648Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4884386Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4906962Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4944222Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4959672Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4966816Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.4967932Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5015986Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5038128Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5057785Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5067123Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5069428Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5077446Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5128872Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5129829Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5141223Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5144492Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5182374Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5201656Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5219822Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5227408Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5239463Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5261380Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5291425Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5293011Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5297201Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5324179Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5346593Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5363860Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5382374Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5414766Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5417997Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5439943Z Completed 5.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5465485Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5474954Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5510002Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5527281Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5537517Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5544586Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5574775Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5605359Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5606514Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5613866Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5628484Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5664822Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5678059Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5680319Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5702506Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5729983Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5738417Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5764682Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5770471Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5783396Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5804256Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5829100Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5868233Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5888456Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5898091Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5899109Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5899869Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5916637Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.5939015Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6006901Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6021782Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6043173Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6044294Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6048359Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6059073Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6076811Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6080446Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6160089Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6179159Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6184164Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6200934Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6201769Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6226365Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6244222Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6314563Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6365366Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6405862Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6433384Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6466031Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6472445Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6477200Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6503092Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6523036Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6540435Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6566181Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6579166Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6608365Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6613055Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6650016Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6653978Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6658314Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6673011Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6722056Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6741643Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6776150Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6777406Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6778500Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6791316Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6800314Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6846365Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6882385Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6900507Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6901471Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6906855Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6915474Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6919328Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.6987358Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7016336Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7017337Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7026736Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7027861Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7056541Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7057645Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7115461Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7123291Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7128699Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7150118Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7171960Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7174724Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7197593Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7249662Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7258733Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7276608Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7277664Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7307500Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7323230Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7333763Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7358965Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7390180Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7407362Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7424084Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7431944Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7436738Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7488845Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7501841Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7512444Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7516670Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7554131Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7597097Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7599454Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7618993Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7629288Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7653901Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7683692Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7711885Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7713183Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7714244Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7794438Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7801213Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7817717Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7828448Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7834705Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7871030Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7882232Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7890043Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7895232Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7937354Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7943619Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7946536Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7963731Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7977141Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.7995245Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8003910Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8009230Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8017877Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8021739Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8103967Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8132768Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8173494Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8210446Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8268555Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8281337Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8369843Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8395915Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8428208Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8438801Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8447132Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8459036Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8473179Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8483913Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8488701Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8499876Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8514751Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8535716Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8578748Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8586538Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8594486Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8605645Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8638078Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8676392Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8705144Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8710943Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8758764Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8768218Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8785858Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8839023Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8840558Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8855670Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8866796Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8883558Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8892273Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8910897Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8944979Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8967969Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.8980184Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9000374Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9003879Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9007878Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9029063Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9032224Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9046206Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9049070Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9060607Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9068375Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9071199Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9077387Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9142973Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9242373Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9314061Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9319058Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9330004Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9338071Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9350278Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9361991Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9401949Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9416885Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9420197Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9427020Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9435301Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9500582Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9527933Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9557543Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9581617Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9588039Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9595226Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9604176Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9609420Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9615715Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9620702Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9627157Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9634566Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9636109Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9644335Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9731411Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9734106Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9768436Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9772032Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9806668Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9833586Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9873740Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9908266Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9925693Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9936241Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9948988Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9956406Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9968065Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9976251Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9981490Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9986869Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:54.9999842Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0009840Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0016214Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0022075Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0027923Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0034192Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0040579Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0046822Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0052942Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0059360Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0065910Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0181713Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0188114Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0194463Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0200670Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0207710Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0214915Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0223678Z Completed 5.2 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0226754Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0239164Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0242208Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0257117Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0259815Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0273252Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0276554Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0282506Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0301962Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0318735Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0335087Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0380553Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0403260Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0441711Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0463356Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0467049Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0473952Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0510253Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0515908Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0534972Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0540351Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0571487Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0573446Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0586837Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0595051Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0602109Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0609577Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0620256Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0627591Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0633471Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0642510Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0649381Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0655963Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0682427Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0687975Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0692615Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0704801Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0727085Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0796799Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0842031Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0867622Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0880562Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0897066Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0907444Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0915793Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0925821Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0935322Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0941657Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0950386Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0957375Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0964835Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0974195Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0981612Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0988820Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.0996951Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1100930Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1110598Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1126277Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1136653Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1148152Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1164166Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1194711Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1201000Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1204117Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1216829Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1220690Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1233999Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1237477Z Completed 5.2 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1251246Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1254950Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1266727Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1269647Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1282759Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1291388Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1298193Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1304750Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1355643Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1368585Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1400246Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1419557Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1437715Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1451732Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1462285Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1475393Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1498090Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1506757Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1521390Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1528004Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1536807Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1548471Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1555576Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1576010Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1586338Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1589658Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1617220Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1630463Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1658628Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1664005Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1672340Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1681254Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1687780Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1693839Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1700507Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1708138Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1714773Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1721423Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1728030Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1734865Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1806858Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1822370Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1837759Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1852885Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1859845Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1867043Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1874810Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1881821Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1889245Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.1896339Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2033754Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2040194Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2049768Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2058030Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2068152Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2090053Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2094344Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2133070Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2141513Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2153659Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2157439Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2176512Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2201244Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2209759Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2226428Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2242065Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2250289Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2263642Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2289258Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2305636Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2307138Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2315765Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2365294Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2376684Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2402808Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2419803Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2429074Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2467551Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2480714Z Completed 5.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2493171Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2506524Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2525890Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2532787Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2561495Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2587276Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2602198Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2613410Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2639837Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2651495Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2656430Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2677171Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2681642Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2700649Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2702910Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2731604Z Completed 5.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2737205Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2744969Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2769930Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2777628Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2778988Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2786931Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2793973Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2800110Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2958802Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2964127Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2972050Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.2981176Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3008975Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3036833Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3038013Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3075253Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3085733Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3113125Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3128635Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3169203Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3175997Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3207803Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3238305Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3254410Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3259558Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3270792Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3279263Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3290512Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3305457Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3316166Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3329885Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3335125Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3353223Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3358835Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3383691Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3414101Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3426759Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3435134Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3461819Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3477042Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3479215Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3495324Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3524003Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3535725Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3569742Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3580984Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3602146Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3624486Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3667942Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3693295Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3707456Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3717039Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3723299Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3872547Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3883577Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3896913Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3914363Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3916188Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3934857Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3953051Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3961646Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3969701Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3977025Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3983487Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3989666Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.3994641Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4002396Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4021070Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4039518Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4098619Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4145948Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4158604Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4162812Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4180483Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4198949Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4216866Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4233490Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4247529Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4258645Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4263948Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4282527Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4353209Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4355547Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4402356Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4437745Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4440500Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4461065Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4466556Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4475967Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4489001Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4496507Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4503802Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4522568Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4530855Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4537944Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4544863Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4550932Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4558078Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4586175Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4782110Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4793714Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4804570Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4811042Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4847712Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4862132Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4871485Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4881753Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4889999Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4916496Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4925268Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4951851Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4959930Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4969148Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4972256Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4978659Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4984881Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4990756Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.4997090Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5003058Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5009008Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5015393Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5068576Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5088986Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5106047Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5122208Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5137789Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5154410Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5168227Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5182440Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5205593Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5279477Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5333542Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5344307Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5350327Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5360634Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5380819Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5389827Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5397884Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5405072Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5413868Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5418691Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5431322Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5438110Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5447198Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5457103Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5473415Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5478492Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5480663Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5486178Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5492176Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5498442Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5575354Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5581057Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5587308Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5594417Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5600369Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5606825Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5612448Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5618614Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5624138Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5634462Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5690767Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5697426Z Completed 5.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5704871Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5710778Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5716528Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5742877Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5758864Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5779925Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5788162Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5797206Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5853668Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5869521Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5878083Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5892114Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5899106Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5915363Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5922517Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5926726Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5939748Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5944447Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5967403Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5969301Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5982981Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.5987221Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6002835Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6019542Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6025157Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6046171Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6060329Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6061696Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6088656Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6240599Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6242954Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6261447Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6263802Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6285079Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6294470Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6302782Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6307540Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6315865Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6347642Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6352885Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6363890Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6376641Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6384308Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6394234Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6401591Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6430608Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6431734Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6433000Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6496035Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6505443Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6513017Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6529858Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6538019Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6546204Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6554172Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6564358Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6567660Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6572893Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6587842Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6596176Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6608886Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6613326Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6627124Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6629916Z Completed 5.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6636393Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6642379Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6648100Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6654263Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6659958Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6665700Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6671636Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6736372Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6752749Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6769755Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6778416Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6800240Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6803650Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6818606Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6828154Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6834884Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6847435Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6849554Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6858433Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6873517Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6885598Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6893130Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6903473Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6924571Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6940388Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6966940Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.6976495Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7004345Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7010419Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7017573Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7024580Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7030262Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7038234Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7042137Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7048060Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7054032Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7059882Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7123000Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7139518Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7146816Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7163252Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7190586Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7196547Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7209452Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7219915Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7221927Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7228725Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7249036Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7259944Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7415997Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7423203Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7432493Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7449538Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7456019Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7465239Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7471481Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7479293Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7495778Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7510808Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7521822Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7536533Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7542940Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7549611Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7556174Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7563300Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7577818Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7579071Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7585980Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7591171Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7597064Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7602390Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7607767Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7613133Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7618422Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7623859Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7629210Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7635616Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7646591Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7653552Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7670755Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7757538Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7764234Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7770996Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7778390Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7785965Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7793124Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7807584Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7825174Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7876189Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7892247Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7923299Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7936334Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7943447Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7950074Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7958016Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7965637Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7973670Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7980325Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7985592Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.7990542Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8019162Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8036796Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8055080Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8334022Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8340689Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8347889Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8354239Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8392312Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8405586Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8426787Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8430663Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8441281Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8447942Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8461728Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8467853Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8478256Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8486218Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8494404Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8518009Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8519151Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8544369Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8558523Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8564389Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8589729Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8592840Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8596922Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8624108Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8627253Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8637010Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8641093Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8651850Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8657710Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8663527Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8668860Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8674649Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8678155Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8686936Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8694112Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8841550Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8854657Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8865113Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8874576Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8884287Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8896604Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8907262Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8932382Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8938735Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.8946026Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9260444Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9266402Z Completed 5.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9271966Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9279755Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9283960Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9297972Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9300922Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9312124Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9319306Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9339491Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9347652Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9355442Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9360520Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9374735Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9379106Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9386957Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9394296Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9411041Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9433022Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9442467Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9481357Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9486252Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9511960Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9517578Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9544810Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9547292Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9573569Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9578673Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9590473Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9598028Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9604692Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9611897Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9618330Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9759896Z Completed 5.3 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9774117Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9971133Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9977968Z Completed 5.4 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:55.9985157Z Completed 5.4 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0004508Z Completed 5.4 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0019448Z Completed 5.4 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0021800Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0036798Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0038038Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0046184Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0060940Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0069238Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0075522Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0080486Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0092873Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0098788Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0105497Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0111636Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0117754Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0124157Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0210952Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0217417Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0224462Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0230663Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0238063Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0244091Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0249863Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0256877Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0266052Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0275184Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0278911Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0299669Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0307242Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0321183Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0337471Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0356301Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0376477Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0389439Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0415717Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0423066Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0431793Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0445045Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0451175Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0466329Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0476965Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0479851Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0494484Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0506749Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0516524Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0519628Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0526774Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0808191Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0813193Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0818143Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0823022Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0828094Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0833501Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0838670Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0843544Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0848369Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0853447Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0878327Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0900043Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0912950Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0918812Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0930566Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0937342Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0953197Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0958952Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0969701Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0975762Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.0992466Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1000739Z Completed 5.4 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1004225Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1010830Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1018068Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1028268Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1034901Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1042614Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1052111Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1059441Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1113201Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1119719Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1135614Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1143568Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1201259Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1202498Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1203471Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1204957Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1206059Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1207180Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1208320Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1235693Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1236787Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1238427Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1268535Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1274228Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1290327Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1304606Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1329853Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1351851Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1370676Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1377716Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1385113Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1394866Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1398819Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1417510Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1427006Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1433385Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1440187Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1446258Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1451962Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1479563Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1625666Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1630772Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1636587Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1641622Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1647210Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1652516Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1657909Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1663306Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1668757Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1674525Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1728820Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1737397Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1746516Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1754219Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1762284Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1769975Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1777434Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1783629Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1790343Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1793078Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1821534Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1833406Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1836085Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1848052Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1856346Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1868195Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1877740Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1897844Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1899115Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1903629Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1916614Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1918980Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1933667Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1939699Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1950781Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1960653Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1969656Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1977826Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.1986267Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2014674Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2020795Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2045137Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2065015Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2120479Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2128486Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2135175Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2158859Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2164613Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2182122Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2196847Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2203238Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2214054Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2226016Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2243386Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2247445Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2259097Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2263986Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2278212Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2291656Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2301045Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2325404Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2334772Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2340490Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2360518Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2375810Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2384708Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2390892Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2397985Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2441977Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2449396Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2521955Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2528900Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2536619Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2541190Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2547469Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2552461Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2560810Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2566848Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2572333Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2577942Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2648881Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2661844Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2669095Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2676439Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2695208Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2721780Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2738947Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2761398Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2766237Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2773595Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2780024Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2786564Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2792131Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2797581Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2805018Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2811119Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2968522Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.2990269Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3044083Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3051195Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3059386Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3063045Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3083305Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3089270Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3111263Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3127020Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3130068Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3140813Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3143678Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3163099Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3178830Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3188191Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3199669Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3204830Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3210859Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3217784Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3255192Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3262118Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3289573Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3419932Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3438319Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3445082Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3451256Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3457725Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3463913Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3469835Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3476074Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3481959Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3488032Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3568326Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3581127Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3914330Z Completed 5.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3920364Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.3963883Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4004540Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4009505Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4016010Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4023982Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4030942Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4046525Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4052787Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4060073Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4077376Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4081589Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4099054Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4101783Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4118763Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4121672Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4128195Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4138888Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4148011Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4157800Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4167621Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4188636Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4330128Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4341545Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4640683Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4646363Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4651932Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4658107Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4663628Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4669625Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4676120Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4681066Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4686820Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4693168Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4926421Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4933820Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4937971Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4945209Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4951415Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4966573Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4974183Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.4982408Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5000210Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5021069Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5045438Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5047497Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5274264Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5278873Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5284153Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5289549Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5298250Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5305679Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5311703Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5318915Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5336309Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5343219Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5401722Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5407865Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5413602Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5420629Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5427683Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5434085Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5439672Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5453049Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5456950Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5463819Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5469755Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5481736Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5489898Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5496430Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5512161Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5517914Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5523490Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5529851Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5537104Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5548452Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5554444Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5560386Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5566566Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5573196Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5579303Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5586385Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5592207Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5599365Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5605781Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5611136Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5837187Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5849473Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5864004Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5870666Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5878959Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5889370Z Completed 5.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5900545Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5908669Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5920620Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5958319Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5967124Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5976244Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5983501Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5990380Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.5997728Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6005108Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6012120Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6018561Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6025460Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6031921Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6188503Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6199782Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6208181Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6215262Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6224081Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6231284Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6256117Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6265734Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6270868Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6280933Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6287303Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6296291Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6314687Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6324658Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6326155Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6333528Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6377553Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6383654Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6394634Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6407284Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6409212Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6431988Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6468517Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6476787Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6489713Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6499210Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6527072Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6539886Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6549126Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6608472Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6614597Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6651313Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6655198Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6677873Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6685765Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6696565Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6735881Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6746419Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6756749Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6758589Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6772433Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6837010Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6838556Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6839902Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6854943Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6860656Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6908086Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6920982Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6932150Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6950924Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6966385Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.6977786Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7003495Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7006514Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7010861Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7060551Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7081138Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7089324Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7102232Z Completed 5.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7120929Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7139576Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7147719Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7156787Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7164954Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7190051Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7194155Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7203623Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7208586Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7262174Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7286623Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7301292Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7302535Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7315312Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7353278Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7403683Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7409404Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7413273Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7422840Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7430271Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7431773Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7490372Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7508332Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7543585Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7545244Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7546207Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7570068Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7586018Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7615153Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7616015Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7659606Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7699752Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7700679Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7710591Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7735427Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7744967Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7755641Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7786902Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7802380Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7831996Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7850544Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7852042Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7864262Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7891760Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7898722Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7940824Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7971981Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7976646Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7980489Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.7982884Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8002011Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8024481Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8037465Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8106937Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8116129Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8149232Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8168578Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8178179Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8190749Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8207216Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8263036Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8271170Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8282422Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8326278Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8328544Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8346541Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8347753Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8374262Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8412516Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8453533Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8471411Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8474649Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8483965Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8485624Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8526284Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8534475Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8596861Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8598002Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8613844Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8616049Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8631786Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8645308Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8646409Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8722408Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8743299Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8744574Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8752854Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8753880Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8772036Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8784410Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8875989Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8887734Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8888943Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8907377Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8910126Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8911048Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8930136Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.8993656Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9013850Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9016793Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9022445Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9043538Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9056178Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9095614Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9104338Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9127298Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9142282Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9150890Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9187868Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9193007Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9209868Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9238934Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9248372Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9284301Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9297991Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9307139Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9326787Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9341908Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9387196Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9410532Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9411727Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9433291Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9434261Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9497951Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9499243Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9524454Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9531885Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9553466Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9577512Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9583360Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9608255Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9638960Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9639934Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9670866Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9678335Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9707922Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9742205Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9747812Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9782087Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9799432Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9819064Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9821516Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9824856Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9909991Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9919834Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9920926Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9921860Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9931872Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9981002Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9986801Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:56.9999465Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0040586Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0045273Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0050097Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0065661Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0067696Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0070421Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0082909Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0157881Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0159548Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0166546Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0167899Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0183134Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0191869Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0199481Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0204511Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0214898Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0220681Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0229405Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0238608Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0244186Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0249531Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0259467Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0265943Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0352068Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0370581Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0385965Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0444460Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0494057Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0512195Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0529210Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0583890Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0606046Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0652373Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0682149Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0735820Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0767933Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0773664Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0835034Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0856577Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0888520Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0913831Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0929388Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0966872Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.0977587Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1002412Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1007173Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1039728Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1064843Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1070948Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1076029Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1084975Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1104137Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1111942Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1120723Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1138126Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1156449Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1174372Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1178402Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1182534Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1194231Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1203103Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1211911Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1221061Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1228708Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1230956Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1260686Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1268375Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1273430Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1282491Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1289626Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1312550Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1386463Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1488646Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1548527Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1555044Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1561436Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1568475Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1577634Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1586773Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1594042Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1600023Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1606410Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1612846Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1627962Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1711083Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1718710Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1721992Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1728882Z Completed 5.5 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1745600Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1747130Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1754038Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1759831Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1769070Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1777531Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1785665Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1808259Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1875857Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1911383Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1920981Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1949675Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1958506Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.1983995Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2005868Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2026875Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2037553Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2039451Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2055961Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2071808Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2081040Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2099460Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2101123Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2111674Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2127683Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2159123Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2168559Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2173424Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2179961Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2188227Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2238931Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2244205Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2249840Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2258993Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2261986Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2267583Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2273537Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2280465Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2290515Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2297693Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2304124Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2330142Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2434269Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2445069Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2460684Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2467460Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2477706Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2493593Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2505841Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2513275Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2519124Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2532273Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2540595Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2556905Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2567013Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2572239Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2583169Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2605255Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2633122Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2642188Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2685517Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2695680Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2706884Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2711103Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2730710Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2743108Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2748763Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2767778Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2782809Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2789109Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2802175Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2803638Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2816712Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2821338Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2860052Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2876779Z Completed 5.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2887038Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2894881Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2920989Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2938057Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2950330Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2975510Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2990026Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.2994882Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3001746Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3028336Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3034914Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3043641Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3064630Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3071866Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3078212Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3084991Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3091891Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3182905Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3191230Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3198237Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3205891Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3212519Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3219610Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3226908Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3232785Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3238775Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3244974Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3355050Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3362599Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3370255Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3377895Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3393356Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3406201Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3418386Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3427092Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3437712Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3455524Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3459177Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3473910Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3477857Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3496980Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3512249Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3515730Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3520940Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3522154Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3575391Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3580128Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3604876Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3613778Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3636098Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3644229Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3658537Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3697800Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3712879Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3720914Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3735461Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3754999Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3774737Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3825797Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3835099Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3853494Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3855291Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3873550Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3918106Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3927416Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3939435Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3940979Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3950939Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.3989661Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4000656Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4011590Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4026607Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4068361Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4085165Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4089134Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4124839Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4139952Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4152243Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4169067Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4202962Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4210789Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4229663Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4234729Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4286759Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4291377Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4325502Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4364555Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4365380Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4393199Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4394540Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4473941Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4486201Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4512302Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4513777Z Completed 5.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4524241Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4556032Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4571413Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4625046Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4626162Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4641533Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4667352Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4681478Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4702553Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4718492Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4734417Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4746842Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4763677Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4778614Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4806022Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4831509Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4848174Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4852438Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4887477Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4894320Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4932832Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4943715Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4948966Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4975742Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.4984871Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5030965Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5061034Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5068545Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5084938Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5115280Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5135086Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5138176Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5164603Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5205598Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5224643Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5232283Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5236429Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5284622Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5304676Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5314813Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5341616Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5348602Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5358595Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5395551Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5406244Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5443741Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5454362Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5470219Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5475536Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5518472Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5539033Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5554719Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5563551Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5588966Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5657053Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5678949Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5699327Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5712015Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5720391Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5750213Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5762491Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5787724Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5824740Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5832919Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5860629Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5866033Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5882879Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5913624Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5923824Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5940063Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5941401Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.5963635Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6014721Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6015964Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6028603Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6036259Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6037200Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6078946Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6084813Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6103513Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6119844Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6133191Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6134501Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6144258Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6149763Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6156982Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6255523Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6256362Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6294365Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6300903Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6346511Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6383213Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6420747Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6423921Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6467005Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6501842Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6508955Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6517352Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6528728Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6538765Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6543111Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6544569Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6558994Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6569317Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6578438Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6587511Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6597717Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6615328Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6666692Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6680115Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6691603Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6721874Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6755743Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6776780Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6784455Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6789006Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6841576Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6854961Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6881831Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6903516Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6932372Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6956347Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.6978632Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7021519Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7023572Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7024696Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7025462Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7064626Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7065836Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7066871Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7075960Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7089980Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7110834Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7125301Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7126963Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7135044Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7141809Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7152164Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7160343Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7171532Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7180328Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7215362Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7226661Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7233688Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7240241Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7246361Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7255228Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7261567Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7267650Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7278914Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7281865Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7288996Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7296249Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7304172Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7366028Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7426912Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7429828Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7436130Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7443451Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7451914Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7470527Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7514539Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7517645Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7525811Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7532512Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7539186Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7545550Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7617450Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7646575Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7679642Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7728034Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7776498Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7812606Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7823152Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7927639Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7944954Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7950173Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7961716Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7969011Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7982323Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.7997666Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8013321Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8022191Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8023805Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8032482Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8040886Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8069664Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8104077Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8114140Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8125753Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8153311Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8173990Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8181431Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8198367Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8209270Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8219841Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8234031Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8239881Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8287751Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8298437Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8362556Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8366425Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8371130Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8389079Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8407504Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8417774Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8419196Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8499482Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8517743Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8528566Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8554932Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8558950Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8563310Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8614541Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8618865Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8645206Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8646297Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8670011Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8686569Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8699769Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8733934Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8762352Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8768645Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8793151Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8808769Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8813427Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8821364Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8866459Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8868217Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8881746Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8919656Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8922888Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8948815Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8963512Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.8991984Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9004172Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9027524Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9028670Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9038940Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9080484Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9096342Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9108353Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9133698Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9140218Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9149407Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9177651Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9228754Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9229807Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9230549Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9249366Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9270711Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9277232Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9316102Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9359959Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9360780Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9389022Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9391356Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9394898Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9452156Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9473978Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9479707Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9523440Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9544670Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9599234Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9603470Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9609827Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9616756Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9649396Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9677541Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9689080Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9722346Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9723526Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9735496Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9771903Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9800680Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9805380Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9807254Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9817056Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9841950Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9876705Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9894855Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9900628Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9930712Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9932212Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9946267Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:57.9973807Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0007198Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0015518Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0043047Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0054650Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0077556Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0132572Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0156265Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0198687Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0205263Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0230832Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0231807Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0271559Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0290457Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0294978Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0300186Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0352270Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0375555Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0397280Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0398778Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0405594Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0417312Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0460905Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0487935Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0501381Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0502502Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0514502Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0524244Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0583940Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0598975Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0601055Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0602199Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0613366Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0681818Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0707551Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0712133Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0718455Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0719431Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0729428Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0796474Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0805413Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0818703Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0823071Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0860096Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0861404Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0914412Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0928085Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0949253Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0951474Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0964552Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.0998382Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1043954Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1046777Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1093397Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1094230Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1094897Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1119812Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1152323Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1187394Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1208035Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1224798Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1226527Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1234870Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1264641Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1329465Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1342488Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1359115Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1368479Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1415530Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1434624Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1444237Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1457445Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1458961Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1495438Z Completed 5.6 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1516678Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1555185Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1556549Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1613398Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1635555Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1657764Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1660459Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1677355Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1766748Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1767940Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1779057Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1800525Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1805648Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1831736Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1851779Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1865351Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1888408Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1921829Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1947351Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1967734Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1968737Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1985174Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.1986356Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2014401Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2029699Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2041342Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2065906Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2080843Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2100459Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2101674Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2159352Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2163514Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2173607Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2184880Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2217852Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2251447Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2261196Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2265828Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2313222Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2321395Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2347412Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2351804Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2358353Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2398916Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2400753Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2431147Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2432413Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2459566Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2487619Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2499771Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2508423Z Completed 5.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2534491Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2574422Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2584124Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2601074Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2604808Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2636532Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2648028Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2675041Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2700477Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2708945Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2732249Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2741290Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2749107Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2767092Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2779361Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2804134Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2841238Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2867892Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2877882Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2886456Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2889641Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2913730Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2960647Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2974418Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.2981929Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3004530Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3021924Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3026613Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3131902Z Completed 5.7 GiB/9.9 GiB (126.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3138513Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3158629Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3160145Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3166276Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3189826Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3264314Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3293543Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3294919Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3301376Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3338434Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3355005Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3368419Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3461483Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3470629Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3474304Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3497198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3511077Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3520730Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3540044Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3642198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3657299Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3705131Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3707889Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3709080Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3719503Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3748669Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3793099Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3825211Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3829192Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3847251Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3860014Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3864165Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3913359Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3947751Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3968404Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3971702Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3973198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.3989468Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4036092Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4044503Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4047311Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4068709Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4075894Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4097774Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4150163Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4151650Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4158873Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4176022Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4185903Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4229498Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4248198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4249251Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4255122Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4275829Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4332280Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4335924Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4337122Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4341618Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4368702Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4426614Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4430867Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4445573Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4452458Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4457046Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4511044Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4519434Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4537352Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4566144Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4569326Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4574097Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4596182Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4624634Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4649769Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4656539Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4670642Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4675281Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4743221Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4751152Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4757679Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4769674Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4779834Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4806508Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4844027Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4845071Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4851761Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4901860Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4903772Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4934225Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4954708Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4966514Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.4995198Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5019273Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5028220Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5029395Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5050332Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5113322Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5117882Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5127610Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5176066Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5177460Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5205055Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5206232Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5307086Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5317598Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5318701Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5325869Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5341688Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5345818Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5367246Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5441157Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5471088Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5475515Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5493482Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5500978Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5572999Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5640931Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5656621Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5678738Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5715398Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5727510Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5748839Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5761583Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5783193Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5805655Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5824455Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5848276Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5866997Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5871374Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5912019Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5947567Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.5983272Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6012100Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6013520Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6019674Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6065039Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6104489Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6117913Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6136448Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6140987Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6171541Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6186855Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6223383Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6233021Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6235494Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6247156Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6255227Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6272024Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6329511Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6334825Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6336958Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6345504Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6358385Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6437921Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6445222Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6457739Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6490965Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6491975Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6533402Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6543402Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6564312Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6568987Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6583626Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6611796Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6638766Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6666380Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6679392Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6713411Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6739213Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6758407Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6787567Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6822867Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6830752Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6873860Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6902371Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6907437Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6920153Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6964284Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6969090Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.6998244Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7003699Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7015579Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7044788Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7070171Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7078693Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7099200Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7113336Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7145585Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7147439Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7161601Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7188405Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7223691Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7238206Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7257752Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7270917Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7274930Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7319863Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7329893Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7343533Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7374058Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7396544Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7408168Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7424903Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7436808Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7489651Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7490765Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7523777Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7527904Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7535201Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7564768Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7589243Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7600958Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7636144Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7651057Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7656217Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7674321Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7701679Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7717019Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7745705Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7767558Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7777613Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7779475Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7789060Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7833795Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7855064Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7856502Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7881140Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7922229Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7933635Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7960595Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.7997308Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8011675Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8019084Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8068286Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8069960Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8087617Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8113580Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8117290Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8131151Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8181077Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8215483Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8237947Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8241615Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8246288Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8249952Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8258428Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8318654Z Completed 5.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8371759Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8381928Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8394699Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8432129Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8450308Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8502933Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8555681Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8560556Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8570127Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8589915Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8607478Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8639357Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8645572Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8710132Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8712135Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8714240Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8718311Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8726975Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8742786Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8755411Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8798745Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8807299Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8817109Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8835106Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8854804Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8887910Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8911471Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8912278Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8929064Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8931011Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.8987066Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9000626Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9006034Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9035356Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9066500Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9088040Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9101122Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9116531Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9133118Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9154234Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9187488Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9203075Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9213387Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9225672Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9249511Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9255639Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9293007Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9311932Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9313338Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9321678Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9350036Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9372451Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9387990Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9404898Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9416182Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9444097Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9467459Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9493521Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9501792Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9512816Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9540352Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9566480Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9604016Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9617485Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9631042Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9648189Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9669792Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9714114Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9715139Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9736873Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9744865Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9763929Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9769259Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9795692Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9827821Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9870597Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9873152Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9881415Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9890384Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9905438Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9935900Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:58.9957276Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0015398Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0028342Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0056679Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0057902Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0059289Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0144459Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0150068Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0180763Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0194582Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0209691Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0237204Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0275871Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0290269Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0297663Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0369337Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0401055Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0407435Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0410184Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0430194Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0455918Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0479358Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0524733Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0547629Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0563389Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0564458Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0572980Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0598081Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0653213Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0663563Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0685797Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0686975Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0716913Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0763558Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0790516Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0803093Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0828807Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0883702Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0884930Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0886032Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0910769Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0926526Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0948190Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0960824Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.0972113Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1003900Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1005054Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1018627Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1043558Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1071367Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1080048Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1085712Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1110227Z Completed 5.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1134231Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1141157Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1154045Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1175537Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1198518Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1209111Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1233353Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1250713Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1273492Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1308750Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1326183Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1332843Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1343812Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1391928Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1403303Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1410660Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1415067Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1435628Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1475931Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1481383Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1485441Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1511012Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1528706Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1549561Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1562245Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1563825Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1588578Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1595960Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1627770Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1644573Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1648793Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1683110Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1690550Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1697962Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1710920Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1774903Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1776158Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1776824Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1781165Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1788209Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1826507Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1885299Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1904965Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1953882Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1955963Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1957509Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1989634Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.1996918Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2000677Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2028145Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2100548Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2107128Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2119912Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2121025Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2131295Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2174400Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2180669Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2205859Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2226495Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2233406Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2246877Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2264545Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2306886Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2339962Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2344188Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2361441Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2375354Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2413986Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2442472Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2462427Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2472249Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2477024Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2501612Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2562573Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2569387Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2637867Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2649001Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2658762Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2684483Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2686765Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2703183Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2757112Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2762453Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2777354Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2778276Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2783163Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2859405Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2866732Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2877288Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2882926Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2884515Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2951406Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2955787Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2959404Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2960364Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.2978929Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3040299Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3049104Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3061028Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3061927Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3108945Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3123566Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3155821Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3168831Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3204712Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3238817Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3239818Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3276023Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3309038Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3309872Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3341953Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3360194Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3379779Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3408659Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3450340Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3461779Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3467012Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3480062Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3510617Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3522071Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3545496Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3549827Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3579318Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3595787Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3631056Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3647376Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3657930Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3682771Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3706744Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3735328Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3761709Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3770882Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3790109Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3795128Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3809680Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3853859Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3861574Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3875422Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3898676Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3904468Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3922310Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3957646Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.3996567Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4006475Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4009445Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4027113Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4037979Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4063353Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4099720Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4126326Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4127709Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4128504Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4152113Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4172586Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4197592Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4223413Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4264316Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4310858Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4334215Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4353988Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4368386Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4405420Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4429034Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4497737Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4526554Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4537066Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4541261Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4592497Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4593772Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4610406Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4645285Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4667532Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4690418Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4693150Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4715809Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4731873Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4743489Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4798439Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4820732Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4821582Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4827762Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4849608Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4887406Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4899264Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4924259Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4965815Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4972608Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.4973919Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5028019Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5031462Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5036828Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5070976Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5103305Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5104428Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5132220Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5133499Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5159451Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5164070Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5209126Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5216442Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5225756Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5250002Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5251152Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5304929Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5316480Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5317672Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5328053Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5333576Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5387300Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5399403Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5411509Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5433999Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5438072Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5480832Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5484673Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5488205Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5535050Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5547079Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5597419Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5610434Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5612097Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5619698Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5646570Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5672168Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5701675Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5735464Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5747878Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5761281Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5762555Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5764125Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5828899Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5830504Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5856934Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5867789Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5885050Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5890637Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5900217Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5954597Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5960998Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.5999760Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6009371Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6019829Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6026892Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6083994Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6094550Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6109172Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6114717Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6143299Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6156053Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6179376Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6211671Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6228600Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6245301Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6251357Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6267495Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6283856Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6286210Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6326320Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6363427Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6380306Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6383899Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6390118Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6436358Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6445215Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6484840Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6500693Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6613321Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6618903Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6681768Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6736270Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6767304Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6783300Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6791704Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6811725Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6829906Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6857476Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6897828Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6899116Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6916101Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6938303Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6947859Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6948942Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.6969812Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7027992Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7033076Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7045559Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7057903Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7060986Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7082435Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7110095Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7139806Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7147741Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7153881Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7185974Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7209614Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7219582Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7236288Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7253260Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7271341Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7297682Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7323428Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7334557Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7349397Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7359330Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7362096Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7387888Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7426329Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7437063Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7466735Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7471629Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7518565Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7530646Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7567076Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7570769Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7585810Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7594289Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7612444Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7672957Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7702592Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7708082Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7710806Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7728792Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7760026Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7770763Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7785273Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7797777Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7818967Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7840939Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7849743Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7892884Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7909961Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7930552Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7931856Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7961114Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.7991945Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8005105Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8026209Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8029229Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8040489Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8109749Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8123054Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8127755Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8141033Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8152144Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8169164Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8221715Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8227217Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8244603Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8257949Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8264678Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8273695Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8321927Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8363818Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8371000Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8384011Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8392090Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8423334Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8425242Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8444744Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8455251Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8482937Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8485836Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8535145Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8536321Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8547582Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8552953Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8567933Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8635450Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8656369Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8658632Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8676329Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8693431Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8752862Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8764100Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8778262Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8790355Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8808745Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8851867Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8867960Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8875186Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8882232Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8887842Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8927106Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8948115Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8967360Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8987924Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.8993461Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9011851Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9035597Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9073057Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9087876Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9104804Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9113589Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9138287Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9209416Z Completed 5.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9215587Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9219436Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9225938Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9259848Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9388617Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9389654Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9403138Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9404061Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9407860Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9427097Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9468220Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9497351Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9516928Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9525949Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9535637Z Completed 5.8 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9600028Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9608614Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9625458Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9626946Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9649897Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9691567Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9704736Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9730647Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9757882Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9769240Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9795312Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9807579Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9815624Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9847385Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9865495Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9894353Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9900940Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9913375Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9934035Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9945452Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9981683Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:54:59.9991463Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0016432Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0024755Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0026626Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0046799Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0085708Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0087549Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0091676Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0120298Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0154289Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0164495Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0173462Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0189100Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0211610Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0218919Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0224372Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0235551Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0238957Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0346283Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0353223Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0403396Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0418068Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0430280Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0458618Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0467942Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0468779Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0488387Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0495686Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0501491Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0505821Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0512334Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0527287Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0545761Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0552274Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0564221Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0567656Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0583051Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0591653Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0619692Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0631833Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0646466Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0653161Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0673299Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0679673Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0691846Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0698507Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0728491Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0758715Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0776236Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0789020Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0796184Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0847406Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0865843Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0871772Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0929825Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0950237Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0957052Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0969985Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.0990317Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1046775Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1050461Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1054174Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1061692Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1078436Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1115649Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1124234Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1171576Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1183852Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1199525Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1221781Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1224869Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1262597Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1271253Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1294641Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1318571Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1355477Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1371509Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1377102Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1386220Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1432462Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1476680Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1480234Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1488765Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1492024Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1522298Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1566829Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1581645Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1585043Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1604666Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1611086Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1648940Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1676791Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1690840Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1703295Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1717830Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1754848Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1778218Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1815149Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1818660Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1826003Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1839846Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1855117Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1902495Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1924959Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1941788Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1943199Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1954786Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.1980858Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2003178Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2021817Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2054621Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2062938Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2068234Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2098271Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2108596Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2147873Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2152919Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2174815Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2188597Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2199269Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2242860Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2257219Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2270515Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2293936Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2297236Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2324682Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2347879Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2376039Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2376936Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2397683Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2399660Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2438655Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2447388Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2460879Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2486488Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2501267Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2531358Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2544117Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2571838Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2573089Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2587323Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2617922Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2641331Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2648604Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2689726Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2718727Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2745516Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2766636Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2770018Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2771085Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2786165Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2841379Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2876191Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2941733Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2958579Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2959757Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.2964539Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3039909Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3041908Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3061421Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3124880Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3167649Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3169349Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3179476Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3189679Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3208757Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3225834Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3246846Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3273150Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3304173Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3314712Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3325976Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3349131Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3355403Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3384248Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3389969Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3414192Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3440640Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3446140Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3470535Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3481863Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3502545Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3510820Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3540646Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3557084Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3591898Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3598247Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3604957Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3634083Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3642503Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3679857Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3693301Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3709309Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3744886Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3749876Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3754173Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3805085Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3817656Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3829866Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3874931Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3878891Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3888126Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3923133Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3944730Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3972006Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3984492Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.3996823Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4015128Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4050244Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4068986Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4085913Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4089879Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4103294Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4175039Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4181012Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4203827Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4207620Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4210823Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4255601Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4277127Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4296755Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4321240Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4328356Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4329436Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4375081Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4395719Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4405476Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4412081Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4440553Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4456180Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4478768Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4508876Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4531455Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4533642Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4562326Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4568572Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4601696Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4608363Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4624421Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4652088Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4746929Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4751610Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4754656Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4760789Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4780757Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4797305Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4833088Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4847786Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4860530Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4873584Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4910114Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4927558Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4954362Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4955238Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4961264Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.4975014Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5019491Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5040577Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5052180Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5082536Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5097672Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5111098Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5128770Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5147630Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5152994Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5180841Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5228757Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5233261Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5240654Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5252083Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5255353Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5297547Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5343215Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5349133Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5359366Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5368005Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5377812Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5398665Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5444114Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5447080Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5488747Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5489763Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5493228Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5500501Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5564081Z Completed 5.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5572515Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5656689Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5668626Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5696551Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5697838Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5838071Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5875128Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5888574Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5895384Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5904599Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5919507Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5955357Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5990286Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.5999574Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6022312Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6041080Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6067204Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6082875Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6101604Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6119301Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6134355Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6149067Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6165843Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6187665Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6202835Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6215001Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6269381Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6270225Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6288505Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6303200Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6323543Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6331144Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6356848Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6357716Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6407295Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6517077Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6518248Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6523746Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6524865Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6547647Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6585886Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6598868Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6607737Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6625424Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6644259Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6663959Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6679065Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6698230Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6703410Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6707468Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6720068Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6736438Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6743364Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6759244Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6775850Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6787461Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6828214Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6841550Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6844408Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6898187Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6911985Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6946973Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6953449Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6988590Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.6997738Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7029885Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7050448Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7053550Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7069955Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7083117Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7118123Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7126168Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7157395Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7160288Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7192186Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7197010Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7209123Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7240701Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7253193Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7287567Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7291145Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7298746Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7313415Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7336343Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7380537Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7381598Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7441004Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7452596Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7459291Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7473310Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7524131Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7532150Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7583841Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7630617Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7639790Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7645595Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7672223Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7717096Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7730288Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7744725Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7757922Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7770656Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7775625Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7781774Z Completed 5.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7844303Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7855774Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7866328Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7886916Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7900283Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7912810Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7940534Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7960938Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7964646Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.7974805Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8010494Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8017184Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8045936Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8059312Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8101203Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8113026Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8120327Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8132832Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8143584Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8173255Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8183378Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8228529Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8253091Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8263619Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8283536Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8323360Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8329185Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8345662Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8356218Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8375491Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8446993Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8448372Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8460995Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8466406Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8487547Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8522074Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8544298Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8551459Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8553412Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8586387Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8624867Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8630791Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8646084Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8654818Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8693278Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8719586Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8733924Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8751590Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8758662Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8784015Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8785688Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8832446Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8853617Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8867129Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8883394Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8902142Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8925722Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8926656Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8979909Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8980924Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.8990700Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9016873Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9048745Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9065684Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9069007Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9076979Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9115695Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9144756Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9158340Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9170248Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9190178Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9210345Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9234439Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9245818Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9263198Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9269854Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9293067Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9335157Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9360876Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9368739Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9374017Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9386832Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9390357Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9467590Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9469415Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9488457Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9489672Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9510971Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9522204Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9596620Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9604831Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9610086Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9618436Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9663923Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9664875Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9665624Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9758575Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9762104Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9776202Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9796451Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9797996Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9800146Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9820465Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9843462Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9864637Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9896927Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9935882Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:00.9939519Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0002994Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0004138Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0009086Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0024279Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0053419Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0068177Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0118431Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0143529Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0153363Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0188505Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0194848Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0221233Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0246225Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0247921Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0283301Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0302016Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0317848Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0337238Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0348880Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0370528Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0390731Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0402901Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0415498Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0424537Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0458644Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0494665Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0508830Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0514151Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0524183Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0538652Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0582204Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0584059Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0596360Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0625047Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0642802Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0661765Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0665657Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0693299Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0712810Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0718020Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0766062Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0789525Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0810240Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0830991Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0838356Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0853403Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0865405Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0873418Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0910390Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0933307Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0943826Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0971810Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0981823Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0986194Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.0998552Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1001204Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1026217Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1033563Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1040248Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1048187Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1053295Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1068665Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1083258Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1096211Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1111718Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1133971Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1163820Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1194631Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1195528Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1220106Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1238417Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1250029Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1262272Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1298524Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1331342Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1336121Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1354882Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1367044Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1382056Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1411931Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1423304Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1429745Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1448813Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1457196Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1470559Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1509933Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1520348Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1525340Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1546182Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1569292Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1608721Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1614190Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1641209Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1642148Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1659300Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1718173Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1719461Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1748402Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1750558Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1763223Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1816343Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1827597Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1832225Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1838474Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1853327Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1871543Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1913592Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1917464Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1953156Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1975242Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.1988400Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2045997Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2047750Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2060471Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2066339Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2106858Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2126781Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2146503Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2157226Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2192035Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2209205Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2216555Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2252934Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2259677Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2277886Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2289239Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2299448Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2357350Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2362027Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2369743Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2377705Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2384772Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2402236Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2455639Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2458157Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2463980Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2487651Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2492083Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2529817Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2551278Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2566375Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2573052Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2576031Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2604936Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2671003Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2673492Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2690036Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2711543Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2726629Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2763465Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2768474Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2776083Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2795863Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2839695Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2876275Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2880262Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2891496Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2905943Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2936887Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2949875Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2955393Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.2965695Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3008972Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3020262Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3021388Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3066579Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3111540Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3114615Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3124276Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3133552Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3148706Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3198656Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3209318Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3215053Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3222774Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3228522Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3234009Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3245917Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3254802Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3276103Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3303608Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3331332Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3332325Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3336515Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3354126Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3393519Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3417473Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3424915Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3442486Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3463035Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3484829Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3515278Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3524690Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3529059Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3580488Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3696707Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3715077Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3716316Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3741700Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3745005Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3748018Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3774033Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3815164Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3817012Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3865019Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3871426Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3947855Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.3993907Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4013970Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4017686Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4018830Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4049061Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4060770Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4079633Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4099846Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4107006Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4114798Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4174840Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4198772Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4208030Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4210072Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4235680Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4239791Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4251826Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4308883Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4331831Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4359871Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4361377Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4371669Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4418200Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4430073Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4439400Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4446677Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4455995Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4463401Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4490749Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4493284Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4500389Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4523527Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4532592Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4539688Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4552968Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4555993Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4565943Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4572022Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4578919Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4653834Z Completed 6.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4780223Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4883099Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4948855Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4974864Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4983932Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4989990Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4993835Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.4999782Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5006752Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5045768Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5051321Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5064471Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5098949Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5131288Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5136504Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5172286Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5174049Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5198852Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5210261Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5222351Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5251240Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5277118Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5302121Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5307163Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5333380Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5350446Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5377452Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5379979Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5418738Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5457488Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5463282Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5466870Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5485114Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5526883Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5556056Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5566180Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5575823Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5607125Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5616881Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5639041Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5673414Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5694136Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5716609Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5736368Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5763395Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5794335Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5795425Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5823728Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5847273Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5872416Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5874366Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5918575Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5940724Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5949819Z Completed 6.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.5995545Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6026250Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6054727Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6079339Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6090042Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6091945Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6149214Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6159471Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6183918Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6192242Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6216265Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6217468Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6279063Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6279913Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6280677Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6313439Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6334480Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6340784Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6384860Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6386158Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6435505Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6443852Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6454544Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6498698Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6518670Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6527929Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6532781Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6555607Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6585609Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6598009Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6622869Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6640788Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6647134Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6667286Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6695511Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6728473Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6747945Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6761098Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6773988Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6827041Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6861134Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6861965Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6875088Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6900617Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6933527Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6934784Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.6999099Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7061569Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7072857Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7074264Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7095650Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7107546Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7174754Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7194474Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7195536Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7210031Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7215323Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7218143Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7222573Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7311390Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7321036Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7330729Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7351505Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7363868Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7397835Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7399003Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7445945Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7454706Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7458733Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7492912Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7507189Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7520966Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7537695Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7538990Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7581279Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7619768Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7639363Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7692610Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7696726Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7714867Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7733409Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7734321Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7770390Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7803575Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7816285Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7850837Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7865414Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7877247Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7898213Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7937815Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7946874Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7960298Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7977590Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.7985579Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8006998Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8008399Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8045857Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8072994Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8105009Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8105733Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8143537Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8155234Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8166238Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8181900Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8188674Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8208897Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8237079Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8268595Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8291534Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8301066Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8318933Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8319970Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8344971Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8361911Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8400671Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8402096Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8432389Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8441108Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8458668Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8475974Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8500710Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8505774Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8507422Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8509842Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8583175Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8606693Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8619760Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8626402Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8633294Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8650405Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8676194Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8677247Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8743055Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8754794Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8756264Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8761005Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8783889Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8787078Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8810222Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8859581Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8895431Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8907424Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8908571Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8930885Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8941621Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8958869Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.8975393Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9020466Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9027852Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9059304Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9065254Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9071705Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9078925Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9107450Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9115861Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9178248Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9179189Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9188269Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9196263Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9232615Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9247733Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9260094Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9277292Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9285826Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9323790Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9334885Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9346235Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9365867Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9366893Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9394875Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9401606Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9458107Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9478925Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9484233Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9497587Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9500091Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9509738Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9581483Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9583085Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9593637Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9601304Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9612106Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9626436Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9678583Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9698097Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9704572Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9705904Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9721968Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9789836Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9808011Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9831535Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9833027Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9854779Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9900183Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9902453Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9910950Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9927467Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9934981Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:01.9994042Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0020543Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0037708Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0061628Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0074677Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0081069Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0124161Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0137588Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0163542Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0188704Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0190521Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0195356Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0228653Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0236131Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0276130Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0282119Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0302400Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0311129Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0339590Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0445012Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0448163Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0462049Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0465124Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0502333Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0507407Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0538727Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0565640Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0592497Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0600944Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0602120Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0603716Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0628679Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0674944Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0724815Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0726117Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0730110Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0750360Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0762145Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0791425Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0801531Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0830441Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0838852Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0859716Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0896041Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0897255Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0898273Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0923684Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0950677Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0974918Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0981754Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.0983429Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1010857Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1019391Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1024063Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1075569Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1115223Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1123100Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1132517Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1137531Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1143448Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1169782Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1179816Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1195653Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1216995Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1221834Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1224133Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1230718Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1238228Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1250362Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1261308Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1350141Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1415045Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1459177Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1532383Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1542885Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1582973Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1649925Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1662250Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1672593Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1681741Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1689878Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1699575Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1709397Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1727093Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1738904Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1765158Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1770939Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1785772Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1792572Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1797089Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1821775Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1824541Z Completed 6.1 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1835292Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1844086Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1849054Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1853767Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1859486Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1865077Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1870474Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1927693Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1933995Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1940962Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1964492Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1968762Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1974220Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.1985979Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2003887Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2019738Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2040190Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2048067Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2073961Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2075321Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2076564Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2082105Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2090773Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2100230Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2115010Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2123562Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2131872Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2145825Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2149464Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2172321Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2182174Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2191248Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2253638Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2339002Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2346356Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2354422Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2361928Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2369411Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2379864Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2386860Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2394028Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2409464Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2415019Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2546873Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2560990Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2574427Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2581189Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2595435Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2603482Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2631187Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2672074Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2675343Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2697186Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2724119Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2737534Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2755430Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2763033Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2770526Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2778154Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2785565Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2792504Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2800243Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2807838Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2869702Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2877552Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2890144Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2896351Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2913102Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2941133Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2948144Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2958919Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2969223Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2978686Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.2986931Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3010503Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3026725Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3037553Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3045281Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3075081Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3094748Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3104222Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3116043Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3235465Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3244894Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3249159Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3264647Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3266821Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3279529Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3282298Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3295042Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3298557Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3310540Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3318292Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3323442Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3336167Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3339146Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3351538Z Completed 6.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3354912Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3365992Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3371084Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3376361Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3449875Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3460367Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3474168Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3489805Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3492861Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3505305Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3507763Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3524034Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3527239Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3542034Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3550317Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3554110Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3560701Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3601589Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3607313Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3615763Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3639137Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3655420Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3657524Z Completed 6.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3679458Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3698318Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3706646Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3714167Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3726107Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3731239Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3737708Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3744042Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3749885Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3757779Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3758782Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3768209Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3787758Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3793692Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3806157Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3823294Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3837404Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3860286Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3868971Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3876680Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3884985Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3908535Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.3922086Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4123679Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4132922Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4145025Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4150469Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4161305Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4185615Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4191750Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4203210Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4223859Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4232378Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4253450Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4288561Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4297421Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4320835Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4335631Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4370491Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4377099Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4381612Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4399461Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4412889Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4441448Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4468816Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4507887Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4509579Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4521253Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4539789Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4564202Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4596687Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4617505Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4627254Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4639602Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4646316Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4658696Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4662200Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4711520Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4719874Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4721041Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4766344Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4767496Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4776557Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4799585Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4832102Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4852849Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4855904Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4887573Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4908015Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4920764Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4927210Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4941096Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4968219Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4974355Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.4984865Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5017186Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5024365Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5045789Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5058802Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5065405Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5102565Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5110968Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5117614Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5152101Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5177858Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5180058Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5217297Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5219617Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5244756Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5277894Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5293110Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5318170Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5321631Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5333317Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5343363Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5390370Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5416813Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5418903Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5439760Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5452533Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5485425Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5513828Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5521672Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5542184Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5556820Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5578543Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5610013Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5614428Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5629450Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5636126Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5667117Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5685847Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5693552Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5696015Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5717320Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5721209Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5751070Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5754834Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5783060Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5791308Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5821414Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5851622Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5855143Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5922124Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5923306Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5931929Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5941374Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5968566Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5977269Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.5995560Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6000428Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6034660Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6043099Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6056186Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6062256Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6118348Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6169840Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6177317Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6196770Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6226588Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6285312Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6286466Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6287587Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6288709Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6313965Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6317878Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6343261Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6360323Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6377325Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6434438Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6437938Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6467642Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6492485Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6520237Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6522604Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6537283Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6548599Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6573982Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6609581Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6628480Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6636750Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6644982Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6668522Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6689175Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6703397Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6710980Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6724073Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6734967Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6750922Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6778054Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6789598Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6800586Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6810081Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6814423Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6849678Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6874507Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6907193Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6923680Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.6971979Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7006486Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7102903Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7124410Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7143683Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7150982Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7162980Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7165968Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7187636Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7191794Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7201863Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7210928Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7218212Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7233590Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7260098Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7266656Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7275714Z Completed 6.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7281138Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7287663Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7294571Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7299967Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7344116Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7350888Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7358726Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7404155Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7429849Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7438722Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7446244Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7456548Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7464862Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7491317Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7509173Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7510393Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7553941Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7556218Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7566147Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7572418Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7610039Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7645283Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7650572Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7654854Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7704519Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7729183Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7734469Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7760738Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7788871Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7792202Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7797599Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7816639Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7843203Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7852800Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7853933Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7868421Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7876448Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7900845Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7916459Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7922854Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7928814Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7934952Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7940703Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7946926Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7953002Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7958544Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.7964485Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8048956Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8062228Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8096615Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8126134Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8135736Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8138225Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8164114Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8175166Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8184740Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8190330Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8195599Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8267102Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8273209Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8281757Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8340997Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8355478Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8363501Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8374619Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8383219Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8418395Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8435024Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8442594Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8472083Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8497309Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8507900Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8517071Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8554864Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8559994Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8577076Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8642912Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8658973Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8670340Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8698270Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8706819Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8726946Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8740153Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8763186Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8776631Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8811494Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8843667Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8848784Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8854993Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8861446Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8900672Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8915610Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8921010Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.8986352Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9053957Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9072361Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9101696Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9109388Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9111287Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9156030Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9162333Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9178676Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9181815Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9231254Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9238334Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9244395Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9245961Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9266406Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9275908Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9281517Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9332788Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9349019Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9353997Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9360937Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9375496Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9428808Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9435069Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9451926Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9469717Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9470630Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9520134Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9531164Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9542836Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9555727Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9564030Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9610576Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9623965Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9638294Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9643867Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9655916Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9681924Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9733433Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9734650Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9738997Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9765540Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9793441Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9816505Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9827774Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9844340Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9860427Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9892154Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9898348Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9922088Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9923447Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9924229Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:02.9993543Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0009068Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0024509Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0026270Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0027630Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0052794Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0064271Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0108468Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0125495Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0130803Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0174277Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0183092Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0189649Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0223823Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0225314Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0240891Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0287750Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0320098Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0327916Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0353821Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0361399Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0373316Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0378686Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0385727Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0391384Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0473097Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0479372Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0491981Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0507797Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0509074Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0511167Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0530689Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0552240Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0578011Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0613968Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0624359Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0625668Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0675183Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0695563Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0722918Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0734885Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0755733Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0770076Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0789665Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0848143Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0875867Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0901173Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0914035Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0937073Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0952968Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0956389Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.0987496Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1004275Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1008522Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1071058Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1072481Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1082382Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1106702Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1119575Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1124729Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1167792Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1174949Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1180588Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1228647Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1234437Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1242903Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1280582Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1298499Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1306285Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1339161Z Completed 6.2 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1362344Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1373659Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1386447Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1421918Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1427966Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1433514Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1464887Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1491564Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1515870Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1525468Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1535975Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1557743Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1586674Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1598846Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1609111Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1633190Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1662443Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1688901Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1697713Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1699089Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1735989Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1754169Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1761515Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1786359Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1796624Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1853151Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1872215Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1885234Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1910382Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1926780Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.1928350Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2029962Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2039848Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2053330Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2067328Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2068458Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2170236Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2197271Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2216712Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2218133Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2219934Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2231118Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2261493Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2290840Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2313250Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2344803Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2357930Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2388740Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2389839Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2432445Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2454327Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2473446Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2474379Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2489689Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2510985Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2538852Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2574753Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2578635Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2654076Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2656871Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2667856Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2683200Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2700273Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2733673Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2750178Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2785858Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2788445Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2794987Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2825626Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2855719Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2884462Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2890411Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2896189Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2925108Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2942339Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2958519Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2977507Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2991805Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.2993005Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3025825Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3047256Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3055062Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3073889Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3098087Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3115445Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3130303Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3167290Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3168664Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3179214Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3201918Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3227199Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3243148Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3247467Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3289161Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3326046Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3330943Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3342820Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3361764Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3408212Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3412561Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3459079Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3460146Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3461511Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3483743Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3518113Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3529677Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3550122Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3557720Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3561157Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3616277Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3621227Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3639172Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3652269Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3663341Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3697451Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3709427Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3717443Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3760976Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3772373Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3790945Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3818830Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3825111Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3829627Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3851337Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3904918Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3947136Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3980604Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.3981712Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4008732Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4029634Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4060858Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4077261Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4081674Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4088687Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4119333Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4120635Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4190899Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4192134Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4201297Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4248490Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4251395Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4273554Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4286457Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4296659Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4328739Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4354006Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4374526Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4387007Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4411260Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4426869Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4469004Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4479187Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4499431Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4512005Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4517653Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4562258Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4580198Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4586452Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4592535Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4667148Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4696495Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4702481Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4730449Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4734708Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4743131Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4782425Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4794853Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4832476Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4844902Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4861739Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4892157Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4897857Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4942575Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4955974Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4958975Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.4976458Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5010410Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5048786Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5066353Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5090665Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5100088Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5107658Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5142434Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5155303Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5206423Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5226057Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5236548Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5254439Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5287044Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5330103Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5336139Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5369680Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5372346Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5423669Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5456837Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5479021Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5495317Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5496660Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5497575Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5549999Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5562959Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5589162Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5590835Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5607413Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5619234Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5676699Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5683031Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5688423Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5720793Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5724083Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5783959Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5798211Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5799104Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5810250Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5827392Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5845910Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5896286Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5919680Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5928056Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5945572Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5946644Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.5960760Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6009909Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6036487Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6046772Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6050202Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6059126Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6076332Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6097503Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6149739Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6159030Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6191062Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6208140Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6209592Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6230415Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6239158Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6263242Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6294716Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6301781Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6305664Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6349951Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6364526Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6381911Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6392847Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6441326Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6446989Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6460865Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6502001Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6542283Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6554137Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6555007Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6574753Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6583217Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6584345Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6646936Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6663497Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6667035Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6701602Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6708300Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6715639Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6724050Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6761224Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6777940Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6801134Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6824545Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6832024Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6858779Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6863905Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6884275Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6885057Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6923466Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6945399Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6962462Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.6980821Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7006243Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7011685Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7034813Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7064464Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7072805Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7079847Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7092135Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7146452Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7159029Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7187812Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7216359Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7230379Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7232275Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7239761Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7247560Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7300673Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7317338Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7324723Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7339118Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7366702Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7375047Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7415717Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7438526Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7455769Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7466096Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7467927Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7499884Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7520567Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7538888Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7548596Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7562943Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7566008Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7603437Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7604662Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7633949Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7656501Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7668134Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7682468Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7691317Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7715637Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7745936Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7748288Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7771987Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7792374Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7813240Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7820420Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7826458Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7849149Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7856047Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7865759Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7923752Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7931586Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7974968Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.7993883Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8035677Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8085610Z Completed 6.3 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8104349Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8118763Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8183870Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8195816Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8198503Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8242400Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8288536Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8318866Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8341935Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8366852Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8378052Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8402995Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8406965Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8456137Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8470874Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8499032Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8509614Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8534649Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8537564Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8585676Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8625584Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8630276Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8636737Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8642868Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8699901Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8717875Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8750324Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8797818Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8813364Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8865040Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8878407Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8934742Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8938970Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8940158Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.8966915Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9013344Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9039293Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9074025Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9093732Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9098593Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9123284Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9142002Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9169662Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9178573Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9189007Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9201955Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9226225Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9254264Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9255465Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9279060Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9290971Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9313733Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9314644Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9331786Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9366540Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9371678Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9379578Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9393636Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9402959Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9425307Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9428509Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9433653Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9465643Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9470581Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9481392Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9488770Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9507409Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9584763Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9587661Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9595011Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9601818Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9607831Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9619610Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9626438Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9632053Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9639394Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9642520Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9650572Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9658821Z Completed 6.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9670912Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9706450Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9839679Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9900247Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9940088Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9947255Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9955536Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9959147Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9968260Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9972151Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9983087Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:03.9993208Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0001934Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0014201Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0025772Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0037667Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0044272Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0126264Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0146432Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0167581Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0182778Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0225221Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0227976Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0239695Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0254659Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0291173Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0312291Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0314281Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0331712Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0356763Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0360255Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0378603Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0419204Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0427315Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0441638Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0469289Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0479056Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0497271Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0524515Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0567651Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0589320Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0600807Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0626320Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0641505Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0662430Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0663811Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0676266Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0721322Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0729045Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0735616Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0760038Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0777676Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0789783Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0793715Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0826149Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0838772Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0849215Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0868199Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0873843Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0893192Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0902578Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0903922Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0910630Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0928198Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0932956Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0972168Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.0990255Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1002227Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1009141Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1039310Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1040575Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1056170Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1091999Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1118141Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1146908Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1148211Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1159343Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1177471Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1211353Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1233540Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1251242Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1275660Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1277098Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1339043Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1343276Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1346561Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1365306Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1379704Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1384943Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1408028Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1430817Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1467539Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1516512Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1528384Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1531577Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1558199Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1570845Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1572402Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1632529Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1648650Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1658368Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1659851Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1671518Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1712061Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1729249Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1737294Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1740710Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1777888Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1790182Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1800868Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1828653Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1856081Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1886065Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1896007Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1905169Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1928352Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1964592Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1965443Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1969415Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.1993364Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2040625Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2067536Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2069426Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2087929Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2107556Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2127620Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2135081Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2149231Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2161225Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2189283Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2199204Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2221153Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2255855Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2259543Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2261673Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2292809Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2316305Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2335957Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2337049Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2347612Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2371948Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2402560Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2411360Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2428639Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2459360Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2471677Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2486049Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2487233Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2507203Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2520842Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2569826Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2581615Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2582922Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2600346Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2623453Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2639635Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2675026Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2705021Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2729460Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2730683Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2746240Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2758088Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2773467Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2785984Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2846420Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2858752Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2877620Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2884306Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2908729Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2913964Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2927320Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2928501Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2998285Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.2999732Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3001937Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3028678Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3048466Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3075111Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3076067Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3094160Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3127609Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3139252Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3144736Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3149567Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3198670Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3210849Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3218397Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3241719Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3253309Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3277490Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3281696Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3339107Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3348697Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3350011Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3350829Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3377363Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3403740Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3421064Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3456242Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3471243Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3497650Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3508493Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3510309Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3522868Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3550198Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3586406Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3591706Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3601325Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3615106Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3646422Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3647611Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3760680Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3770234Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3783758Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3794177Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3819144Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3820382Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3821468Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3890850Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3934858Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3946225Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3954026Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3980828Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.3983710Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4030918Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4075531Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4087293Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4088887Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4098576Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4134637Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4145858Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4158923Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4171036Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4202439Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4212821Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4234314Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4247520Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4273749Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4306216Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4312007Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4318471Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4344808Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4368841Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4379204Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4397285Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4407181Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4434576Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4445636Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4495130Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4495941Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4512142Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4585488Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4599712Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4619491Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4647123Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4682185Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4733391Z Completed 6.4 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4767195Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4795148Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4811696Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4851306Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4899156Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4912158Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4937621Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4953282Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.4983657Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5011401Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5019195Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5030055Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5056352Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5058414Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5119004Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5139410Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5195852Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5197285Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5218859Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5272872Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5305562Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5306759Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5340150Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5361063Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5388571Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5403404Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5464673Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5488692Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5504880Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5532281Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5557006Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5595022Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5609187Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5610325Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5626676Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5644950Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5682426Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5700753Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5715323Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5724728Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5740929Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5777162Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5793006Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5814240Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5829163Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5830641Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5855800Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5890957Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5913713Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5928889Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5930679Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.5968146Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6001406Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6018040Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6028210Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6040025Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6047659Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6076649Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6120014Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6120739Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6128821Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6135515Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6173020Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6202483Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6207146Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6210115Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6220624Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6253770Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6263170Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6277182Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6304203Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6317390Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6328326Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6344212Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6384117Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6400405Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6424251Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6443309Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6457138Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6478917Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6534211Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6600414Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6606437Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6609651Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6615810Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6679108Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6689798Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6703333Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6709322Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6713106Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6732815Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6794322Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6801602Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6802825Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6817200Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6826104Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6854444Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6914462Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6924942Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6939274Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6940509Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6972354Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.6989103Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7018439Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7038500Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7063738Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7085594Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7105979Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7148153Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7163490Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7193040Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7230970Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7235378Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7240132Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7248076Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7290281Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7294720Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7334271Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7363061Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7373184Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7385408Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7421058Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7448439Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7474532Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7491076Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7500100Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7523272Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7541874Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7550831Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7563255Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7616023Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7636280Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7646072Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7683015Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7689496Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7713941Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7779593Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7796719Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7797938Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7809495Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7818810Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7880100Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7881252Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7933659Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7956351Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7961436Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7966413Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.7980611Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8006581Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8038068Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8069139Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8083455Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8102385Z Completed 6.4 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8106615Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8129791Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8133048Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8139949Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8229322Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8235582Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8257655Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8263152Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8278199Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8279991Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8285697Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8344547Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8358536Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8378682Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8388542Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8400930Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8402474Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8410621Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8426802Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8480947Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8506817Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8520640Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8521983Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8546377Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8550119Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8558273Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8590326Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8599765Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8627055Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8639077Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8658978Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8679710Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8705560Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8710111Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8741758Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8764914Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8798345Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8802564Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8805322Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8828855Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8854499Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8885421Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8891425Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8947642Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8948474Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8966792Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8972089Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.8978679Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9014555Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9015429Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9039295Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9084291Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9100116Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9122292Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9127132Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9132943Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9147492Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9173060Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9198534Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9205521Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9237828Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9257057Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9265669Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9294929Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9300495Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9338013Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9344888Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9358369Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9384919Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9394567Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9418606Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9427936Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9434076Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9483931Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9496641Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9510238Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9516053Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9534771Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9556720Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9578797Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9580070Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9646022Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9666921Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9691959Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9741966Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9743139Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9751072Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9796177Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9806697Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9827889Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9855422Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9881174Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9918115Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9926813Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9944710Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9963581Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9986178Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:04.9997400Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0008564Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0020545Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0046750Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0055331Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0089231Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0106758Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0129810Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0137725Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0154592Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0158293Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0189565Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0242342Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0256350Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0271500Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0284747Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0288887Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0317946Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0335432Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0398341Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0399838Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0408063Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0417025Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0423110Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0503005Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0505139Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0536993Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0565585Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0566698Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0576607Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0611609Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0649370Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0653807Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0670515Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0684033Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0704998Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0716176Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0764024Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0765146Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0772413Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0796870Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0809349Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0843178Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0856184Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0883632Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0885206Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0921118Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0922307Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0953101Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0983121Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.0988125Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1016919Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1020240Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1039840Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1047819Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1093282Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1094347Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1108280Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1143202Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1156605Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1190033Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1197542Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1244940Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1267316Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1268637Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1295474Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1313529Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1324890Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1372578Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1394448Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1402407Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1410774Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1423188Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1467961Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1485362Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1492343Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1524616Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1549339Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1569799Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1602497Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1612458Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1625848Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1646277Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1670745Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1703820Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1754193Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1776342Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1780767Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1791189Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1793571Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1848312Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1854044Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1875505Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1896822Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1904196Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1922323Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1964634Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1974727Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1975945Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.1982483Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2018954Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2080774Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2105835Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2106989Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2108053Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2136237Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2158942Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2178599Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2202579Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2207144Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2211537Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2223105Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2241211Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2281963Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2287504Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2307350Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2311002Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2351839Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2370697Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2401217Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2402379Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2443487Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2462140Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2479126Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2483012Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2502113Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2550009Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2555162Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2566321Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2587480Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2606307Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2608233Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2609462Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2617913Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2645942Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2649430Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2657673Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2663929Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2687104Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2700931Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2713216Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2718035Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2751036Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2810703Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2817876Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2821911Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2831573Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2842475Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2852825Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2864890Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2873973Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2886513Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2895232Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2906128Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2911977Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2918532Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2920099Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.2944019Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3022374Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3033172Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3110707Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3147169Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3148755Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3208961Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3235310Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3271136Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3286258Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3289678Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3297523Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3316453Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3321318Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3331054Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3340891Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3351430Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3355105Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3369414Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3382452Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3384342Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3413166Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3426149Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3436310Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3455446Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3489214Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3518642Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3521195Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3549859Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3558405Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3566696Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3597103Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3612949Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3622610Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3626659Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3705013Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3731459Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3754355Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3762568Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3800667Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3807900Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3821110Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3838211Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3838952Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3852212Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3922132Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3923511Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3924979Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3928487Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3932155Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3959699Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3980992Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3984564Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.3998109Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4002598Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4015229Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4024484Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4032842Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4056991Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4063928Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4069515Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4076899Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4113481Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4119071Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4179451Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4189775Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4200907Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4210464Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4212963Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4230367Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4247577Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4256594Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4270157Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4296440Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4300766Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4310931Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4316427Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4366578Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4367758Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4384467Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4389067Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4425778Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4442521Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4451620Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4456081Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4497623Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4515391Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4516248Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4551252Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4568795Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4575555Z Completed 6.5 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4585175Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4611425Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4613976Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4622801Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4638427Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4676709Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4684269Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4703928Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4709651Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4727946Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4762810Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4769854Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4792971Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4811054Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4830278Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4831279Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4861146Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4868133Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4889958Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4908857Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4912818Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4935514Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4942998Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4955753Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4976784Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4981453Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.4995287Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5012023Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5025292Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5039491Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5049810Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5063533Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5068806Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5098951Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5108780Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5126178Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5153379Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5189272Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5209776Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5216854Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5245013Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5291876Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5307199Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5346382Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5347465Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5376132Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5424359Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5445355Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5454109Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5498063Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5504296Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5549210Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5559170Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5565847Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5577939Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5587799Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5604970Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5656586Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5669399Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5687753Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5710177Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5719429Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5721545Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5723590Z Completed 6.5 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5796857Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5802235Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5813078Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5825744Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5852205Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5859044Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5878955Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5911672Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5949404Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5961136Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5963791Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5968857Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.5978682Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6026161Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6063218Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6067057Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6068247Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6087780Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6098929Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6177508Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6178725Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6187803Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6193467Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6202214Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6209067Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6322087Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6323547Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6324840Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6326095Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6338083Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6356069Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6413688Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6433398Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6438662Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6449383Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6457932Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6494383Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6521981Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6533682Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6548412Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6587565Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6588765Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6609572Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6634451Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6635471Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6659743Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6665905Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6697123Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6722901Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6741942Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6767910Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6779415Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6784931Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6808740Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6823620Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6865267Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6900222Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6904973Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6914363Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6929018Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6962590Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6973510Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.6998018Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7012331Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7040487Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7078489Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7086584Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7087851Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7102077Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7158803Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7172928Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7200908Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7235379Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7239709Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7248331Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7280623Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7313924Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7330675Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7341951Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7374927Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7376651Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7377781Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7379393Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7451937Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7452953Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7475308Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7502521Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7503923Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7504780Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7563062Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7572505Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7595601Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7601982Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7613512Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7638985Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7673703Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7691069Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7705901Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7711173Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7712047Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7763984Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7778062Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7793409Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7800390Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7802235Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7877138Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7877898Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7885093Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7903899Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7906895Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7960867Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7965270Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7985030Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.7996832Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8018869Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8043494Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8047830Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8082306Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8141276Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8144419Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8179062Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8180613Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8189983Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8196515Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8229285Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8277292Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8296353Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8318122Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8328928Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8369673Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8383414Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8403824Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8418665Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8444209Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8445235Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8474530Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8521285Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8535476Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8547286Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8554047Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8568776Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8591796Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8660035Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8660947Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8665852Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8669762Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8677368Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8721029Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8806509Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8811332Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8824815Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8838238Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8847732Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8863173Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8930077Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8945822Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8961507Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.8986525Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9003628Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9020661Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9050992Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9055880Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9063138Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9092426Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9116463Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9120642Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9128726Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9166198Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9181143Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9191240Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9204675Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9233944Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9255911Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9258508Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9267268Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9317801Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9325821Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9331913Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9349441Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9420662Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9428158Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9436901Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9446899Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9448391Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9505281Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9526102Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9536145Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9554631Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9558926Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9568028Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9653707Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9655591Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9663380Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9665974Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9678122Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9683626Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9769457Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9774252Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9775686Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9787467Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9813935Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9818802Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9880363Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9881106Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9890097Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9923409Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9950083Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9977094Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9982610Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:05.9990039Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0008221Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0103597Z Completed 6.6 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0131187Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0190218Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0197520Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0203172Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0211179Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0287941Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0297109Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0331327Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0361025Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0371698Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0383587Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0384459Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0413575Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0456232Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0475352Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0476490Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0488061Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0520826Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0522083Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0586565Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0587644Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0591490Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0603534Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0626879Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0699233Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0747392Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0757464Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0758604Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0787791Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0792547Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0794175Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0888245Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0896635Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0899770Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0903036Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0909903Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.0935531Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1005863Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1008370Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1017323Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1031555Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1049597Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1059671Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1061227Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1099519Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1112193Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1149127Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1158815Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1164541Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1206018Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1210407Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1233114Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1234134Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1268782Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1288580Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1299360Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1332543Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1346136Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1368863Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1386155Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1402017Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1472435Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1510952Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1512344Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1550022Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1567127Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1574045Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1588094Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1630808Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1653618Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1660463Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1680538Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1730508Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1740041Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1745198Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1749389Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1765600Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1783416Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1820139Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1863929Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1875900Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1883549Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1905896Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1911300Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1928752Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1976178Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.1988362Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2006451Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2039488Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2048115Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2058919Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2081025Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2091069Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2124114Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2137066Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2144543Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2181150Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2199909Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2219495Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2241220Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2250326Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2268593Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2269906Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2314379Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2335141Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2360328Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2370092Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2376921Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2387092Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2402130Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2460625Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2477725Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2485711Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2511777Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2537260Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2547865Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2583658Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2598191Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2627628Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2628500Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2656795Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2661315Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2718853Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2727558Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2747132Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2751559Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2789841Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2803964Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2810752Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2853032Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2854029Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2887443Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2912015Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2920520Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2947426Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2950739Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2955334Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.2975436Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3019589Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3028903Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3040587Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3069317Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3090691Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3091827Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3124396Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3141047Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3153966Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3172247Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3185934Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3211467Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3223320Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3229830Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3285403Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3293479Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3300172Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3304311Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3335682Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3346011Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3378437Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3412076Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3425193Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3430740Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3443339Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3458207Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3464935Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3496153Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3523004Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3525239Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3560320Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3574438Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3583894Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3606770Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3641880Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3660486Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3670871Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3683407Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3711255Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3719283Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3732568Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3786577Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3799945Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3847452Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3851443Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3900269Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3916305Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3917371Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3955474Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3981010Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.3982326Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4059189Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4065462Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4115123Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4137677Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4161102Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4188486Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4189638Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4190778Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4243746Z Completed 6.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4269184Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4291276Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4298446Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4313611Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4324681Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4354068Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4393788Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4397780Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4430827Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4441471Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4457876Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4493611Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4494845Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4500456Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4527844Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4536334Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4559139Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4599531Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4602567Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4614561Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4632762Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4667002Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4690682Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4695028Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4702069Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4754134Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4782580Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4806812Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4807851Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4827720Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4851280Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4864661Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4909645Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4923275Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4932411Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4958161Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.4976373Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5007138Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5060291Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5065787Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5074292Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5080187Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5114535Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5115736Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5205253Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5206816Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5248185Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5260386Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5268307Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5287586Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5291091Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5305872Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5369257Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5385124Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5439479Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5459804Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5467708Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5478400Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5498299Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5516175Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5550904Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5578118Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5588984Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5601503Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5607925Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5623492Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5640400Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5665378Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5700108Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5706522Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5711112Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5733270Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5771617Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5799874Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5801122Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5811958Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5818224Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5864160Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5890595Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5908766Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5917186Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5920834Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5953131Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5957345Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5972376Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.5978017Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6010133Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6011233Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6037959Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6058746Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6084012Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6092283Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6107974Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6130269Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6137747Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6142758Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6192045Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6197565Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6203545Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6217580Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6228915Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6230972Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6244275Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6251311Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6269415Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6279288Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6289867Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6301293Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6309098Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6318466Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6342296Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6354901Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6374999Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6434333Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6447999Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6449396Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6476306Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6477712Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6488170Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6502133Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6534678Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6536024Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6558936Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6563556Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6570779Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6593448Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6652130Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6680652Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6685824Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6716950Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6727111Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6747597Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6761364Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6773471Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6776708Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6874036Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6876116Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6892364Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6899920Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6912236Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6921310Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6928429Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6960334Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.6981461Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7019963Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7033927Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7060207Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7087103Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7102366Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7115696Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7129093Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7131677Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7157899Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7164457Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7178442Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7183122Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7209367Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7217840Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7238048Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7254980Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7266959Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7274284Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7276242Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7284172Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7317811Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7330382Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7352851Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7372402Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7376441Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7381579Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7402260Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7415761Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7420341Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7435402Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7445568Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7455035Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7466754Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7492268Z Completed 6.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7540462Z Completed 6.7 GiB/9.9 GiB (126.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7604728Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7614428Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7628398Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7629570Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7655764Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7688313Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7696125Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7785018Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7808006Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7831901Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7850777Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7855956Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7886617Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7937165Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7948772Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7956015Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7965552Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7978110Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.7995022Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8006789Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8018562Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8047861Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8066224Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8094882Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8114386Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8126461Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8148487Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8217532Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8229343Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8281990Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8290595Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8301050Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8313760Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8316464Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8362310Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8371791Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8403097Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8404311Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8407334Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8434976Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8449780Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8494000Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8507580Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8517748Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8534070Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8538995Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8562966Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8577693Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8626692Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8631454Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8632461Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8656325Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8680787Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8709423Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8725997Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8731850Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8747413Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8767246Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8790589Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8819458Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8832977Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8841822Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8879182Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8888919Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8890717Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8940970Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8942174Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.8975004Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9014805Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9029344Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9035856Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9040900Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9049703Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9069189Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9105070Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9155925Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9157183Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9158410Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9170917Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9182038Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9186626Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9247421Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9248800Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9254319Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9268345Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9294245Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9301630Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9383164Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9384447Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9391900Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9397279Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9428774Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9444975Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9449991Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9486157Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9503817Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9534432Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9548695Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9565737Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9587984Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9594027Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9617232Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9638748Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9668485Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9678578Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9693323Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9698804Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9711884Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9737330Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9752136Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9822898Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9824111Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9849285Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9853616Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9854778Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9883197Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:06.9884460Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0018363Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0036385Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0045856Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0052067Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0066571Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0079376Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0171276Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0200374Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0203900Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0209726Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0210603Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0254012Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0299382Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0304440Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0320358Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0330817Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0341046Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0373959Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0414275Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0428121Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0439597Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0440515Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0446473Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0479093Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0531064Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0554097Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0560968Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0597697Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0613669Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0621805Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0672256Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0704568Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0724288Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0738463Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0743171Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0803883Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0812324Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0824853Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0853861Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0870215Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0871566Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0880707Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0910045Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0943912Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.0977639Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1018933Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1019971Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1036564Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1039935Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1094976Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1110700Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1116131Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1136281Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1155730Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1217367Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1222577Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1250110Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1262189Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1263604Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1267468Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1314272Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1351025Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1365801Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1383161Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1388130Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1444382Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1452285Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1491989Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1493891Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1509568Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1517656Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1533335Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1561749Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1608838Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1628501Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1629417Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1630108Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1653092Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1671692Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1713115Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1727000Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1737514Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1745026Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1774153Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1779818Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1817593Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1860291Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1861348Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1878552Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1881908Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1900833Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1908303Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1914903Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1979990Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1996690Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.1998130Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2019709Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2024100Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2025137Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2059149Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2128779Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2139568Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2140696Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2150038Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2161090Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2180945Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2190020Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2246569Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2273165Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2281884Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2297997Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2307128Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2325902Z Completed 6.7 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2333054Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2429340Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2433076Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2456946Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2467704Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2481945Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2490357Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2502191Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2563384Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2580794Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2601442Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2602502Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2608971Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2616631Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2683614Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2693171Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2704220Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2712093Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2719667Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2755444Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2761086Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2821027Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2823056Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2831701Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2833417Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2862177Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2874820Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2884333Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2915336Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2933826Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2963561Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2974331Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.2978545Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3027973Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3038451Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3051198Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3057945Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3078605Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3093881Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3138359Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3139760Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3159450Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3186180Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3197921Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3220326Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3237322Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3238041Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3280177Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3298776Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3310316Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3319660Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3337234Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3382956Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3385883Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3402121Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3414170Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3428682Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3429915Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3450934Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3514468Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3541641Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3543097Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3566679Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3585687Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3649855Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3656101Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3675358Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3687871Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3689530Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3701088Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3707196Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3761184Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3790071Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3791799Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3808842Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3819931Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3856820Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3884708Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3890849Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3900110Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3913105Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3971609Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.3986944Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4010399Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4012275Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4013342Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4074234Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4085208Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4094090Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4104233Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4130547Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4179439Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4206333Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4208467Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4209960Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4244097Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4261652Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4291335Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4316422Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4317317Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4318228Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4354994Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4411724Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4414170Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4418211Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4448332Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4468566Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4484124Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4505148Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4514953Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4530989Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4546909Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4580611Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4582550Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4637560Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4650260Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4659687Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4662947Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4697989Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4717808Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4782616Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4784010Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4795920Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4805754Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4828302Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4859937Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4876648Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4909828Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4918363Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4947040Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4969325Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.4996283Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5002879Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5030342Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5037576Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5067669Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5082052Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5088760Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5134560Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5136404Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5167908Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5190200Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5194406Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5211667Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5268834Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5289642Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5296692Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5305471Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5318802Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5327130Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5374687Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5408641Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5409789Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5421747Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5425076Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5429960Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5492780Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5502144Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5514805Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5533525Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5540496Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5547775Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5602587Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5633275Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5634352Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5646819Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5658089Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5688739Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5709045Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5729249Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5734021Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5743020Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5782044Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5811518Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5812899Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5828905Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5840265Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5859197Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5906201Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5911580Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5915411Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5930812Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.5950738Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6016248Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6024845Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6026090Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6053755Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6059690Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6145094Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6161271Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6222481Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6265296Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6267527Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6268338Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6269150Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6284831Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6297476Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6345087Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6360338Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6361455Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6387231Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6417753Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6441456Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6460786Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6473594Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6479778Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6504917Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6510315Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6517652Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6540038Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6580550Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6616534Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6633130Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6668177Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6672923Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6677665Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6705917Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6746423Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6761274Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6767536Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6775891Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6793420Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6844303Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6869638Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6870623Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6892395Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6908773Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6925817Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6964485Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6965826Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6970969Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.6993698Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7028775Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7033583Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7040030Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7076190Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7102240Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7130028Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7131333Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7132015Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7167891Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7172535Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7199366Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7216224Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7238467Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7245400Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7273758Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7336377Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7341466Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7391281Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7392175Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7405909Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7477156Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7504214Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7522318Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7532418Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7533570Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7560022Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7596151Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7610802Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7616564Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7633711Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7643425Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7664004Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7700575Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7732537Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7736832Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7751335Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7757776Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7776100Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7795059Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7849446Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7858182Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7870840Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7881861Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7888695Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7910666Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7919693Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7985628Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7992394Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7993851Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.7998239Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8008503Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8025588Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8057571Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8084280Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8112054Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8121515Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8128775Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8129945Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8147565Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8179350Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8213639Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8217026Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8226329Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8255298Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8261536Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8287909Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8294096Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8359023Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8380222Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8411275Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8418834Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8448407Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8449962Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8486079Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8490245Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8537570Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8563204Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8577989Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8593112Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8628378Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8640137Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8652787Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8658176Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8755927Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8769624Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8804364Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8805251Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8817291Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8850795Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8879401Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8894471Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8901326Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8920025Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8926089Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8940796Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8973072Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.8980568Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9014548Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9035661Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9057595Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9064150Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9084302Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9089673Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9111117Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9126014Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9190482Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9201339Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9211184Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9213129Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9227993Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9234684Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9239379Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9297184Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9322457Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9331806Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9344999Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9347287Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9353616Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9371810Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9420067Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9435170Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9450858Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9467274Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9478314Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9479527Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9520131Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9571032Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9577579Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9580911Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9583346Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9589812Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9641985Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9675855Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9687258Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9694688Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9708938Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9722156Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9733208Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9740722Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9810078Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9825138Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9847297Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9856037Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9866870Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9867806Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9876281Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9939556Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9943352Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9962139Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9973014Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:07.9987755Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0006592Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0047410Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0052600Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0068466Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0094776Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0099996Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0107503Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0152074Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0156203Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0174392Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0191717Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0206185Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0245789Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0262827Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0266061Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0281190Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0321406Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0359283Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0360161Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0368908Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0372490Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0424898Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0456565Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0465328Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0543499Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0597719Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0626523Z Completed 6.8 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0627682Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0628740Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0655607Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0664807Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0684485Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0685930Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0688404Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0695733Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0705506Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0819565Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0835686Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0855357Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0859245Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0889742Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0929011Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0945931Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0957554Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0985078Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.0990090Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1013721Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1037635Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1053968Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1074333Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1090804Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1109592Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1134320Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1141877Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1177079Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1184503Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1222100Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1225321Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1257765Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1304241Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1305204Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1339636Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1344548Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1365435Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1379624Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1386735Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1409119Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1433726Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1434633Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1451203Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1453506Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1550405Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1569981Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1577884Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1587114Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1628211Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1724982Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1759072Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1773963Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1823831Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1827729Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1839713Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1847864Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1856913Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1863857Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1889242Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1893258Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1922415Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1933737Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1956513Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.1981667Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2005490Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2006727Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2026116Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2038293Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2079576Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2087165Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2102061Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2106554Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2123159Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2152293Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2158615Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2164263Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2198352Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2216115Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2228239Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2235548Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2242221Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2262250Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2268501Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2289426Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2291199Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2311846Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2314649Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2321768Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2346114Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2357575Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2365316Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2379021Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2484341Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2491278Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2498088Z Completed 6.9 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2503781Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2514057Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2519020Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2524629Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2530790Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2539355Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2545794Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2552087Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2649373Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2657000Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2664834Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2670495Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2676759Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2687466Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2698053Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2706161Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2714130Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2722445Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2731057Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2737330Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2751449Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2761502Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2767267Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2775324Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2797604Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2821415Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2867511Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2875066Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2885098Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2886768Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2949047Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2961488Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2973938Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.2998034Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3015458Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3034464Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3051345Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3061249Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3101390Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3104338Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3133723Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3147246Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3164292Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3188627Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3197899Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3208237Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3221898Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3234660Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3243391Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3247843Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3278206Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3289030Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3382526Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3392227Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3399974Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3406542Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3413760Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3424664Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3432768Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3440154Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3447547Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3453357Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3567386Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3576728Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3585362Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3597589Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3606749Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3616049Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3624993Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3634832Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3644508Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3655795Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3659136Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3673780Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3684151Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3710024Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3719993Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3751610Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3797473Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3809055Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3826705Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3899380Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3906097Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3914714Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3931927Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3936094Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3973051Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3976815Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.3990657Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4016969Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4020813Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4029022Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4079141Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4102502Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4120132Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4124632Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4125915Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4160640Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4181841Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4191493Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4210648Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4232565Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4252954Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4260649Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4267465Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4311669Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4323353Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4340882Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4353176Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4373054Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4407548Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4409488Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4449260Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4469633Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4472883Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4546703Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4568050Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4569099Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4585974Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4619354Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4677279Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4678290Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4687820Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4712917Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4735325Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4752186Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4768076Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4775041Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4798561Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4805362Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4811736Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4833685Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4866710Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4910900Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4916668Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4929253Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4936992Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4947461Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4954184Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.4976265Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5006074Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5041216Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5075417Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5076960Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5078180Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5081615Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5100466Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5117263Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5164634Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5189735Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5205110Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5210653Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5218845Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5224734Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5241144Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5242321Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5307769Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5312403Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5334636Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5349129Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5350052Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5362810Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5428377Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5431505Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5456394Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5457600Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5458954Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5460004Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5523779Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5541210Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5561170Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5570331Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5575630Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5590504Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5661886Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5666707Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5680555Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5688383Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5716939Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5725836Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5779155Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5787336Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5823147Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5846205Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5853892Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5865083Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5870722Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5875454Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5907357Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5956420Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5961645Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5985438Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5989147Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.5996247Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6008833Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6058336Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6068775Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6082609Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6091348Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6117678Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6138678Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6140879Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6165441Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6196896Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6221749Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6240324Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6271098Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6282057Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6321563Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6369975Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6374933Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6389278Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6406645Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6419622Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6504195Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6525903Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6532437Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6564848Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6619121Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6646514Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6676641Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6678392Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6689714Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6738396Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6777091Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6786678Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6788589Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6809040Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6871834Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6883323Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6892876Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6910842Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6929477Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6990817Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6992142Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.6996507Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7040040Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7042531Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7099369Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7100550Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7103310Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7161276Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7163697Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7168547Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7175752Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7185172Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7248743Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7256023Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7264591Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7265690Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7273042Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7338368Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7340991Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7342132Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7355230Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7379878Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7404805Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7410691Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7436311Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7451381Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7483295Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7492311Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7498841Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7505148Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7523231Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7544185Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7596563Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7626682Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7644390Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7652786Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7688209Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7696357Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7706298Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7711549Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7721663Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7735604Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7755413Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7802077Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7810445Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7826365Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7847888Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7866732Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7873727Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7890883Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7956868Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7971382Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7979243Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7986700Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.7996354Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8000411Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8074976Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8091713Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8096588Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8097512Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8109018Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8133817Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8179227Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8192254Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8197022Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8246791Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8280489Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8286414Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8296448Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8301751Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8308606Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8352380Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8374200Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8378524Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8387274Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8401483Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8438794Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8453383Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8459136Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8471565Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8508635Z Completed 6.9 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8513050Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8521596Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8535736Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8580867Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8590633Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8592053Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8612832Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8641890Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8651166Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8691781Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8705861Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8716317Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8760421Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8785708Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8804200Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8812412Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8820204Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8863280Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8871544Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8936205Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8949466Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8961836Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8984307Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.8996428Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9007610Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9041264Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9046980Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9058870Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9119828Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9125000Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9151156Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9162299Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9165707Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9167237Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9175462Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9181926Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9218804Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9228309Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9252131Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9272276Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9318373Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9331700Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9337538Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9355268Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9380298Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9389889Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9410641Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9426805Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9441571Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9450393Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9471651Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9519968Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9528337Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9529546Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9546107Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9576442Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9630280Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9635883Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9636939Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9671886Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9676941Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9748399Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9761431Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9770094Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9794292Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9833956Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9854725Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9921161Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9944475Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9956510Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:08.9960827Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0024575Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0038812Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0069505Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0070651Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0088543Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0097571Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0122870Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0165577Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0176677Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0180595Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0199126Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0221434Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0267069Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0280524Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0319912Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0325614Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0333005Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0334141Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0414348Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0438389Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0455320Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0457123Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0477843Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0480136Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0486816Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0524201Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0553405Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0567560Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0599749Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0600808Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0609580Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0624789Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0670867Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0683717Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0707486Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0722128Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0738272Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0751980Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0778274Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0798459Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0821217Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0838991Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0843550Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0876133Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0883214Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0921781Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0944257Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.0957898Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1018792Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1035443Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1052029Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1065454Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1075763Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1118821Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1145661Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1156123Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1166340Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1179276Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1195128Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1211965Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1229870Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1235017Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1274151Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1294870Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1315775Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1327775Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1368507Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1369601Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1375645Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1383706Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1433093Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1434903Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1455754Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1474985Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1477827Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1491648Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1520996Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1570762Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1594230Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1596346Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1601785Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1612245Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1640909Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1656876Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1695593Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1755678Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1765302Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1768490Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1781632Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1807816Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1808959Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1834214Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1863999Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1895902Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1902539Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1908885Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1943689Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1958263Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1981867Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.1989939Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2015377Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2028976Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2035091Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2053573Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2086448Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2089560Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2093366Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2134384Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2157791Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2177085Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2192130Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2207098Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2209419Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2282130Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2289136Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2295229Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2306359Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2307274Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2334943Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2385279Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2398539Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2399616Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2430268Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2448116Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2449894Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2500608Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2510380Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2519145Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2544210Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2563488Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2587457Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2591461Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2649552Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2698150Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2722154Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2723642Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2741588Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2749217Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2782230Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2808897Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2816902Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2827924Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2873776Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2884240Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2917692Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2927995Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2941270Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2970255Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.2986261Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3012890Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3017088Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3070672Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3077923Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3087544Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3095212Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3131007Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3153998Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3161412Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3173415Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3227182Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3228483Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3275167Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3283940Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3312330Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3343058Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3351836Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3357498Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3374533Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3426370Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3443051Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3454205Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3458616Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3483868Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3498449Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3528222Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3529803Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3559209Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3567164Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3587729Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3609454Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3616285Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3628787Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3666563Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3674117Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3685431Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3718758Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3740001Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3754865Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3772790Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3778270Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3806655Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3823216Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3839294Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3860691Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3864597Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3890250Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3901478Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3906239Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3916817Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3924845Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3929098Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3936852Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.3943809Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4024930Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4027822Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4037471Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4057116Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4065688Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4073856Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4126389Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4127703Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4172801Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4176274Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4212117Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4213362Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4263343Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4286418Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4298443Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4318584Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4330660Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4393609Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4429256Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4438054Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4448411Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4449544Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4458818Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4523257Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4547913Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4567298Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4580411Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4581506Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4607300Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4618237Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4647944Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4652392Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4674733Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4691593Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4701626Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4711058Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4731306Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4733707Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4752361Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4775169Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4777867Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4788112Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4819826Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4829767Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4833424Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4839492Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4876287Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4891925Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4893774Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4927205Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4932235Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4938247Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4968102Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4973742Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4987800Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.4993401Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5018196Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5029884Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5118695Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5123155Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5221535Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5246290Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5270098Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5380375Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5409316Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5424445Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5433328Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5445003Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5446168Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5458858Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5467052Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5477650Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5487181Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5503317Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5505691Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5517649Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5527102Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5537563Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5583438Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5598510Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5631065Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5634907Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5662965Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5678183Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5696925Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5714338Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5759365Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5768301Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5787787Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5807364Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5811367Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5831272Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5849734Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5866712Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5873289Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5899476Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5904011Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5932331Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5941904Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.5953425Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6062969Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6204077Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6211755Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6273122Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6280456Z Completed 7.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6286540Z Completed 7.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6293887Z Completed 7.0 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6303595Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6311292Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6318583Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6331228Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6345096Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6355295Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6358801Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6370767Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6410282Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6419062Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6424863Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6431995Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6445376Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6454168Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6467426Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6478214Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6482797Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6498459Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6501641Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6523173Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6525673Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6534121Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6552067Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6563489Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6575378Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6605747Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6610550Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6649458Z Completed 7.0 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6672946Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6698233Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6719819Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6724490Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6754595Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6766190Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6793429Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.6846233Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7029656Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7145792Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7186950Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7195716Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7204632Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7209989Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7220948Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7227275Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7232782Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7249146Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7291464Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7298743Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7307680Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7354120Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7356830Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7380840Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7398073Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7426506Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7442502Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7480872Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7491664Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7505862Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7525742Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7531121Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7539822Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7553206Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7588463Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7605768Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7609304Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7644159Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7680243Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7685537Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7700827Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7705517Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7737130Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7747028Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7760549Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7781135Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7799696Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7828761Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7850140Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7868614Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7887663Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7900924Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7906278Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7941242Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7983831Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.7988233Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8014589Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8054862Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8055974Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8080545Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8105062Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8106325Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8196745Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8202432Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8204245Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8221551Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8224874Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8237034Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8303796Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8315879Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8319599Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8324922Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8368040Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8378927Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8402887Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8423012Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8440882Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8475448Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8479062Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8498246Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8519772Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8524155Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8551592Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8572916Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8574368Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8601451Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8630509Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8633123Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8649009Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8652408Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8710406Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8715143Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8734447Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8747031Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8766883Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8809827Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8815659Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8830081Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8837573Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8887522Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8896044Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8919221Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8949204Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8958521Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.8992965Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9030790Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9063590Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9077411Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9092562Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9131377Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9147622Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9154458Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9188635Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9219654Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9241300Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9243042Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9244674Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9267668Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9356044Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9363666Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9364826Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9369704Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9385651Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9412182Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9443285Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9451002Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9452994Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9467748Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9511498Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9541838Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9543182Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9555598Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9556313Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9610773Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9625739Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9631785Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9642544Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9643899Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9708699Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9765726Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9785569Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9797777Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9815732Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9838839Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9873217Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9892201Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9917967Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9919145Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9952934Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9980999Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9992179Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:09.9997208Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0018773Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0046343Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0077072Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0097460Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0106419Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0110733Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0179707Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0182117Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0191850Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0204115Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0205880Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0221023Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0300893Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0305691Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0308987Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0315470Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0329139Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0332578Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0419346Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0427727Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0439470Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0447136Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0450090Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0466022Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0514990Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0535358Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0562151Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0574283Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0575837Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0591646Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0605566Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0643352Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0653721Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0681807Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0685330Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0702408Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0703770Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0723610Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0753580Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0798855Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0813734Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0815022Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0819808Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0863465Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0882118Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0899310Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0909712Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0917770Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0937886Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0944321Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.0980421Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1009284Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1060036Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1061299Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1068987Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1115723Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1117150Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1140370Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1157204Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1162611Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1206544Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1219720Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1229065Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1250303Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1261136Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1290279Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1309118Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1333358Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1334675Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1375501Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1393561Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1415307Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1416789Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1423490Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1452091Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1466005Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1485099Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1491655Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1504368Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1513425Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1520255Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1576774Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1605064Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1617183Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1630956Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1678825Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1720103Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1777819Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1786817Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1807257Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1817023Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1835717Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1888742Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1890506Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1896783Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.1928164Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2000312Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2006200Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2033036Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2076928Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2107771Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2110103Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2176438Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2189057Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2197654Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2228267Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2245636Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2264546Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2265699Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2324032Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2327718Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2353514Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2354643Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2358444Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2365387Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2389543Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2400918Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2427833Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2429073Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2462231Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2477714Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2487757Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2557490Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2563282Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2608456Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2610698Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2613280Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2642312Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2653086Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2680434Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2686946Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2730777Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2746417Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2764149Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2770328Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2791704Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2813445Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2822848Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2838467Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2845753Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2864822Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2931633Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2969847Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.2984802Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3001206Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3010101Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3080930Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3085028Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3116457Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3125779Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3151642Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3163043Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3172851Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3178982Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3286171Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3294842Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3320504Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3327906Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3339476Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3348849Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3363259Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3374115Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3404929Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3412194Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3417422Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3425244Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3434563Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3439828Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3445283Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3447874Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3459648Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3473853Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3483646Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3489956Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3505796Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3515630Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3519583Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3528958Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3540357Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3555802Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3571744Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3577657Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3583465Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3608911Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3617699Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3629755Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3646570Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3658386Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3671936Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3679449Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3690392Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3709369Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3723525Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3729628Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3749163Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3757777Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3779743Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3788736Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3797000Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3817567Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3819562Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3825588Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3843663Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3849613Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3855146Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3860350Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3867770Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3874118Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3879974Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3888159Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3930830Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.3933328Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4038295Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4041172Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4098947Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4213304Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4226975Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4230779Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4242331Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4309121Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4321565Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4335019Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4343143Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4356013Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4365808Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4368952Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4378922Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4385236Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4420083Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4431550Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4441331Z Completed 7.1 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4446357Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4456418Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4480834Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4507052Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4518495Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4521028Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4536523Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4545643Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4565835Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4596111Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4607157Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4630207Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4653736Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4660738Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4684295Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4688647Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4693470Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4706991Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4719212Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4723501Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4735298Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4745525Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4757238Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4763643Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4774743Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4783051Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4788604Z Completed 7.1 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4795581Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4803076Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4809072Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4896181Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.4980106Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5057477Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5215894Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5223784Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5233993Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5240303Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5246868Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5254519Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5270219Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5271736Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5294021Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5297136Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5305594Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5334604Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5335744Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5345581Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5372069Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5374034Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5381318Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5424117Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5433503Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5442085Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5453761Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5456560Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5463508Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5490212Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5503761Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5511495Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5517379Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5544388Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5558568Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5564341Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5619859Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5626051Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5631880Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5666133Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5675977Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5679740Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5695228Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5696440Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5709870Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5711772Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5736601Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5741373Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5763420Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5776912Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5783579Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5796267Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5816764Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5822428Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5830889Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5836914Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5846691Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5855005Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5870761Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5883821Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5890716Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5903415Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5908553Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5917436Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5925950Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5931137Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5942423Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5946270Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5956783Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5961500Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5967152Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5974450Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.5977534Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6117925Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6124301Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6133428Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6182000Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6196820Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6224366Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6261116Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6287828Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6296762Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6299849Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6307642Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6347041Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6380942Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6393350Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6398054Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6428378Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6468183Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6476025Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6480240Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6537559Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6539528Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6588126Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6658017Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6668826Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6680320Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6689281Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6726220Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6727704Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6729910Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6741042Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6748033Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6762035Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6774895Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6796153Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6805422Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6808900Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6840369Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6847192Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6856880Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6880855Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6892186Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6903653Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6909702Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6918986Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6924820Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6936085Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6940242Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6949583Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6956553Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.6962012Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7107746Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7130879Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7150884Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7180828Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7237829Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7268582Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7303094Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7314520Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7374792Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7404899Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7583821Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7591628Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7595935Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7608795Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7618576Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7643488Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7654345Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7656766Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7670293Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7745907Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7751106Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7755478Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7760310Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7791993Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7831815Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7840746Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7883794Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7897649Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7963801Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7965982Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7968028Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7969389Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.7970537Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8000545Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8008645Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8011238Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8059577Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8061167Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8062267Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8069786Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8086015Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8094913Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8103614Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8177695Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8186626Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8189884Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8195816Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8244341Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8248514Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8263495Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8282093Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8283815Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8432180Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8437756Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8443985Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8449736Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8455804Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8461988Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8468737Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8476937Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8483733Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8492504Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8504398Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8511799Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8517786Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8533071Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8542324Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8568820Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8570178Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8580800Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8598357Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8607308Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8667738Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8669927Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8688616Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8697322Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8709825Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8778826Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8800701Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8847846Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8887115Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8931371Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.8947010Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9006259Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9074783Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9089150Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9093122Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9107032Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9126530Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9137193Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9156303Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9198254Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9201000Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9216942Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9251006Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9276121Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9286778Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9301354Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9329471Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9345448Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9369791Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9389388Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9399003Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9423359Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9442807Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9454706Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9487532Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9497500Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9505953Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9548075Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9599900Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9615495Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9617885Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9623253Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9646859Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9662437Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9702267Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9726374Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9738530Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9770613Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9778129Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9786158Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9794619Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9881835Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9895927Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9897096Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9903105Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9933636Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:10.9990016Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0026566Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0028973Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0030290Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0031469Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0063079Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0138164Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0143965Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0154347Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0167173Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0193828Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0194940Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0258370Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0262518Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0296187Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0299239Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0304466Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0318419Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0353898Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0372770Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0395443Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0412560Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0413901Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0427168Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0459817Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0478727Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0516914Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0540372Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0543812Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0558166Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0571170Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0603030Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0621030Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0631724Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0645890Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0658984Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0697275Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0711946Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0719016Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0729920Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0771322Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0790066Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0799925Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0815206Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0823530Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0874504Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0877253Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0892905Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0910982Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0924161Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0987920Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.0998002Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1007439Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1008568Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1027438Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1033631Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1038349Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1119988Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1121736Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1126596Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1128584Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1148674Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1187251Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1224541Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1240383Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1261851Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1278968Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1295151Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1327554Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1383768Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1384974Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1411412Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1433735Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1485396Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1487504Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1507836Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1541849Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1547016Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1553478Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1558020Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1605337Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1635384Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1646970Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1652911Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1658350Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1681690Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1687458Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1729284Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1762195Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1773444Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1774348Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1790664Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1809923Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1842574Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1871137Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1875320Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1893151Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1900862Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1903317Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1942172Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1962280Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.1969799Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2013147Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2032986Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2044857Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2058378Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2061056Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2070833Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2095510Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2134558Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2149282Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2162064Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2163162Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2167962Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2207346Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2245869Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2264183Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2283760Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2284714Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2314534Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2341820Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2385051Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2416951Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2429366Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2443384Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2476481Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2502020Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2522287Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2581608Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2584685Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2595452Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2632384Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2636925Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2649791Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2676880Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2687280Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2694773Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2733203Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2734991Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2768838Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2793424Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2800999Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2813867Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2833544Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2847769Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2875283Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2902353Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2903507Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2919051Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2938642Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2965830Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2974165Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.2982602Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3009842Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3037594Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3047142Z Completed 7.2 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3068207Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3075534Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3091981Z Completed 7.2 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3128574Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3165456Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3175959Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3193072Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3211056Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3215631Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3277475Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3290723Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3306060Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3321361Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3338867Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3365344Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3376156Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3416375Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3422894Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3448311Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3450015Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3495127Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3496559Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3514630Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3521428Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3555936Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3577539Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3589135Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3597294Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3659099Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3664692Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3669717Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3685658Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3697578Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3754294Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3765849Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3787158Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3788449Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3789665Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3817050Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3855458Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3867700Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3894312Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3900368Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3908924Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3929014Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3962375Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3989100Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.3992780Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4014511Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4054321Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4088793Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4092372Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4099506Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4193091Z Completed 7.3 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4247654Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4285802Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4290576Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4293155Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4304354Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4368691Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4412178Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4424753Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4431217Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4436982Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4446536Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4512168Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4518142Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4524582Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4583623Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4584805Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4615260Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4639076Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4647616Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4658775Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4702850Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4734316Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4765425Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4766806Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4790770Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4796377Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4803112Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4839197Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4858716Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4884007Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4905089Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4936217Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4937826Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4964863Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4979851Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4991571Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.4997479Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5030874Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5035259Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5068718Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5083185Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5094566Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5095820Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5125084Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5149079Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5158216Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5171387Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5208789Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5231637Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5247477Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5254755Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5262928Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5283510Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5294023Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5320613Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5357919Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5361830Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5379707Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5423100Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5453220Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5455194Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5464669Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5472141Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5511416Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5553220Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5557538Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5566501Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5571256Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5626997Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5637843Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5638950Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5639996Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5673748Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5695646Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5710270Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5720692Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5745069Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5769374Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5784633Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5791793Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5809976Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5852054Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5867726Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5885748Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5902151Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5930449Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5933737Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5959096Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5976999Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.5990747Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6028308Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6037321Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6053897Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6109831Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6116752Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6121555Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6141377Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6195509Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6203207Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6250356Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6269056Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6323686Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6330996Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6337815Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6345607Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6372588Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6409566Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6412023Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6434685Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6456401Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6461342Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6493567Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6495157Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6528032Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6540129Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6564241Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6571599Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6595799Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6634338Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6663100Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6675719Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6701327Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6727591Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6733192Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6762312Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6799209Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6800476Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6833210Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6842239Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6878373Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6899677Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6911817Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6926973Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.6975265Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7006323Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7019532Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7042616Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7052840Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7086350Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7093943Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7101423Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7136425Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7151852Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7170932Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7191244Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7199045Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7241322Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7274941Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7276254Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7287100Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7304776Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7366646Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7367937Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7374148Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7380641Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7406780Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7407992Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7437914Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7440369Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7486981Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7490166Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7510191Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7542289Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7543738Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7600251Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7611280Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7627855Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7638825Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7666376Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7700745Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7729144Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7729969Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7747626Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7811246Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7819105Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7843272Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7853603Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7856348Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7862165Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7910096Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7926794Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7942372Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7964061Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.7992072Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8003351Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8016897Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8032209Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8054498Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8079664Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8112969Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8120122Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8143707Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8158880Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8173514Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8199887Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8229503Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8243584Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8251139Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8264162Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8283400Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8310473Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8357664Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8358894Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8370617Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8384290Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8391516Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8418471Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8422967Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8440838Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8491463Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8505258Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8514315Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8524384Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8527749Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8550031Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8607369Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8613871Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8618890Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8639309Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8644779Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8726816Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8736515Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8738954Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8744508Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8756302Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8776378Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8846911Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8864238Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8889166Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8916924Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8918206Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8946050Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8952009Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.8997814Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9035191Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9060030Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9063325Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9076811Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9081187Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9124085Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9139106Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9163814Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9176031Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9196386Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9197666Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9241037Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9271101Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9272298Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9293056Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9294103Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9304596Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9405141Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9406168Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9435341Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9438941Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9440213Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9446898Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9543929Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9545878Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9557043Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9560840Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9566473Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9579964Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9628273Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9639791Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9650473Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9655896Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9659227Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9687282Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9748447Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9751532Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9761220Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9774806Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9784093Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9816718Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9835247Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9843589Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9853138Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9884644Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9902583Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9936757Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9944103Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9956808Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:11.9989456Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0010843Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0039822Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0053509Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0073343Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0094696Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0121785Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0157220Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0171209Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0207648Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0228779Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0252935Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0268306Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0273626Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0297233Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0349552Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0372021Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0393058Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0395795Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0439911Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0446816Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0477099Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0481239Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0508453Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0518117Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0545715Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0560197Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0583963Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0591260Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0663530Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0674161Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0706103Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0707052Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0716409Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0742161Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0764538Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0830072Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0841724Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0863446Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0864178Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0936891Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0959907Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.0970176Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1001430Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1002963Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1039749Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1047780Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1055748Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1120615Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1131262Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1152027Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1159148Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1173359Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1188262Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1200047Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1201231Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1253787Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1284181Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1285387Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1286054Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1333121Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1334259Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1352352Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1358534Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1394713Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1411216Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1431976Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1441235Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1475027Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1476452Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1486469Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1497901Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1539463Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1564944Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1567791Z Completed 7.3 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1593451Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1607516Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1617760Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1630928Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1670219Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1715673Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1716579Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1717692Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1721369Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1726417Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1744710Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1781561Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1809047Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1817588Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1845744Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1854378Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1865957Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1882602Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1905700Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1940117Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1946937Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1951494Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.1966804Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2011367Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2041860Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2048706Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2067782Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2090588Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2123781Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2144206Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2145162Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2150941Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2184510Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2211474Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2212606Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2223410Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2256714Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2258059Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2269356Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2298696Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2338041Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2355454Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2358115Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2370458Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2379355Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2382536Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2431770Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2453064Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2500551Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2515139Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2529166Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2534864Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2547481Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2588159Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2597455Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2631490Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2667646Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2676106Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2678178Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2684224Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2730764Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2766288Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2791486Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2805941Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2806997Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2807687Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2828888Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2898803Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2910320Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2937622Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2938756Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2948754Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2974522Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.2990754Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3020234Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3037014Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3047572Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3073460Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3082298Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3110904Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3145044Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3150282Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3194468Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3201605Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3217846Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3234424Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3251337Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3309845Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3311228Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3333666Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3356766Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3361365Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3368216Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3415599Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3433111Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3455399Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3460513Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3485539Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3492283Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3523694Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3546184Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3566744Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3600632Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3606216Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3633655Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3656374Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3657640Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3682818Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3707977Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3711117Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3725062Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3760366Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3809946Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3814429Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3817340Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3838285Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3856465Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3900892Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3902062Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3923072Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3940060Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3954621Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.3956493Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4011198Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4028896Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4040082Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4062951Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4073439Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4118213Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4138906Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4166398Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4179665Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4198293Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4202128Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4251599Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4266644Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4275424Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4324375Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4330740Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4362424Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4390123Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4417083Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4418266Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4435656Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4442417Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4496466Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4514109Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4539762Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4554707Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4571957Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4582607Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4627720Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4645377Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4663913Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4695743Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4700913Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4710524Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4734634Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4744130Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4778073Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4786772Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4797005Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4829528Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4878767Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4881050Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4883685Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4888121Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4900053Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4944063Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4965868Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4989030Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.4997918Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5001823Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5014908Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5051387Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5069325Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5077391Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5099011Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5121547Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5134162Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5165308Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5175902Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5181331Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5203347Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5205631Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5234170Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5248431Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5286337Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5287338Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5341457Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5343372Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5391487Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5407986Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5431188Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5438243Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5462507Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5473706Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5526505Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5537905Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5553984Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5558810Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5590693Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5626958Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5645330Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5657395Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5683479Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5693285Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5708768Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5728004Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5764085Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5774104Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5805798Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5827365Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5834535Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5854620Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5856618Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5915584Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5916901Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5934153Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5940495Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.5950701Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6019332Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6039746Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6043558Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6044932Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6049994Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6113456Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6122419Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6136109Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6142310Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6157973Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6206117Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6236060Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6237485Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6238857Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6254991Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6293261Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6310672Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6322022Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6343594Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6355077Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6412875Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6423367Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6479102Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6495552Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6527181Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6551278Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6628802Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6643557Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6667029Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6708284Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6724594Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6755215Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6756604Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6780983Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6799414Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6814749Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6852553Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6854136Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6865809Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6908821Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6918023Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6937541Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6958836Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.6972097Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7020086Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7021309Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7110328Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7122499Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7191856Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7206865Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7207980Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7209077Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7230538Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7263067Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7285838Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7296112Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7303438Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7324833Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7330146Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7373297Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7392226Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7409775Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7421409Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7429698Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7430598Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7487313Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7491372Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7506675Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7521641Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7536577Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7544292Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7558864Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7604913Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7627300Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7632210Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7640337Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7656798Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7673340Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7688101Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7740408Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7745032Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7765892Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7806426Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7817327Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7829349Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7839636Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7885443Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7888121Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7894172Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7903575Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7918685Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7939182Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7967208Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.7980812Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8022240Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8032832Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8034064Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8035821Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8052017Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8078778Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8091006Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8124697Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8131148Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8165710Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8170101Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8173783Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8175698Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8210029Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8263401Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8273471Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8275974Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8311307Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8315767Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8341867Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8343944Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8350024Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8405891Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8436361Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8447163Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8454240Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8473298Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8481521Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8504016Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8520732Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8564961Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8585036Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8618150Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8632545Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8633654Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8636861Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8661090Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8705625Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8722804Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8738531Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8759625Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8778294Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8785134Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8796253Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8827323Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8849219Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8862019Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8887187Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8891297Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8940033Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8952282Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8954351Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.8989751Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9000350Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9005632Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9023760Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9063471Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9074931Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9103357Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9107646Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9108819Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9140794Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9141997Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9199921Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9213907Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9223647Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9234602Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9243843Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9278732Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9285535Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9336043Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9389790Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9404861Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9419610Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9421870Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9437085Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9501815Z Completed 7.4 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9526923Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9557822Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9604612Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9615202Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9617242Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9665949Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9709798Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9723490Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9769083Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9796244Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9805966Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9823059Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9836114Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9853927Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9891330Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9901805Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9916660Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9925462Z Completed 7.4 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9935859Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:12.9975860Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0012000Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0014755Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0028709Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0042940Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0065541Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0111203Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0115309Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0120771Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0127461Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0166363Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0188826Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0202593Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0206588Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0254046Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0268076Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0287496Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0288772Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0307477Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0360225Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0362346Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0374146Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0386471Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0402153Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0445402Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0458396Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0474326Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0481878Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0486121Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0559720Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0560910Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0561940Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0563291Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0566147Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0633733Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0652450Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0671017Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0679807Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0720785Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0733513Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0743399Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0756690Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0809705Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0814408Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0838361Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0857613Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0888116Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0891372Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0904713Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0988604Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0994086Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.0995486Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1023018Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1054675Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1132132Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1133547Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1177190Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1210409Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1233704Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1234856Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1251911Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1330622Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1334967Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1343990Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1345387Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1347533Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1375779Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1443288Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1444686Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1459439Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1474341Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1479639Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1490085Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1561341Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1566900Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1583311Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1593432Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1615693Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1631013Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1682390Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1697413Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1704145Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1712194Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1719124Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1785550Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1791055Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1822999Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1846635Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1882346Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1883739Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1897059Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1912273Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1920551Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1948943Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1977912Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1990496Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.1998228Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2019862Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2032342Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2085700Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2093357Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2098954Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2105720Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2113580Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2160249Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2182585Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2189139Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2201410Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2231549Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2237761Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2293392Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2307535Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2316686Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2334845Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2348501Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2367602Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2404782Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2406105Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2455469Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2474716Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2480808Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2543171Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2576576Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2577753Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2584721Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2595551Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2658314Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2663446Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2665167Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2665972Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2673672Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2715470Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2737774Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2742293Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2766688Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2771331Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2817795Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2825806Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2830546Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2844868Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2861811Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2887005Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2890626Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2908313Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2939766Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2950291Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2976426Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.2981519Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3004745Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3033047Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3040538Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3068970Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3083745Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3096351Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3114281Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3136097Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3200714Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3208686Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3214112Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3238888Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3250023Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3286551Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3287743Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3318203Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3318924Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3354545Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3368729Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3404371Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3411761Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3428083Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3442973Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3486696Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3524181Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3537798Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3575644Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3587026Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3616805Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3639488Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3645974Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3656456Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3692526Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3704617Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3737838Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3756318Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3757681Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3778800Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3825412Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3837472Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3875599Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3899949Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3913129Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3930107Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3949554Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.3994726Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4005118Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4033888Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4038680Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4083111Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4088844Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4090237Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4116589Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4137296Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4154979Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4183456Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4190689Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4211197Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4229496Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4246223Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4247322Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4256920Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4303524Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4313904Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4334035Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4351932Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4358279Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4363483Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4420095Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4448196Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4453540Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4461408Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4466708Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4471977Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4516909Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4536261Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4560752Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4563547Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4592425Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4611611Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4629956Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4659213Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4673566Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4711276Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4712575Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4720885Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4757223Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4765125Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4804756Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4816859Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4822045Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4845290Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4879221Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4890013Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4903222Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4909059Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4926458Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4948701Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4968056Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.4997313Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5026102Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5027042Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5032350Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5044333Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5087486Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5133948Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5135158Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5143118Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5145988Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5157092Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5179501Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5228086Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5232501Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5258828Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5262961Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5292296Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5318015Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5336267Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5408382Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5409747Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5435265Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5462247Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5463534Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5487155Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5493971Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5545280Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5568482Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5589104Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5604354Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5608774Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5638496Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5644289Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5664492Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5702022Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5716657Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5735399Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5747166Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5757706Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5816235Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5820674Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5851084Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5880706Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5889513Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5890635Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5964935Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5971068Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5974018Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.5982912Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6034482Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6035232Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6088919Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6115769Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6117423Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6154780Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6163300Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6169922Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6209386Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6221430Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6245410Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6246604Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6257806Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6303878Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6304728Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6338961Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6351074Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6357699Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6373677Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6416453Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6419630Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6440976Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6459099Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6467460Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6510610Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6511836Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6542464Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6543739Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6558094Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6588731Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6629315Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6632266Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6633604Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6638118Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6665765Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6686132Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6706416Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6729592Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6740585Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6745165Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6766699Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6810813Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6812138Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6837684Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6845288Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6846184Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6912891Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6914286Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6930181Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6937436Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6941067Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6954841Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.6986951Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7032231Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7071084Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7104234Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7106188Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7175324Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7177109Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7180267Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7187786Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7212186Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7244903Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7246918Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7250590Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7258285Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7303910Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7319308Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7337627Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7399804Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7409198Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7416178Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7419478Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7432222Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7450628Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7465821Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7503448Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7518963Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7541772Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7553330Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7590406Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7605111Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7664001Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7697663Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7700977Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7706439Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7713364Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7715727Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7781611Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7809756Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7821579Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7826510Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7841201Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7875274Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7888498Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7910789Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7926589Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7927356Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7975004Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7976296Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.7990473Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8016473Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8023454Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8063086Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8075338Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8092076Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8102925Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8110149Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8131781Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8145322Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8158673Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8176940Z Completed 7.5 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8179564Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8188148Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8238560Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8313849Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8326529Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8329591Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8347860Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8375175Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8409733Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8414550Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8422377Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8431646Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8436281Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8453217Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8465374Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8476276Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8484148Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8488301Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8506219Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8513383Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8520345Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8532583Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8534625Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8656002Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8674617Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8769465Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8839657Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8844512Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8879122Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8889117Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8898630Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8909951Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8941892Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8943126Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8944258Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8945516Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8948407Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8957822Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8967459Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.8991390Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9002286Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9003870Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9039918Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9083693Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9119444Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9289508Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9295414Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9301630Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9309492Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9341403Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9351556Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9360858Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9370998Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9374788Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9380987Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9394186Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9402880Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9413192Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9434139Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9443673Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9452615Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9483423Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9505613Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9580484Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9583801Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9592586Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9603066Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9610135Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9616397Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9621526Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9629888Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9639315Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9646259Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9655617Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9699673Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9758446Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9783897Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9786301Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9809372Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9815215Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9826559Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9850234Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9858398Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9868372Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9874664Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9876023Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9887819Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9893965Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9908434Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9917668Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9925437Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:13.9970973Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0007026Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0020146Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0027368Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0035054Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0040471Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0045319Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0052133Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0057732Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0064134Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0069878Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0075885Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0081637Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0212193Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0219915Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0229219Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0325734Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0331636Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0341687Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0345911Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0369260Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0371332Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0383273Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0406851Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0409991Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0421128Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0427022Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0441536Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0449535Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0455233Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0461546Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0470088Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0480068Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0487897Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0520615Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0535965Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0538547Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0565250Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0572068Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0578647Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0585723Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0592179Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0599202Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0606567Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0613071Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0619121Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0651703Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0679759Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0713022Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0735203Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0761861Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0764882Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0773155Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0780584Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0786535Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0801732Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0805864Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0822046Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0823552Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0841117Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0844951Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0857191Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0864149Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0868944Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0877662Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0883988Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0914783Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0925031Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0933623Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0944043Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0958042Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0964054Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0969418Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0975302Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0980556Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.0986170Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1030049Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1037109Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1044047Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1050316Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1058045Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1065651Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1072459Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1078658Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1084827Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1090529Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1200345Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1229390Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1234185Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1247302Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1255895Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1275260Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1279348Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1310972Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1327857Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1353515Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1371547Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1399954Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1445283Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1450819Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1477462Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1485694Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1493231Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1500720Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1508355Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1527902Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1534779Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1540807Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1547074Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1576544Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1638319Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1662004Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1671913Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1675359Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1682854Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1690125Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1706656Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1727840Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1743780Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1763698Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1788407Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1810014Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1824199Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1833116Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1842068Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1848234Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1928047Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1936537Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1944791Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1953123Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1959057Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1975152Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1979728Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1991496Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.1999204Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2004202Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2014753Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2017358Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2030012Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2033453Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2043800Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2051090Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2056717Z Completed 7.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2101298Z Completed 7.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2135283Z Completed 7.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2149665Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2186718Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2210212Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2239168Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2255534Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2273150Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2320762Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2353286Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2356136Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2396439Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2582143Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2594004Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2598211Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2608880Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2614558Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2623259Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2640177Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2656875Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2664091Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2671475Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2684216Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2694841Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2705466Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2726061Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2727829Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2746434Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2765492Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2768461Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2775009Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2784940Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2796224Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2803854Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2826788Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2846141Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2854888Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2863737Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2872399Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2889080Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2900938Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2915927Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.2929911Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3004153Z Completed 7.6 GiB/9.9 GiB (126.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3033369Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3059778Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3069926Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3494111Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3514907Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3524740Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3536215Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3543123Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3555427Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3561223Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3583094Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3660452Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3667156Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3673510Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3684078Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3689639Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3695731Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3708020Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3710171Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3726120Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3741674Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3749196Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3770688Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3779007Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3791137Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3796176Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3804022Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3811020Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3828057Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3945381Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3956552Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3968530Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.3976406Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4372167Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4399968Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4406855Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4415100Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4422228Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4435332Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4440870Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4452179Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4464329Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4468326Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4481635Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4488490Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4495051Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4503511Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4507067Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4512077Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4534835Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4540135Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4545508Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4550975Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4556648Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4562086Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4567475Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4573033Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4582591Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4584829Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4607894Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4610652Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4622810Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4637782Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4639826Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4652819Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4659975Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4686443Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4690853Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4702876Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4709817Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4718281Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4724979Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4732090Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4845773Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.4879105Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5146717Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5160066Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5166881Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5181781Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5182886Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5188095Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5203490Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5209299Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5219221Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5224941Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5236243Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5246804Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5252045Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5264250Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5286353Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5289980Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5307972Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5323496Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5340995Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5381186Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5395578Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5398543Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5436033Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5445237Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5449652Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5471508Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5474503Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5480243Z Completed 7.6 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5486887Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5493218Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5499776Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5508010Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5513674Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5520917Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5535336Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5564975Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5577675Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5584892Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5597280Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5607023Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5617005Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5625314Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5635132Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5646476Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5652575Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5662811Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5675619Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5682484Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5688378Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5701547Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5703207Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5717255Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5718726Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5741623Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5755009Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.5762010Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6041503Z Completed 7.6 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6050536Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6068478Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6073496Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6103815Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6111756Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6116726Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6143665Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6158548Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6175643Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6176653Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6177330Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6185879Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6217009Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6267091Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6279204Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6280221Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6319901Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6325002Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6344963Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6351775Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6375292Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6407646Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6418623Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6434079Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6455539Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6481651Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6490399Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6491534Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6497295Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6522417Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6557261Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6590894Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6624147Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6648150Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6663061Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6677174Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6689291Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6750524Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6772345Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6773775Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6788173Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6805673Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6818657Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6828236Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6829339Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6867653Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6878058Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6907162Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6941222Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6957960Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6962223Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.6994400Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7011348Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7022802Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7039884Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7068913Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7074748Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7107621Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7126386Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7129750Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7149596Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7173272Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7175865Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7181484Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7214924Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7261684Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7268102Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7273525Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7283860Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7342957Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7343711Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7387220Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7396866Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7400975Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7411941Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7423438Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7451213Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7458149Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7501232Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7525441Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7549981Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7553221Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7556221Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7558946Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7601623Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7606578Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7678533Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7681984Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7690971Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7694320Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7695798Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7703028Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7735954Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7769578Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7778388Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7816554Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7822837Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7829037Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7834604Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7893823Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7903569Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7978535Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.7980787Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8022772Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8044733Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8091351Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8113041Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8149030Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8159194Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8171644Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8188251Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8218497Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8234512Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8243495Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8260873Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8273112Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8284469Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8337541Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8341630Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8361739Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8364594Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8380047Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8389358Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8438381Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8463214Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8478740Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8489416Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8506219Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8507284Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8565505Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8578793Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8587162Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8599880Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8601367Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8615199Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8660591Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8671747Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8673715Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8675241Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8704986Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8710951Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8721463Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8748413Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8753074Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8760204Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8803054Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8805488Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8811444Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8909313Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.8950382Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9007990Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9075498Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9107188Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9125170Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9181130Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9183504Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9195311Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9205938Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9216951Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9223434Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9239244Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9243282Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9253304Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9260328Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9267836Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9274229Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9296910Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9302785Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9331323Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9355872Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9403145Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9444917Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9467523Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9493937Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9555560Z Completed 7.7 GiB/9.9 GiB (126.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9560314Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9613358Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9639339Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9648761Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9653125Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9682046Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9735561Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:14.9924352Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0060570Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0122830Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0131547Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0144100Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0153411Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0159651Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0168451Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0178146Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0188724Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0198291Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0207199Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0217094Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0271784Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0397256Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0519483Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0561496Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0599442Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0619681Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0656180Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0739740Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0746546Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0752475Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0758510Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0765782Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0772331Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0780884Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0789892Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0807958Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0816113Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0847528Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.0983887Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1004146Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1041696Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1051558Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1063016Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1095419Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1197094Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1198483Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1219503Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1220404Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1246492Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1247967Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1259964Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1263344Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1273476Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1297673Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1314110Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1334257Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1338443Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1356278Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1359875Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1372297Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1379673Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1388893Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1396948Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1406963Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1414349Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1421362Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1426339Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1432504Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1438085Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1669733Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1671305Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1673514Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1679412Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1688607Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1701156Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1707722Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1713663Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1726175Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1733989Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1744419Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1946388Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1962364Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.1970509Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2029468Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2036389Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2043124Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2048838Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2053538Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2058888Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2064278Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2069368Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2076716Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2083027Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2084506Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2108886Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2119981Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2145449Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2163371Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2187584Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2203403Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2240841Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2249988Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2261559Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2276194Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2281884Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2292782Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2313868Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2318167Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2332607Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2339001Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2345533Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2355354Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2377626Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2392560Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2420311Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2422998Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2424014Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2430155Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2437524Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2445420Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2453622Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2462028Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2471194Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2588150Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2593657Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2600604Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2608182Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2614546Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2622248Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2628910Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2637023Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2640145Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2646664Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2653666Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2956843Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2972428Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2988320Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.2996552Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3021948Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3023361Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3046807Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3054691Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3133880Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3141699Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3159207Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3201140Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3207317Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3231337Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3237015Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3241207Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3263467Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3291709Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3299097Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3307871Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3352817Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3376397Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3387763Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3396506Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3417305Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3420374Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3426629Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3452563Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3459820Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3468177Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3479739Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3484262Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3502888Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3515645Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3527559Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3534546Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3569286Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3580180Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3591457Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3600674Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3628684Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3629896Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3648863Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3680181Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3686999Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3698837Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3708676Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3714495Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3719717Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3725736Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3731334Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3737166Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3742451Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3747970Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3753810Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3895399Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3899611Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3913648Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3922037Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3928846Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3947684Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3961354Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3972926Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3984313Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3990021Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.3997741Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4004529Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4017128Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4080863Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4085530Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4133400Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4139814Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4161145Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4168189Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4200994Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4219522Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4242448Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4269133Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4299056Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4333584Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4373525Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4377078Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4390153Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4394720Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4404604Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4413145Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4420420Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4427012Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4433400Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4439717Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4443641Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4453691Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4462037Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4494728Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4592337Z Completed 7.7 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4643096Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4653858Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4663682Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4667719Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4676962Z Completed 7.7 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4693807Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4701781Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4709034Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4716026Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4724375Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4730077Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4807988Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4821678Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4837239Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4868545Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4885325Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.4899597Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5075617Z Completed 7.8 GiB/9.9 GiB (126.0 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5143784Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5214970Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5285876Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5304156Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5320872Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5329185Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5333309Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5341328Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5353489Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5363062Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5371076Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5378926Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5385583Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5534306Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5656378Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5662190Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5668507Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5673955Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5679457Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5695510Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5701331Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5707474Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5767627Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5778164Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5788894Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5797376Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5807667Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.5814886Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6058299Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6202366Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6220524Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6257256Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6269441Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6277466Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6285247Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6292501Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6303400Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6307190Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6317885Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6319286Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6332477Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6338644Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6341998Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6353585Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6358559Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6368567Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6371533Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6377581Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6383701Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6396149Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6461538Z Completed 7.8 GiB/9.9 GiB (125.9 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6576752Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6661826Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6670912Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6677984Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6686698Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6693869Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6700875Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6708020Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.6715130Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7121889Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7147568Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7159727Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7245779Z Completed 7.8 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7253496Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7260755Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7267451Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7684173Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7691739Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7699512Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7706552Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7713755Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7720886Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7728088Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7735042Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7741891Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7748811Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7856434Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7952848Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7960617Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7977242Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7981952Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7985305Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.7993180Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8001195Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8007956Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8014590Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8040444Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8155202Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8171020Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8178247Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8185433Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8190323Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8196915Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8202506Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8207561Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8211991Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8216740Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8221225Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8281693Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8585615Z Completed 7.8 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8593981Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8601600Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8609352Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8617117Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8625014Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8633289Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8639918Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8647873Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8653647Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8749395Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8755329Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8886317Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8893592Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8900476Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8907436Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8914595Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8920912Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8929030Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8936621Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8943100Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.8957431Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9068569Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9078913Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9087704Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9093294Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9108556Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9115293Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9126917Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9138121Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9143956Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9156967Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9167013Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9199637Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9205429Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9211529Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9218518Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9225595Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9489052Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9491730Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9509040Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9514874Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9529080Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9530240Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9541084Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9553403Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9557634Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9569351Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9576220Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9589190Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9595367Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9605523Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9614923Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9625420Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9632145Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9648742Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9666648Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9802902Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9812565Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9820814Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9829733Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9839185Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9847944Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9856903Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9864860Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9872292Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9879557Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9887292Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9958537Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9975559Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:15.9989366Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0014370Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0045116Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0062397Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0066036Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0102409Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0128894Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0134484Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0139518Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0374569Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0394276Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0401709Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0415584Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0419461Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0428389Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0449184Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0461457Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0479187Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0496491Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0516199Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0532577Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0543200Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0553072Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0559989Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0584140Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0720252Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0733210Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0855332Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0871254Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0887161Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0913384Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0941853Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0962970Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0974966Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0983337Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.0989484Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1003784Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1037049Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1046702Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1053623Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1322002Z Completed 7.8 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1337835Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1348406Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1407280Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1413931Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1420031Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1426926Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1439466Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1444595Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1457047Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1469222Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1479302Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1482831Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1489158Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1495314Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1521146Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1524115Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1535839Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1542025Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1547646Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1729880Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1741747Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1758149Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1772488Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1791954Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1802326Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1811680Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1813922Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1826055Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1841672Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1848343Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1870722Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1876666Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1897971Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1921357Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1922830Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.1923831Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2239541Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2254551Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2273802Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2384722Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2393327Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2399743Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2406315Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2413967Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2421182Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2429320Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2436274Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2656654Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2673480Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2681903Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2699563Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2708600Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2717593Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2725509Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2740065Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2764622Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2776790Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2788808Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2799941Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2806626Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2811907Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2823470Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.2828987Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3079704Z Completed 7.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3091744Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3098826Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3108620Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3114920Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3121202Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3128172Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3134169Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3140339Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3146746Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3153475Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3276914Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3285562Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3292921Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3300659Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3308802Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3577370Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3607401Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3608989Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3623575Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3627490Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3634764Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3651409Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3655451Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3683718Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3687442Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3701817Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3706384Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3720555Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3722437Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3729486Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3746633Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3747794Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3754970Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3765967Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3773760Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.3779503Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4004211Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4023986Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4028293Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4042230Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4054663Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4065206Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4073545Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4078965Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4084809Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4090112Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4095869Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4101644Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4107191Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4477736Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4505184Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4511667Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4523057Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4530040Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4535342Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4558847Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4577024Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4584759Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4614215Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4626262Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4642450Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4651823Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4668662Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4674470Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4686578Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4688037Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4718961Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4719878Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4743648Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4757780Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4764607Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4776116Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4782532Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4795374Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4811923Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4822126Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4828217Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4836796Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4841870Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4851559Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4857059Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4866669Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4871812Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4943813Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4962835Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4981215Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.4997093Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5008313Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5015647Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5022318Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5030983Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5037726Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5043134Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5425966Z Completed 7.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5432528Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5442860Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5456813Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5462531Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5485913Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5507240Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5515375Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5547483Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5555253Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5556332Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5592928Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5604680Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5648069Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5651335Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5673746Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5703848Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5706847Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5718307Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5744074Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5758501Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5777931Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5792266Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5800676Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5814039Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5820785Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5854940Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5857072Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5895612Z Completed 7.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5913202Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5929651Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5940506Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5971228Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.5999186Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6008260Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6017440Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6018697Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6032030Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6044300Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6060345Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6064061Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6070016Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6075194Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6091738Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6095319Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6105044Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6111945Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6117972Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6123566Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6129749Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6135405Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6317119Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6322112Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6364005Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6366247Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6373566Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6379716Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6392120Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6395467Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6404425Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6410848Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6428425Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6430066Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6439784Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6472430Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6511131Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6564302Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6581934Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6620378Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6666756Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6692948Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6700049Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6714310Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6734293Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6745720Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6778269Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6796851Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6839597Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6859304Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6897644Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6928278Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6934259Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6951137Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6968360Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.6981164Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7019687Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7030431Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7037226Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7048868Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7072994Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7074890Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7085967Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7105808Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7112581Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7119073Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7139559Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7147790Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7154961Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7162500Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7205154Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7217636Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7230307Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7236977Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7253393Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7257341Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7285814Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7293507Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7307579Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7313347Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7325563Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7342829Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7344927Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7361210Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7402288Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7485805Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7524265Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7596937Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7651031Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7675529Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7708879Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7748803Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7779195Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7843512Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7910711Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7957077Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7998274Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.7999563Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8001719Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8019675Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8026176Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8036505Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8050201Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8063218Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8070492Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8106522Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8122134Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8136077Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8146791Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8156603Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8166246Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8168900Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8184096Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8189212Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8202406Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8212071Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8213640Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8222158Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8257913Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8265896Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8273143Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8279247Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8284322Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8490887Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8496553Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8502176Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8509664Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8516369Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8524663Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8535075Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8539929Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8546213Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8551937Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8653171Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8700925Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8708170Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8713336Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8719915Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8728627Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8739860Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8751389Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8753042Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8762219Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8769820Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8777094Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8784360Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8834804Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8856904Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8903185Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8935758Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8964647Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.8994088Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9020599Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9040156Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9052253Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9060455Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9067921Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9087117Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9095077Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9105226Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9115600Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9121281Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9140808Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9178181Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9189031Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9197503Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9205552Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9211587Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9217431Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9223699Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9393452Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9398986Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9407831Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9420181Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9423906Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9430140Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9436827Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9443580Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9450502Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9456345Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9476278Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9627716Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9637030Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9645113Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9653174Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9662369Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9676825Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9693182Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9708950Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9716704Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9721750Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9739605Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9770571Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:16.9799474Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0099957Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0107480Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0115659Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0123248Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0129038Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0134995Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0145638Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0204171Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0209479Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0215249Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0221839Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0228260Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0235928Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0241645Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0256775Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0261899Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0267586Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0288032Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0302604Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0312090Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0319705Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0329450Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0340431Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0346988Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0357035Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0371280Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0388769Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0396504Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0406369Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0408948Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0421641Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0427612Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0437124Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0444066Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0451721Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0456291Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0553749Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0564743Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0570670Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0577319Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0585132Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0605722Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0626259Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0635722Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0642436Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.0649241Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1019787Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1026289Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1032794Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1041106Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1047785Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1053878Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1059020Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1085543Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1119929Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1126946Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1134237Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1141229Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1148590Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1155958Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1161340Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1173782Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1183371Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1198536Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1221358Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1228209Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1244896Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1248968Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1255280Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1265210Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1270340Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1299966Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1311222Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1331153Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1333652Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1355188Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1377721Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1380905Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1392277Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1399464Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1401971Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1408831Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1424498Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1429474Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1445209Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1449426Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1455799Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1467020Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1487687Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1499650Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1507666Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1919516Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1926784Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1935175Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1944243Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1952211Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1959998Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1970204Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1978248Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1985837Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.1993800Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2038860Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2046269Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2053217Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2060521Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2067706Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2074729Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2084706Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2094864Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2118078Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2123527Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2138806Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2161989Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2163147Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2174114Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2194999Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2196982Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2224396Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2225507Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2236250Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2255832Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2258830Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2277968Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2320957Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2321948Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2339789Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2357492Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2368866Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2378998Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2380266Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2411630Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2455719Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2457036Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2460081Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2461262Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2462356Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2484103Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2488279Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2505044Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2530437Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2544793Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2551163Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2557320Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2563760Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2569564Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2575704Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2581700Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2587624Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2593623Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2813131Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2822420Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2829672Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2836215Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2845286Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2852003Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2861206Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2870273Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2877873Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2885015Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2956087Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.2961754Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3003697Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3025839Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3070083Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3081722Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3088493Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3116602Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3119769Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3129759Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3151930Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3155833Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3167609Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3202052Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3243430Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3254189Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3284408Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3326453Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3367737Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3385577Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3404512Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3425295Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3432901Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3446344Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3454917Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3462582Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3469665Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3477302Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3484077Z Completed 7.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3490506Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3497040Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3524396Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3529781Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3536189Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3543037Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3549706Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3556448Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3561938Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3568401Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3574728Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3579827Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3588523Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3594821Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3600767Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3607008Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3613114Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3618952Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3625035Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3631038Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3637240Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3643328Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3708003Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3716369Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3723287Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3731556Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3739572Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3746932Z Completed 7.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3754548Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3761644Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3770385Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3778242Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3924060Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3956574Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3964648Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3974715Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3982354Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3991540Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.3996017Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4001697Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4018061Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4028448Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4065695Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4071384Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4080007Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4112161Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4214180Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4220980Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4236981Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4243884Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4250971Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4257031Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4264034Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4271686Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4279069Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4286208Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4320825Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4328462Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4340079Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4349466Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4358132Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4368290Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4375514Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4382876Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4389503Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4397305Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4425910Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4433501Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4444533Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4452111Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4459084Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4467530Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4475089Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4482986Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4490762Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4498027Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4511184Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4519016Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4527831Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4535797Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4544913Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4552630Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4560333Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4568865Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4576722Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4584362Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4618842Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4626095Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4842820Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4854586Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4859826Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.4888322Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5141043Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5146735Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5162974Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5169667Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5175764Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5183279Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5189741Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5203396Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5214171Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5223351Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5230409Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5237789Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5310849Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5326009Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5333795Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5340137Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5353716Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5357354Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5374952Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5379333Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5392531Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5394512Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5421700Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5430468Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5460178Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5474383Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5484636Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5503501Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5511290Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5527836Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5548104Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5551475Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5557904Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5568261Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5580886Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5587952Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5596733Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5603355Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5619946Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5685257Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5690550Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5696452Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5701941Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5707305Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5713012Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5718350Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5724157Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5729588Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5735245Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5750261Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5768129Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5774149Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.5779812Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6068323Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6077056Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6089100Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6096569Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6103885Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6111466Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6118682Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6139697Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6146339Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6156484Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6213463Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6221450Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6231464Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6242215Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6249885Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6260042Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6267856Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6276976Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6309002Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6318584Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6345341Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6354797Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6378355Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6395093Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6421933Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6433117Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6586716Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6593664Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6600395Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6624493Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6626158Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6627673Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6633066Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6663242Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6683045Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6687952Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6706662Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6708726Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6726180Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6736375Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6741387Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6748144Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6754411Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6760919Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6767979Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6773732Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6780135Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6786582Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.6994633Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7005167Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7144644Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7153097Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7172401Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7185428Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7191822Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7198892Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7210391Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7217073Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7220899Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7235304Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7239985Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7253338Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7257390Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7271252Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7280414Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7283164Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7293493Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7317340Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7357188Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7485019Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7493575Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7503645Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7511395Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7518309Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7524699Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7531905Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7561015Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7574945Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7588388Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7621686Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7634838Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7648061Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7653418Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7676180Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7684525Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7694413Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7710451Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7720719Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7756472Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7764193Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7765427Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7775127Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7783568Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7792541Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7881926Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7889719Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7897305Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7903267Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7909594Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7916108Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7921756Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7928865Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7935093Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.7940796Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8065211Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8073705Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8091970Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8096946Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8104830Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8125554Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8131292Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8137258Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8143183Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8158531Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8183906Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8190560Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8201782Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8206805Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8371640Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8383176Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8394374Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8445503Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8485743Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8499423Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8515745Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8530021Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8533321Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8547376Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8551993Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8563332Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8584482Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8594621Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8599806Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8613084Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8637468Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8676202Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8685998Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8778804Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8788794Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8796106Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8812579Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8821067Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8832061Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8841850Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8850636Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8863185Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8887944Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8890232Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8898360Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8921583Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8929120Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8937065Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8958813Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8969818Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.8973604Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9003077Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9023709Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9050634Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9053388Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9066549Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9087598Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9097137Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9099964Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9123061Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9125937Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9140645Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9143415Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9155237Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9156736Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9166665Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9172580Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9178730Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9184693Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9345885Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9394290Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9398377Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9404007Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9418528Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9421844Z Completed 8.0 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9432856Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9436670Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9472610Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9477818Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9479058Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9494946Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9497000Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9509355Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9517562Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9539230Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9540476Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9545637Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9549504Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9563916Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9571705Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9677927Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9686480Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9697527Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9705759Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9714000Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9726916Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9731375Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9748857Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9768158Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9772942Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9794668Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9812546Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9830680Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9835981Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9848190Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9868630Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9876270Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9915504Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9916780Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9935059Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9959804Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9967671Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:17.9979298Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0000861Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0007814Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0012371Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0027988Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0035106Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0042529Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0049519Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0058364Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0067717Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0076568Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0317850Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0331945Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0340959Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0351385Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0370430Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0410658Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0423327Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0441037Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0444765Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0458848Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0462940Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0473932Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0477239Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0489037Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0495162Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0501811Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0507255Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0513706Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0528841Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0536609Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0575407Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0588754Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0596216Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0659569Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0680629Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0701936Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0737344Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0752165Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0771308Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0800103Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0837493Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0853378Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0884667Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0906210Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0914934Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0928225Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0937749Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0961690Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0975748Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0980793Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0989816Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.0997695Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1004488Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1016846Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1018127Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1041036Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1046213Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1054097Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1061184Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1067600Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1073659Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1088496Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1244042Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1259246Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1267374Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1286143Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1296649Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1337265Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1355101Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1362538Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1369297Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1385991Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1403212Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1496732Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1499644Z Completed 8.0 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1502926Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1512825Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1518465Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1524103Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1529275Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1534788Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1539908Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1559773Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1585554Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1595719Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1672162Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1679406Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1745363Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1780034Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1790477Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1794811Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1802336Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1809905Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1823952Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1825054Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1829523Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1836640Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1842976Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1854243Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1871302Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1886570Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1900320Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1914787Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1936564Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1949552Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1961461Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1971335Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.1978130Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2167783Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2183376Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2192055Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2243677Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2248920Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2259120Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2271739Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2278572Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2287502Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2288638Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2292887Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2299198Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2314686Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2326557Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2332904Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2338669Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2343686Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2349040Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2354158Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2365921Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2377612Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2389491Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2396095Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2412785Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2417414Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2424157Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2432267Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2441108Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2450420Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2458816Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2464979Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2470914Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2477450Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2512006Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2517971Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2524646Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2530888Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2537419Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2543443Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2549676Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2556188Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2562457Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2568843Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2677488Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2692241Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2700556Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2710456Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2719027Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2728079Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2737430Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2740934Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2751751Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2761974Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2770475Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2790626Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2797813Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2806862Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2816242Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2834494Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2847978Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2859517Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2869689Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.2878900Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3140199Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3146602Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3152492Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3162013Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3170418Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3199321Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3236701Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3244083Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3250456Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3256708Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3263081Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3269401Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3275360Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3286339Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3297762Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3308498Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3333473Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3369197Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3376802Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3383160Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3389418Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3396598Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3403266Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3410101Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3416280Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3422411Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3435808Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3439403Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3457562Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3467310Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3476209Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3486081Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3493634Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3502242Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3510263Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3516748Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3523023Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3574078Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3586802Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3606100Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3616268Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3624697Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3638669Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3675543Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3685219Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3697381Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3703058Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3714577Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.3717755Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4030356Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4037968Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4045110Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4059025Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4066805Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4081527Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4082837Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4098386Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4104767Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4119879Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4121046Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4140337Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4151467Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4175431Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4192827Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4223426Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4234891Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4236849Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4275176Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4302436Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4307886Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4321223Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4348317Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4371028Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4422514Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4431986Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4433303Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4441828Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4454688Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4484175Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4493909Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4518083Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4539194Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4558131Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4596279Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4598093Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4621039Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4622053Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4668640Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4685901Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4699200Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4718199Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4728363Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4764468Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4785633Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4801652Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4803051Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4843597Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4856417Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4865869Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4876321Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4906366Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4934335Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4954531Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4959912Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.4964056Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5026113Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5040414Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5054002Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5085659Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5087538Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5117654Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5126802Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5143984Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5176650Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5188024Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5222612Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5237482Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5248482Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5256532Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5281736Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5295142Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5311356Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5339793Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5367932Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5371665Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5382378Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5405488Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5454102Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5464149Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5481091Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5488079Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5498656Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5513016Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5557480Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5579895Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5602588Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5613740Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5633628Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5634993Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5643628Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5701916Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5711842Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5735056Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5736763Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5787076Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5788586Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5825039Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5836312Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5854868Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5855729Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5856674Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5891481Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5894019Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5897048Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5934201Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5963448Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5968516Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.5978371Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6014632Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6039764Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6043300Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6056409Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6094658Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6117892Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6133685Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6163032Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6164317Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6175253Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6216143Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6224290Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6238242Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6244704Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6274789Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6283001Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6297859Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6314263Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6325868Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6336592Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6347950Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6353631Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6398745Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6407243Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6418654Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6429565Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6449201Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6456064Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6473600Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6577712Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6580369Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6581627Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6667727Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6694790Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6697035Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6758610Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6788438Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6808852Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6813179Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6864184Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6883914Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6893053Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6931839Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6969863Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6980958Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.6994922Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7009265Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7054726Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7073520Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7076558Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7092540Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7116272Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7149996Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7186201Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7193073Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7202861Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7206824Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7220686Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7226350Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7240046Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7306429Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7318907Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7320024Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7343089Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7353874Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7425244Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7546028Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7596224Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7603643Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7612361Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7623314Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7629623Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7637716Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7643237Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7653649Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7662964Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7669326Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7676695Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7761497Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7808096Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7893826Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7913589Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7979137Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.7991877Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8063177Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8105652Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8118977Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8126813Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8138236Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8150047Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8161906Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8163471Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8170491Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8181312Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8184554Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8229753Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8255038Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8259801Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8274814Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8291002Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8300824Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8497682Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8500354Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8512344Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8520074Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8529075Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8544235Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8557677Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8585487Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8596366Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8600981Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8605456Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8639573Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8641806Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8653371Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8669165Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8670349Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8690179Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8716168Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8723872Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8745327Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8750366Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8768554Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8817747Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8828926Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8846821Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8862098Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8886039Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8897740Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8907439Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8919278Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8927908Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8946580Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8950836Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8978147Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8983982Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8990048Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.8998293Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9000263Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9013585Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9021709Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9034894Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9043326Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9062840Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9069604Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9075748Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9085055Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9128694Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9307022Z Completed 8.1 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9315485Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9384086Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9405095Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9409959Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9442088Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9444372Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9465767Z Completed 8.1 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9508076Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9522584Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9525051Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9535815Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9585551Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9589541Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9605219Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9618831Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9631395Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9684901Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9691818Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9692923Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9701019Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9737716Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9793004Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9808666Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9812142Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9823326Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9854104Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9895188Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9910025Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9916722Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9924375Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9947434Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9965892Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:18.9996315Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0006489Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0015472Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0042447Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0059464Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0096747Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0111269Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0115106Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0124777Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0134243Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0157228Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0177910Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0211795Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0217876Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0224203Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0247549Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0296712Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0299503Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0334618Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0336731Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0346431Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0380597Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0435924Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0442386Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0454813Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0460763Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0478498Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0536405Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0546660Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0578188Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0591163Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0603528Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0607439Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0620607Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0669694Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0675014Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0704223Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0755526Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0781196Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0786182Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0792377Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0803043Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0804422Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0807900Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0857914Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0865785Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0892185Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0911877Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0919678Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0930764Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.0965735Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1029676Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1039379Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1051800Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1059861Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1069788Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1082556Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1129278Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1160936Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1186197Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1193282Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1208432Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1209786Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1210487Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1255822Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1284496Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1306280Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1309314Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1336722Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1359164Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1372580Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1395116Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1440978Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1445879Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1447016Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1481508Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1503469Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1513575Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1514918Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1554641Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1576631Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1581944Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1596784Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1642408Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1650792Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1663969Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1694071Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1696207Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1716353Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1745178Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1763450Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1767899Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1788319Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1801362Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1814609Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1824521Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1848583Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1915554Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1924988Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1926236Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1928311Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1949698Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1954692Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.1963364Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2026390Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2051007Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2060470Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2071976Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2081990Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2085322Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2111463Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2134630Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2174684Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2181520Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2211231Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2214034Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2235204Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2235942Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2272221Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2301976Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2308770Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2317007Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2335399Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2368219Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2394487Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2410358Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2425292Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2443979Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2451231Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2493094Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2528331Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2558640Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2559383Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2571716Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2587194Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2613720Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2632209Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2642505Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2658766Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2692018Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2707361Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2712956Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2729919Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2757417Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2779294Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2787278Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2795004Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2831728Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2859745Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2864192Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2869478Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2898811Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2910605Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2914270Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.2976754Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3044368Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3048938Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3066837Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3080482Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3141507Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3143306Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3196008Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3256027Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3269380Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3280296Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3338680Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3342112Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3401513Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3408318Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3436766Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3459893Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3464607Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3466214Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3477150Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3516827Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3538263Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3550950Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3567635Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3579701Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3597295Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3604366Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3618106Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3629853Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3644377Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3653164Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3708377Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3709501Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3721076Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3744628Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3756636Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3773451Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3804148Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3846670Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3905646Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.3984352Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4060053Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4084738Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4168146Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4173924Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4180220Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4186493Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4197992Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4211458Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4220474Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4232026Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4240385Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4249010Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4253819Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4261728Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4268025Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4291480Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4302584Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4311777Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4319649Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4328704Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4335308Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4340320Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4394776Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4407664Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4425833Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4444635Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4460702Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4469428Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4479098Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4486541Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4514105Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4520784Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4542079Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4543622Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4553380Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4559935Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4567666Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4571663Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4582429Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4601905Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4610822Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4619091Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4627631Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4638525Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4647514Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4673941Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4683268Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4693353Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4840907Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4848164Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4865226Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4872852Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4881268Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4888979Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4896446Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4904187Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4911607Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4918328Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4939208Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4946042Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4952545Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4959144Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4965826Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4972574Z Completed 8.2 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4978935Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.4995513Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5001347Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5008511Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5071383Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5082218Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5097568Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5118331Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5124299Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5138666Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5143238Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5150753Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5158314Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5165434Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5193527Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5202568Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5209888Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5217815Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5328061Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5345188Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5363839Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5383240Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5414827Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5421117Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5426561Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5446915Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5465617Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5477135Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5483706Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5497195Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5510754Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5512551Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5529518Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5532542Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5560121Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5563853Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5574534Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5593054Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5739097Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5745125Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5759501Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5788840Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5796616Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5805674Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5811093Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5817668Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5823076Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5828497Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5836270Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5850283Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5865404Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5875126Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5890238Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5897199Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5904905Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5911282Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5925699Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5930573Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5939718Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5944655Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5950403Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5956835Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5969130Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5975421Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5981085Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5989358Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5993096Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.5998744Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6012419Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6016851Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6043906Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6046360Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6053087Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6067372Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6083457Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6099682Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6119368Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6127096Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6133373Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6159428Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6166915Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6178931Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6187954Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6199706Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6220558Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6243591Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6252290Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6287882Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6314693Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6316916Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6328814Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6366104Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6368168Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6381043Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6391162Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6397577Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6438137Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6444135Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6455726Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6472581Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6479732Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6489694Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6516590Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6518255Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6519608Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6525249Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6530315Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6633374Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6639445Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6652018Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6683356Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6696265Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6704429Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6712177Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6721071Z Completed 8.2 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6727859Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6738942Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6744567Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6750768Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6762089Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6780180Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6791845Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6797677Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6809076Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6814004Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6826529Z Completed 8.2 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6831940Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6856609Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6880088Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6885099Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6901682Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6925983Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6963024Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6971932Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6975269Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6994388Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.6998216Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7036668Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7075149Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7087678Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7096775Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7101393Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7129904Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7148928Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7151034Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7175305Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7209450Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7211844Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7217845Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7271911Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7303480Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7314468Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7315742Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7336271Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7381662Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7408139Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7413356Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7431088Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7463751Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7489845Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7537775Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7562320Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7563669Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7565094Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7569243Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7572488Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7609120Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7625233Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7644775Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7645883Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7650397Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7700764Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7704489Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7723683Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7728844Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7773625Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7786773Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7789518Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7795768Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7807994Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7839253Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7853247Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7854420Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7888836Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7898131Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7920253Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7922468Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7930795Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7946669Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7957634Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7965248Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.7994811Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8018051Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8065690Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8087885Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8095123Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8121753Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8158096Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8168944Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8221467Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8244844Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8260895Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8276452Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8342277Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8373508Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8384126Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8462829Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8467290Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8480807Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8507761Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8526755Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8562475Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8596667Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8612968Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8626681Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8669103Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8714696Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8739890Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8787935Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8793876Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8807412Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8843180Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8855583Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8931647Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8940920Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8948454Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8968964Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.8975643Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9020990Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9098734Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9100175Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9119590Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9131800Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9151020Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9152333Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9155111Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9199424Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9203694Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9215006Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9226197Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9244498Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9263318Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9288050Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9294977Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9305280Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9309374Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9315048Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9321339Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9376513Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9469195Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9476914Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9483301Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9489734Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9495555Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9501922Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9527793Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9536966Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9545201Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9547341Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9557187Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9567591Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9624401Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9625590Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9630012Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9717964Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9718858Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9766118Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9785054Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9823465Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9872509Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:19.9975589Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0050171Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0053451Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0066785Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0075331Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0082190Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0091619Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0104273Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0118812Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0129750Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0133908Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0144405Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0163516Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0171251Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0183463Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0191950Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0212142Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0219804Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0235870Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0238413Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0243689Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0262819Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0270717Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0276957Z Completed 8.3 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0285115Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0291605Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0310909Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0315669Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0319766Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0327082Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0342059Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0346861Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0354364Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0362540Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0385545Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0390017Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0408408Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0415283Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0432894Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0446480Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0447985Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0464666Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0466252Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0467449Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0471207Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0490747Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0503389Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0527089Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0533210Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0545102Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0554030Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0631902Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0748539Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0758135Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0765590Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0777989Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0785418Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0791586Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0798719Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0805467Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0811918Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0818243Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0825072Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0827835Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0977044Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0978271Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.0994060Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1007286Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1020239Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1046843Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1050220Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1062094Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1071110Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1084549Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1097314Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1103621Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1121736Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1141958Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1158510Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1164006Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1182095Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1184126Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1196917Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1204043Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1211789Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1219139Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1226697Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1234677Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1245880Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1253055Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1263732Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1269489Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1278585Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1284674Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1290304Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1297308Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1331038Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1342882Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1349666Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1356356Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1368706Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1371619Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1381206Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1390889Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1407477Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1414797Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1417554Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1425112Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1446616Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1454355Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1475957Z Completed 8.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1551527Z Completed 8.3 GiB/9.9 GiB (125.8 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1664758Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1667729Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1691065Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1700268Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1720654Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1723393Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1739044Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1766819Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1768583Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1770909Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1804357Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1808597Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1813335Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1845196Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1848146Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1849990Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1880385Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1887049Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1888155Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1915440Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1944538Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1956741Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1973805Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.1986908Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2008660Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2038772Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2066569Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2108291Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2112483Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2118377Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2149603Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2150850Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2184706Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2237690Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2242793Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2256734Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2262074Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2337777Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2356079Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2375447Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2406702Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2408740Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2414503Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2415710Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2446157Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2448532Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2484769Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2502890Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2509819Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2523121Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2573355Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2574967Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2594615Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2614050Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2617786Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2626842Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2654975Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2739361Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2740880Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2756955Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2760191Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2804028Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2805294Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2850940Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2872854Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2883889Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2917442Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2942419Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.2980443Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3043550Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3045810Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3051181Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3055536Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3058947Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3079334Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3134730Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3162344Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3173856Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3175071Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3177968Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3204021Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3235248Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3266549Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3275584Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3296397Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3300645Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3304805Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3327786Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3388527Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3413514Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3416183Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3420465Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3436839Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3438032Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3441325Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3534022Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3540872Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3555110Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3560369Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3561824Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3578764Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3604037Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3631990Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3649076Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3653624Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3663149Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3684084Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3719983Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3742951Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3746838Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3768529Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3820167Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3838955Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3854518Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3871580Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3886007Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3903813Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3909384Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3939940Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3988682Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.3996402Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4009081Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4038518Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4070910Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4091563Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4109644Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4127138Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4128337Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4147247Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4151084Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4213617Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4224836Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4230884Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4234661Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4247514Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4307701Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4320850Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4327125Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4331003Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4335540Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4398813Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4409334Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4421846Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4425495Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4454465Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4493544Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4499383Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4519626Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4526773Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4540955Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4574189Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4593480Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4624424Z Completed 8.3 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4635918Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4640204Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4686969Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4745769Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4753561Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4767991Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4775029Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4854572Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4856046Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4857120Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4858182Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4942922Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4954723Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4967917Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.4971202Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5016965Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5066459Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5096500Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5127141Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5172059Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5206554Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5207664Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5353270Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5393603Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5394878Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5413234Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5427392Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5446796Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5475672Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5494940Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5499741Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5510070Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5516987Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5559218Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5569458Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5570875Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5584744Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5634111Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5641559Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5646100Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5654892Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5702955Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5705200Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5712097Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5726848Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5746354Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5753799Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5764061Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5780356Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5794319Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5811441Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5823288Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5833702Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5843497Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5853381Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5916595Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5942365Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5952870Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5963300Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5970405Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5977675Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5983518Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5989885Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.5997596Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6000869Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6008265Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6014513Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6046427Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6052424Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6060737Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6071989Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6081689Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6088377Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6096303Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6103728Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6111542Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6117504Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6134599Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6289229Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6292205Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6331860Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6343718Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6349397Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6359420Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6365823Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6377147Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6388434Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6399528Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6415000Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6433255Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6442932Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6447300Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6517473Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6521302Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6535388Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6543166Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6558709Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6650313Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6651771Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6653188Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6654522Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6657993Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6715911Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6716870Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6735363Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6789314Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6804040Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6809223Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6818488Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6895210Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6917054Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6920610Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6924141Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6953825Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.6981456Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7029609Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7032095Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7043699Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7098749Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7150997Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7163973Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7183686Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7197074Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7220473Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7249793Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7298132Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7304979Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7374106Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7398224Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7403302Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7422449Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7423794Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7443424Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7509669Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7519476Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7521022Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7526649Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7541052Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7543323Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7620765Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7637306Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7640923Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7641772Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7655856Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7656863Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7717204Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7740133Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7749737Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7753923Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7762521Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7800521Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7818302Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7845196Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7863759Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7878838Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7903100Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7905346Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7914232Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7959841Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7982508Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.7996734Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8004568Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8006574Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8082533Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8093663Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8094915Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8096530Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8119466Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8124118Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8181968Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8186727Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8208563Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8231687Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8239583Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8240987Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8288606Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8311357Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8329326Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8363367Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8364156Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8377833Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8388304Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8426871Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8430905Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8452257Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8515370Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8519092Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8528264Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8540041Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8541566Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8559206Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8561968Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8608493Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8643330Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8675827Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8678869Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8688082Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8698203Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8725879Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8769830Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8838172Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8873114Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8885901Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8920545Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8927072Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8939311Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.8994588Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9028726Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9037034Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9077705Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9126912Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9149590Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9150930Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9205899Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9236413Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9238336Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9239698Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9240688Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9270070Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9291678Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9347367Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9367997Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9378157Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9399021Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9406905Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9415976Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9419631Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9471774Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9496522Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9501743Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9506216Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9552086Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9553759Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9559510Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9603238Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9604984Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9622004Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9625568Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9646790Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9693607Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9694650Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9709409Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9726097Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9743263Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9769041Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9800789Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9816527Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9834047Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9851339Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9871559Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9930537Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9940420Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9961767Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:20.9992557Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0010849Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0011961Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0065677Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0075431Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0076656Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0120621Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0164982Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0166133Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0184298Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0193449Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0207094Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0219733Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0249970Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0256193Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0275296Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0285300Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0316851Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0357115Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0359106Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0369415Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0375850Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0420911Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0442095Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0460138Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0464232Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0488295Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0525321Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0554791Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0561631Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0575731Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0590225Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0610552Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0636961Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0649889Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0665475Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0679954Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0716358Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0720714Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0721653Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0816017Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0819225Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0834961Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0841334Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0897081Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0897930Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0917347Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0918548Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0947689Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.0995925Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1003436Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1011077Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1028775Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1038294Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1073942Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1112045Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1136949Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1138207Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1165361Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1203650Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1211906Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1328455Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1329844Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1330899Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1332050Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1350667Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1366059Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1419468Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1445780Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1453392Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1458471Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1471078Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1475223Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1524343Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1620766Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1651632Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1659262Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1691525Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1695754Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1703442Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1704407Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1709421Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1727752Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1798541Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1833648Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1834618Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1857449Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1901100Z Completed 8.4 GiB/9.9 GiB (125.7 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1905643Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1965132Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.1987060Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2004573Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2035699Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2046747Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2051124Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2055266Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2097623Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2098480Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2146549Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2150222Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2162460Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2187957Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2205451Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2214747Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2244614Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2259041Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2264290Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2297744Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2317292Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2338114Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2354302Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2355561Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2435119Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2450778Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2493575Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2497768Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2500356Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2527662Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2533651Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2571888Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2593552Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2602425Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2626285Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2639274Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2652222Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2669620Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2688038Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2705131Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2719820Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2729228Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2755524Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2776755Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2784828Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2788993Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2835675Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2873045Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2874518Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2875720Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2903188Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2950720Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2986711Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.2994239Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3010618Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3025265Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3050684Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3056898Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3098450Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3125159Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3158991Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3160074Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3164605Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3175820Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3189962Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3264998Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3268699Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3304517Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3305653Z Completed 8.4 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3306337Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3307270Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3329888Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3382467Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3432288Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3442331Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3484102Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3485127Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3493007Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3533014Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3581969Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3608487Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3609528Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3635284Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3636292Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3637139Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3721411Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3732377Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3733664Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3734397Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3737359Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3745879Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3771544Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3841762Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3876236Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3877289Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3883320Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3889830Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3899923Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3930035Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.3994706Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4001928Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4036220Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4037357Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4038561Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4113835Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4117992Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4175037Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4198405Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4203840Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4217276Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4229469Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4246301Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4299264Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4310077Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4321664Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4338710Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4343707Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4384612Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4402850Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4406189Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4426408Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4454093Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4492840Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4494188Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4517618Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4525848Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4527269Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4595783Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4602147Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4603403Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4632455Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4637635Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4703788Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4716816Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4719649Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4720815Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4730988Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4731979Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4808870Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4824796Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4828077Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4833246Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4852105Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4870354Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4903462Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4922845Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4933334Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4951658Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.4972291Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5010495Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5024236Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5028529Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5064152Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5099521Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5110425Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5133214Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5160539Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5173648Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5200034Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5255688Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5259518Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5261000Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5293154Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5310191Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5325307Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5331607Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5377217Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5392504Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5406946Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5415794Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5437836Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5452174Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5477845Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5488325Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5512383Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5530917Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5592421Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5603670Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5619435Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5625480Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5631990Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5636093Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5730862Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5747839Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5755628Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5793615Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5828617Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5858661Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5868279Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5881437Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5914289Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5939086Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5973789Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5987886Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.5995590Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6011833Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6025861Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6051453Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6056608Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6099844Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6103248Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6111639Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6120577Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6174615Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6196573Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6214914Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6220852Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6242270Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6243481Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6248411Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6323419Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6328528Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6349621Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6350369Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6356890Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6385519Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6390353Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6439997Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6470547Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6500345Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6501529Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6510060Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6511720Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6525382Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6526590Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6563719Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6586415Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6618026Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6625957Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6683741Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6691450Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6703841Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6790567Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6792152Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6809701Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6849453Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6853627Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6869562Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6892348Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6936904Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6972024Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6975104Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.6998104Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7002017Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7049084Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7051051Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7054566Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7092003Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7104879Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7122915Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7136869Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7145132Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7168338Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7175023Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7213592Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7237173Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7247113Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7254867Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7268723Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7281766Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7342405Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7343641Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7350930Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7357360Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7366193Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7402454Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7449616Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7461810Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7463169Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7468211Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7470631Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7520148Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7551100Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7565982Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7575888Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7579414Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7580365Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7630728Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7639389Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7643224Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7682969Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7689395Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7740183Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7749421Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7770498Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7776074Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7797460Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7846426Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7847464Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7854668Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7879689Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7889854Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7928925Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7958176Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7964683Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.7992078Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8002995Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8021920Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8046906Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8075227Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8097167Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8107394Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8123450Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8146705Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8154719Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8181209Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8195726Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8233719Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8242956Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8261991Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8301580Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8343720Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8356911Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8368600Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8383954Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8402851Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8408569Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8476230Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8491068Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8508844Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8540273Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8554255Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8567765Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8590963Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8619574Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8633577Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8641721Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8662182Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8683604Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8719312Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8747665Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8749099Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8778605Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8815157Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8825148Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8840324Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8870474Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8878098Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8909268Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8937249Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8955991Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8959133Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.8975107Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9044341Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9077403Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9089544Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9106490Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9107462Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9113711Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9155562Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9208176Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9218472Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9225079Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9226197Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9230664Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9251130Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9308575Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9316888Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9317910Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9333344Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9356430Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9394519Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9411049Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9421535Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9433908Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9439792Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9464682Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9485251Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9503970Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9518883Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9544299Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9586930Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9604338Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9624147Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9625253Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9633298Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9682952Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9710114Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9711007Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9711674Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9714975Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9785360Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9800765Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9809391Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9820665Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9845240Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9870788Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9900144Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9928927Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9930114Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9932188Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9963443Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9997386Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:21.9998814Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0040735Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0042056Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0078074Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0082474Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0105209Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0118746Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0169153Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0183411Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0215342Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0229089Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0246117Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0249666Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0276730Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0293600Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0329737Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0351686Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0353513Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0355785Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0396272Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0412260Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0427612Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0451853Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0495936Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0499742Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0521749Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0538307Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0564981Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0608342Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0609683Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0639902Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0645347Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0669978Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0689018Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0734966Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0748014Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0784512Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0790746Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0796066Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0803072Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0842180Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0879170Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0886001Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0891881Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0908637Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0930332Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0964909Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0983025Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0987945Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.0996447Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1024238Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1050374Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1075589Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1081831Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1087942Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1123320Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1148648Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1167797Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1178240Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1216056Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1228697Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1278550Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1323947Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1325549Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1340675Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1352079Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1411066Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1435860Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1436943Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1437624Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1487099Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1554421Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1566978Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1589270Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1598953Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1618810Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1630387Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1663449Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1721860Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1753384Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1786041Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1848587Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1858377Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1920657Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1944261Z Completed 8.5 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1947852Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1959151Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1987340Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.1992349Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2003585Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2046598Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2062211Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2068030Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2096561Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2109345Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2128948Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2147672Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2162407Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2176082Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2199664Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2215681Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2239086Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2264759Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2281504Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2312840Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2324719Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2340743Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2369782Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2377804Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2403405Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2424833Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2425558Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2430922Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2479933Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2485653Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2516576Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2526762Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2537768Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2540025Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2596223Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2597002Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2620211Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2621269Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2625556Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2688098Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2721085Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2724086Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2731311Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2734052Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2740962Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2803163Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2843227Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2848455Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2850044Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2856913Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2866008Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2927126Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2938502Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2952582Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2959840Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2962311Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2974736Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.2994127Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3049898Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3068435Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3090428Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3113523Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3119723Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3132543Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3161197Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3228702Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3247985Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3280589Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3310095Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3311545Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3333980Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3335707Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3370354Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3390612Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3422978Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3424201Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3437753Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3439162Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3473102Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3476253Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3494177Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3522517Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3551790Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3553279Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3558789Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3595478Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3627459Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3631773Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3639292Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3642152Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3683027Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3693427Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3714932Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3723507Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3756691Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3762102Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3793470Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3794665Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3828103Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3847007Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3857299Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3862210Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3910295Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3917529Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3927909Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3948397Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.3960291Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4001406Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4020566Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4025141Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4041192Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4055950Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4060663Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4131137Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4140082Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4143033Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4160754Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4168648Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4213454Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4241210Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4244741Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4254343Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4261940Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4272599Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4280637Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4331880Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4333215Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4341852Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4357189Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4364327Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4451218Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4461749Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4470993Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4485319Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4486384Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4529814Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4581621Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4601919Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4625245Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4638562Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4688256Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4695683Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4703748Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4734521Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4787225Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4799519Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4810163Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4828861Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4853125Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4871666Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4909291Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4931123Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4937093Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4989661Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.4998711Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5003425Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5007114Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5060525Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5062573Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5110628Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5123322Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5144501Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5165011Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5173359Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5194830Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5240221Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5254187Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5273437Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5293462Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5298212Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5303556Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5368409Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5375639Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5414882Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5431095Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5437105Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5463498Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5488877Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5503389Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5527266Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5564937Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5584041Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5592371Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5601129Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5637608Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5641392Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5663507Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5664449Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5699009Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5739308Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5743507Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5749749Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5773858Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5785584Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5844519Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5847954Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5879556Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5891532Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5896484Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5921881Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5968286Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5973628Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.5979899Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6004272Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6020216Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6023811Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6069589Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6087645Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6098844Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6125602Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6132208Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6156836Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6165372Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6211595Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6219805Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6240493Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6267287Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6286095Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6297059Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6309460Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6310550Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6355754Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6365817Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6372831Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6429021Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6436501Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6456041Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6460566Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6461877Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6500069Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6506327Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6560040Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6561058Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6566320Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6597176Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6634120Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6642780Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6659838Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6675149Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6705819Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6768413Z Completed 8.6 GiB/9.9 GiB (125.6 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6773659Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6790790Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6823518Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6838432Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6863430Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6913789Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.6990240Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7008473Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7011449Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7085739Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7093771Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7096422Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7142931Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7158393Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7160853Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7205125Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7213348Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7219512Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7242801Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7272319Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7286851Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7290974Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7317201Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7339043Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7368621Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7382297Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7388398Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7429703Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7435621Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7446865Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7480449Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7497826Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7528207Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7533751Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7562593Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7575312Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7608341Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7615080Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7617212Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7659714Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7663099Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7704326Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7713667Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7715527Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7748021Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7779473Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7793637Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7798789Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7850096Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7860524Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7873351Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7906052Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7919796Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7939351Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7950876Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.7965610Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8019862Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8021345Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8040879Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8066201Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8068248Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8107064Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8125198Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8141533Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8174353Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8192588Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8210041Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8225383Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8265400Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8270041Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8299263Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8311888Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8321619Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8363163Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8377625Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8426864Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8427998Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8454868Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8472997Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8548987Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8578974Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8633656Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8645184Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8654772Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8661804Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8685633Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8703869Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8731503Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8772368Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8813674Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8822765Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8823922Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8824809Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8832475Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8897245Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8914516Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8929833Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8935403Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8946694Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.8951075Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9017690Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9037623Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9041370Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9051375Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9052985Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9073535Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9108125Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9151472Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9164852Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9174284Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9194714Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9204111Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9228716Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9229917Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9279785Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9285091Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9303472Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9309545Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9346685Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9375981Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9400384Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9406598Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9422013Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9433597Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9465010Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9470491Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9531303Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9549045Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9557380Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9564438Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9577915Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9592368Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9676566Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9677788Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9679708Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9696576Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9713460Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9719572Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9760700Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9809633Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9824327Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9825094Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9849098Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9885920Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9903170Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9933579Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9937305Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9976210Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9977640Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9985738Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:22.9999516Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0020920Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0043651Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0074142Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0098456Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0099811Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0102073Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0132512Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0145667Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0183204Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0202426Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0217608Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0231858Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0254629Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0282907Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0293612Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0298308Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0337128Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0351137Z Completed 8.6 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0365826Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0368792Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0389876Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0441747Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0446283Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0455000Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0457649Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0490078Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0523980Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0546671Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0551771Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0563744Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0603770Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0632337Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0640268Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0641634Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0667912Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0694939Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0726953Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0734028Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0747943Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0757713Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0792222Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0826863Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0831653Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0851063Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0855783Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0934765Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0942039Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0951320Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0956932Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0979995Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.0988183Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1060445Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1072784Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1082038Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1092332Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1100749Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1130058Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1146567Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1155640Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1202404Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1221228Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1235853Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1243601Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1254525Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1308197Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1340056Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1342616Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1357268Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1366699Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1435375Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1445358Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1466827Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1495160Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1496665Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1535750Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1615296Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1616916Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1627418Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1636704Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1706506Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1733394Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1744067Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1756844Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1763446Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1811818Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1819704Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1838508Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1848725Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1859917Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1892015Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1898416Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1911513Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1928542Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1947157Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1952189Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1957901Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1986904Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.1998789Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2017289Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2051415Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2073218Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2083610Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2099273Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2122036Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2126968Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2137641Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2177675Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2188900Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2203919Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2212031Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2220571Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2236142Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2248937Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2260421Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2264772Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2297397Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2386952Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2425784Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2436046Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2445975Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2546808Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2571660Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2584150Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2651509Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2666799Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2677149Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2709667Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2760529Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2769413Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2795692Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2796652Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2837115Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2853712Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2865060Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2880761Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2882538Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2938089Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2942378Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2945736Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2950773Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.2961811Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3001604Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3002940Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3050650Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3059244Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3080300Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3089412Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3099579Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3102937Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3131733Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3153603Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3166682Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3185835Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3215842Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3220478Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3249511Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3250708Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3266634Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3290361Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3303227Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3348209Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3360024Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3383855Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3427856Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3455498Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3460650Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3484823Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3509994Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3514317Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3515504Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3545327Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3553357Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3561614Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3591204Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3604439Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3611527Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3656852Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3660405Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3680855Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3691254Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3710235Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3721705Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3731258Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3742984Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3753910Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3791384Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3792996Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3841050Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3842162Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3859657Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3874481Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3903122Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3924630Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3933120Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3974447Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.3984156Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4000425Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4019532Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4032295Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4058879Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4063056Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4068761Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4093287Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4101858Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4108357Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4115863Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4121337Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4134726Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4159227Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4168152Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4172931Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4178147Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4205235Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4218238Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4249060Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4264594Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4283232Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4343228Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4352826Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4363802Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4371397Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4412992Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4419432Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4441301Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4505528Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4522532Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4558084Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4570011Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4576437Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4593459Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4596148Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4609470Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4626935Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4638472Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4672606Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4696921Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4734050Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4742041Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4760082Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4820687Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4855703Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4857158Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4858464Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4874137Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4880154Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4890882Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4947707Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4968486Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4978623Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.4999914Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5008775Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5029700Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5049338Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5057080Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5065906Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5113796Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5120447Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5130905Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5165605Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5166973Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5168544Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5235997Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5238231Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5244033Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5251871Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5252961Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5259071Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5343805Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5348625Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5360459Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5371618Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5373207Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5389903Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5449571Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5458571Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5474757Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5511574Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5519686Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5533856Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5556921Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5601466Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5610276Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5624549Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5625536Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5664906Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5680777Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5701737Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5748454Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5749203Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5784263Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5821513Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5823439Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5833633Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5871377Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5893541Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5907549Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5946672Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5948468Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5973481Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5974702Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5975820Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.5983066Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6016413Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6035363Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6078664Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6093623Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6120286Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6121865Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6123379Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6134234Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6135164Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6214299Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6219174Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6252271Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6263750Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6264817Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6314208Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6348689Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6360521Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6371066Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6378538Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6384590Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6476806Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6478074Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6496974Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6498322Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6505554Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6542448Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6574551Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6593171Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6594230Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6619597Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6642889Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6666819Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6697706Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6714654Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6737851Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6744489Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6804261Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6818036Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6819755Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6840034Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6860776Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6871302Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6919745Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6933420Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6942269Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6946704Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.6997439Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7012336Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7045201Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7054407Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7065893Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7081988Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7118728Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7126523Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7128576Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7153863Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7157570Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7213971Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7237705Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7250696Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7264625Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7295792Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7312862Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7346204Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7360194Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7361302Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7397806Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7410528Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7443124Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7487427Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7502465Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7505650Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7507950Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7537935Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7585007Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7596643Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7615940Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7661157Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7675629Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7714594Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7741718Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7745272Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7748426Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7763471Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7851132Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7861550Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7871182Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7881132Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7897070Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7904869Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7975273Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.7981376Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8000649Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8004564Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8021909Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8043320Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8074281Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8093271Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8117083Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8142964Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8149829Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8154926Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8165782Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8215459Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8230307Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8245889Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8257069Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8270413Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8271736Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8340284Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8343143Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8350573Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8363060Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8384244Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8393813Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8479201Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8486527Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8499263Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8507916Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8532069Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8547972Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8616320Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8625818Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8643724Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8657243Z Completed 8.7 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8658403Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8679682Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8731204Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8744628Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8757264Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8765070Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8777926Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8809089Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8845857Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8854665Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8871877Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8873152Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8892094Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8948767Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8969524Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.8996217Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9007068Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9008667Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9062876Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9069637Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9077574Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9109769Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9139439Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9159348Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9221893Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9235381Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9236616Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9245042Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9260008Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9297140Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9327636Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9337365Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9347470Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9353827Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9360678Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9391829Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9432836Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9452056Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9459808Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9467210Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9479192Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9505721Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9539542Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9553647Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9583480Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9585723Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9631185Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9652551Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9695742Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9714574Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9737410Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9765432Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9775682Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9777148Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9825857Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9850374Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9870934Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9879870Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9901527Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9971576Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9981055Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:23.9990326Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0009684Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0015405Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0056096Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0089223Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0106950Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0110783Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0148020Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0149225Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0220573Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0255042Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0256202Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0262617Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0266344Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0340765Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0361612Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0367812Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0375842Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0377243Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0390513Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0470775Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0473301Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0480253Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0481420Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0505865Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0519824Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0558220Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0580668Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0611309Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0612468Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0628118Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0647752Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0661435Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0717432Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0738400Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0739395Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0740459Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0773464Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0797086Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0819082Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0820244Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0853406Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0863850Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0877521Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0928332Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0961632Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.0962806Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1051186Z Completed 8.8 GiB/9.9 GiB (125.5 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1053502Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1060560Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1094355Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1095289Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1118104Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1138885Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1147727Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1199500Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1246614Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1251881Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1268486Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1295570Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1324204Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1389100Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1396869Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1432249Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1439715Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1449521Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1450550Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1548751Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1550050Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1554905Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1556783Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1582905Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1601947Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1612995Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1619926Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1647113Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1676486Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1714057Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1716517Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1717279Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1726400Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1766067Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1789980Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1816929Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1823929Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1834909Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1837999Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1882771Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1903372Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1918554Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1943653Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1957446Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1964819Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.1995349Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2012418Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2055074Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2062070Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2071879Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2083222Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2101289Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2121409Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2157379Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2170903Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2192080Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2193364Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2199265Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2231110Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2264941Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2290699Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2292356Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2300934Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2325757Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2336588Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2361902Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2388558Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2418463Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2431873Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2432936Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2473498Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2483191Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2505166Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2542296Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2566621Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2568227Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2588368Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2592427Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2600251Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2662980Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2690372Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2693938Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2737392Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2739180Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2741665Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2783305Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2789314Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2816302Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2863599Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2871380Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2898249Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2923137Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2938374Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.2979597Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3000966Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3032554Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3060935Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3084909Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3106314Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3107661Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3122541Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3170419Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3183331Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3196763Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3245194Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3271125Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3275794Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3299522Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3318776Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3336586Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3367996Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3376144Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3383533Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3419999Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3444431Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3452342Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3484417Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3491676Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3500986Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3524466Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3577998Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3582053Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3583275Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3615205Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3620763Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3632038Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3693127Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3694397Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3726605Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3733856Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3738190Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3752004Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3799237Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3822187Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3843929Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3856582Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3861742Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3895826Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3979596Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.3980728Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4009096Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4013032Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4056139Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4073539Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4155864Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4174435Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4185150Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4208117Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4218133Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4219297Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4240745Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4319899Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4326760Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4339759Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4343638Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4351562Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4376611Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4396744Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4404758Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4456418Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4470734Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4485295Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4504110Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4516811Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4523441Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4543466Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4584320Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4610114Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4621931Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4626566Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4631728Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4653469Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4672005Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4709288Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4751265Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4757654Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4768325Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4770765Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4772155Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4839285Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4850315Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4869932Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4881960Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4887231Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4892589Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4957109Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4958133Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4981624Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.4983133Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5000666Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5035081Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5060711Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5064766Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5069448Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5086236Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5090260Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5150885Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5177807Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5187703Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5201254Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5206413Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5213408Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5271886Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5311001Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5323687Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5324444Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5329882Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5398480Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5399662Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5404760Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5423905Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5463287Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5469533Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5484946Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5516907Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5525083Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5536920Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5544757Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5608633Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5637103Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5641546Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5664778Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5700838Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5769440Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5770857Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5792471Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5799838Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5847675Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5863819Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5897248Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5931293Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5962446Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5974127Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5980709Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.5985395Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6048036Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6059777Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6082499Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6095455Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6128560Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6158665Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6171222Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6194987Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6216107Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6242837Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6266966Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6277255Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6285402Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6370363Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6371524Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6380941Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6389940Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6390920Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6442055Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6451538Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6486396Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6495807Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6509050Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6510057Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6559853Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6577142Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6606034Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6620318Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6651087Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6675535Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6694435Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6704193Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6722200Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6753746Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6775902Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6783995Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6811913Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6816749Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6837662Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6864189Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6889628Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6936631Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6948717Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.6970799Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7004239Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7011717Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7020653Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7047201Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7059984Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7076770Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7123338Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7134478Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7148760Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7157612Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7160101Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7203768Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7226080Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7244062Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7257957Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7259094Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7266628Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7317911Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7334810Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7357029Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7375431Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7395410Z Completed 8.8 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7396883Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7445623Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7461378Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7475648Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7490938Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7514857Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7526266Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7527209Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7570877Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7576720Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7611977Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7630924Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7632349Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7637903Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7663080Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7706018Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7707170Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7725377Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7766931Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7768858Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7770279Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7794857Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7807929Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7835655Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7851705Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7902800Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7904136Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7918757Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7919669Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7944010Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7971730Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.7987199Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8045287Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8054606Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8062510Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8081730Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8095732Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8096920Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8114683Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8155496Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8234295Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8253031Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8254771Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8258642Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8269256Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8291408Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8296735Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8313838Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8411880Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8428935Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8475565Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8487057Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8494309Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8506391Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8515729Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8546856Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8592604Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8618303Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8623491Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8641759Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8648662Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8654367Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8727689Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8746370Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8750763Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8760612Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8792134Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8806088Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8862553Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8880521Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8885667Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8913584Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8926049Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8950918Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.8978169Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9001412Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9011216Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9015895Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9032556Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9081236Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9082340Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9120095Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9129067Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9129976Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9130651Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9182181Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9195010Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9214354Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9227326Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9233059Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9243609Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9299121Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9325471Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9346437Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9416452Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9453277Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9454946Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9494696Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9495849Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9496519Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9532239Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9535899Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9564435Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9577174Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9584712Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9605519Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9656025Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9675482Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9689670Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9700387Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9734605Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9737394Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9756717Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9776978Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9801532Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9816335Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9821545Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9841050Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9851528Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9856322Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9879586Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9889296Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9935604Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9954488Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9979561Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:24.9982954Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0042861Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0062423Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0077362Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0082199Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0088317Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0120344Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0158512Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0171491Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0182908Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0193598Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0214188Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0238544Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0272591Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0273806Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0274738Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0323457Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0324407Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0329601Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0368496Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0375037Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0379930Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0384178Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0393813Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0481624Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0500615Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0504696Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0509076Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0522384Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0557496Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0624839Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0736360Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0768980Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0781627Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0785060Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0802395Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0834495Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0850428Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0903787Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0929323Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0936887Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0937810Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0941721Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0953865Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0986750Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.0994818Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1058880Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1071185Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1078096Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1087508Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1104521Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1114208Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1115506Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1127386Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1160446Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1203163Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1217847Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1230928Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1257876Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1268139Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1282350Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1293439Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1301707Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1343917Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1364951Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1380487Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1397395Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1398666Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1421133Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1443937Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1460616Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1481114Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1488091Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1493382Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1520135Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1551769Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1557693Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1586171Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1590792Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1594497Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1663790Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1666682Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1669296Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1678286Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1690843Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1760609Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1768795Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1785256Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1794610Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1803213Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1807164Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1865791Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1894012Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1895250Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1906108Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1912383Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1931561Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1995841Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.1997168Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2024777Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2040641Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2048782Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2060399Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2061974Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2120705Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2133868Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2144398Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2152508Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2155924Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2173989Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2241217Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2272820Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2293641Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2300209Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2301126Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2342887Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2345288Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2406600Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2414602Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2418552Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2444797Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2503737Z Completed 8.9 GiB/9.9 GiB (125.4 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2521836Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2591312Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2598844Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2607446Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2613190Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2633488Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2704945Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2723675Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2823514Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2825485Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2847053Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2848179Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2871305Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2882204Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2905654Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2954935Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2972342Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2980389Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2982184Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.2990983Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3037403Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3068879Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3077436Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3096700Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3101906Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3116748Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3167643Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3208213Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3214557Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3218877Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3241255Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3263116Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3309196Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3334972Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3335977Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3344914Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3367053Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3380087Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3416369Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3452566Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3459872Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3478611Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3486030Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3538008Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3551206Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3575178Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3589282Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3609779Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3610489Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3637424Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3638714Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3674113Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3700314Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3704110Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3735288Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3766696Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3773588Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3780394Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3807306Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3819804Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3854699Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3882862Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3884132Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3911777Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3912525Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3917848Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.3979156Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4000387Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4013348Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4015269Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4046795Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4066662Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4074457Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4100184Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4122822Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4132285Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4151148Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4164305Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4211614Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4213256Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4238302Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4245754Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4266066Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4282559Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4288452Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4332367Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4348891Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4365898Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4383960Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4396757Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4419016Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4446308Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4460817Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4473493Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4509617Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4537630Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4557819Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4562013Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4585999Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4594230Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4603658Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4605189Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4667445Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4676297Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4692004Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4712999Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4715096Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4721325Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4742781Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4787709Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4812116Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4833565Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4841801Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4849875Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4869207Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4872312Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4906949Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4915493Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.4989536Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5015719Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5029229Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5038908Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5074025Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5083082Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5106027Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5134883Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5145860Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5164540Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5203651Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5227083Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5228311Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5258263Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5269175Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5332891Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5339130Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5362201Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5367034Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5372051Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5400365Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5454548Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5455693Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5467325Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5479739Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5488908Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5514716Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5564840Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5568830Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5570652Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5584272Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5605194Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5654208Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5668577Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5681456Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5694659Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5708393Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5731856Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5756385Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5781178Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5782836Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5806400Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5818669Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5841280Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5867375Z Completed 8.9 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5886098Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5897144Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5909924Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5922114Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5973122Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5984969Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.5986091Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6025896Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6033344Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6073495Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6088316Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6107746Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6137993Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6143130Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6168261Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6187975Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6215984Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6230572Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6283209Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6314959Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6328697Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6351566Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6362906Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6368654Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6431918Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6439451Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6460855Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6489330Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6508791Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6525840Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6558809Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6577548Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6592558Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6593700Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6627132Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6644230Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6692908Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6694468Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6695691Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6731499Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6771266Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6795062Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6806121Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6823525Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6824594Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6834350Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6869693Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6907949Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6922496Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6925672Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6949429Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.6984924Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7004263Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7020265Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7021499Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7036624Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7046653Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7097579Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7123690Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7131936Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7137789Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7139271Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7154438Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7221635Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7228741Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7237928Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7249370Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7277378Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7285705Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7340220Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7347468Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7356298Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7370200Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7402917Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7420270Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7426169Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7478508Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7508557Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7518488Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7538671Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7550212Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7578848Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7596002Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7658870Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7680596Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7684630Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7694378Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7702868Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7704296Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7772533Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7827897Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7850018Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7851247Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7852451Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7855512Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7905498Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7951871Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7981790Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.7985949Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8013565Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8073885Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8090014Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8104467Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8105957Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8116837Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8159149Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8161538Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8182400Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8234640Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8250882Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8253086Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8272102Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8284065Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8295175Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8333633Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8350242Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8351885Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8378999Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8396938Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8419276Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8453274Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8454135Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8467474Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8488577Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8518247Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8522827Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8545640Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8565375Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8590269Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8591837Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8606023Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8621271Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8651347Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8662843Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8673416Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8690064Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8746631Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8747970Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8749453Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8784144Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8796447Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8807848Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8836681Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8858088Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8887873Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8913643Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8916201Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8917788Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8923553Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8946671Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8954145Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8964469Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8973445Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.8992266Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9009431Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9017306Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9030126Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9059760Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9066007Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9116855Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9171021Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9188677Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9211355Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9226777Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9281002Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9294461Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9303699Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9320887Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9340891Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9381063Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9401825Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9415267Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9445102Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9475506Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9479479Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9493990Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9496490Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9529572Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9588403Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9599650Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9600403Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9646519Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9653894Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9729506Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9730678Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9740711Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9750842Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9771002Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9777668Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9820261Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9841392Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9910932Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9927020Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9933929Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9953392Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:25.9978466Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0007934Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0041628Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0062600Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0066098Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0072124Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0101361Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0135530Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0141055Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0182010Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0186774Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0193198Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0227409Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0236255Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0257337Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0286121Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0301479Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0310539Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0312373Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0367989Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0383161Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0389092Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0401967Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0410930Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0458904Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0478767Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0484588Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0503557Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0506789Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0563584Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0564437Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0582559Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0588128Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0608213Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0658617Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0667625Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0671657Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0701831Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0726969Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0772208Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0785768Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0802049Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0803664Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0812300Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0830344Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0878536Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0879612Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0901806Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0920623Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0927908Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0943130Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.0984157Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1008081Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1029462Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1067455Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1069511Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1074340Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1149074Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1165342Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1240487Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1247944Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1256397Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1275011Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1276253Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1287762Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1318544Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1383361Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1400848Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1403229Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1417561Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1445875Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1457862Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1499210Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1515425Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1516612Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1535147Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1541729Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1553211Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1592136Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1630103Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1645229Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1648722Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1663347Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1674179Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1737558Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1738562Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1739247Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1761919Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1811681Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1813802Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1824310Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1840176Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1866138Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1874143Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1892304Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1923321Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1956994Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.1965138Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2006592Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2010323Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2050131Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2087301Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2115659Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2130054Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2134792Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2140888Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2147396Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2219237Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2230622Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2241613Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2257727Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2260216Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2268041Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2332007Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2382274Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2386976Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2388359Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2389364Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2431786Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2510518Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2520577Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2539916Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2549327Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2550457Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2551336Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2554555Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2645086Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2656372Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2693937Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2721516Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2743915Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2756322Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2789061Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2793393Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2810261Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2848317Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2881772Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2887591Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2913283Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2924469Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2930855Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2978369Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.2981878Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3014842Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3033829Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3039586Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3040837Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3094584Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3116942Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3118266Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3134944Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3143560Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3144749Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3220251Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3225126Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3237470Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3246825Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3252250Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3257919Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3301531Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3333256Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3342458Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3352018Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3356365Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3395916Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3420107Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3435582Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3452113Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3490619Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3492171Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3533507Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3541636Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3563803Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3575586Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3580008Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3599909Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3679201Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3679929Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3692353Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3714675Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3744709Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3750207Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3806816Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3811632Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3855346Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3859823Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3887868Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3891436Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3928156Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3953628Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3961361Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3970092Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.3984922Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4016776Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4039630Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4081800Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4084070Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4096256Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4099685Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4107882Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4124133Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4205216Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4218758Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4229630Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4230991Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4232248Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4243164Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4244680Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4333241Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4337143Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4343415Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4344788Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4383557Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4395178Z Completed 9.0 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4415063Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4462250Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4463699Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4468401Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4478115Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4494211Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4527894Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4535333Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4576410Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4585580Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4608219Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4611250Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4625208Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4671283Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4721675Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4742036Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4764459Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4772958Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4790501Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4825807Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4866915Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4877115Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4886071Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4898315Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4907257Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.4955608Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5005643Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5010099Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5011576Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5018592Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5027199Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5043699Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5084931Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5147269Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5153170Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5159424Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5160487Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5167470Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5175004Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5227522Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5273040Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5300160Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5301259Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5309049Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5329287Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5359517Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5393412Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5450786Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5471970Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5483925Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5501509Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5519243Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5567779Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5572898Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5576013Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5600334Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5621473Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5631372Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5670106Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5679626Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5687842Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5695633Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5738632Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5756411Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5772831Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5782022Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5790774Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5821249Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5866012Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5867569Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5874154Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5896405Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5929943Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5957786Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5965873Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.5983658Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6001697Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6075085Z Completed 9.1 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6098433Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6106477Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6136805Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6153680Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6155290Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6204984Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6215399Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6217620Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6248264Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6287446Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6295055Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6321516Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6328314Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6363219Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6381521Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6387533Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6406952Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6436997Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6461223Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6473782Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6497084Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6516593Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6537668Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6541676Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6596229Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6613215Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6643573Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6646799Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6648378Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6674404Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6682923Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6739875Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6749208Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6800794Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6830966Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6859519Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6868194Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6887218Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6892538Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6955920Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.6977762Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7003608Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7017800Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7041647Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7063425Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7079496Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7133343Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7140174Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7168550Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7171462Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7178808Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7199341Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7253148Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7271386Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7288546Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7295896Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7297098Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7322419Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7371229Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7390959Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7401180Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7415729Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7462842Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7463678Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7464340Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7493718Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7503212Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7530117Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7575442Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7585166Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7599597Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7612321Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7625078Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7643406Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7649920Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7680122Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7701948Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7706973Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7714582Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7749843Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7770634Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7798786Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7824455Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7835005Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7836776Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7850435Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7885100Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7908432Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7918537Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7933127Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7943262Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.7988141Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8004518Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8013282Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8033469Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8055276Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8090658Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8114793Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8129635Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8186919Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8189365Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8206048Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8248815Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8285230Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8296165Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8321599Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8340219Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8348702Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8364313Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8407761Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8408712Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8453020Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8472163Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8489145Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8506155Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8518448Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8544663Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8548812Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8549807Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8616680Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8622319Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8651260Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8653488Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8658585Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8685798Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8732868Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8746601Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8750834Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8767651Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8779443Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8804542Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8851236Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8855751Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8860709Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8886707Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8927167Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8977518Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8979297Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8981631Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.8987380Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9033158Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9045661Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9082856Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9089918Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9098763Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9104761Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9187910Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9188664Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9211592Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9230887Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9249276Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9277676Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9299422Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9316625Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9330061Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9342021Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9382872Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9391853Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9408477Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9471739Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9485331Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9496032Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9513211Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9516736Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9560082Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9604659Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9610081Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9625952Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9636992Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9654541Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9678610Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9709470Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9724211Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9746089Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9765416Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9786576Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9809130Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9816002Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9837734Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9843218Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9873694Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9900240Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9929187Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9935939Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9945010Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9962453Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9984968Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:26.9988858Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0026561Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0033516Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0038943Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0102198Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0109824Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0123621Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0142846Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0167307Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0216091Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0223646Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0242495Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0243751Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0244806Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0322333Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0340667Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0345411Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0374565Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0376179Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0433436Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0440862Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0472291Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0486467Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0497997Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0508055Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0543874Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0560450Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0571302Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0590015Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0625896Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0627185Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0648549Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0674296Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0723252Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0724407Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0727849Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0744290Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0758616Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0788864Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0838297Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0845668Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0852234Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0867742Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0891191Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0907795Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0929748Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0975642Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0977236Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0978480Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.0979685Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1040488Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1045167Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1050839Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1091832Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1095023Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1098140Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1104070Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1123478Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1177602Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1185248Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1208373Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1225196Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1229823Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1235378Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1282184Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1305800Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1315399Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1336776Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1384076Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1393279Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1456863Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1483349Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1508609Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1522147Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1568643Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1595262Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1615519Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1620436Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1629249Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1656451Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1717982Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1719344Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1771332Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1809379Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1818082Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1819712Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1860559Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1866803Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1918067Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1930596Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1950960Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1967797Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.1972980Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2000444Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2014328Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2030745Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2056146Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2087812Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2103384Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2122199Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2143700Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2168975Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2194823Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2211310Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2218263Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2273307Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2299261Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2347855Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2396132Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2420215Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2426013Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2444854Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2492368Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2497052Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2523241Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2539482Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2566129Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2575753Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2614117Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2617479Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2618556Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2662244Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2688995Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2693992Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2758476Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2766755Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2775814Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2809577Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2850301Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2854927Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2856231Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2887669Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2909308Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2928985Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2940501Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2961882Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.2979576Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3009098Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3034314Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3069806Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3080980Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3082092Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3102417Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3107334Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3134624Z Completed 9.1 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3167869Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3175697Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3201288Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3210828Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3236876Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3238606Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3283233Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3292885Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3303362Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3331221Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3387690Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3391166Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3433776Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3471816Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3473240Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3503909Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3505860Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3579374Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3603656Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3611505Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3627149Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3639621Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3640475Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3683236Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3722445Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3734810Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3763168Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3809038Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3812913Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3833150Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3842610Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3893678Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3905764Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3960200Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3970296Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3979512Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3988438Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.3995854Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4011944Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4090221Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4123506Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4137815Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4143010Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4164853Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4169634Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4180068Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4228659Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4258774Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4266270Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4267365Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4288045Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4294213Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4306542Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4343741Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4370242Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4393432Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4406845Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4419410Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4420509Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4444504Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4470932Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4497532Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4503680Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4545180Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4554563Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4567637Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4568477Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4595253Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4602154Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4619060Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4690194Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4705528Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4710632Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4726835Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4740200Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4744099Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4769676Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4786496Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4820058Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4875164Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4894255Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4901084Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4918276Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4937768Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4956309Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.4957251Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5006237Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5019433Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5047080Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5056321Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5067893Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5091727Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5111883Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5114123Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5132473Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5152162Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5181416Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5199966Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5221714Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5223015Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5270875Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5281587Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5287924Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5291959Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5340177Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5344977Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5375143Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5383726Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5391007Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5403610Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5461823Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5473639Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5491902Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5497429Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5514076Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5537197Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5584160Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5588686Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5602141Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5607783Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5642552Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5660937Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5669347Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5699896Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5717637Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5723526Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5750292Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5757412Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5773882Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5820575Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5828408Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5846791Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5851698Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5872453Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5896631Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5919969Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5937201Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5959780Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5967494Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5971378Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.5972302Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6031233Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6042511Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6060541Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6081089Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6096566Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6165610Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6194174Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6196962Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6207786Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6213236Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6270172Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6313112Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6315149Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6344616Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6348351Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6362919Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6400656Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6440470Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6447033Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6514897Z Completed 9.2 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6523207Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6542868Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6562513Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6637716Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6679284Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6685160Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6699653Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6709324Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6767688Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6768822Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6769897Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6773445Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6801733Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6833726Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6875009Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6894081Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6897206Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6959415Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6961447Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6972063Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.6990948Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7003587Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7043469Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7059648Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7065578Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7087294Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7097393Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7113299Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7140978Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7149916Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7195433Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7196649Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7208740Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7228326Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7243454Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7305658Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7335770Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7344213Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7350552Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7380083Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7424249Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7438421Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7470590Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7475916Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7479670Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7513370Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7530299Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7572950Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7594963Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7606123Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7641131Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7644021Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7670218Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7677234Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7716014Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7735833Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7753883Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7759740Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7775378Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7794163Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7808677Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7822400Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7859766Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7884095Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7911398Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7915249Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7925479Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7953804Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.7963068Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8022565Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8023623Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8059449Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8077775Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8084275Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8089190Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8114674Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8134364Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8176251Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8185809Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8197375Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8209685Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8217962Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8241324Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8295686Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8297038Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8306416Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8307564Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8329924Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8338140Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8395953Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8410033Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8433609Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8440129Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8441226Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8490998Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8523917Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8575959Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8596542Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8600064Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8643955Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8681752Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8702792Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8710049Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8715349Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8755956Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8759054Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8776220Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8807029Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8841131Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8859081Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8859970Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8887365Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8896699Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8913996Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8953010Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8954175Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8984587Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.8988964Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9033952Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9060708Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9070037Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9092213Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9103640Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9123035Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9178746Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9219240Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9220994Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9227867Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9258366Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9281964Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9309023Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9328721Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9339757Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9365502Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9368731Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9408835Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9413371Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9427875Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9460338Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9474563Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9475715Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9492482Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9514577Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9558487Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9562903Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9566426Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9579763Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9613515Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9637904Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9652125Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9667325Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9716536Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9734966Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9763210Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9794397Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9812075Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9849193Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9857077Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9887958Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9909852Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9913651Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9938256Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9974265Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:27.9981653Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0017239Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0028907Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0047072Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0066692Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0107741Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0108890Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0134716Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0154971Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0181629Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0224084Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0228066Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0237316Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0258953Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0282426Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0347824Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0359685Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0374211Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0381383Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0411068Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0426869Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0448593Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0499611Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0502221Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0508750Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0509686Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0514410Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0554484Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0584298Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0612330Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0632146Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0634891Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0639084Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0649342Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0672596Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0683423Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0740356Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0757044Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0759173Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0764470Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0771397Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0813564Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0849681Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0866801Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0868193Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0882400Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0883482Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0892560Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0952133Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0955403Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.0994426Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1020760Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1021473Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1028656Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1033224Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1088858Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1089724Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1120667Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1150245Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1152876Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1157232Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1186800Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1190183Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1219763Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1239740Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1300583Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1317253Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1319807Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1332164Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1337656Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1362981Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1393245Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1422387Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1449881Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1465900Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1467002Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1493012Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1503531Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1566933Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1587713Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1598708Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1613271Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1622520Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1640020Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1659682Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1693411Z Completed 9.2 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1727527Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1728930Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1739189Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1747369Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1779886Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1804941Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1821093Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1848151Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1859604Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1883584Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1887165Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1891938Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1949927Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1958112Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1963812Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1971849Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.1997733Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2014175Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2041304Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2064426Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2070182Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2098720Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2102971Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2110204Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2163310Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2197421Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2203671Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2230343Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2236023Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2244488Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2280525Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2336557Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2337712Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2374748Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2375655Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2405867Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2434467Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2453069Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2468744Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2474553Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2475638Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2540424Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2571068Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2614788Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2626329Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2627574Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2632965Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2666153Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2679217Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2714492Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2758809Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2784561Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2789343Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2806798Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2807770Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2829202Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2870362Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2879357Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2909041Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2916334Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2924789Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2926172Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2978150Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.2998937Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3026520Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3027675Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3030875Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3056501Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3080170Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3117202Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3126262Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3139156Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3170886Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3216971Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3231616Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3248401Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3253871Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3260506Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3280674Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3300398Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3341088Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3375330Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3395929Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3412257Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3426063Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3430593Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3449068Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3489303Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3506256Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3526830Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3551745Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3553250Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3568417Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3576930Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3615985Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3655797Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3661902Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3672972Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3680374Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3700321Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3712335Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3733111Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3784539Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3785710Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3788984Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3796883Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3802906Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3823511Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3894112Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3903336Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3904353Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3934132Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3946442Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3949930Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.3978743Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4032436Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4033728Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4051129Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4052180Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4129131Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4138504Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4149534Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4185222Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4208147Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4211465Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4238372Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4249250Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4278481Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4306845Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4313293Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4339514Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4349353Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4370590Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4376778Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4430579Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4432065Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4452465Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4474576Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4478594Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4501906Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4533421Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4541205Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4574443Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4575313Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4586607Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4593950Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4642537Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4668943Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4670486Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4686723Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4715873Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4729828Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4764195Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4785289Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4786364Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4837573Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4842424Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4867817Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4880974Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4913539Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4914434Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4944125Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.4962607Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5009466Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5020497Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5058944Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5076435Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5085209Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5112426Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5167810Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5169703Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5190936Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5191891Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5200503Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5232483Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5287830Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5299246Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5313701Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5325019Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5360799Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5371094Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5405016Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5437031Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5446207Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5459343Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5470776Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5507494Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5543440Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5549540Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5569041Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5583613Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5593588Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5617140Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5652296Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5677043Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5689953Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5697002Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5716234Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5756343Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5820740Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5822114Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5823338Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5834146Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5838593Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5859445Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5933271Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5939390Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5949085Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.5974849Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6001696Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6008075Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6021936Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6048407Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6064809Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6086389Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6102487Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6108316Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6143940Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6172981Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6195731Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6201234Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6225749Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6241313Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6263246Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6297115Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6301262Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6330888Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6361545Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6375627Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6376731Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6405938Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6417581Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6449637Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6492300Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6520743Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6529693Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6531553Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6532864Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6542539Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6612388Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6623704Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6644502Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6665446Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6681631Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6682907Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6739470Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6748757Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6760341Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6766057Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6783584Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6805799Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6855395Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6856821Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6861891Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6895239Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6904387Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6938896Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6943548Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.6944574Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7008955Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7012980Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7027014Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7057788Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7059069Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7081320Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7120553Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7146321Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7159395Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7160773Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7178808Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7180054Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7228252Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7242403Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7265044Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7282349Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7284185Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7293193Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7312233Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7353994Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7370007Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7387043Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7388172Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7434813Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7437003Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7519236Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7522492Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7533417Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7569011Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7583963Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7639966Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7706959Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7721527Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7741019Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7753499Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7767094Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7767919Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7835740Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7841275Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7854801Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7869289Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7874479Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7926328Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7963886Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7970643Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7972040Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7980889Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.7982295Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8018011Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8063367Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8081902Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8088844Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8099540Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8107983Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8156129Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8184865Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8205309Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8209005Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8226388Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8230454Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8268230Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8336723Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8342067Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8351934Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8371549Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8385612Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8401301Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8418260Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8456282Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8474758Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8480746Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8491685Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8542267Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8554467Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8555670Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8560402Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8591931Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8630063Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8651905Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8653128Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8659118Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8663018Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8737179Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8746244Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8747841Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8749043Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8771891Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8854559Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8875071Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8877108Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8883006Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8888633Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8891977Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8910011Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8984160Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.8989342Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9005407Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9013766Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9020067Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9029269Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9059593Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9102274Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9131177Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9132547Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9133890Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9144188Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9145279Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9205916Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9211682Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9252459Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9253760Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9255153Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9259605Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9280781Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9327438Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9383883Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9385426Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9386709Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9388031Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9395875Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9448700Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9466856Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9472444Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9492266Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9512004Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9539210Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9542116Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9609831Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9647874Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9696625Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9698113Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9718419Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9732569Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9740652Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9748772Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9833845Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9908891Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9922431Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9927112Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9930328Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:28.9994809Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0023062Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0054533Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0055997Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0066715Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0067986Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0090763Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0131090Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0141220Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0177317Z Completed 9.3 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0190296Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0205791Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0206670Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0231579Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0273828Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0290506Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0294589Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0332475Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0339331Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0382557Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0393582Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0397438Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0409229Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0422069Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0459660Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0466497Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0479345Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0503048Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0544785Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0548671Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0549738Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0583782Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0611134Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0615673Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0623723Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0643205Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0695575Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0696743Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0698914Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0726698Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0755988Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0760958Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0772102Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0783578Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0792899Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0800430Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0806848Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0814149Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0828864Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0843550Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0850368Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0856153Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0872302Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0879706Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0890022Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0892407Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0925481Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0932282Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0953161Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0963361Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0977675Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0986509Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.0994707Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1021369Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1022422Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1027061Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1031040Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1078727Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1103053Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1120128Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1132800Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1147717Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1172535Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1201953Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1211838Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1232463Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1243772Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1266202Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1300968Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1306909Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1317879Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1333029Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1344297Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1367038Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1389181Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1390376Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1398246Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1404259Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1411679Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1421900Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1475018Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1476463Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1539117Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1557481Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1579804Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1588347Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1618955Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1630379Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1636182Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1688853Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1707676Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1708683Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1716300Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1720439Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1749247Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1753531Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1771354Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1780587Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1798028Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1804448Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1816833Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1828963Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1835555Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1860224Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1870115Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1882372Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1907660Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1918276Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1928521Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1934941Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1951452Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.1995417Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2013446Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2022536Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2039740Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2057787Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2088849Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2107420Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2126021Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2137084Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2167184Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2188471Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2234008Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2246306Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2264795Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2283180Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2287074Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2297505Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2304816Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2315845Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2345272Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2346099Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2346822Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2373893Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2375050Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2410812Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2491170Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2505020Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2512363Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2547437Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2548653Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2627508Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2637657Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2658824Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2668700Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2690566Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2706083Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2711004Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2731905Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2758419Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2771505Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2780696Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2801930Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2813961Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2834810Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2835652Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2847913Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2893084Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2917055Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2918231Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2919412Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2920573Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2937040Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2944474Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2970260Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.2978032Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3003380Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3052034Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3054102Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3066305Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3076787Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3119724Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3126193Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3131060Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3142612Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3151764Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3208071Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3216035Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3222156Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3236539Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3251546Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3253523Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3283287Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3293100Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3306171Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3411220Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3419821Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3439931Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3500011Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3511798Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3522020Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3526055Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3541997Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3562228Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3567455Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3578909Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3619753Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3634968Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3655369Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3681971Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3688160Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3696340Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3748856Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3776363Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3824682Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3836085Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3845079Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3873060Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3908872Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3933482Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3938794Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3953928Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3965419Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.3991106Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4033532Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4054244Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4055550Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4057019Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4070127Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4108976Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4117145Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4122552Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4140465Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4150535Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4156232Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4170454Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4175531Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4189535Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4192115Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4206176Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4208251Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4216179Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4334104Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4340431Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4375378Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4405425Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4412254Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4427861Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4435689Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4449511Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4459643Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4472130Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4476193Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4488259Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4495570Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4505362Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4515976Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4524071Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4530767Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4540766Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4550542Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4552936Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4629234Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4668219Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4670016Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4762998Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4789116Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4857512Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4868385Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4873586Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4887789Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4901228Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4911599Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4914624Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4922049Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4936383Z Completed 9.4 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4947659Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4951843Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4976355Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.4981262Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5002390Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5012247Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5016892Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5060514Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5080574Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5086560Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5095920Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5135023Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5154000Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5158488Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5201136Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5203647Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5220945Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5244696Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5249063Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5250237Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5251364Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5269842Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5286342Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5291746Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5311202Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5315919Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5352594Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5394436Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5400541Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5418484Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5436593Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5449015Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5488174Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5498869Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5523602Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5525231Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5526518Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5528300Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5548231Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5554018Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5584854Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5593206Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5601421Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5608672Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5618698Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5626813Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5693882Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5748715Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5768337Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5773590Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5776654Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5801363Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5810719Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5820616Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5837176Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5846774Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5858275Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5864802Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5865920Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5886759Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5893414Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5903619Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5913673Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5928444Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5985142Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.5991160Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6032580Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6077581Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6108194Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6110399Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6159738Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6169208Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6175815Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6195692Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6203385Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6223107Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6238361Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6242527Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6263347Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6283105Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6300957Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6343362Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6382967Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6393618Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6400384Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6402397Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6412496Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6426494Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6430047Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6465615Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6468476Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6479263Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6509688Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6521819Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6528000Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6569794Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6572495Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6579603Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6600929Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6619343Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6628902Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6641582Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6667985Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6700341Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6733291Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6735094Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6736550Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6754178Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6765424Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6792891Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6865030Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6900952Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6908111Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6909203Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6913370Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6949801Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6981219Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6984642Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.6999742Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7005535Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7038586Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7048286Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7084263Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7126055Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7130330Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7146038Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7156594Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7167940Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7190629Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7222063Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7243314Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7249823Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7262880Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7285934Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7294936Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7343925Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7345116Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7352576Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7387564Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7414624Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7416640Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7418281Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7446303Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7465922Z Completed 9.4 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7487652Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7513513Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7526367Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7548806Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7551412Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7553279Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7607421Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7620772Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7638859Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7662893Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7671244Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7685494Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7703470Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7751111Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7756571Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7762872Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7768367Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7798731Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7837906Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7846145Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7874147Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7882371Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7884050Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7940358Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7951741Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7958931Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7990397Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.7994309Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8013906Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8077869Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8082528Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8083967Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8098709Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8130627Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8174285Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8201174Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8228212Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8233098Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8237318Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8259202Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8301044Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8330427Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8340078Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8349462Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8350789Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8365891Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8405430Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8434639Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8436280Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8445974Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8461976Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8497635Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8526575Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8537540Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8538526Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8560406Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8579013Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8605751Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8638662Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8643314Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8655111Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8680708Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8688234Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8716841Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8761729Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8791474Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8869141Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8917780Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8935944Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8984575Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8985961Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.8994322Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9001259Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9003681Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9069358Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9102063Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9118562Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9119925Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9146645Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9155284Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9180896Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9195437Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9224536Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9239699Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9291113Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9310649Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9349687Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9367587Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9396457Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9405721Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9418165Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9426882Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9461410Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9474236Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9513971Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9521194Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9522434Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9523509Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9556137Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9581292Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9629233Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9643581Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9648991Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9666874Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9681113Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9723660Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9756029Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9759839Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9779015Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9788270Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9809609Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9841862Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9890596Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9891553Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9897584Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9899912Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9942112Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9957705Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9976346Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9986673Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:29.9989264Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0031839Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0055775Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0072094Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0090437Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0159220Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0160575Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0161795Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0168271Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0176464Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0177906Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0219638Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0276343Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0282023Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0293617Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0294689Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0299266Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0320656Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0379852Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0398924Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0431980Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0442979Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0447299Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0454981Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0458036Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0498181Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0533724Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0535105Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0546077Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0551287Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0565787Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0614470Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0620591Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0629644Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0635076Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0672187Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0709361Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0717250Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0731302Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0732483Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0777499Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0810133Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0817121Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0823041Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0831986Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0856459Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0905997Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0909469Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0924095Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0943685Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.0967876Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1020430Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1024366Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1030206Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1048265Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1078900Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1099534Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1143166Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1158188Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1178009Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1193433Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1202101Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1242491Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1247087Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1298337Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1303868Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1338450Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1345807Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1389055Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1389943Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1446372Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1457898Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1485234Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1495366Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1511342Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1520773Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1628239Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1639901Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1649361Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1660198Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1671903Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1682088Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1753395Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1824763Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1846412Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1850167Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1882856Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1914791Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1941004Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1955138Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1962368Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.1975404Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2020059Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2067392Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2073919Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2079121Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2084293Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2143233Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2167244Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2174757Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2181559Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2191526Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2234703Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2256734Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2271279Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2282341Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2292324Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2317673Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2361561Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2365282Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2370121Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2408615Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2421536Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2470865Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2492532Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2493746Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2494415Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2511273Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2531786Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2568411Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2594484Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2602799Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2603944Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2614892Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2638133Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2671824Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2702377Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2710268Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2723395Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2736558Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2769422Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2790221Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2827707Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2830931Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2851598Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2866055Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2867715Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2882311Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2941501Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2947127Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2976511Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2992361Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.2997486Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3021908Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3037095Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3039369Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3087066Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3118219Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3123225Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3125180Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3138565Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3155750Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3183628Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3210965Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3232253Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3247693Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3264412Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3278065Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3308878Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3319826Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3320568Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3355383Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3409295Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3447758Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3458925Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3460341Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3491940Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3494109Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3494994Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3604605Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3628101Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3631194Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3632486Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3641287Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3666177Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3681433Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3684827Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3745891Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3750724Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3752351Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3776469Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3791896Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3814846Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3817394Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3845876Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3854730Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3892414Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3901530Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3933012Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3936521Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3957215Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3958561Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.3965754Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4009701Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4043506Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4058484Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4066127Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4094716Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4099398Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4109229Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4110621Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4119700Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4170657Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4194965Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4196288Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4219052Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4229736Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4247493Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4286764Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4292462Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4301185Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4327897Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4350125Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4358804Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4393360Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4404321Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4413366Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4437543Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4446810Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4475975Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4486759Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4498321Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4535558Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4548421Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4573884Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4593780Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4603259Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4624692Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4694392Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4718902Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4720939Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4730361Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4738027Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4767146Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4775853Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4833417Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4871161Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4872408Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4882339Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4926281Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4948555Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4961941Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4966366Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4985025Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.4996379Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5038328Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5065333Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5066262Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5086090Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5092091Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5093289Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5178744Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5179930Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5210351Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5226526Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5254251Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5259016Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5305835Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5313679Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5392277Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5398340Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5406689Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5413468Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5426555Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5445878Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5489859Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5491230Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5499379Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5523146Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5550020Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5581553Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5585414Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5589693Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5613897Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5626582Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5649621Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5694763Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5744084Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5760884Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5797637Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5805246Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5818514Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5845211Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5868347Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5885169Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5963592Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5993567Z Completed 9.5 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5994951Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.5996132Z Completed 9.5 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6000463Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6027286Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6069538Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6092057Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6108868Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6126432Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6143368Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6150732Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6169117Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6226968Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6241851Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6243156Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6257251Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6262069Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6268541Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6332221Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6348781Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6351310Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6367505Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6373603Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6399008Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6450421Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6454177Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6476032Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6480420Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6506127Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6517501Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6568560Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6577840Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6581960Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6588103Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6589073Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6631304Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6657322Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6668667Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6677784Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6729340Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6730985Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6734089Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6738620Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6770306Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6780773Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6819834Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6834829Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6866345Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6887619Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6955574Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6956732Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.6977467Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7003284Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7016888Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7029941Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7060627Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7100047Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7109788Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7113020Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7166075Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7177313Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7206310Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7207736Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7209367Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7268700Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7269866Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7282924Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7294654Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7306377Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7342136Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7360642Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7378639Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7386841Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7392044Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7467779Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7476968Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7497605Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7499174Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7514837Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7546194Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7546949Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7551713Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7627068Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7628214Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7633630Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7643869Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7679401Z Completed 9.6 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7741632Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7746432Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7754890Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7786905Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7802201Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7861042Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7868416Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7875918Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7880887Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7900456Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7949937Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7959079Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7960199Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7961220Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.7999534Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8031564Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8051353Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8054917Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8071816Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8086977Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8113476Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8127717Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8249206Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8249954Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8250609Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8276666Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8306737Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8311302Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8339215Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8340971Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8343948Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8453159Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8515795Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8537742Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8554066Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8558710Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8603241Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8604595Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8632264Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8644959Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8652821Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8676095Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8709640Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8726434Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8739057Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8745851Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8786829Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8816458Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8842964Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8855571Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8867546Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8872262Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8889236Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8928301Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8962161Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8971360Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8973282Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.8994219Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9011693Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9036102Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9073647Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9086866Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9106974Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9114411Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9116627Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9161948Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9180025Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9181159Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9209000Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9228784Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9245592Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9269836Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9282853Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9299806Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9313773Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9315542Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9353292Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9356960Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9394909Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9405239Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9408345Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9423298Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9456878Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9467755Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9510798Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9533365Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9539697Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9567259Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9581047Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9605797Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9635113Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9658791Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9666588Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9671347Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9700019Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9733305Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9765307Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9776506Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9834434Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9856694Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9879589Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9914197Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9927068Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9970845Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9980422Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9991725Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:30.9999154Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0030878Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0032119Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0046324Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0085170Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0101868Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0109650Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0116765Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0169295Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0174211Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0186990Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0193324Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0240066Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0244369Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0263638Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0275034Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0305996Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0307075Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0311696Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0344819Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0366999Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0391279Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0401323Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0411675Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0443661Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0459723Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0493309Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0501883Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0504782Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0527034Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0537993Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0557598Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0585227Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0625696Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0627264Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0641770Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0643154Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0652996Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0694681Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0702503Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0740776Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0749675Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0757193Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0767353Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0778644Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0826174Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0827686Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0848297Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0862478Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0886236Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0887336Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0902269Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0945056Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0955827Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0960220Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.0984731Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1007589Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1053599Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1063079Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1081766Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1097172Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1115907Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1145017Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1161479Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1187778Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1194112Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1210335Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1272897Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1289997Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1293668Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1294849Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1296030Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1374031Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1385316Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1403160Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1411038Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1425101Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1471460Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1483846Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1504552Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1505730Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1510171Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1563460Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1580458Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1589585Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1619250Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1627023Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1630496Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1682613Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1712426Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1713506Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1733279Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1753682Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1755065Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1832430Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1834528Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1845032Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1847903Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1849218Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1860089Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.1977861Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2011579Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2016356Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2026610Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2039854Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2063243Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2083632Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2093261Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2119615Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2126722Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2190625Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2278642Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2304765Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2308710Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2336040Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2395073Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2395987Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2409431Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2426742Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2447045Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2462568Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2474353Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2513609Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2541440Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2543006Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2564559Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2589016Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2604059Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2619049Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2624556Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2649343Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2665204Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2708721Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2715756Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2716470Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2723026Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2766781Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2777125Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2805821Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2816565Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2843377Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2849538Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2858878Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2869425Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2919408Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2930611Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2935441Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2939463Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.2959646Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3011248Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3014030Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3015421Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3040977Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3043857Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3099083Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3101339Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3105494Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3129322Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3134579Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3172791Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3178826Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3209950Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3224363Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3238685Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3259414Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3281296Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3308621Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3332417Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3343707Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3391011Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3397288Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3438752Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3440015Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3440818Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3451867Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3479064Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3521062Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3525096Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3550681Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3558937Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3590813Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3601539Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3625229Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3650844Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3656613Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3678960Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3689373Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3699344Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3734393Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3736072Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3762920Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3806668Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3807974Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3816180Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3847648Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3893766Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3906367Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3919405Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3929062Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3930161Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.3955421Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4002815Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4019682Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4026785Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4043876Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4056165Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4093417Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4114553Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4128656Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4140757Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4177799Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4209811Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4226868Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4234405Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4245988Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4251483Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4297528Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4314301Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4343756Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4359360Z Completed 9.6 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4366384Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4403892Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4427008Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4436253Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4458176Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4462016Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4507291Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4529329Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4571032Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4579420Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4590691Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4624044Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4658042Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4672202Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4684600Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4686293Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4720004Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4726921Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4790510Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4800959Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4817734Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4845345Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4852206Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4886237Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4902783Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4926050Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4930579Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4952388Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4974156Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.4987162Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5001068Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5027542Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5038862Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5064140Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5104670Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5125654Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5129213Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5184771Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5188159Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5198291Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5210888Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5245387Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5266046Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5267260Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5288908Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5290553Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5299276Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5347578Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5381852Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5409028Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5416673Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5446084Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5468807Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5472775Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5484079Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5533695Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5553631Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5584287Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5611893Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5622902Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5642134Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5652920Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5691934Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5703696Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5729907Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5751722Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5791862Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5798466Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5810288Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5831075Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5836915Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5851298Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5911437Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5919011Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5935938Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5944377Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5957351Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.5966461Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6024360Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6030386Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6059403Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6088933Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6108329Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6124123Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6156786Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6190311Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6214772Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6247564Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6255795Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6265128Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6273668Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6337149Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6341239Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6342352Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6378187Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6386302Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6394804Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6407589Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6443492Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6446837Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6500994Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6505465Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6517100Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6529009Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6552430Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6555919Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6561860Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6602401Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6636325Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6639510Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6671908Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6680159Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6697099Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6709355Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6714046Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6759161Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6760314Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6792394Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6794021Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6852195Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6853315Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6902414Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6913613Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6921162Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6942489Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6962549Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.6982902Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7018437Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7024004Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7032568Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7058734Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7070410Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7094631Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7115711Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7120475Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7170367Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7176463Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7193262Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7211825Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7250327Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7278728Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7317309Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7321625Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7339932Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7363717Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7411274Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7435092Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7442156Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7453971Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7486584Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7496322Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7516763Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7544695Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7551580Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7582958Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7588814Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7605139Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7641471Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7672270Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7677194Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7691858Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7702303Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7704308Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7741808Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7812529Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7813425Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7822134Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7831254Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7839475Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7888489Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7907110Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7907914Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7948734Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7971574Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7976717Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.7978354Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8002454Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8027601Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8061970Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8073429Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8121059Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8130857Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8150955Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8163481Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8182348Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8195227Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8270557Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8299237Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8316345Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8376854Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8378374Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8385199Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8418332Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8431299Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8487028Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8488454Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8496321Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8544953Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8551060Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8579075Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8601725Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8621148Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8650828Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8654742Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8670354Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8700073Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8708505Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8730859Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8737535Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8760414Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8808196Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8818158Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8826360Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8827903Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8858902Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8860049Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8874671Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8924613Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8940052Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8956790Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8966075Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8985204Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.8995196Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9000639Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9057051Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9064564Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9098677Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9123758Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9132952Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9134020Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9138560Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9178637Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9188315Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9230006Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9238792Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9257021Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9258314Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9263936Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9305252Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9312925Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9323243Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9366162Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9380573Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9405865Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9411850Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9414983Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9458938Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9460161Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9468451Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9516498Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9523115Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9530633Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9550167Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9561981Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9577913Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9619635Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9637330Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9667936Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9672388Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9702894Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9718507Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9720023Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9735608Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9740389Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9775761Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9797639Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9820135Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9826180Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9848954Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9855765Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9883069Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9884030Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9915249Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9929294Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9942528Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9956897Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9979660Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9984952Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:31.9988606Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0005990Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0060538Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0063715Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0083301Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0111114Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0131429Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0138659Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0143044Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0177129Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0191389Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0207587Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0221494Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0240325Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0276125Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0279572Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0294548Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0315364Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0333379Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0371797Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0373072Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0394697Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0415410Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0446651Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0458785Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0465525Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0489299Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0492227Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0505765Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0541439Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0571049Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0592803Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0598967Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0604771Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0631724Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0650191Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0694535Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0701063Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0710350Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0712600Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0748409Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0787419Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0788629Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0808471Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0840455Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0862870Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0872541Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0932163Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0938441Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.0982243Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1044124Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1045043Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1052960Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1073482Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1094818Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1116456Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1132406Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1165980Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1199820Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1210135Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1211552Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1222012Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1290987Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1303480Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1304588Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1313317Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1339485Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1392939Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1404984Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1406160Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1420930Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1455459Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1533639Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1557596Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1602461Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1603735Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1619970Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1656600Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1681690Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1701176Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1702571Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1728122Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1729754Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1731049Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1748206Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1784382Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1786242Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1787713Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1805966Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1813676Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1818785Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1863292Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1868674Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1879357Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1914931Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1951366Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1966548Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.1983022Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2005007Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2014275Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2046507Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2055327Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2108710Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2120159Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2123283Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2132976Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2148998Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2152487Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2173786Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2190353Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2210939Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2223568Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2229961Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2241973Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2254615Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2290658Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2308911Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2328415Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2349495Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2365727Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2368709Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2384190Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2399558Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2403313Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2417608Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2445641Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2470204Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2471312Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2472392Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2473554Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2479848Z Completed 9.7 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2491853Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2494650Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2500942Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2509322Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2518547Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2556181Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2563791Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2597325Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2609901Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2617165Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2675617Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2684479Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2728507Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2737582Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2786830Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2888507Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2893699Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2909124Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2917031Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2925324Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2931579Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2938396Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2944862Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2952203Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2957945Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.2963616Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3000953Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3002607Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3013120Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3024551Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3044271Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3066992Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3076933Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3079866Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3091514Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3099450Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3113295Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3118949Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3123583Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3130257Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3139577Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3147701Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3154954Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3162097Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3197827Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3219465Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3239502Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3254912Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3288405Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3290718Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3307212Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3319838Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3399579Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3407095Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3414021Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3421609Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3428697Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3434683Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3440382Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3718824Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3735817Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3743338Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3750466Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3756981Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3763218Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3770369Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3777518Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3786066Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3792871Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3814311Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3821249Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3828502Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3835037Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3840865Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3847483Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3854829Z Completed 9.8 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3861480Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3899732Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3914055Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3923878Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3926232Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3949122Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3974024Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.3993263Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4009195Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4028562Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4033687Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4058991Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4069328Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4076957Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4085867Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4094816Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4101558Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4110509Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4135903Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4149577Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4157085Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4165596Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4179155Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4194003Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4213494Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4220418Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4259750Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4267449Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4274730Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4282145Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4293498Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4295122Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4302057Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4321005Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4326891Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4337904Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4344532Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4347466Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4362864Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4367569Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4639646Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4649832Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4662956Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4674876Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4684255Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4693686Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4704654Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4719973Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4724206Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4737596Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4746946Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4754791Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4761971Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4769284Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4776423Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4783773Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4797582Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4804447Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4811820Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4836062Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4840488Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4858799Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4881078Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4901944Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4903143Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4925049Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4933874Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4939556Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4952808Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4968817Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4975177Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.4990713Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5004310Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5020888Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5040577Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5049006Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5075393Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5085304Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5088685Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5115406Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5123802Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5125484Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5165974Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5173032Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5198939Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5204784Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5217056Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5233308Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5236786Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5250641Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5253615Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5259552Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5272563Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5274758Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5287890Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5289338Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5306727Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5307858Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5319371Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5320454Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5335119Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5339663Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5351710Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5360427Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5469513Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5475627Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5480824Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5486928Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5492230Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5499047Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5504071Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5509969Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5515661Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5523216Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5561127Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5576841Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5586893Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5595866Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5607998Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5616036Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5624923Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5627829Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5645251Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5649258Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5658209Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5668058Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5680745Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5713317Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5729219Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5758428Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5776638Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5828548Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5841085Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5862092Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5885209Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5904866Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5921718Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.5982140Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6017097Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6051262Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6061200Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6094293Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6099095Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6135365Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6139156Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6147188Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6167678Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6176151Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6194354Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6197531Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6223847Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6238822Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6246418Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6265622Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6268147Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6271668Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6288734Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6291662Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6306482Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6377334Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6389542Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6402485Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6414726Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6427337Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6435681Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6453229Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6459374Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6468696Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6479801Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6485363Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6495024Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6637686Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6654786Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6712823Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6754467Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6785924Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6826781Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6867920Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6906936Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6940322Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6956997Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6961976Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.6989876Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7009499Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7020681Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7031888Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7043679Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7050304Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7070591Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7103034Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7143704Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7165329Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7185716Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7208516Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7239177Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7245344Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7251083Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7257336Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7264501Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7276822Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7281163Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7298491Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7299692Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7310509Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7320024Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7331951Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7339221Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7355675Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7358924Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7364961Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7372377Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7379844Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7385994Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7392042Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7561541Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7574392Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7580584Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7587329Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7595859Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7604074Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7611608Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7621111Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7630558Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7640080Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7646210Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7660066Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7666262Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7856225Z Completed 9.8 GiB/9.9 GiB (125.3 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7905585Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.7949157Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8143541Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8151775Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8167529Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8176902Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8181297Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8193221Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8199261Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8207394Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8216345Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8223547Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8231187Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8253673Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8296692Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8302512Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8308568Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8314699Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8320428Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8326513Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8332423Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8338416Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8344431Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8350313Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8465447Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8478232Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8488691Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8497643Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8505735Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8514939Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8525268Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8535800Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8553287Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.8561142Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9041410Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9051459Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9067331Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9080642Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9099531Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9108842Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9140587Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9148186Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9154796Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9160855Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9223975Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9230036Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9258024Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9263541Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9269444Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9274960Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9280257Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9287509Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9301291Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9304696Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9317874Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9323884Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9329652Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9335736Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9346394Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9356745Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9361359Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9381314Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9387614Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9402299Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9405844Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9419153Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9425099Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9439821Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9455476Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9462217Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9469008Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9475756Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9489985Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9494266Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9500183Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9506290Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9511461Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9516828Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9522094Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9527578Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9533554Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9539451Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9545547Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9617652Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9623228Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9629127Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9635587Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9641213Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9648328Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9654808Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9666305Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9673744Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9678305Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9938065Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:32.9949061Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0149697Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0156905Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0190061Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0191320Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0207895Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0216015Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0225428Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0235277Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0304060Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0307072Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0311082Z Completed 9.8 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0325634Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0367749Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0385201Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0386921Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0403118Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0430933Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0458362Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0469256Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0472895Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0506702Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0558454Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0563130Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0571942Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0590988Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0619443Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0623950Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0656055Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0676849Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0677579Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0682416Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0706230Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0722589Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0755488Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0759686Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0765458Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0788928Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0813499Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0831529Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0848854Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0861955Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0880911Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0905974Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0909153Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0934933Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0942583Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0964911Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.0981350Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1000064Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1004190Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1025042Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1033897Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1045195Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1057944Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1073435Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1112571Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1128045Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1147241Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1149264Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1172254Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1215532Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1228201Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1245363Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1257566Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1266095Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1270134Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1285042Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1332968Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1334811Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1347743Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1405152Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1414159Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1419246Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1433150Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1448751Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1509915Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1533666Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1534500Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1546719Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1565020Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1609542Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1636893Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1639866Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1641513Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1667392Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1716759Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1732840Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1737396Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1757724Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1775469Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1790326Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1822596Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1826823Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1835548Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1878185Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1879710Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1897007Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1908820Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1949955Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1959463Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1960717Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.1987680Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2002968Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2006871Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2041407Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2055362Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2061547Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2079031Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2086660Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2108472Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2143688Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2160472Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2286656Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2330359Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2396276Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2408349Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2455318Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2495299Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2496672Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2543843Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2600056Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2626630Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2717043Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2815562Z Completed 9.9 GiB/9.9 GiB (125.2 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2873826Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2937693Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.2955804Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.3167449Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.3212598Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.3271369Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.3382260Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:33.3489529Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:34.0306375Z Completed 9.9 GiB/9.9 GiB (125.1 MiB/s) with 1 file(s) remaining -2025-11-24T08:55:34.0308175Z upload: offline/default-build/output/assets.tgz to s3://public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz -2025-11-24T08:55:34.1543858Z Uploaded to: https://s3-eu-west-1.amazonaws.com/public.wire.com/artifacts/wire-server-deploy-static-8e9551337084771742ec8fc44c4955baa28a8a5c.tgz -2025-11-24T08:55:34.1609078Z ##[group]Run hashicorp/setup-terraform@v3 -2025-11-24T08:55:34.1609591Z with: -2025-11-24T08:55:34.1609986Z terraform_version: ^1.3.7 -2025-11-24T08:55:34.1610419Z terraform_wrapper: false -2025-11-24T08:55:34.1610892Z cli_config_credentials_hostname: app.terraform.io -2025-11-24T08:55:34.1611405Z env: -2025-11-24T08:55:34.1611790Z TMPDIR: /home/runner/work/_temp -2025-11-24T08:55:34.1612598Z CACHIX_SIGNING_KEY: *** -2025-11-24T08:55:34.1613470Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf -2025-11-24T08:55:34.1614345Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ -2025-11-24T08:55:34.1614889Z ##[endgroup] -2025-11-24T08:55:34.6602925Z [command]/usr/bin/unzip -o -q /home/runner/work/_temp/3a64fd4c-68c1-498b-9251-cdab88ca32e6 -2025-11-24T08:55:35.3981659Z ##[group]Run ./offline/cd.sh -2025-11-24T08:55:35.3982197Z ./offline/cd.sh -2025-11-24T08:55:35.4058093Z shell: /usr/bin/bash -e {0} -2025-11-24T08:55:35.4058550Z env: -2025-11-24T08:55:35.4058955Z TMPDIR: /home/runner/work/_temp -2025-11-24T08:55:35.4059822Z CACHIX_SIGNING_KEY: *** -2025-11-24T08:55:35.4060600Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf -2025-11-24T08:55:35.4061467Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ -2025-11-24T08:55:35.4062384Z HCLOUD_TOKEN: *** -2025-11-24T08:55:35.4062945Z ##[endgroup] -2025-11-24T08:55:35.4391122Z Wire Offline Deployment with Retry Logic -2025-11-24T08:55:35.4392041Z ======================================== -2025-11-24T08:55:35.4638056Z Initializing the backend... -2025-11-24T08:55:35.4646555Z Initializing provider plugins... -2025-11-24T08:55:35.4647528Z - Finding latest version of hashicorp/null... -2025-11-24T08:55:35.5233966Z - Finding latest version of hashicorp/tls... -2025-11-24T08:55:35.5369205Z - Finding latest version of hetznercloud/hcloud... -2025-11-24T08:55:35.5471718Z - Finding latest version of hashicorp/random... -2025-11-24T08:55:35.6161225Z - Installing hashicorp/null v3.2.4... -2025-11-24T08:55:35.8362582Z - Installed hashicorp/null v3.2.4 (signed by HashiCorp) -2025-11-24T08:55:35.9068938Z - Installing hashicorp/tls v4.1.0... -2025-11-24T08:55:36.1334394Z - Installed hashicorp/tls v4.1.0 (signed by HashiCorp) -2025-11-24T08:55:36.3570149Z - Installing hetznercloud/hcloud v1.56.0... -2025-11-24T08:55:36.7126035Z - Installed hetznercloud/hcloud v1.56.0 (signed by a HashiCorp partner, key ID 5219EACB3A77198B) -2025-11-24T08:55:36.8095079Z - Installing hashicorp/random v3.7.2... -2025-11-24T08:55:36.9924680Z - Installed hashicorp/random v3.7.2 (signed by HashiCorp) -2025-11-24T08:55:36.9925747Z Partner and community providers are signed by their developers. -2025-11-24T08:55:36.9926645Z If you'd like to know more about provider signing, you can read about it here: -2025-11-24T08:55:36.9928026Z https://developer.hashicorp.com/terraform/cli/plugins/signing -2025-11-24T08:55:36.9929593Z Terraform has created a lock file .terraform.lock.hcl to record the provider -2025-11-24T08:55:36.9930503Z selections it made above. Include this file in your version control repository -2025-11-24T08:55:36.9931457Z so that Terraform can guarantee to make the same selections by default when -2025-11-24T08:55:36.9932150Z you run "terraform init" in the future. -2025-11-24T08:55:36.9932483Z -2025-11-24T08:55:36.9933248Z Terraform has been successfully initialized! -2025-11-24T08:55:36.9933873Z  -2025-11-24T08:55:36.9934424Z You may now begin working with Terraform. Try running "terraform plan" to see -2025-11-24T08:55:36.9935168Z any changes that are required for your infrastructure. All Terraform commands -2025-11-24T08:55:36.9935771Z should now work. -2025-11-24T08:55:36.9936009Z -2025-11-24T08:55:36.9936317Z If you ever set or change modules or backend configuration for Terraform, -2025-11-24T08:55:36.9937053Z rerun this command to reinitialize your working directory. If you forget, other -2025-11-24T08:55:36.9937835Z commands will detect it and remind you to do so if necessary. -2025-11-24T08:55:36.9964690Z Starting deployment with automatic retry on resource unavailability... -2025-11-24T08:55:36.9984573Z -2025-11-24T08:55:36.9985165Z Deployment attempt 1 of 3 -2025-11-24T08:55:36.9999855Z Mon Nov 24 08:55:36 UTC 2025 -2025-11-24T08:55:37.5981715Z data.hcloud_server_types.available: Reading... -2025-11-24T08:55:37.5985123Z data.hcloud_datacenters.available: Reading... -2025-11-24T08:55:38.1080038Z data.hcloud_datacenters.available: Read complete after 0s [id=5dd4ebdac62609c834f7768f02286b798bd82a38] -2025-11-24T08:55:38.2213897Z data.hcloud_server_types.available: Read complete after 0s [id=166277662d9b7990b1711b6545d691c4fc52eb3f] -2025-11-24T08:55:38.2931477Z -2025-11-24T08:55:38.2932567Z Terraform used the selected providers to generate the following execution -2025-11-24T08:55:38.2935453Z plan. Resource actions are indicated with the following symbols: -2025-11-24T08:55:38.2936607Z + create -2025-11-24T08:55:38.2936866Z -2025-11-24T08:55:38.2937118Z Terraform will perform the following actions: -2025-11-24T08:55:38.2937535Z -2025-11-24T08:55:38.2937809Z  # hcloud_network.main will be created -2025-11-24T08:55:38.2938406Z  + resource "hcloud_network" "main" { -2025-11-24T08:55:38.2939751Z + delete_protection = false -2025-11-24T08:55:38.2940356Z + expose_routes_to_vswitch = false -2025-11-24T08:55:38.2941380Z + id = (known after apply) -2025-11-24T08:55:38.2942271Z + ip_range = "10.1.0.0/16" -2025-11-24T08:55:38.2943153Z + name = (known after apply) -2025-11-24T08:55:38.2943660Z } -2025-11-24T08:55:38.2943958Z -2025-11-24T08:55:38.2944327Z  # hcloud_network_subnet.main will be created -2025-11-24T08:55:38.2944943Z  + resource "hcloud_network_subnet" "main" { -2025-11-24T08:55:38.2945566Z + gateway = (known after apply) -2025-11-24T08:55:38.2946286Z + id = (known after apply) -2025-11-24T08:55:38.2946831Z + ip_range = "10.1.1.0/24" -2025-11-24T08:55:38.2947465Z + network_id = (known after apply) -2025-11-24T08:55:38.2948086Z + network_zone = "eu-central" -2025-11-24T08:55:38.2948608Z + type = "cloud" -2025-11-24T08:55:38.2949153Z } -2025-11-24T08:55:38.2949422Z -2025-11-24T08:55:38.2949692Z  # hcloud_server.adminhost will be created -2025-11-24T08:55:38.2950269Z  + resource "hcloud_server" "adminhost" { -2025-11-24T08:55:38.2950967Z + allow_deprecated_images = false -2025-11-24T08:55:38.2951654Z + backup_window = (known after apply) -2025-11-24T08:55:38.2952253Z + backups = false -2025-11-24T08:55:38.2953187Z + datacenter = (known after apply) -2025-11-24T08:55:38.2954006Z + delete_protection = false -2025-11-24T08:55:38.2954933Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.2955584Z + id = (known after apply) -2025-11-24T08:55:38.2956154Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.2956924Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.2957543Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.2958318Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.2959266Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.2960178Z + keep_disk = false -2025-11-24T08:55:38.2961053Z + location = "fsn1" -2025-11-24T08:55:38.2962000Z + name = (known after apply) -2025-11-24T08:55:38.2963068Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.2963870Z + rebuild_protection = false -2025-11-24T08:55:38.2964631Z + server_type = "cx33" -2025-11-24T08:55:38.2965220Z + shutdown_before_deletion = false -2025-11-24T08:55:38.2965821Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.2966448Z + status = (known after apply) -2025-11-24T08:55:38.2966779Z -2025-11-24T08:55:38.2967002Z + network { -2025-11-24T08:55:38.2967724Z + alias_ips = (known after apply) -2025-11-24T08:55:38.2968317Z + ip = (known after apply) -2025-11-24T08:55:38.2968880Z + mac_address = (known after apply) -2025-11-24T08:55:38.2969459Z + network_id = (known after apply) -2025-11-24T08:55:38.2969946Z } -2025-11-24T08:55:38.2970315Z } -2025-11-24T08:55:38.2970512Z -2025-11-24T08:55:38.2970774Z  # hcloud_server.assethost will be created -2025-11-24T08:55:38.2971354Z  + resource "hcloud_server" "assethost" { -2025-11-24T08:55:38.2972069Z + allow_deprecated_images = false -2025-11-24T08:55:38.2972860Z + backup_window = (known after apply) -2025-11-24T08:55:38.2973472Z + backups = false -2025-11-24T08:55:38.2974067Z + datacenter = (known after apply) -2025-11-24T08:55:38.2974643Z + delete_protection = false -2025-11-24T08:55:38.2975232Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.2975837Z + id = (known after apply) -2025-11-24T08:55:38.2976398Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.2976978Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.2977589Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.2978198Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.2978814Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.2979383Z + keep_disk = false -2025-11-24T08:55:38.2979921Z + location = "fsn1" -2025-11-24T08:55:38.2980513Z + name = (known after apply) -2025-11-24T08:55:38.2981130Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.2981715Z + rebuild_protection = false -2025-11-24T08:55:38.2982257Z + server_type = "cx33" -2025-11-24T08:55:38.2983010Z + shutdown_before_deletion = false -2025-11-24T08:55:38.2983624Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.2984341Z + status = (known after apply) -2025-11-24T08:55:38.2984675Z -2025-11-24T08:55:38.2984894Z + network { -2025-11-24T08:55:38.2985402Z + alias_ips = (known after apply) -2025-11-24T08:55:38.2985970Z + ip = (known after apply) -2025-11-24T08:55:38.2986526Z + mac_address = (known after apply) -2025-11-24T08:55:38.2987087Z + network_id = (known after apply) -2025-11-24T08:55:38.2987565Z } -2025-11-24T08:55:38.2987914Z -2025-11-24T08:55:38.2988274Z + public_net { -2025-11-24T08:55:38.2988821Z + ipv4 = (known after apply) -2025-11-24T08:55:38.2989370Z + ipv4_enabled = false -2025-11-24T08:55:38.2989911Z + ipv6 = (known after apply) -2025-11-24T08:55:38.2990453Z + ipv6_enabled = false -2025-11-24T08:55:38.2990907Z } -2025-11-24T08:55:38.2991273Z } -2025-11-24T08:55:38.2991468Z -2025-11-24T08:55:38.2991746Z  # hcloud_server.cassandra[0] will be created -2025-11-24T08:55:38.2992350Z  + resource "hcloud_server" "cassandra" { -2025-11-24T08:55:38.2993071Z + allow_deprecated_images = false -2025-11-24T08:55:38.2993686Z + backup_window = (known after apply) -2025-11-24T08:55:38.2994271Z + backups = false -2025-11-24T08:55:38.2994867Z + datacenter = (known after apply) -2025-11-24T08:55:38.2995648Z + delete_protection = false -2025-11-24T08:55:38.2996270Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.2996892Z + id = (known after apply) -2025-11-24T08:55:38.2997474Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.2998061Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.2998681Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.2999390Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3000002Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3000562Z + keep_disk = false -2025-11-24T08:55:38.3001112Z + location = "fsn1" -2025-11-24T08:55:38.3001701Z + name = (known after apply) -2025-11-24T08:55:38.3002318Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3003003Z + rebuild_protection = false -2025-11-24T08:55:38.3003556Z + server_type = "cx23" -2025-11-24T08:55:38.3004109Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3004699Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3005308Z + status = (known after apply) -2025-11-24T08:55:38.3005662Z -2025-11-24T08:55:38.3005878Z + network { -2025-11-24T08:55:38.3006389Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3006957Z + ip = (known after apply) -2025-11-24T08:55:38.3007525Z + mac_address = (known after apply) -2025-11-24T08:55:38.3008080Z + network_id = (known after apply) -2025-11-24T08:55:38.3008561Z } -2025-11-24T08:55:38.3008767Z -2025-11-24T08:55:38.3008984Z + public_net { -2025-11-24T08:55:38.3009497Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3010033Z + ipv4_enabled = false -2025-11-24T08:55:38.3010567Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3011206Z + ipv6_enabled = false -2025-11-24T08:55:38.3011656Z } -2025-11-24T08:55:38.3012019Z } -2025-11-24T08:55:38.3012214Z -2025-11-24T08:55:38.3012486Z  # hcloud_server.cassandra[1] will be created -2025-11-24T08:55:38.3013281Z  + resource "hcloud_server" "cassandra" { -2025-11-24T08:55:38.3013853Z + allow_deprecated_images = false -2025-11-24T08:55:38.3014460Z + backup_window = (known after apply) -2025-11-24T08:55:38.3015050Z + backups = false -2025-11-24T08:55:38.3015650Z + datacenter = (known after apply) -2025-11-24T08:55:38.3016225Z + delete_protection = false -2025-11-24T08:55:38.3016814Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3017421Z + id = (known after apply) -2025-11-24T08:55:38.3017989Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3018563Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3019173Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3019793Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3020398Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3020961Z + keep_disk = false -2025-11-24T08:55:38.3021502Z + location = "fsn1" -2025-11-24T08:55:38.3022219Z + name = (known after apply) -2025-11-24T08:55:38.3022952Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3023538Z + rebuild_protection = false -2025-11-24T08:55:38.3024088Z + server_type = "cx23" -2025-11-24T08:55:38.3024653Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3025246Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3025853Z + status = (known after apply) -2025-11-24T08:55:38.3026265Z -2025-11-24T08:55:38.3026484Z + network { -2025-11-24T08:55:38.3026994Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3027574Z + ip = (known after apply) -2025-11-24T08:55:38.3028127Z + mac_address = (known after apply) -2025-11-24T08:55:38.3028694Z + network_id = (known after apply) -2025-11-24T08:55:38.3029172Z } -2025-11-24T08:55:38.3029370Z -2025-11-24T08:55:38.3029587Z + public_net { -2025-11-24T08:55:38.3030095Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3030632Z + ipv4_enabled = false -2025-11-24T08:55:38.3031171Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3031710Z + ipv6_enabled = false -2025-11-24T08:55:38.3032162Z } -2025-11-24T08:55:38.3032530Z } -2025-11-24T08:55:38.3032853Z -2025-11-24T08:55:38.3033131Z  # hcloud_server.cassandra[2] will be created -2025-11-24T08:55:38.3033727Z  + resource "hcloud_server" "cassandra" { -2025-11-24T08:55:38.3034295Z + allow_deprecated_images = false -2025-11-24T08:55:38.3034903Z + backup_window = (known after apply) -2025-11-24T08:55:38.3035494Z + backups = false -2025-11-24T08:55:38.3036108Z + datacenter = (known after apply) -2025-11-24T08:55:38.3036693Z + delete_protection = false -2025-11-24T08:55:38.3037295Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3037906Z + id = (known after apply) -2025-11-24T08:55:38.3038556Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3039134Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3039750Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3040366Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3040976Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3041544Z + keep_disk = false -2025-11-24T08:55:38.3042089Z + location = "fsn1" -2025-11-24T08:55:38.3042810Z + name = (known after apply) -2025-11-24T08:55:38.3043429Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3044010Z + rebuild_protection = false -2025-11-24T08:55:38.3044561Z + server_type = "cx23" -2025-11-24T08:55:38.3056472Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3057659Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3058701Z + status = (known after apply) -2025-11-24T08:55:38.3059254Z -2025-11-24T08:55:38.3059594Z + network { -2025-11-24T08:55:38.3060401Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3061360Z + ip = (known after apply) -2025-11-24T08:55:38.3062292Z + mac_address = (known after apply) -2025-11-24T08:55:38.3063650Z + network_id = (known after apply) -2025-11-24T08:55:38.3064474Z } -2025-11-24T08:55:38.3064804Z -2025-11-24T08:55:38.3065162Z + public_net { -2025-11-24T08:55:38.3065985Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3066854Z + ipv4_enabled = false -2025-11-24T08:55:38.3067724Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3068592Z + ipv6_enabled = false -2025-11-24T08:55:38.3069440Z } -2025-11-24T08:55:38.3070021Z } -2025-11-24T08:55:38.3070324Z -2025-11-24T08:55:38.3070789Z  # hcloud_server.elasticsearch[0] will be created -2025-11-24T08:55:38.3071835Z  + resource "hcloud_server" "elasticsearch" { -2025-11-24T08:55:38.3072981Z + allow_deprecated_images = false -2025-11-24T08:55:38.3073998Z + backup_window = (known after apply) -2025-11-24T08:55:38.3074974Z + backups = false -2025-11-24T08:55:38.3075948Z + datacenter = (known after apply) -2025-11-24T08:55:38.3076938Z + delete_protection = false -2025-11-24T08:55:38.3077957Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3078977Z + id = (known after apply) -2025-11-24T08:55:38.3079692Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3080412Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3081051Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3081888Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3082528Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3083767Z + keep_disk = false -2025-11-24T08:55:38.3084777Z + location = "fsn1" -2025-11-24T08:55:38.3085830Z + name = (known after apply) -2025-11-24T08:55:38.3086950Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3088011Z + rebuild_protection = false -2025-11-24T08:55:38.3089110Z + server_type = "cx23" -2025-11-24T08:55:38.3090025Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3090970Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3091831Z + status = (known after apply) -2025-11-24T08:55:38.3092185Z -2025-11-24T08:55:38.3092406Z + network { -2025-11-24T08:55:38.3093073Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3093650Z + ip = (known after apply) -2025-11-24T08:55:38.3094225Z + mac_address = (known after apply) -2025-11-24T08:55:38.3094790Z + network_id = (known after apply) -2025-11-24T08:55:38.3095275Z } -2025-11-24T08:55:38.3095479Z -2025-11-24T08:55:38.3095697Z + public_net { -2025-11-24T08:55:38.3096216Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3096773Z + ipv4_enabled = false -2025-11-24T08:55:38.3097317Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3097853Z + ipv6_enabled = false -2025-11-24T08:55:38.3098311Z } -2025-11-24T08:55:38.3098679Z } -2025-11-24T08:55:38.3098877Z -2025-11-24T08:55:38.3099163Z  # hcloud_server.elasticsearch[1] will be created -2025-11-24T08:55:38.3099775Z  + resource "hcloud_server" "elasticsearch" { -2025-11-24T08:55:38.3100366Z + allow_deprecated_images = false -2025-11-24T08:55:38.3101131Z + backup_window = (known after apply) -2025-11-24T08:55:38.3101728Z + backups = false -2025-11-24T08:55:38.3102326Z + datacenter = (known after apply) -2025-11-24T08:55:38.3103055Z + delete_protection = false -2025-11-24T08:55:38.3103651Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3104261Z + id = (known after apply) -2025-11-24T08:55:38.3104821Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3105499Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3106130Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3106766Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3107396Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3107996Z + keep_disk = false -2025-11-24T08:55:38.3108574Z + location = "fsn1" -2025-11-24T08:55:38.3109186Z + name = (known after apply) -2025-11-24T08:55:38.3109807Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3110389Z + rebuild_protection = false -2025-11-24T08:55:38.3110949Z + server_type = "cx23" -2025-11-24T08:55:38.3111506Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3112102Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3112931Z + status = (known after apply) -2025-11-24T08:55:38.3113305Z -2025-11-24T08:55:38.3113534Z + network { -2025-11-24T08:55:38.3114043Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3114618Z + ip = (known after apply) -2025-11-24T08:55:38.3115176Z + mac_address = (known after apply) -2025-11-24T08:55:38.3115739Z + network_id = (known after apply) -2025-11-24T08:55:38.3116221Z } -2025-11-24T08:55:38.3116424Z -2025-11-24T08:55:38.3116645Z + public_net { -2025-11-24T08:55:38.3117261Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3117815Z + ipv4_enabled = false -2025-11-24T08:55:38.3118359Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3118896Z + ipv6_enabled = false -2025-11-24T08:55:38.3119342Z } -2025-11-24T08:55:38.3119709Z } -2025-11-24T08:55:38.3119909Z -2025-11-24T08:55:38.3120180Z  # hcloud_server.kubenode[0] will be created -2025-11-24T08:55:38.3120765Z  + resource "hcloud_server" "kubenode" { -2025-11-24T08:55:38.3121337Z + allow_deprecated_images = false -2025-11-24T08:55:38.3121960Z + backup_window = (known after apply) -2025-11-24T08:55:38.3122554Z + backups = false -2025-11-24T08:55:38.3123280Z + datacenter = (known after apply) -2025-11-24T08:55:38.3123864Z + delete_protection = false -2025-11-24T08:55:38.3124462Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3125068Z + id = (known after apply) -2025-11-24T08:55:38.3125636Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3126216Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3126836Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3127455Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3128189Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3128763Z + keep_disk = false -2025-11-24T08:55:38.3129311Z + location = "fsn1" -2025-11-24T08:55:38.3130007Z + name = (known after apply) -2025-11-24T08:55:38.3131098Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3132175Z + rebuild_protection = false -2025-11-24T08:55:38.3133140Z + server_type = "cx33" -2025-11-24T08:55:38.3133869Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3134481Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3135109Z + status = (known after apply) -2025-11-24T08:55:38.3135443Z -2025-11-24T08:55:38.3135665Z + network { -2025-11-24T08:55:38.3136171Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3136764Z + ip = (known after apply) -2025-11-24T08:55:38.3137328Z + mac_address = (known after apply) -2025-11-24T08:55:38.3137887Z + network_id = (known after apply) -2025-11-24T08:55:38.3138366Z } -2025-11-24T08:55:38.3138568Z -2025-11-24T08:55:38.3138790Z + public_net { -2025-11-24T08:55:38.3139305Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3139852Z + ipv4_enabled = false -2025-11-24T08:55:38.3140392Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3140939Z + ipv6_enabled = false -2025-11-24T08:55:38.3141394Z } -2025-11-24T08:55:38.3141766Z } -2025-11-24T08:55:38.3141966Z -2025-11-24T08:55:38.3142242Z  # hcloud_server.kubenode[1] will be created -2025-11-24T08:55:38.3143097Z  + resource "hcloud_server" "kubenode" { -2025-11-24T08:55:38.3143990Z + allow_deprecated_images = false -2025-11-24T08:55:38.3144714Z + backup_window = (known after apply) -2025-11-24T08:55:38.3145320Z + backups = false -2025-11-24T08:55:38.3146088Z + datacenter = (known after apply) -2025-11-24T08:55:38.3146973Z + delete_protection = false -2025-11-24T08:55:38.3147787Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3148521Z + id = (known after apply) -2025-11-24T08:55:38.3149217Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3149942Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3150651Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3151298Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3152045Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3152930Z + keep_disk = false -2025-11-24T08:55:38.3153549Z + location = "fsn1" -2025-11-24T08:55:38.3154290Z + name = (known after apply) -2025-11-24T08:55:38.3155047Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3155757Z + rebuild_protection = false -2025-11-24T08:55:38.3156416Z + server_type = "cx33" -2025-11-24T08:55:38.3156991Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3157693Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3158419Z + status = (known after apply) -2025-11-24T08:55:38.3158788Z -2025-11-24T08:55:38.3159089Z + network { -2025-11-24T08:55:38.3159852Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3160558Z + ip = (known after apply) -2025-11-24T08:55:38.3161185Z + mac_address = (known after apply) -2025-11-24T08:55:38.3161876Z + network_id = (known after apply) -2025-11-24T08:55:38.3162463Z } -2025-11-24T08:55:38.3162925Z -2025-11-24T08:55:38.3163276Z + public_net { -2025-11-24T08:55:38.3163858Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3164596Z + ipv4_enabled = false -2025-11-24T08:55:38.3165283Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3165959Z + ipv6_enabled = false -2025-11-24T08:55:38.3166486Z } -2025-11-24T08:55:38.3166902Z } -2025-11-24T08:55:38.3167104Z -2025-11-24T08:55:38.3167494Z  # hcloud_server.kubenode[2] will be created -2025-11-24T08:55:38.3168165Z  + resource "hcloud_server" "kubenode" { -2025-11-24T08:55:38.3168813Z + allow_deprecated_images = false -2025-11-24T08:55:38.3169553Z + backup_window = (known after apply) -2025-11-24T08:55:38.3170261Z + backups = false -2025-11-24T08:55:38.3170975Z + datacenter = (known after apply) -2025-11-24T08:55:38.3171698Z + delete_protection = false -2025-11-24T08:55:38.3172390Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3173298Z + id = (known after apply) -2025-11-24T08:55:38.3173911Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3174648Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3175405Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3176156Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3176882Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3177567Z + keep_disk = false -2025-11-24T08:55:38.3178135Z + location = "fsn1" -2025-11-24T08:55:38.3178850Z + name = (known after apply) -2025-11-24T08:55:38.3179706Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3180410Z + rebuild_protection = false -2025-11-24T08:55:38.3181091Z + server_type = "cx33" -2025-11-24T08:55:38.3181763Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3182368Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3183209Z + status = (known after apply) -2025-11-24T08:55:38.3183667Z -2025-11-24T08:55:38.3183899Z + network { -2025-11-24T08:55:38.3184509Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3185244Z + ip = (known after apply) -2025-11-24T08:55:38.3185859Z + mac_address = (known after apply) -2025-11-24T08:55:38.3186640Z + network_id = (known after apply) -2025-11-24T08:55:38.3187255Z } -2025-11-24T08:55:38.3187462Z -2025-11-24T08:55:38.3187782Z + public_net { -2025-11-24T08:55:38.3188312Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3188975Z + ipv4_enabled = false -2025-11-24T08:55:38.3189628Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3190260Z + ipv6_enabled = false -2025-11-24T08:55:38.3190726Z } -2025-11-24T08:55:38.3191225Z } -2025-11-24T08:55:38.3191491Z -2025-11-24T08:55:38.3191844Z  # hcloud_server.minio[0] will be created -2025-11-24T08:55:38.3192811Z  + resource "hcloud_server" "minio" { -2025-11-24T08:55:38.3193629Z + allow_deprecated_images = false -2025-11-24T08:55:38.3194370Z + backup_window = (known after apply) -2025-11-24T08:55:38.3194981Z + backups = false -2025-11-24T08:55:38.3195703Z + datacenter = (known after apply) -2025-11-24T08:55:38.3196316Z + delete_protection = false -2025-11-24T08:55:38.3197056Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3197782Z + id = (known after apply) -2025-11-24T08:55:38.3198346Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3198964Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3199673Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3200305Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3200918Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3201657Z + keep_disk = false -2025-11-24T08:55:38.3202313Z + location = "fsn1" -2025-11-24T08:55:38.3203250Z + name = (known after apply) -2025-11-24T08:55:38.3203884Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3204476Z + rebuild_protection = false -2025-11-24T08:55:38.3205029Z + server_type = "cx23" -2025-11-24T08:55:38.3205586Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3206172Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3206780Z + status = (known after apply) -2025-11-24T08:55:38.3207106Z -2025-11-24T08:55:38.3207330Z + network { -2025-11-24T08:55:38.3207835Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3208402Z + ip = (known after apply) -2025-11-24T08:55:38.3208962Z + mac_address = (known after apply) -2025-11-24T08:55:38.3209522Z + network_id = (known after apply) -2025-11-24T08:55:38.3210228Z } -2025-11-24T08:55:38.3210452Z -2025-11-24T08:55:38.3210681Z + public_net { -2025-11-24T08:55:38.3211214Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3211767Z + ipv4_enabled = false -2025-11-24T08:55:38.3212311Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3213066Z + ipv6_enabled = false -2025-11-24T08:55:38.3213534Z } -2025-11-24T08:55:38.3213914Z } -2025-11-24T08:55:38.3214113Z -2025-11-24T08:55:38.3214382Z  # hcloud_server.minio[1] will be created -2025-11-24T08:55:38.3214946Z  + resource "hcloud_server" "minio" { -2025-11-24T08:55:38.3215524Z + allow_deprecated_images = false -2025-11-24T08:55:38.3216138Z + backup_window = (known after apply) -2025-11-24T08:55:38.3216728Z + backups = false -2025-11-24T08:55:38.3217320Z + datacenter = (known after apply) -2025-11-24T08:55:38.3217905Z + delete_protection = false -2025-11-24T08:55:38.3218506Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3219112Z + id = (known after apply) -2025-11-24T08:55:38.3219676Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3220259Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3221009Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3221637Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3222247Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3223027Z + keep_disk = false -2025-11-24T08:55:38.3223923Z + location = "fsn1" -2025-11-24T08:55:38.3224967Z + name = (known after apply) -2025-11-24T08:55:38.3226803Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3228014Z + rebuild_protection = false -2025-11-24T08:55:38.3228917Z + server_type = "cx23" -2025-11-24T08:55:38.3229881Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3230902Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3232011Z + status = (known after apply) -2025-11-24T08:55:38.3232606Z -2025-11-24T08:55:38.3233158Z + network { -2025-11-24T08:55:38.3234023Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3234977Z + ip = (known after apply) -2025-11-24T08:55:38.3235930Z + mac_address = (known after apply) -2025-11-24T08:55:38.3236882Z + network_id = (known after apply) -2025-11-24T08:55:38.3237687Z } -2025-11-24T08:55:38.3238009Z -2025-11-24T08:55:38.3238381Z + public_net { -2025-11-24T08:55:38.3239239Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3240161Z + ipv4_enabled = false -2025-11-24T08:55:38.3248740Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3249765Z + ipv6_enabled = false -2025-11-24T08:55:38.3250543Z } -2025-11-24T08:55:38.3251150Z } -2025-11-24T08:55:38.3251579Z -2025-11-24T08:55:38.3252053Z  # hcloud_server.postgresql[0] will be created -2025-11-24T08:55:38.3253281Z  + resource "hcloud_server" "postgresql" { -2025-11-24T08:55:38.3254282Z + allow_deprecated_images = false -2025-11-24T08:55:38.3255315Z + backup_window = (known after apply) -2025-11-24T08:55:38.3256449Z + backups = false -2025-11-24T08:55:38.3257450Z + datacenter = (known after apply) -2025-11-24T08:55:38.3258449Z + delete_protection = false -2025-11-24T08:55:38.3259460Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3260499Z + id = (known after apply) -2025-11-24T08:55:38.3261472Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3262459Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3263660Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3264707Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3265751Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3266716Z + keep_disk = false -2025-11-24T08:55:38.3267642Z + location = "fsn1" -2025-11-24T08:55:38.3268627Z + name = (known after apply) -2025-11-24T08:55:38.3269674Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3270660Z + rebuild_protection = false -2025-11-24T08:55:38.3271585Z + server_type = "cx23" -2025-11-24T08:55:38.3272517Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3273668Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3274901Z + status = (known after apply) -2025-11-24T08:55:38.3275473Z -2025-11-24T08:55:38.3275833Z + network { -2025-11-24T08:55:38.3276661Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3277629Z + ip = (known after apply) -2025-11-24T08:55:38.3278569Z + mac_address = (known after apply) -2025-11-24T08:55:38.3279519Z + network_id = (known after apply) -2025-11-24T08:55:38.3280316Z } -2025-11-24T08:55:38.3280743Z -2025-11-24T08:55:38.3281110Z + public_net { -2025-11-24T08:55:38.3281964Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3283022Z + ipv4_enabled = false -2025-11-24T08:55:38.3283929Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3284839Z + ipv6_enabled = false -2025-11-24T08:55:38.3285588Z } -2025-11-24T08:55:38.3286191Z } -2025-11-24T08:55:38.3286508Z -2025-11-24T08:55:38.3286964Z  # hcloud_server.postgresql[1] will be created -2025-11-24T08:55:38.3287959Z  + resource "hcloud_server" "postgresql" { -2025-11-24T08:55:38.3288935Z + allow_deprecated_images = false -2025-11-24T08:55:38.3289944Z + backup_window = (known after apply) -2025-11-24T08:55:38.3290919Z + backups = false -2025-11-24T08:55:38.3291902Z + datacenter = (known after apply) -2025-11-24T08:55:38.3293017Z + delete_protection = false -2025-11-24T08:55:38.3294025Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3295047Z + id = (known after apply) -2025-11-24T08:55:38.3296003Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3296978Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3298005Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3299036Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3300071Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3301134Z + keep_disk = false -2025-11-24T08:55:38.3302045Z + location = "fsn1" -2025-11-24T08:55:38.3303170Z + name = (known after apply) -2025-11-24T08:55:38.3304218Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3305198Z + rebuild_protection = false -2025-11-24T08:55:38.3306113Z + server_type = "cx23" -2025-11-24T08:55:38.3307038Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3308030Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3309063Z + status = (known after apply) -2025-11-24T08:55:38.3309620Z -2025-11-24T08:55:38.3309973Z + network { -2025-11-24T08:55:38.3310788Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3311741Z + ip = (known after apply) -2025-11-24T08:55:38.3312873Z + mac_address = (known after apply) -2025-11-24T08:55:38.3313829Z + network_id = (known after apply) -2025-11-24T08:55:38.3314631Z } -2025-11-24T08:55:38.3315005Z -2025-11-24T08:55:38.3315373Z + public_net { -2025-11-24T08:55:38.3316226Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3317129Z + ipv4_enabled = false -2025-11-24T08:55:38.3318024Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3319084Z + ipv6_enabled = false -2025-11-24T08:55:38.3319835Z } -2025-11-24T08:55:38.3320430Z } -2025-11-24T08:55:38.3320748Z -2025-11-24T08:55:38.3321199Z  # hcloud_server.postgresql[2] will be created -2025-11-24T08:55:38.3322187Z  + resource "hcloud_server" "postgresql" { -2025-11-24T08:55:38.3323334Z + allow_deprecated_images = false -2025-11-24T08:55:38.3324345Z + backup_window = (known after apply) -2025-11-24T08:55:38.3325310Z + backups = false -2025-11-24T08:55:38.3326475Z + datacenter = (known after apply) -2025-11-24T08:55:38.3327455Z + delete_protection = false -2025-11-24T08:55:38.3328440Z + firewall_ids = (known after apply) -2025-11-24T08:55:38.3329456Z + id = (known after apply) -2025-11-24T08:55:38.3330408Z + ignore_remote_firewall_ids = false -2025-11-24T08:55:38.3331380Z + image = "ubuntu-22.04" -2025-11-24T08:55:38.3332402Z + ipv4_address = (known after apply) -2025-11-24T08:55:38.3333623Z + ipv6_address = (known after apply) -2025-11-24T08:55:38.3334656Z + ipv6_network = (known after apply) -2025-11-24T08:55:38.3335613Z + keep_disk = false -2025-11-24T08:55:38.3336521Z + location = "fsn1" -2025-11-24T08:55:38.3337506Z + name = (known after apply) -2025-11-24T08:55:38.3338532Z + primary_disk_size = (known after apply) -2025-11-24T08:55:38.3339515Z + rebuild_protection = false -2025-11-24T08:55:38.3340428Z + server_type = "cx23" -2025-11-24T08:55:38.3341349Z + shutdown_before_deletion = false -2025-11-24T08:55:38.3342367Z + ssh_keys = (known after apply) -2025-11-24T08:55:38.3343577Z + status = (known after apply) -2025-11-24T08:55:38.3344137Z -2025-11-24T08:55:38.3344495Z + network { -2025-11-24T08:55:38.3345329Z + alias_ips = (known after apply) -2025-11-24T08:55:38.3346427Z + ip = (known after apply) -2025-11-24T08:55:38.3347387Z + mac_address = (known after apply) -2025-11-24T08:55:38.3348336Z + network_id = (known after apply) -2025-11-24T08:55:38.3349187Z } -2025-11-24T08:55:38.3349510Z -2025-11-24T08:55:38.3349875Z + public_net { -2025-11-24T08:55:38.3350731Z + ipv4 = (known after apply) -2025-11-24T08:55:38.3351642Z + ipv4_enabled = false -2025-11-24T08:55:38.3352534Z + ipv6 = (known after apply) -2025-11-24T08:55:38.3353643Z + ipv6_enabled = false -2025-11-24T08:55:38.3354400Z } -2025-11-24T08:55:38.3354989Z } -2025-11-24T08:55:38.3355314Z -2025-11-24T08:55:38.3355748Z  # hcloud_ssh_key.adminhost will be created -2025-11-24T08:55:38.3356728Z  + resource "hcloud_ssh_key" "adminhost" { -2025-11-24T08:55:38.3357717Z + fingerprint = (known after apply) -2025-11-24T08:55:38.3358643Z + id = (known after apply) -2025-11-24T08:55:38.3359501Z + labels = {} -2025-11-24T08:55:38.3360373Z + name = (known after apply) -2025-11-24T08:55:38.3361294Z + public_key = (known after apply) -2025-11-24T08:55:38.3362076Z } -2025-11-24T08:55:38.3362393Z -2025-11-24T08:55:38.3363302Z  # null_resource.deployment_info will be created -2025-11-24T08:55:38.3364147Z  + resource "null_resource" "deployment_info" { -2025-11-24T08:55:38.3364967Z + id = (known after apply) -2025-11-24T08:55:38.3365471Z } -2025-11-24T08:55:38.3365677Z -2025-11-24T08:55:38.3365947Z  # random_pet.adminhost will be created -2025-11-24T08:55:38.3366569Z  + resource "random_pet" "adminhost" { -2025-11-24T08:55:38.3367169Z + id = (known after apply) -2025-11-24T08:55:38.3367713Z + length = 2 -2025-11-24T08:55:38.3368206Z + separator = "-" -2025-11-24T08:55:38.3368662Z } -2025-11-24T08:55:38.3368966Z -2025-11-24T08:55:38.3369227Z  # random_pet.assethost will be created -2025-11-24T08:55:38.3369808Z  + resource "random_pet" "assethost" { -2025-11-24T08:55:38.3370383Z + id = (known after apply) -2025-11-24T08:55:38.3370910Z + length = 2 -2025-11-24T08:55:38.3371401Z + separator = "-" -2025-11-24T08:55:38.3371851Z } -2025-11-24T08:55:38.3372045Z -2025-11-24T08:55:38.3372305Z  # random_pet.cassandra[0] will be created -2025-11-24T08:55:38.3373190Z  + resource "random_pet" "cassandra" { -2025-11-24T08:55:38.3373781Z + id = (known after apply) -2025-11-24T08:55:38.3374309Z + length = 2 -2025-11-24T08:55:38.3374805Z + separator = "-" -2025-11-24T08:55:38.3375272Z } -2025-11-24T08:55:38.3375470Z -2025-11-24T08:55:38.3375728Z  # random_pet.cassandra[1] will be created -2025-11-24T08:55:38.3376303Z  + resource "random_pet" "cassandra" { -2025-11-24T08:55:38.3376883Z + id = (known after apply) -2025-11-24T08:55:38.3377408Z + length = 2 -2025-11-24T08:55:38.3377893Z + separator = "-" -2025-11-24T08:55:38.3378338Z } -2025-11-24T08:55:38.3378534Z -2025-11-24T08:55:38.3378784Z  # random_pet.cassandra[2] will be created -2025-11-24T08:55:38.3379349Z  + resource "random_pet" "cassandra" { -2025-11-24T08:55:38.3379916Z + id = (known after apply) -2025-11-24T08:55:38.3380428Z + length = 2 -2025-11-24T08:55:38.3380910Z + separator = "-" -2025-11-24T08:55:38.3381353Z } -2025-11-24T08:55:38.3381548Z -2025-11-24T08:55:38.3381820Z  # random_pet.elasticsearch[0] will be created -2025-11-24T08:55:38.3382521Z  + resource "random_pet" "elasticsearch" { -2025-11-24T08:55:38.3383220Z + id = (known after apply) -2025-11-24T08:55:38.3383741Z + length = 2 -2025-11-24T08:55:38.3384224Z + separator = "-" -2025-11-24T08:55:38.3384657Z } -2025-11-24T08:55:38.3384849Z -2025-11-24T08:55:38.3385116Z  # random_pet.elasticsearch[1] will be created -2025-11-24T08:55:38.3385713Z  + resource "random_pet" "elasticsearch" { -2025-11-24T08:55:38.3386280Z + id = (known after apply) -2025-11-24T08:55:38.3386791Z + length = 2 -2025-11-24T08:55:38.3387267Z + separator = "-" -2025-11-24T08:55:38.3387706Z } -2025-11-24T08:55:38.3387900Z -2025-11-24T08:55:38.3388153Z  # random_pet.kubenode[0] will be created -2025-11-24T08:55:38.3388715Z  + resource "random_pet" "kubenode" { -2025-11-24T08:55:38.3389270Z + id = (known after apply) -2025-11-24T08:55:38.3389786Z + length = 2 -2025-11-24T08:55:38.3390263Z + separator = "-" -2025-11-24T08:55:38.3390707Z } -2025-11-24T08:55:38.3390902Z -2025-11-24T08:55:38.3391153Z  # random_pet.kubenode[1] will be created -2025-11-24T08:55:38.3391742Z  + resource "random_pet" "kubenode" { -2025-11-24T08:55:38.3392285Z + id = (known after apply) -2025-11-24T08:55:38.3392902Z + length = 2 -2025-11-24T08:55:38.3393387Z + separator = "-" -2025-11-24T08:55:38.3393827Z } -2025-11-24T08:55:38.3394158Z -2025-11-24T08:55:38.3394566Z  # random_pet.kubenode[2] will be created -2025-11-24T08:55:38.3395344Z  + resource "random_pet" "kubenode" { -2025-11-24T08:55:38.3396167Z + id = (known after apply) -2025-11-24T08:55:38.3397070Z + length = 2 -2025-11-24T08:55:38.3397920Z + separator = "-" -2025-11-24T08:55:38.3398507Z } -2025-11-24T08:55:38.3398713Z -2025-11-24T08:55:38.3398975Z  # random_pet.main will be created -2025-11-24T08:55:38.3399828Z  + resource "random_pet" "main" { -2025-11-24T08:55:38.3400480Z + id = (known after apply) -2025-11-24T08:55:38.3401228Z + length = 2 -2025-11-24T08:55:38.3401789Z + separator = "-" -2025-11-24T08:55:38.3402498Z } -2025-11-24T08:55:38.3402997Z -2025-11-24T08:55:38.3403280Z  # random_pet.minio[0] will be created -2025-11-24T08:55:38.3404029Z  + resource "random_pet" "minio" { -2025-11-24T08:55:38.3404687Z + id = (known after apply) -2025-11-24T08:55:38.3405288Z + length = 2 -2025-11-24T08:55:38.3405785Z + separator = "-" -2025-11-24T08:55:38.3406320Z } -2025-11-24T08:55:38.3406525Z -2025-11-24T08:55:38.3406833Z  # random_pet.minio[1] will be created -2025-11-24T08:55:38.3407441Z  + resource "random_pet" "minio" { -2025-11-24T08:55:38.3408087Z + id = (known after apply) -2025-11-24T08:55:38.3408700Z + length = 2 -2025-11-24T08:55:38.3409213Z + separator = "-" -2025-11-24T08:55:38.3409722Z } -2025-11-24T08:55:38.3409919Z -2025-11-24T08:55:38.3410271Z  # random_pet.postgresql[0] will be created -2025-11-24T08:55:38.3410925Z  + resource "random_pet" "postgresql" { -2025-11-24T08:55:38.3411549Z + id = (known after apply) -2025-11-24T08:55:38.3412156Z + length = 2 -2025-11-24T08:55:38.3412933Z + separator = "-" -2025-11-24T08:55:38.3413491Z } -2025-11-24T08:55:38.3413697Z -2025-11-24T08:55:38.3413976Z  # random_pet.postgresql[1] will be created -2025-11-24T08:55:38.3414646Z  + resource "random_pet" "postgresql" { -2025-11-24T08:55:38.3415560Z + id = (known after apply) -2025-11-24T08:55:38.3416207Z + length = 2 -2025-11-24T08:55:38.3416701Z + separator = "-" -2025-11-24T08:55:38.3417153Z } -2025-11-24T08:55:38.3417353Z -2025-11-24T08:55:38.3417667Z  # random_pet.postgresql[2] will be created -2025-11-24T08:55:38.3418289Z  + resource "random_pet" "postgresql" { -2025-11-24T08:55:38.3418952Z + id = (known after apply) -2025-11-24T08:55:38.3419567Z + length = 2 -2025-11-24T08:55:38.3420121Z + separator = "-" -2025-11-24T08:55:38.3420593Z } -2025-11-24T08:55:38.3420802Z -2025-11-24T08:55:38.3421144Z  # tls_private_key.admin will be created -2025-11-24T08:55:38.3421795Z  + resource "tls_private_key" "admin" { -2025-11-24T08:55:38.3422396Z + algorithm = "ECDSA" -2025-11-24T08:55:38.3423225Z + ecdsa_curve = "P256" -2025-11-24T08:55:38.3423937Z + id = (known after apply) -2025-11-24T08:55:38.3424677Z + private_key_openssh = (sensitive value) -2025-11-24T08:55:38.3425418Z + private_key_pem = (sensitive value) -2025-11-24T08:55:38.3426143Z + private_key_pem_pkcs8 = (sensitive value) -2025-11-24T08:55:38.3426898Z + public_key_fingerprint_md5 = (known after apply) -2025-11-24T08:55:38.3427652Z + public_key_fingerprint_sha256 = (known after apply) -2025-11-24T08:55:38.3428550Z + public_key_openssh = (known after apply) -2025-11-24T08:55:38.3429339Z + public_key_pem = (known after apply) -2025-11-24T08:55:38.3430028Z + rsa_bits = 2048 -2025-11-24T08:55:38.3430523Z } -2025-11-24T08:55:38.3430805Z -2025-11-24T08:55:38.3431089Z Plan: 36 to add, 0 to change, 0 to destroy. -2025-11-24T08:55:38.3431460Z -2025-11-24T08:55:38.3431688Z Changes to Outputs: -2025-11-24T08:55:38.3432204Z + adminhost = (sensitive value) -2025-11-24T08:55:38.3433111Z + resource_fallback_info = { -2025-11-24T08:55:38.3433736Z + available_locations = [ -2025-11-24T08:55:38.3434256Z + "nbg1", -2025-11-24T08:55:38.3434819Z + "hel1", -2025-11-24T08:55:38.3435373Z + "fsn1", -2025-11-24T08:55:38.3435848Z + "ash", -2025-11-24T08:55:38.3436393Z + "hil", -2025-11-24T08:55:38.3436929Z + "sin", -2025-11-24T08:55:38.3437355Z ] -2025-11-24T08:55:38.3437898Z + available_medium_types = [ -2025-11-24T08:55:38.3438462Z + "cx33", -2025-11-24T08:55:38.3438976Z + "cx43", -2025-11-24T08:55:38.3439532Z + "cpx32", -2025-11-24T08:55:38.3439969Z ] -2025-11-24T08:55:38.3440495Z + available_small_types = [ -2025-11-24T08:55:38.3441082Z + "cx23", -2025-11-24T08:55:38.3441552Z + "cx33", -2025-11-24T08:55:38.3442109Z + "cpx22", -2025-11-24T08:55:38.3442590Z ] -2025-11-24T08:55:38.3443231Z + requested_locations = [ -2025-11-24T08:55:38.3443851Z + "fsn1", -2025-11-24T08:55:38.3444415Z + "hel1", -2025-11-24T08:55:38.3444877Z + "nbg1", -2025-11-24T08:55:38.3445397Z ] -2025-11-24T08:55:38.3445894Z + requested_medium_types = [ -2025-11-24T08:55:38.3446472Z + "cx33", -2025-11-24T08:55:38.3452981Z + "cx43", -2025-11-24T08:55:38.3453567Z + "cpx32", -2025-11-24T08:55:38.3454082Z ] -2025-11-24T08:55:38.3454642Z + requested_small_types = [ -2025-11-24T08:55:38.3455532Z + "cx23", -2025-11-24T08:55:38.3456044Z + "cx33", -2025-11-24T08:55:38.3456655Z + "cpx22", -2025-11-24T08:55:38.3457211Z ] -2025-11-24T08:55:38.3457692Z + selected_location = "fsn1" -2025-11-24T08:55:38.3458395Z + selected_medium_type = "cx33" -2025-11-24T08:55:38.3459064Z + selected_small_type = "cx23" -2025-11-24T08:55:38.3459656Z } -2025-11-24T08:55:38.3460129Z + selected_location = "fsn1" -2025-11-24T08:55:38.3460803Z + selected_server_types = { -2025-11-24T08:55:38.3461458Z + medium_server_type = "cx33" -2025-11-24T08:55:38.3462066Z + small_server_type = "cx23" -2025-11-24T08:55:38.3462589Z } -2025-11-24T08:55:38.3463345Z + ssh_private_key = (sensitive value) -2025-11-24T08:55:38.3464065Z + static-inventory = (sensitive value) -2025-11-24T08:55:38.4565486Z null_resource.deployment_info: Creating... -2025-11-24T08:55:38.4578257Z null_resource.deployment_info: Provisioning with 'local-exec'... -2025-11-24T08:55:38.4583277Z null_resource.deployment_info (local-exec): Executing: ["/bin/sh" "-c" "echo \"VALIDATION PASSED: Deploying Wire offline infrastructure\"\necho \"Location: fsn1\"\necho \"Database server type: cx23\"\necho \"Kubernetes server type: cx33\"\necho \"Total instances: 15\"\n"] -2025-11-24T08:55:38.4610977Z null_resource.deployment_info (local-exec): VALIDATION PASSED: Deploying Wire offline infrastructure -2025-11-24T08:55:38.4613292Z null_resource.deployment_info (local-exec): Location: fsn1 -2025-11-24T08:55:38.4615172Z null_resource.deployment_info (local-exec): Database server type: cx23 -2025-11-24T08:55:38.4620908Z random_pet.adminhost: Creating... -2025-11-24T08:55:38.4627340Z null_resource.deployment_info (local-exec): Kubernetes server type: cx33 -2025-11-24T08:55:38.4629325Z null_resource.deployment_info (local-exec): Total instances: 15 -2025-11-24T08:55:38.4630926Z null_resource.deployment_info: Creation complete after 0s [id=6097919591817865521] -2025-11-24T08:55:38.4633981Z random_pet.assethost: Creating... -2025-11-24T08:55:38.4636504Z tls_private_key.admin: Creating... -2025-11-24T08:55:38.4683142Z random_pet.elasticsearch[0]: Creating... -2025-11-24T08:55:38.4700956Z tls_private_key.admin: Creation complete after 0s [id=9a5802b646d18231eda9b090be5144478e6bd632] -2025-11-24T08:55:38.4707746Z random_pet.postgresql[0]: Creating... -2025-11-24T08:55:38.4740009Z random_pet.kubenode[2]: Creating... -2025-11-24T08:55:38.4771964Z random_pet.cassandra[0]: Creating... -2025-11-24T08:55:38.4773286Z random_pet.minio[1]: Creating... -2025-11-24T08:55:38.4776562Z random_pet.postgresql[2]: Creating... -2025-11-24T08:55:38.4778966Z random_pet.postgresql[0]: Creation complete after 0s [id=glorious-calf] -2025-11-24T08:55:38.4785398Z random_pet.postgresql[1]: Creating... -2025-11-24T08:55:38.4816888Z random_pet.minio[1]: Creation complete after 0s [id=striking-malamute] -2025-11-24T08:55:38.4824755Z random_pet.elasticsearch[0]: Creation complete after 0s [id=amusing-pup] -2025-11-24T08:55:38.4826525Z random_pet.assethost: Creation complete after 0s [id=settling-barnacle] -2025-11-24T08:55:38.4828328Z random_pet.kubenode[2]: Creation complete after 0s [id=renewed-asp] -2025-11-24T08:55:38.4829758Z random_pet.adminhost: Creation complete after 0s [id=relative-moray] -2025-11-24T08:55:38.4831115Z random_pet.postgresql[2]: Creation complete after 0s [id=sound-marten] -2025-11-24T08:55:38.4849007Z random_pet.minio[0]: Creating... -2025-11-24T08:55:38.4867136Z random_pet.postgresql[1]: Creation complete after 0s [id=hardy-glider] -2025-11-24T08:55:38.4874355Z random_pet.cassandra[2]: Creating... -2025-11-24T08:55:38.4901002Z random_pet.elasticsearch[1]: Creating... -2025-11-24T08:55:38.4989315Z random_pet.cassandra[1]: Creating... -2025-11-24T08:55:38.5023812Z random_pet.kubenode[0]: Creating... -2025-11-24T08:55:38.5094587Z random_pet.kubenode[1]: Creating... -2025-11-24T08:55:38.5107360Z random_pet.cassandra[0]: Creation complete after 1s [id=tops-fowl] -2025-11-24T08:55:38.5138137Z random_pet.cassandra[1]: Creation complete after 1s [id=noted-manatee] -2025-11-24T08:55:38.5181029Z random_pet.main: Creating... -2025-11-24T08:55:38.5195293Z random_pet.main: Creation complete after 0s [id=guided-octopus] -2025-11-24T08:55:38.5197424Z random_pet.cassandra[2]: Creation complete after 1s [id=improved-teal] -2025-11-24T08:55:38.5199615Z random_pet.kubenode[0]: Creation complete after 0s [id=super-marlin] -2025-11-24T08:55:38.5200672Z random_pet.minio[0]: Creation complete after 1s [id=aware-zebra] -2025-11-24T08:55:38.5201692Z random_pet.elasticsearch[1]: Creation complete after 1s [id=renewing-bear] -2025-11-24T08:55:38.5247098Z hcloud_ssh_key.adminhost: Creating... -2025-11-24T08:55:38.5345582Z random_pet.kubenode[1]: Creation complete after 0s [id=teaching-gobbler] -2025-11-24T08:55:38.5403942Z hcloud_network.main: Creating... -2025-11-24T08:55:39.1594953Z hcloud_network.main: Creation complete after 0s [id=11673781] -2025-11-24T08:55:39.1640219Z hcloud_network_subnet.main: Creating... -2025-11-24T08:55:39.3428497Z hcloud_ssh_key.adminhost: Creation complete after 0s [id=104061702] -2025-11-24T08:55:39.4239781Z hcloud_network_subnet.main: Creation complete after 0s [id=11673781-10.1.1.0/24] -2025-11-24T08:55:39.4396681Z hcloud_server.postgresql[0]: Creating... -2025-11-24T08:55:39.4409700Z hcloud_server.elasticsearch[0]: Creating... -2025-11-24T08:55:39.4411273Z hcloud_server.minio[0]: Creating... -2025-11-24T08:55:39.4483241Z hcloud_server.cassandra[0]: Creating... -2025-11-24T08:55:39.4485192Z hcloud_server.assethost: Creating... -2025-11-24T08:55:39.4513293Z hcloud_server.kubenode[1]: Creating... -2025-11-24T08:55:39.4524993Z hcloud_server.kubenode[2]: Creating... -2025-11-24T08:55:39.4527836Z hcloud_server.adminhost: Creating... -2025-11-24T08:55:39.4530710Z hcloud_server.minio[1]: Creating... -2025-11-24T08:55:39.4531768Z hcloud_server.kubenode[0]: Creating... -2025-11-24T08:55:49.4396611Z hcloud_server.postgresql[0]: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4406040Z hcloud_server.elasticsearch[0]: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4416808Z hcloud_server.minio[0]: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4488668Z hcloud_server.cassandra[0]: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4530510Z hcloud_server.assethost: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4531411Z hcloud_server.kubenode[2]: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4532209Z hcloud_server.adminhost: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4533296Z hcloud_server.minio[1]: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4534129Z hcloud_server.kubenode[1]: Still creating... [00m10s elapsed] -2025-11-24T08:55:49.4541410Z hcloud_server.kubenode[0]: Still creating... [00m10s elapsed] -2025-11-24T08:55:59.4402930Z hcloud_server.postgresql[0]: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4412998Z hcloud_server.elasticsearch[0]: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4423533Z hcloud_server.minio[0]: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4496103Z hcloud_server.assethost: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4497356Z hcloud_server.cassandra[0]: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4537414Z hcloud_server.minio[1]: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4538293Z hcloud_server.kubenode[2]: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4539139Z hcloud_server.adminhost: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4539949Z hcloud_server.kubenode[1]: Still creating... [00m20s elapsed] -2025-11-24T08:55:59.4548467Z hcloud_server.kubenode[0]: Still creating... [00m20s elapsed] -2025-11-24T08:56:09.4407155Z hcloud_server.postgresql[0]: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4421729Z hcloud_server.elasticsearch[0]: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4433707Z hcloud_server.minio[0]: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4508428Z hcloud_server.cassandra[0]: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4509733Z hcloud_server.assethost: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4540300Z hcloud_server.kubenode[1]: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4543486Z hcloud_server.kubenode[2]: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4546640Z hcloud_server.minio[1]: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4549445Z hcloud_server.adminhost: Still creating... [00m30s elapsed] -2025-11-24T08:56:09.4552271Z hcloud_server.kubenode[0]: Still creating... [00m30s elapsed] -2025-11-24T08:56:19.4412599Z hcloud_server.postgresql[0]: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4422863Z hcloud_server.elasticsearch[0]: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4433348Z hcloud_server.minio[0]: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4515746Z hcloud_server.assethost: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4547293Z hcloud_server.cassandra[0]: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4548212Z hcloud_server.kubenode[2]: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4549072Z hcloud_server.minio[1]: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4549915Z hcloud_server.kubenode[1]: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4550745Z hcloud_server.adminhost: Still creating... [00m40s elapsed] -2025-11-24T08:56:19.4557783Z hcloud_server.kubenode[0]: Still creating... [00m40s elapsed] -2025-11-24T08:56:20.8677216Z hcloud_server.assethost: Creation complete after 42s [id=113859098] -2025-11-24T08:56:20.8773686Z hcloud_server.postgresql[1]: Creating... -2025-11-24T08:56:29.4413568Z hcloud_server.postgresql[0]: Still creating... [00m50s elapsed] -2025-11-24T08:56:29.4423503Z hcloud_server.elasticsearch[0]: Still creating... [00m50s elapsed] -2025-11-24T08:56:29.4434146Z hcloud_server.minio[0]: Still creating... [00m50s elapsed] -2025-11-24T08:56:29.4526292Z hcloud_server.cassandra[0]: Still creating... [00m50s elapsed] -2025-11-24T08:56:29.4557692Z hcloud_server.adminhost: Still creating... [00m50s elapsed] -2025-11-24T08:56:29.4558532Z hcloud_server.kubenode[1]: Still creating... [00m50s elapsed] -2025-11-24T08:56:29.4568723Z hcloud_server.minio[1]: Still creating... [00m50s elapsed] -2025-11-24T08:56:29.4569565Z hcloud_server.kubenode[2]: Still creating... [00m50s elapsed] -2025-11-24T08:56:29.4570728Z hcloud_server.kubenode[0]: Still creating... [00m50s elapsed] -2025-11-24T08:56:30.7563823Z hcloud_server.adminhost: Creation complete after 52s [id=113859097] -2025-11-24T08:56:30.7653409Z hcloud_server.cassandra[2]: Creating... -2025-11-24T08:56:30.8781033Z hcloud_server.postgresql[1]: Still creating... [00m10s elapsed] -2025-11-24T08:56:39.4419400Z hcloud_server.postgresql[0]: Still creating... [01m00s elapsed] -2025-11-24T08:56:39.4430687Z hcloud_server.elasticsearch[0]: Still creating... [01m00s elapsed] -2025-11-24T08:56:39.4440057Z hcloud_server.minio[0]: Still creating... [01m00s elapsed] -2025-11-24T08:56:39.4531796Z hcloud_server.cassandra[0]: Still creating... [01m00s elapsed] -2025-11-24T08:56:39.4563787Z hcloud_server.minio[1]: Still creating... [01m00s elapsed] -2025-11-24T08:56:39.4564588Z hcloud_server.kubenode[1]: Still creating... [01m00s elapsed] -2025-11-24T08:56:39.4565357Z hcloud_server.kubenode[2]: Still creating... [01m00s elapsed] -2025-11-24T08:56:39.4574852Z hcloud_server.kubenode[0]: Still creating... [01m00s elapsed] -2025-11-24T08:56:40.7661211Z hcloud_server.cassandra[2]: Still creating... [00m10s elapsed] -2025-11-24T08:56:40.8785206Z hcloud_server.postgresql[1]: Still creating... [00m20s elapsed] -2025-11-24T08:56:45.1630938Z hcloud_server.postgresql[0]: Creation complete after 1m6s [id=113859092] -2025-11-24T08:56:45.1708436Z hcloud_server.elasticsearch[1]: Creating... -2025-11-24T08:56:45.1981084Z hcloud_server.elasticsearch[0]: Creation complete after 1m6s [id=113859093] -2025-11-24T08:56:45.2070911Z hcloud_server.cassandra[1]: Creating... -2025-11-24T08:56:45.2413487Z hcloud_server.cassandra[0]: Creation complete after 1m6s [id=113859095] -2025-11-24T08:56:45.2445263Z hcloud_server.kubenode[2]: Creation complete after 1m6s [id=113859096] -2025-11-24T08:56:45.2529107Z hcloud_server.postgresql[2]: Creating... -2025-11-24T08:56:45.2632431Z hcloud_server.minio[1]: Creation complete after 1m6s [id=113859099] -2025-11-24T08:56:45.2714938Z hcloud_server.kubenode[0]: Creation complete after 1m6s [id=113859101] -2025-11-24T08:56:45.2914270Z hcloud_server.kubenode[1]: Creation complete after 1m6s [id=113859100] -2025-11-24T08:56:49.4442363Z hcloud_server.minio[0]: Still creating... [01m10s elapsed] -2025-11-24T08:56:50.7663128Z hcloud_server.cassandra[2]: Still creating... [00m20s elapsed] -2025-11-24T08:56:50.8795935Z hcloud_server.postgresql[1]: Still creating... [00m30s elapsed] -2025-11-24T08:56:55.1719848Z hcloud_server.elasticsearch[1]: Still creating... [00m10s elapsed] -2025-11-24T08:56:55.2081538Z hcloud_server.cassandra[1]: Still creating... [00m10s elapsed] -2025-11-24T08:56:55.2533369Z hcloud_server.postgresql[2]: Still creating... [00m10s elapsed] -2025-11-24T08:56:59.4443967Z hcloud_server.minio[0]: Still creating... [01m20s elapsed] -2025-11-24T08:57:00.7669857Z hcloud_server.cassandra[2]: Still creating... [00m30s elapsed] -2025-11-24T08:57:00.8802239Z hcloud_server.postgresql[1]: Still creating... [00m40s elapsed] -2025-11-24T08:57:01.3618252Z hcloud_server.minio[0]: Creation complete after 1m22s [id=113859094] -2025-11-24T08:57:05.1732544Z hcloud_server.elasticsearch[1]: Still creating... [00m20s elapsed] -2025-11-24T08:57:05.2084556Z hcloud_server.cassandra[1]: Still creating... [00m20s elapsed] -2025-11-24T08:57:05.2536431Z hcloud_server.postgresql[2]: Still creating... [00m20s elapsed] -2025-11-24T08:57:10.4220636Z hcloud_server.postgresql[1]: Creation complete after 49s [id=113859131] -2025-11-24T08:57:10.7680687Z hcloud_server.cassandra[2]: Still creating... [00m40s elapsed] -2025-11-24T08:57:15.1746828Z hcloud_server.elasticsearch[1]: Still creating... [00m30s elapsed] -2025-11-24T08:57:15.2088341Z hcloud_server.cassandra[1]: Still creating... [00m30s elapsed] -2025-11-24T08:57:15.2540642Z hcloud_server.postgresql[2]: Still creating... [00m30s elapsed] -2025-11-24T08:57:20.7690333Z hcloud_server.cassandra[2]: Still creating... [00m50s elapsed] -2025-11-24T08:57:25.1756226Z hcloud_server.elasticsearch[1]: Still creating... [00m40s elapsed] -2025-11-24T08:57:25.2097925Z hcloud_server.cassandra[1]: Still creating... [00m40s elapsed] -2025-11-24T08:57:25.2550421Z hcloud_server.postgresql[2]: Still creating... [00m40s elapsed] -2025-11-24T08:57:30.7691525Z hcloud_server.cassandra[2]: Still creating... [01m00s elapsed] -2025-11-24T08:57:34.7132569Z hcloud_server.elasticsearch[1]: Creation complete after 50s [id=113859143] -2025-11-24T08:57:35.2105054Z hcloud_server.cassandra[1]: Still creating... [00m50s elapsed] -2025-11-24T08:57:35.2557676Z hcloud_server.postgresql[2]: Still creating... [00m50s elapsed] -2025-11-24T08:57:36.4472986Z hcloud_server.cassandra[2]: Creation complete after 1m5s [id=113859135] -2025-11-24T08:57:45.2113046Z hcloud_server.cassandra[1]: Still creating... [01m00s elapsed] -2025-11-24T08:57:45.2564942Z hcloud_server.postgresql[2]: Still creating... [01m00s elapsed] -2025-11-24T08:57:50.8862150Z hcloud_server.cassandra[1]: Creation complete after 1m6s [id=113859144] -2025-11-24T08:57:50.9119498Z hcloud_server.postgresql[2]: Creation complete after 1m6s [id=113859145] -2025-11-24T08:57:50.9246219Z  -2025-11-24T08:57:50.9247860Z Apply complete! Resources: 36 added, 0 changed, 0 destroyed. -2025-11-24T08:57:50.9248723Z  -2025-11-24T08:57:50.9249415Z Outputs: -2025-11-24T08:57:50.9249756Z -2025-11-24T08:57:50.9250142Z adminhost = -2025-11-24T08:57:50.9250865Z resource_fallback_info = { -2025-11-24T08:57:50.9251562Z "available_locations" = [ -2025-11-24T08:57:50.9252367Z "nbg1", -2025-11-24T08:57:50.9252951Z "hel1", -2025-11-24T08:57:50.9253317Z "fsn1", -2025-11-24T08:57:50.9253676Z "ash", -2025-11-24T08:57:50.9254039Z "hil", -2025-11-24T08:57:50.9254397Z "sin", -2025-11-24T08:57:50.9254748Z ] -2025-11-24T08:57:50.9255126Z "available_medium_types" = [ -2025-11-24T08:57:50.9255542Z "cx33", -2025-11-24T08:57:50.9255896Z "cx43", -2025-11-24T08:57:50.9256272Z "cpx32", -2025-11-24T08:57:50.9256637Z ] -2025-11-24T08:57:50.9257006Z "available_small_types" = [ -2025-11-24T08:57:50.9267519Z "cx23", -2025-11-24T08:57:50.9267934Z "cx33", -2025-11-24T08:57:50.9268516Z "cpx22", -2025-11-24T08:57:50.9269036Z ] -2025-11-24T08:57:50.9269648Z "requested_locations" = [ -2025-11-24T08:57:50.9270291Z "fsn1", -2025-11-24T08:57:50.9270906Z "hel1", -2025-11-24T08:57:50.9271470Z "nbg1", -2025-11-24T08:57:50.9272032Z ] -2025-11-24T08:57:50.9272812Z "requested_medium_types" = [ -2025-11-24T08:57:50.9273544Z "cx33", -2025-11-24T08:57:50.9274175Z "cx43", -2025-11-24T08:57:50.9274811Z "cpx32", -2025-11-24T08:57:50.9275441Z ] -2025-11-24T08:57:50.9276088Z "requested_small_types" = [ -2025-11-24T08:57:50.9276811Z "cx23", -2025-11-24T08:57:50.9277455Z "cx33", -2025-11-24T08:57:50.9278131Z "cpx22", -2025-11-24T08:57:50.9278830Z ] -2025-11-24T08:57:50.9279491Z "selected_location" = "fsn1" -2025-11-24T08:57:50.9280272Z "selected_medium_type" = "cx33" -2025-11-24T08:57:50.9281100Z "selected_small_type" = "cx23" -2025-11-24T08:57:50.9281863Z } -2025-11-24T08:57:50.9282583Z selected_location = "fsn1" -2025-11-24T08:57:50.9283829Z selected_server_types = { -2025-11-24T08:57:50.9284598Z "medium_server_type" = "cx33" -2025-11-24T08:57:50.9285228Z "small_server_type" = "cx23" -2025-11-24T08:57:50.9285878Z } -2025-11-24T08:57:50.9286280Z ssh_private_key = -2025-11-24T08:57:50.9286753Z static-inventory = -2025-11-24T08:57:50.9287275Z Infrastructure deployment successful on attempt 1! -2025-11-24T08:57:50.9287618Z -2025-11-24T08:57:50.9287904Z Infrastructure ready! Proceeding with application deployment... -2025-11-24T08:57:51.1487007Z Agent pid 34539 -2025-11-24T08:57:51.1757630Z Identity added: (stdin) ((stdin)) -2025-11-24T08:57:51.8618762Z Warning: Permanently added '23.88.33.8' (ED25519) to the list of known hosts. -2025-11-24T08:57:54.0901477Z debs-jammy.tar -2025-11-24T08:58:22.2525260Z binaries.tar -2025-11-24T08:58:45.5295652Z containers-adminhost/ -2025-11-24T08:58:45.5298287Z containers-adminhost/container-wire-server-deploy.tgz -2025-11-24T09:00:13.4915710Z containers-adminhost/quay.io_wire_zauth_5.23.0.tar -2025-11-24T09:00:18.6550107Z containers-adminhost/index.txt -2025-11-24T09:00:18.6550671Z containers-helm.tar -2025-11-24T09:07:17.9925364Z containers-system.tar -2025-11-24T09:08:04.4514215Z charts/ -2025-11-24T09:08:04.4515016Z charts/fake-aws-sqs/ -2025-11-24T09:08:04.4515712Z charts/fake-aws-sqs/Chart.yaml -2025-11-24T09:08:04.4516309Z charts/fake-aws-sqs/values.yaml -2025-11-24T09:08:04.4516800Z charts/fake-aws-sqs/templates/ -2025-11-24T09:08:04.4517455Z charts/fake-aws-sqs/templates/deployment.yaml -2025-11-24T09:08:04.4518405Z charts/fake-aws-sqs/templates/configmap.yaml -2025-11-24T09:08:04.4519214Z charts/fake-aws-sqs/templates/service.yaml -2025-11-24T09:08:04.4519821Z charts/fake-aws-sqs/templates/_helpers.tpl -2025-11-24T09:08:04.4520317Z charts/fluent-bit/ -2025-11-24T09:08:04.4520740Z charts/fluent-bit/Chart.yaml -2025-11-24T09:08:04.4521628Z charts/fluent-bit/requirements.lock -2025-11-24T09:08:04.4522118Z charts/fluent-bit/requirements.yaml -2025-11-24T09:08:04.4522577Z charts/fluent-bit/values.yaml -2025-11-24T09:08:04.4529867Z charts/fluent-bit/charts/ -2025-11-24T09:08:04.4530365Z charts/fluent-bit/charts/fluent-bit/ -2025-11-24T09:08:04.4530892Z charts/fluent-bit/charts/fluent-bit/Chart.yaml -2025-11-24T09:08:04.4531436Z charts/fluent-bit/charts/fluent-bit/.helmignore -2025-11-24T09:08:04.4532366Z charts/fluent-bit/charts/fluent-bit/dashboards/ -2025-11-24T09:08:04.4533260Z charts/fluent-bit/charts/fluent-bit/dashboards/fluent-bit.json -2025-11-24T09:08:04.4534539Z charts/fluent-bit/charts/fluent-bit/README.md -2025-11-24T09:08:04.4535293Z charts/fluent-bit/charts/fluent-bit/values.yaml -2025-11-24T09:08:04.4535802Z charts/fluent-bit/charts/fluent-bit/ci/ -2025-11-24T09:08:04.4536411Z charts/fluent-bit/charts/fluent-bit/ci/ci-values.yaml -2025-11-24T09:08:04.4537265Z charts/fluent-bit/charts/fluent-bit/templates/ -2025-11-24T09:08:04.4538117Z charts/fluent-bit/charts/fluent-bit/templates/servicemonitor.yaml -2025-11-24T09:08:04.4538963Z charts/fluent-bit/charts/fluent-bit/templates/pdb.yaml -2025-11-24T09:08:04.4539924Z charts/fluent-bit/charts/fluent-bit/templates/deployment.yaml -2025-11-24T09:08:04.4540790Z charts/fluent-bit/charts/fluent-bit/templates/configmap-luascripts.yaml -2025-11-24T09:08:04.4541659Z charts/fluent-bit/charts/fluent-bit/templates/psp.yaml -2025-11-24T09:08:04.4542544Z charts/fluent-bit/charts/fluent-bit/templates/configmap.yaml -2025-11-24T09:08:04.4543651Z charts/fluent-bit/charts/fluent-bit/templates/NOTES.txt -2025-11-24T09:08:04.4544579Z charts/fluent-bit/charts/fluent-bit/templates/serviceaccount.yaml -2025-11-24T09:08:04.4545652Z charts/fluent-bit/charts/fluent-bit/templates/daemonset.yaml -2025-11-24T09:08:04.4546287Z charts/fluent-bit/charts/fluent-bit/templates/scc.yaml -2025-11-24T09:08:04.4546925Z charts/fluent-bit/charts/fluent-bit/templates/clusterrole.yaml -2025-11-24T09:08:04.4547550Z charts/fluent-bit/charts/fluent-bit/templates/service.yaml -2025-11-24T09:08:04.4548140Z charts/fluent-bit/charts/fluent-bit/templates/hpa.yaml -2025-11-24T09:08:04.4548711Z charts/fluent-bit/charts/fluent-bit/templates/_pod.tpl -2025-11-24T09:08:04.4549272Z charts/fluent-bit/charts/fluent-bit/templates/tests/ -2025-11-24T09:08:04.4549923Z charts/fluent-bit/charts/fluent-bit/templates/tests/test-connection.yaml -2025-11-24T09:08:04.4551124Z charts/fluent-bit/charts/fluent-bit/templates/networkpolicy.yaml -2025-11-24T09:08:04.4551758Z charts/fluent-bit/charts/fluent-bit/templates/vpa.yaml -2025-11-24T09:08:04.4552435Z charts/fluent-bit/charts/fluent-bit/templates/configmap-dashboards.yaml -2025-11-24T09:08:04.4553301Z charts/fluent-bit/charts/fluent-bit/templates/_helpers.tpl -2025-11-24T09:08:04.4553898Z charts/fluent-bit/charts/fluent-bit/templates/ingress.yaml -2025-11-24T09:08:04.4554541Z charts/fluent-bit/charts/fluent-bit/templates/prometheusrule.yaml -2025-11-24T09:08:04.4555253Z charts/fluent-bit/charts/fluent-bit/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.4555835Z charts/rabbitmq/ -2025-11-24T09:08:04.4556231Z charts/rabbitmq/Chart.yaml -2025-11-24T09:08:04.4556874Z charts/rabbitmq/requirements.lock -2025-11-24T09:08:04.4557841Z charts/rabbitmq/requirements.yaml -2025-11-24T09:08:04.4558325Z charts/rabbitmq/values.yaml -2025-11-24T09:08:04.4558964Z charts/rabbitmq/charts/ -2025-11-24T09:08:04.4559664Z charts/rabbitmq/charts/rabbitmq/ -2025-11-24T09:08:04.4560139Z charts/rabbitmq/charts/rabbitmq/Chart.lock -2025-11-24T09:08:04.4560674Z charts/rabbitmq/charts/rabbitmq/Chart.yaml -2025-11-24T09:08:04.4561513Z charts/rabbitmq/charts/rabbitmq/.helmignore -2025-11-24T09:08:04.4562113Z charts/rabbitmq/charts/rabbitmq/README.md -2025-11-24T09:08:04.4563097Z charts/rabbitmq/charts/rabbitmq/values.yaml -2025-11-24T09:08:04.4563622Z charts/rabbitmq/charts/rabbitmq/charts/ -2025-11-24T09:08:04.4564125Z charts/rabbitmq/charts/rabbitmq/charts/common/ -2025-11-24T09:08:04.4564884Z charts/rabbitmq/charts/rabbitmq/charts/common/Chart.yaml -2025-11-24T09:08:04.4565888Z charts/rabbitmq/charts/rabbitmq/charts/common/.helmignore -2025-11-24T09:08:04.4566770Z charts/rabbitmq/charts/rabbitmq/charts/common/README.md -2025-11-24T09:08:04.4567622Z charts/rabbitmq/charts/rabbitmq/charts/common/values.yaml -2025-11-24T09:08:04.4568219Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/ -2025-11-24T09:08:04.4568880Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.4569601Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_resources.tpl -2025-11-24T09:08:04.4570296Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.4571090Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_names.tpl -2025-11-24T09:08:04.4571808Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.4572522Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.4573537Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_compatibility.tpl -2025-11-24T09:08:04.4574282Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/ -2025-11-24T09:08:04.4581669Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_mongodb.tpl -2025-11-24T09:08:04.4582892Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_mysql.tpl -2025-11-24T09:08:04.4698105Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.4699052Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.4699870Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.4700666Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.4701469Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.4702232Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_images.tpl -2025-11-24T09:08:04.4703181Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.4703893Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_ingress.tpl -2025-11-24T09:08:04.4704603Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.4705313Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.4706034Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.4707012Z charts/rabbitmq/charts/rabbitmq/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.4726981Z charts/rabbitmq/charts/rabbitmq/templates/ -2025-11-24T09:08:04.4727759Z charts/rabbitmq/charts/rabbitmq/templates/servicemonitor.yaml -2025-11-24T09:08:04.4728397Z charts/rabbitmq/charts/rabbitmq/templates/pdb.yaml -2025-11-24T09:08:04.4729009Z charts/rabbitmq/charts/rabbitmq/templates/svc-headless.yaml -2025-11-24T09:08:04.4729639Z charts/rabbitmq/charts/rabbitmq/templates/validation.yaml -2025-11-24T09:08:04.4730289Z charts/rabbitmq/charts/rabbitmq/templates/secrets.yaml -2025-11-24T09:08:04.4730880Z charts/rabbitmq/charts/rabbitmq/templates/NOTES.txt -2025-11-24T09:08:04.4731473Z charts/rabbitmq/charts/rabbitmq/templates/serviceaccount.yaml -2025-11-24T09:08:04.4732095Z charts/rabbitmq/charts/rabbitmq/templates/rolebinding.yaml -2025-11-24T09:08:04.4732981Z charts/rabbitmq/charts/rabbitmq/templates/role.yaml -2025-11-24T09:08:04.4733604Z charts/rabbitmq/charts/rabbitmq/templates/init-configmap.yaml -2025-11-24T09:08:04.4734232Z charts/rabbitmq/charts/rabbitmq/templates/extra-list.yaml -2025-11-24T09:08:04.4734840Z charts/rabbitmq/charts/rabbitmq/templates/tls-secrets.yaml -2025-11-24T09:08:04.4735464Z charts/rabbitmq/charts/rabbitmq/templates/networkpolicy.yaml -2025-11-24T09:08:04.4736092Z charts/rabbitmq/charts/rabbitmq/templates/config-secret.yaml -2025-11-24T09:08:04.4736700Z charts/rabbitmq/charts/rabbitmq/templates/_helpers.tpl -2025-11-24T09:08:04.4737272Z charts/rabbitmq/charts/rabbitmq/templates/ingress.yaml -2025-11-24T09:08:04.4738127Z charts/rabbitmq/charts/rabbitmq/templates/prometheusrule.yaml -2025-11-24T09:08:04.4738738Z charts/rabbitmq/charts/rabbitmq/templates/svc.yaml -2025-11-24T09:08:04.4739349Z charts/rabbitmq/charts/rabbitmq/templates/ingress-tls-secrets.yaml -2025-11-24T09:08:04.4739996Z charts/rabbitmq/charts/rabbitmq/templates/statefulset.yaml -2025-11-24T09:08:04.4740612Z charts/rabbitmq/charts/rabbitmq/values.schema.json -2025-11-24T09:08:04.4741112Z charts/aws-ingress/ -2025-11-24T09:08:04.4741511Z charts/aws-ingress/Chart.yaml -2025-11-24T09:08:04.4741961Z charts/aws-ingress/.helmignore -2025-11-24T09:08:04.4742484Z charts/aws-ingress/values.yaml -2025-11-24T09:08:04.4743106Z charts/aws-ingress/templates/ -2025-11-24T09:08:04.4743598Z charts/aws-ingress/templates/ELB_account_pages_https.yaml -2025-11-24T09:08:04.4744184Z charts/aws-ingress/templates/ELB_team_settings_https.yaml -2025-11-24T09:08:04.4744746Z charts/aws-ingress/templates/ELB_webapp_https.yaml -2025-11-24T09:08:04.4745275Z charts/aws-ingress/templates/ELB_s3minio_https.yaml -2025-11-24T09:08:04.4745807Z charts/aws-ingress/templates/ELB_nginz_wss.yaml -2025-11-24T09:08:04.4746316Z charts/aws-ingress/templates/_helpers.tpl -2025-11-24T09:08:04.4857332Z charts/aws-ingress/templates/ELB_nginz_https.yaml -2025-11-24T09:08:04.4857899Z charts/minio-external/ -2025-11-24T09:08:04.4858323Z charts/minio-external/Chart.yaml -2025-11-24T09:08:04.4858777Z charts/minio-external/values.yaml -2025-11-24T09:08:04.4859357Z charts/minio-external/templates/ -2025-11-24T09:08:04.4860181Z charts/minio-external/templates/helpers.tpl -2025-11-24T09:08:04.4861083Z charts/minio-external/templates/endpoint.yaml -2025-11-24T09:08:04.4862031Z charts/webapp/ -2025-11-24T09:08:04.4862943Z charts/webapp/Chart.yaml -2025-11-24T09:08:04.4863667Z charts/webapp/.helmignore -2025-11-24T09:08:04.4864476Z charts/webapp/values.yaml -2025-11-24T09:08:04.4865265Z charts/webapp/templates/ -2025-11-24T09:08:04.4865969Z charts/webapp/templates/deployment.yaml -2025-11-24T09:08:04.4866924Z charts/webapp/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.4867893Z charts/webapp/templates/_helpers.tpl -2025-11-24T09:08:04.4868749Z charts/k8ssandra-operator/ -2025-11-24T09:08:04.4869748Z charts/k8ssandra-operator/Chart.yaml -2025-11-24T09:08:04.4870630Z charts/k8ssandra-operator/requirements.lock -2025-11-24T09:08:04.4871601Z charts/k8ssandra-operator/requirements.yaml -2025-11-24T09:08:04.4872130Z charts/k8ssandra-operator/values.yaml -2025-11-24T09:08:04.4873284Z charts/k8ssandra-operator/charts/ -2025-11-24T09:08:04.4873800Z charts/k8ssandra-operator/charts/k8ssandra-operator/ -2025-11-24T09:08:04.4874505Z charts/k8ssandra-operator/charts/k8ssandra-operator/Chart.lock -2025-11-24T09:08:04.4875151Z charts/k8ssandra-operator/charts/k8ssandra-operator/Chart.yaml -2025-11-24T09:08:04.4875788Z charts/k8ssandra-operator/charts/k8ssandra-operator/.helmignore -2025-11-24T09:08:04.4876404Z charts/k8ssandra-operator/charts/k8ssandra-operator/crds/ -2025-11-24T09:08:04.4877121Z charts/k8ssandra-operator/charts/k8ssandra-operator/crds/k8ssandra-operator-crds.yaml -2025-11-24T09:08:04.4877845Z charts/k8ssandra-operator/charts/k8ssandra-operator/README.md -2025-11-24T09:08:04.4889044Z charts/k8ssandra-operator/charts/k8ssandra-operator/values.yaml -2025-11-24T09:08:04.4889699Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/ -2025-11-24T09:08:04.4890391Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/ -2025-11-24T09:08:04.4891189Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/Chart.lock -2025-11-24T09:08:04.4891999Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/Chart.yaml -2025-11-24T09:08:04.4893032Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/.helmignore -2025-11-24T09:08:04.4893859Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/README.md -2025-11-24T09:08:04.4894662Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/values.yaml -2025-11-24T09:08:04.4895670Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/ -2025-11-24T09:08:04.4896514Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/ -2025-11-24T09:08:04.4897394Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/Chart.yaml -2025-11-24T09:08:04.5023772Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/.helmignore -2025-11-24T09:08:04.5024873Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/README.md -2025-11-24T09:08:04.5025845Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/values.yaml -2025-11-24T09:08:04.5027054Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/ -2025-11-24T09:08:04.5028043Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.5029068Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.5030064Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_names.tpl -2025-11-24T09:08:04.5031078Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.5032110Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.5033347Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/ -2025-11-24T09:08:04.5257807Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_mongodb.tpl -2025-11-24T09:08:04.5259201Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_mysql.tpl -2025-11-24T09:08:04.5260509Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.5261816Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.5263349Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.5264939Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.5266261Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.5267504Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_images.tpl -2025-11-24T09:08:04.5268666Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.5277803Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_ingress.tpl -2025-11-24T09:08:04.5278910Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.5279938Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.5280955Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.5281967Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.5283116Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/templates/ -2025-11-24T09:08:04.5284017Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/k8ssandra-common/templates/_helpers.tpl -2025-11-24T09:08:04.5284845Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/ -2025-11-24T09:08:04.5285820Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/Chart.lock -2025-11-24T09:08:04.5286629Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/Chart.yaml -2025-11-24T09:08:04.5287462Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/.helmignore -2025-11-24T09:08:04.5390102Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/crds/ -2025-11-24T09:08:04.5392535Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/crds/cassandradatacenters.yaml -2025-11-24T09:08:04.5395270Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/crds/cassandratasks.yaml -2025-11-24T09:08:04.5397160Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/README.md -2025-11-24T09:08:04.5398910Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/values.yaml -2025-11-24T09:08:04.5400073Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/ -2025-11-24T09:08:04.5408573Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/ -2025-11-24T09:08:04.5409577Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/Chart.lock -2025-11-24T09:08:04.5410559Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/Chart.yaml -2025-11-24T09:08:04.5411549Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/.helmignore -2025-11-24T09:08:04.5412521Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/README.md -2025-11-24T09:08:04.5413718Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/values.yaml -2025-11-24T09:08:04.5414684Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/ -2025-11-24T09:08:04.5415678Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/ -2025-11-24T09:08:04.5416716Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/Chart.yaml -2025-11-24T09:08:04.5417806Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/.helmignore -2025-11-24T09:08:04.5469239Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/README.md -2025-11-24T09:08:04.5470509Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/values.yaml -2025-11-24T09:08:04.5471681Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/ -2025-11-24T09:08:04.5473079Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.5474293Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.5475459Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_names.tpl -2025-11-24T09:08:04.5476628Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.5477816Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.5495223Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/ -2025-11-24T09:08:04.5496502Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_mongodb.tpl -2025-11-24T09:08:04.5498899Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_mysql.tpl -2025-11-24T09:08:04.5500228Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.5501529Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.5503093Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.5504488Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.5505769Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.5507020Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_images.tpl -2025-11-24T09:08:04.5508172Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.5509326Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_ingress.tpl -2025-11-24T09:08:04.5510488Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.5511665Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.5512956Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.5514266Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.5515552Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/templates/ -2025-11-24T09:08:04.5516571Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/charts/k8ssandra-common/templates/_helpers.tpl -2025-11-24T09:08:04.5517622Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/UPGRADE.md -2025-11-24T09:08:04.5518412Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/ -2025-11-24T09:08:04.5519261Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/deployment.yaml -2025-11-24T09:08:04.5520167Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/configmap.yaml -2025-11-24T09:08:04.5521137Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/leader_election_role_binding.yaml -2025-11-24T09:08:04.5522139Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/serviceaccount.yaml -2025-11-24T09:08:04.5523230Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/rolebinding.yaml -2025-11-24T09:08:04.5524141Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/clusterrole.yaml -2025-11-24T09:08:04.5525039Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/role.yaml -2025-11-24T09:08:04.5525943Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/webhook-service.yaml -2025-11-24T09:08:04.5526963Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/validatingwebhookconfiguration.yaml -2025-11-24T09:08:04.5527991Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/leader_election_role.yaml -2025-11-24T09:08:04.5528934Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/_helpers.tpl -2025-11-24T09:08:04.5530018Z charts/k8ssandra-operator/charts/k8ssandra-operator/charts/cass-operator/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.5530821Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/ -2025-11-24T09:08:04.5531609Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/admissionwebhookconfiguration.yaml -2025-11-24T09:08:04.5532402Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/ -2025-11-24T09:08:04.5533290Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/cluster_role_binding.yaml -2025-11-24T09:08:04.5534211Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/cluster_role.yaml -2025-11-24T09:08:04.5534985Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/batch_job.yaml -2025-11-24T09:08:04.5535774Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/crd/service_account.yaml -2025-11-24T09:08:04.5536599Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/serviceaccount-token.yaml -2025-11-24T09:08:04.5537393Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/deployment.yaml -2025-11-24T09:08:04.5538172Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/leader-rolebinding.yaml -2025-11-24T09:08:04.5538945Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/configmap.yaml -2025-11-24T09:08:04.5539695Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/serviceaccount.yaml -2025-11-24T09:08:04.5540460Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/rolebinding.yaml -2025-11-24T09:08:04.5541254Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/webhook-serving-cert.yaml -2025-11-24T09:08:04.5542027Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/clusterrole.yaml -2025-11-24T09:08:04.5542850Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/role.yaml -2025-11-24T09:08:04.5543596Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/webhook-service.yaml -2025-11-24T09:08:04.5544458Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/validatingwebhookconfiguration.yaml -2025-11-24T09:08:04.5545289Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/leader-role.yaml -2025-11-24T09:08:04.5546051Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/_helpers.tpl -2025-11-24T09:08:04.5546771Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/issuer.yaml -2025-11-24T09:08:04.5547622Z charts/k8ssandra-operator/charts/k8ssandra-operator/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.5548251Z charts/backoffice/ -2025-11-24T09:08:04.5548672Z charts/backoffice/Chart.yaml -2025-11-24T09:08:04.5549101Z charts/backoffice/README.md -2025-11-24T09:08:04.5549525Z charts/backoffice/values.yaml -2025-11-24T09:08:04.5549954Z charts/backoffice/templates/ -2025-11-24T09:08:04.5550395Z charts/backoffice/templates/deployment.yaml -2025-11-24T09:08:04.5550897Z charts/backoffice/templates/configmap.yaml -2025-11-24T09:08:04.5551385Z charts/backoffice/templates/NOTES.txt -2025-11-24T09:08:04.5551875Z charts/backoffice/templates/service.yaml -2025-11-24T09:08:04.5552406Z charts/backoffice/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.5553048Z charts/backoffice/templates/helpers.tpl -2025-11-24T09:08:04.5553557Z charts/backoffice/templates/tests/ -2025-11-24T09:08:04.5554035Z charts/backoffice/templates/tests/secret.yaml -2025-11-24T09:08:04.5554585Z charts/backoffice/templates/tests/stern-integration.yaml -2025-11-24T09:08:04.5555150Z charts/backoffice/templates/tests/configmap.yaml -2025-11-24T09:08:04.5586510Z charts/backoffice/templates/_helpers.tpl -2025-11-24T09:08:04.5587267Z charts/databases-ephemeral/ -2025-11-24T09:08:04.5587742Z charts/databases-ephemeral/Chart.yaml -2025-11-24T09:08:04.5588247Z charts/databases-ephemeral/.helmignore -2025-11-24T09:08:04.5588752Z charts/databases-ephemeral/requirements.lock -2025-11-24T09:08:04.5589282Z charts/databases-ephemeral/requirements.yaml -2025-11-24T09:08:04.5589781Z charts/databases-ephemeral/values.yaml -2025-11-24T09:08:04.5590483Z charts/databases-ephemeral/charts/ -2025-11-24T09:08:04.5591000Z charts/databases-ephemeral/charts/redis-ephemeral/ -2025-11-24T09:08:04.5591587Z charts/databases-ephemeral/charts/redis-ephemeral/Chart.yaml -2025-11-24T09:08:04.5592248Z charts/databases-ephemeral/charts/redis-ephemeral/requirements.lock -2025-11-24T09:08:04.5593174Z charts/databases-ephemeral/charts/redis-ephemeral/requirements.yaml -2025-11-24T09:08:04.5594145Z charts/databases-ephemeral/charts/redis-ephemeral/values.yaml -2025-11-24T09:08:04.5594768Z charts/databases-ephemeral/charts/redis-ephemeral/charts/ -2025-11-24T09:08:04.5595527Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/ -2025-11-24T09:08:04.5596676Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/Chart.lock -2025-11-24T09:08:04.5597880Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/Chart.yaml -2025-11-24T09:08:04.5598613Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/.helmignore -2025-11-24T09:08:04.5599336Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/README.md -2025-11-24T09:08:04.5600043Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/values.yaml -2025-11-24T09:08:04.5600748Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/ -2025-11-24T09:08:04.5601456Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/ -2025-11-24T09:08:04.5602250Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/Chart.yaml -2025-11-24T09:08:04.5603214Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/.helmignore -2025-11-24T09:08:04.5604072Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/README.md -2025-11-24T09:08:04.5604905Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/values.yaml -2025-11-24T09:08:04.5605713Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/ -2025-11-24T09:08:04.5606586Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.5607560Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_resources.tpl -2025-11-24T09:08:04.5608496Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.5609392Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_names.tpl -2025-11-24T09:08:04.5610487Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.5611419Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.5612344Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_compatibility.tpl -2025-11-24T09:08:04.5613409Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/ -2025-11-24T09:08:04.5614391Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mongodb.tpl -2025-11-24T09:08:04.5615391Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mysql.tpl -2025-11-24T09:08:04.5616382Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.5617425Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.5618447Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.5619454Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.5620489Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.5621596Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_images.tpl -2025-11-24T09:08:04.5622516Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.5623528Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_ingress.tpl -2025-11-24T09:08:04.5624458Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.5625387Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.5626384Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.5643953Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.5645095Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/ -2025-11-24T09:08:04.5646630Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/tls-secret.yaml -2025-11-24T09:08:04.5656080Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/servicemonitor.yaml -2025-11-24T09:08:04.5657046Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/secret.yaml -2025-11-24T09:08:04.5657982Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/metrics-svc.yaml -2025-11-24T09:08:04.5658984Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/configmap.yaml -2025-11-24T09:08:04.5660481Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/ -2025-11-24T09:08:04.5662004Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/pdb.yaml -2025-11-24T09:08:04.5663722Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/pvc.yaml -2025-11-24T09:08:04.5665257Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/psp.yaml -2025-11-24T09:08:04.5666804Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/serviceaccount.yaml -2025-11-24T09:08:04.5668745Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/service.yaml -2025-11-24T09:08:04.5670438Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/master/application.yaml -2025-11-24T09:08:04.5672122Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/NOTES.txt -2025-11-24T09:08:04.5673550Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/serviceaccount.yaml -2025-11-24T09:08:04.5674581Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/health-configmap.yaml -2025-11-24T09:08:04.5675487Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/rolebinding.yaml -2025-11-24T09:08:04.5676291Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/role.yaml -2025-11-24T09:08:04.5677151Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/scripts-configmap.yaml -2025-11-24T09:08:04.5678382Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/ -2025-11-24T09:08:04.5679250Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/pdb.yaml -2025-11-24T09:08:04.5680169Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/serviceaccount.yaml -2025-11-24T09:08:04.5681108Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/service.yaml -2025-11-24T09:08:04.5682003Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/hpa.yaml -2025-11-24T09:08:04.5683022Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/replicas/application.yaml -2025-11-24T09:08:04.5683897Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/ -2025-11-24T09:08:04.5684786Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/pdb.yaml -2025-11-24T09:08:04.5685883Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/node-services.yaml -2025-11-24T09:08:04.5686857Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/ports-configmap.yaml -2025-11-24T09:08:04.5687782Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/service.yaml -2025-11-24T09:08:04.5688644Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/hpa.yaml -2025-11-24T09:08:04.5689527Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/sentinel/statefulset.yaml -2025-11-24T09:08:04.5690501Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/extra-list.yaml -2025-11-24T09:08:04.5691350Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/secret-svcbind.yaml -2025-11-24T09:08:04.5692202Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/headless-svc.yaml -2025-11-24T09:08:04.5693315Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/podmonitor.yaml -2025-11-24T09:08:04.5694580Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/networkpolicy.yaml -2025-11-24T09:08:04.5695560Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/_helpers.tpl -2025-11-24T09:08:04.5696418Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/templates/prometheusrule.yaml -2025-11-24T09:08:04.5697249Z charts/databases-ephemeral/charts/redis-ephemeral/charts/redis/values.schema.json -2025-11-24T09:08:04.5697958Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/ -2025-11-24T09:08:04.5698636Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/Chart.yaml -2025-11-24T09:08:04.5699345Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/values.yaml -2025-11-24T09:08:04.5700044Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/ -2025-11-24T09:08:04.5700769Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/es.yaml -2025-11-24T09:08:04.5701539Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/cert.yaml -2025-11-24T09:08:04.5702318Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/es-svc.yaml -2025-11-24T09:08:04.5703273Z charts/databases-ephemeral/charts/elasticsearch-ephemeral/templates/_helpers.tpl -2025-11-24T09:08:04.5704002Z charts/databases-ephemeral/charts/cassandra-ephemeral/ -2025-11-24T09:08:04.5704859Z charts/databases-ephemeral/charts/cassandra-ephemeral/Chart.yaml -2025-11-24T09:08:04.5705563Z charts/databases-ephemeral/charts/cassandra-ephemeral/requirements.lock -2025-11-24T09:08:04.5706279Z charts/databases-ephemeral/charts/cassandra-ephemeral/requirements.yaml -2025-11-24T09:08:04.5706962Z charts/databases-ephemeral/charts/cassandra-ephemeral/values.yaml -2025-11-24T09:08:04.5707615Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/ -2025-11-24T09:08:04.5708298Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/ -2025-11-24T09:08:04.5709039Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/Chart.yaml -2025-11-24T09:08:04.5709829Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/.helmignore -2025-11-24T09:08:04.5710607Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/README.md -2025-11-24T09:08:04.5711380Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/values.yaml -2025-11-24T09:08:04.5712149Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/sample/ -2025-11-24T09:08:04.5713117Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/sample/create-storage-gce.yaml -2025-11-24T09:08:04.5713988Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/ -2025-11-24T09:08:04.5714857Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/servicemonitor.yaml -2025-11-24T09:08:04.5715761Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/pdb.yaml -2025-11-24T09:08:04.5716769Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/configmap.yaml -2025-11-24T09:08:04.5717663Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/NOTES.txt -2025-11-24T09:08:04.5718516Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/backup/ -2025-11-24T09:08:04.5719411Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/backup/cronjob.yaml -2025-11-24T09:08:04.5720336Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/backup/rbac.yaml -2025-11-24T09:08:04.5721311Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/service.yaml -2025-11-24T09:08:04.5722189Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/_helpers.tpl -2025-11-24T09:08:04.5723179Z charts/databases-ephemeral/charts/cassandra-ephemeral/charts/cassandra/templates/statefulset.yaml -2025-11-24T09:08:04.5723963Z charts/databases-ephemeral/charts/cassandra-ephemeral/templates/ -2025-11-24T09:08:04.5724671Z charts/databases-ephemeral/charts/cassandra-ephemeral/templates/helpers.tpl -2025-11-24T09:08:04.5725288Z charts/databases-ephemeral/templates/ -2025-11-24T09:08:04.5725795Z charts/databases-ephemeral/templates/NOTES.txt -2025-11-24T09:08:04.5726298Z charts/k8ssandra-test-cluster/ -2025-11-24T09:08:04.5726754Z charts/k8ssandra-test-cluster/Chart.yaml -2025-11-24T09:08:04.5727257Z charts/k8ssandra-test-cluster/.helmignore -2025-11-24T09:08:04.5727755Z charts/k8ssandra-test-cluster/README.md -2025-11-24T09:08:04.5728242Z charts/k8ssandra-test-cluster/values.yaml -2025-11-24T09:08:04.5728738Z charts/k8ssandra-test-cluster/templates/ -2025-11-24T09:08:04.5729299Z charts/k8ssandra-test-cluster/templates/jks-store-pass.yaml -2025-11-24T09:08:04.5729943Z charts/k8ssandra-test-cluster/templates/check-cluster-job.yaml -2025-11-24T09:08:04.5730579Z charts/k8ssandra-test-cluster/templates/k8ssandra-cluster.yaml -2025-11-24T09:08:04.5731243Z charts/k8ssandra-test-cluster/templates/tls-certificate-bundle.yaml -2025-11-24T09:08:04.5731883Z charts/k8ssandra-test-cluster/templates/tls-issuer.yaml -2025-11-24T09:08:04.5732490Z charts/k8ssandra-test-cluster/templates/tls-certificate.yaml -2025-11-24T09:08:04.5733204Z charts/smtp/ -2025-11-24T09:08:04.5733595Z charts/smtp/Chart.yaml -2025-11-24T09:08:04.5734020Z charts/smtp/requirements.lock -2025-11-24T09:08:04.5734545Z charts/smtp/requirements.yaml -2025-11-24T09:08:04.5734973Z charts/smtp/values.yaml -2025-11-24T09:08:04.5735381Z charts/smtp/charts/ -2025-11-24T09:08:04.5735789Z charts/smtp/charts/smtp/ -2025-11-24T09:08:04.5736224Z charts/smtp/charts/smtp/Chart.yaml -2025-11-24T09:08:04.5736686Z charts/smtp/charts/smtp/.helmignore -2025-11-24T09:08:04.5737152Z charts/smtp/charts/smtp/README.md -2025-11-24T09:08:04.5737611Z charts/smtp/charts/smtp/values.yaml -2025-11-24T09:08:04.5738073Z charts/smtp/charts/smtp/templates/ -2025-11-24T09:08:04.5738563Z charts/smtp/charts/smtp/templates/deployment.yaml -2025-11-24T09:08:04.5739092Z charts/smtp/charts/smtp/templates/NOTES.txt -2025-11-24T09:08:04.5739635Z charts/smtp/charts/smtp/templates/serviceaccount.yaml -2025-11-24T09:08:04.5740193Z charts/smtp/charts/smtp/templates/service.yaml -2025-11-24T09:08:04.5740697Z charts/smtp/charts/smtp/templates/tests/ -2025-11-24T09:08:04.5741260Z charts/smtp/charts/smtp/templates/tests/test-connection.yaml -2025-11-24T09:08:04.5741846Z charts/smtp/charts/smtp/templates/_helpers.tpl -2025-11-24T09:08:04.5742368Z charts/smtp/charts/smtp/templates/config.yaml -2025-11-24T09:08:04.5742995Z charts/coturn/ -2025-11-24T09:08:04.5743392Z charts/coturn/Chart.yaml -2025-11-24T09:08:04.5743814Z charts/coturn/README.md -2025-11-24T09:08:04.5744229Z charts/coturn/values.yaml -2025-11-24T09:08:04.5744654Z charts/coturn/templates/ -2025-11-24T09:08:04.5745094Z charts/coturn/templates/servicemonitor.yaml -2025-11-24T09:08:04.5745587Z charts/coturn/templates/secret.yaml -2025-11-24T09:08:04.5746082Z charts/coturn/templates/secret-or-certificate.yaml -2025-11-24T09:08:04.5746628Z charts/coturn/templates/configmap-allowlist.yaml -2025-11-24T09:08:04.5747269Z charts/coturn/templates/service.yaml -2025-11-24T09:08:04.5747771Z charts/coturn/templates/service-account.yaml -2025-11-24T09:08:04.5748330Z charts/coturn/templates/configmap-coturn-conf-template.yaml -2025-11-24T09:08:04.5748925Z charts/coturn/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.5749449Z charts/coturn/templates/_helpers.tpl -2025-11-24T09:08:04.5749935Z charts/coturn/templates/statefulset.yaml -2025-11-24T09:08:04.5750413Z charts/cert-manager/ -2025-11-24T09:08:04.5750836Z charts/cert-manager/Chart.yaml -2025-11-24T09:08:04.5751394Z charts/cert-manager/requirements.lock -2025-11-24T09:08:04.5751866Z charts/cert-manager/README.md -2025-11-24T09:08:04.5752310Z charts/cert-manager/requirements.yaml -2025-11-24T09:08:04.5752884Z charts/cert-manager/values.yaml -2025-11-24T09:08:04.5753335Z charts/cert-manager/charts/ -2025-11-24T09:08:04.5753775Z charts/cert-manager/charts/cert-manager/ -2025-11-24T09:08:04.5754295Z charts/cert-manager/charts/cert-manager/Chart.yaml -2025-11-24T09:08:04.5754849Z charts/cert-manager/charts/cert-manager/README.md -2025-11-24T09:08:04.5755395Z charts/cert-manager/charts/cert-manager/values.yaml -2025-11-24T09:08:04.5755940Z charts/cert-manager/charts/cert-manager/templates/ -2025-11-24T09:08:04.5756551Z charts/cert-manager/charts/cert-manager/templates/webhook-psp.yaml -2025-11-24T09:08:04.5757253Z charts/cert-manager/charts/cert-manager/templates/cainjector-config.yaml -2025-11-24T09:08:04.5757970Z charts/cert-manager/charts/cert-manager/templates/servicemonitor.yaml -2025-11-24T09:08:04.5758655Z charts/cert-manager/charts/cert-manager/templates/webhook-rbac.yaml -2025-11-24T09:08:04.5759385Z charts/cert-manager/charts/cert-manager/templates/webhook-validating-webhook.yaml -2025-11-24T09:08:04.5760108Z charts/cert-manager/charts/cert-manager/templates/deployment.yaml -2025-11-24T09:08:04.5760869Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-psp-clusterrole.yaml -2025-11-24T09:08:04.5761637Z charts/cert-manager/charts/cert-manager/templates/webhook-config.yaml -2025-11-24T09:08:04.5762347Z charts/cert-manager/charts/cert-manager/templates/webhook-deployment.yaml -2025-11-24T09:08:04.5763192Z charts/cert-manager/charts/cert-manager/templates/webhook-psp-clusterrole.yaml -2025-11-24T09:08:04.5763932Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-rbac.yaml -2025-11-24T09:08:04.5764752Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-job.yaml -2025-11-24T09:08:04.5765410Z charts/cert-manager/charts/cert-manager/templates/psp.yaml -2025-11-24T09:08:04.5766141Z charts/cert-manager/charts/cert-manager/templates/webhook-psp-clusterrolebinding.yaml -2025-11-24T09:08:04.5767013Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-psp-clusterrolebinding.yaml -2025-11-24T09:08:04.5767752Z charts/cert-manager/charts/cert-manager/templates/crds.yaml -2025-11-24T09:08:04.5768357Z charts/cert-manager/charts/cert-manager/templates/NOTES.txt -2025-11-24T09:08:04.5769025Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-psp.yaml -2025-11-24T09:08:04.5769742Z charts/cert-manager/charts/cert-manager/templates/serviceaccount.yaml -2025-11-24T09:08:04.5770449Z charts/cert-manager/charts/cert-manager/templates/psp-clusterrolebinding.yaml -2025-11-24T09:08:04.5771191Z charts/cert-manager/charts/cert-manager/templates/networkpolicy-webhooks.yaml -2025-11-24T09:08:04.5771918Z charts/cert-manager/charts/cert-manager/templates/webhook-service.yaml -2025-11-24T09:08:04.5772765Z charts/cert-manager/charts/cert-manager/templates/cainjector-service.yaml -2025-11-24T09:08:04.5773477Z charts/cert-manager/charts/cert-manager/templates/psp-clusterrole.yaml -2025-11-24T09:08:04.5774266Z charts/cert-manager/charts/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml -2025-11-24T09:08:04.5774994Z charts/cert-manager/charts/cert-manager/templates/service.yaml -2025-11-24T09:08:04.5775702Z charts/cert-manager/charts/cert-manager/templates/cainjector-psp-clusterrole.yaml -2025-11-24T09:08:04.5776639Z charts/cert-manager/charts/cert-manager/templates/startupapicheck-serviceaccount.yaml -2025-11-24T09:08:04.5777432Z charts/cert-manager/charts/cert-manager/templates/cainjector-deployment.yaml -2025-11-24T09:08:04.5778165Z charts/cert-manager/charts/cert-manager/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.5778821Z charts/cert-manager/charts/cert-manager/templates/rbac.yaml -2025-11-24T09:08:04.5779504Z charts/cert-manager/charts/cert-manager/templates/networkpolicy-egress.yaml -2025-11-24T09:08:04.5780247Z charts/cert-manager/charts/cert-manager/templates/cainjector-serviceaccount.yaml -2025-11-24T09:08:04.5781035Z charts/cert-manager/charts/cert-manager/templates/podmonitor.yaml -2025-11-24T09:08:04.5781760Z charts/cert-manager/charts/cert-manager/templates/webhook-poddisruptionbudget.yaml -2025-11-24T09:08:04.5782510Z charts/cert-manager/charts/cert-manager/templates/controller-config.yaml -2025-11-24T09:08:04.5783270Z charts/cert-manager/charts/cert-manager/templates/_helpers.tpl -2025-11-24T09:08:04.5783943Z charts/cert-manager/charts/cert-manager/templates/cainjector-rbac.yaml -2025-11-24T09:08:04.5784661Z charts/cert-manager/charts/cert-manager/templates/webhook-serviceaccount.yaml -2025-11-24T09:08:04.5785379Z charts/cert-manager/charts/cert-manager/templates/extras-objects.yaml -2025-11-24T09:08:04.5786097Z charts/cert-manager/charts/cert-manager/templates/webhook-mutating-webhook.yaml -2025-11-24T09:08:04.5786900Z charts/cert-manager/charts/cert-manager/templates/cainjector-poddisruptionbudget.yaml -2025-11-24T09:08:04.5787658Z charts/cert-manager/charts/cert-manager/templates/cainjector-psp.yaml -2025-11-24T09:08:04.5788318Z charts/cert-manager/charts/cert-manager/values.schema.json -2025-11-24T09:08:04.5788856Z charts/demo-smtp/ -2025-11-24T09:08:04.5789269Z charts/demo-smtp/Chart.yaml -2025-11-24T09:08:04.5789704Z charts/demo-smtp/.helmignore -2025-11-24T09:08:04.5790137Z charts/demo-smtp/values.yaml -2025-11-24T09:08:04.5790565Z charts/demo-smtp/templates/ -2025-11-24T09:08:04.5791011Z charts/demo-smtp/templates/deployment.yaml -2025-11-24T09:08:04.5791513Z charts/demo-smtp/templates/service.yaml -2025-11-24T09:08:04.5791997Z charts/demo-smtp/templates/_helpers.tpl -2025-11-24T09:08:04.5792454Z charts/kibana/ -2025-11-24T09:08:04.5792951Z charts/kibana/Chart.yaml -2025-11-24T09:08:04.5793380Z charts/kibana/requirements.lock -2025-11-24T09:08:04.5793815Z charts/kibana/requirements.yaml -2025-11-24T09:08:04.5794397Z charts/kibana/values.yaml -2025-11-24T09:08:04.5794823Z charts/kibana/charts/ -2025-11-24T09:08:04.5795238Z charts/kibana/charts/kibana/ -2025-11-24T09:08:04.5795671Z charts/kibana/charts/kibana/Chart.yaml -2025-11-24T09:08:04.5796161Z charts/kibana/charts/kibana/examples/ -2025-11-24T09:08:04.5796658Z charts/kibana/charts/kibana/examples/default/ -2025-11-24T09:08:04.5797202Z charts/kibana/charts/kibana/examples/default/README.md -2025-11-24T09:08:04.5797768Z charts/kibana/charts/kibana/examples/default/test/ -2025-11-24T09:08:04.5798344Z charts/kibana/charts/kibana/examples/default/test/goss.yaml -2025-11-24T09:08:04.5798947Z charts/kibana/charts/kibana/examples/default/Makefile -2025-11-24T09:08:04.5799479Z charts/kibana/charts/kibana/examples/oss/ -2025-11-24T09:08:04.5799996Z charts/kibana/charts/kibana/examples/oss/README.md -2025-11-24T09:08:04.5800542Z charts/kibana/charts/kibana/examples/oss/values.yaml -2025-11-24T09:08:04.5801085Z charts/kibana/charts/kibana/examples/oss/test/ -2025-11-24T09:08:04.5801627Z charts/kibana/charts/kibana/examples/oss/test/goss.yaml -2025-11-24T09:08:04.5802187Z charts/kibana/charts/kibana/examples/oss/Makefile -2025-11-24T09:08:04.5802824Z charts/kibana/charts/kibana/examples/security/ -2025-11-24T09:08:04.5803371Z charts/kibana/charts/kibana/examples/security/README.md -2025-11-24T09:08:04.5803951Z charts/kibana/charts/kibana/examples/security/values.yaml -2025-11-24T09:08:04.5804533Z charts/kibana/charts/kibana/examples/security/test/ -2025-11-24T09:08:04.5805107Z charts/kibana/charts/kibana/examples/security/test/goss.yaml -2025-11-24T09:08:04.5805707Z charts/kibana/charts/kibana/examples/security/Makefile -2025-11-24T09:08:04.5806387Z charts/kibana/charts/kibana/examples/upgrade/ -2025-11-24T09:08:04.5806932Z charts/kibana/charts/kibana/examples/upgrade/README.md -2025-11-24T09:08:04.5807515Z charts/kibana/charts/kibana/examples/upgrade/values.yaml -2025-11-24T09:08:04.5808085Z charts/kibana/charts/kibana/examples/upgrade/test/ -2025-11-24T09:08:04.5808653Z charts/kibana/charts/kibana/examples/upgrade/test/goss.yaml -2025-11-24T09:08:04.5809251Z charts/kibana/charts/kibana/examples/upgrade/Makefile -2025-11-24T09:08:04.5809800Z charts/kibana/charts/kibana/examples/openshift/ -2025-11-24T09:08:04.5810429Z charts/kibana/charts/kibana/examples/openshift/values.yml -2025-11-24T09:08:04.5811017Z charts/kibana/charts/kibana/examples/openshift/README.md -2025-11-24T09:08:04.5811594Z charts/kibana/charts/kibana/examples/openshift/test/ -2025-11-24T09:08:04.5812192Z charts/kibana/charts/kibana/examples/openshift/test/goss.yaml -2025-11-24T09:08:04.5812956Z charts/kibana/charts/kibana/examples/openshift/Makefile -2025-11-24T09:08:04.5813497Z charts/kibana/charts/kibana/.helmignore -2025-11-24T09:08:04.5813982Z charts/kibana/charts/kibana/README.md -2025-11-24T09:08:04.5814462Z charts/kibana/charts/kibana/values.yaml -2025-11-24T09:08:04.5814942Z charts/kibana/charts/kibana/templates/ -2025-11-24T09:08:04.5815468Z charts/kibana/charts/kibana/templates/deployment.yaml -2025-11-24T09:08:04.5816040Z charts/kibana/charts/kibana/templates/configmap.yaml -2025-11-24T09:08:04.5816596Z charts/kibana/charts/kibana/templates/service.yaml -2025-11-24T09:08:04.5817126Z charts/kibana/charts/kibana/templates/_helpers.tpl -2025-11-24T09:08:04.5817675Z charts/kibana/charts/kibana/templates/ingress.yaml -2025-11-24T09:08:04.5818179Z charts/kibana/charts/kibana/Makefile -2025-11-24T09:08:04.5818651Z charts/kibana/templates/ -2025-11-24T09:08:04.5819102Z charts/kibana/templates/basic-auth-secret.yaml -2025-11-24T09:08:04.5819596Z charts/calling-test/ -2025-11-24T09:08:04.5820016Z charts/calling-test/Chart.yaml -2025-11-24T09:08:04.5820457Z charts/calling-test/.helmignore -2025-11-24T09:08:04.5820898Z charts/calling-test/values.yaml -2025-11-24T09:08:04.5821335Z charts/calling-test/templates/ -2025-11-24T09:08:04.5821802Z charts/calling-test/templates/deployment.yaml -2025-11-24T09:08:04.5822307Z charts/calling-test/templates/NOTES.txt -2025-11-24T09:08:04.5822961Z charts/calling-test/templates/service.yaml -2025-11-24T09:08:04.5823464Z charts/calling-test/templates/_helpers.tpl -2025-11-24T09:08:04.5824020Z charts/reaper/ -2025-11-24T09:08:04.5824502Z charts/reaper/Chart.yaml -2025-11-24T09:08:04.5825257Z charts/reaper/.helmignore -2025-11-24T09:08:04.5825740Z charts/reaper/scripts/ -2025-11-24T09:08:04.5826166Z charts/reaper/scripts/reaper.sh -2025-11-24T09:08:04.5826593Z charts/reaper/README.md -2025-11-24T09:08:04.5827007Z charts/reaper/values.yaml -2025-11-24T09:08:04.5827429Z charts/reaper/templates/ -2025-11-24T09:08:04.5827861Z charts/reaper/templates/deployment.yaml -2025-11-24T09:08:04.5828346Z charts/reaper/templates/configmap.yaml -2025-11-24T09:08:04.5828828Z charts/reaper/templates/rbac.yaml -2025-11-24T09:08:04.5829271Z charts/sftd/ -2025-11-24T09:08:04.5829656Z charts/sftd/Chart.yaml -2025-11-24T09:08:04.5830062Z charts/sftd/README.md -2025-11-24T09:08:04.5830469Z charts/sftd/values.yaml -2025-11-24T09:08:04.5830877Z charts/sftd/templates/ -2025-11-24T09:08:04.5831302Z charts/sftd/templates/servicemonitor.yaml -2025-11-24T09:08:04.5831797Z charts/sftd/templates/secret.yaml -2025-11-24T09:08:04.5838038Z charts/sftd/templates/deployment-join-call.yaml -2025-11-24T09:08:04.5838662Z charts/sftd/templates/service-join-call.yaml -2025-11-24T09:08:04.5839210Z charts/sftd/templates/secret-or-certificate.yaml -2025-11-24T09:08:04.5839764Z charts/sftd/templates/configmap-join-call.yaml -2025-11-24T09:08:04.5840280Z charts/sftd/templates/service.yaml -2025-11-24T09:08:04.5840763Z charts/sftd/templates/service-account.yaml -2025-11-24T09:08:04.5841297Z charts/sftd/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.5841804Z charts/sftd/templates/_helpers.tpl -2025-11-24T09:08:04.5842268Z charts/sftd/templates/ingress.yaml -2025-11-24T09:08:04.5843071Z charts/sftd/templates/statefulset.yaml -2025-11-24T09:08:04.5843579Z charts/fake-aws-s3/ -2025-11-24T09:08:04.5844005Z charts/fake-aws-s3/Chart.yaml -2025-11-24T09:08:04.5844453Z charts/fake-aws-s3/.helmignore -2025-11-24T09:08:04.5844910Z charts/fake-aws-s3/requirements.lock -2025-11-24T09:08:04.5845398Z charts/fake-aws-s3/requirements.yaml -2025-11-24T09:08:04.5845876Z charts/fake-aws-s3/values.yaml -2025-11-24T09:08:04.5846315Z charts/fake-aws-s3/charts/ -2025-11-24T09:08:04.5846758Z charts/fake-aws-s3/charts/minio/ -2025-11-24T09:08:04.5847318Z charts/fake-aws-s3/charts/minio/Chart.yaml -2025-11-24T09:08:04.5847828Z charts/fake-aws-s3/charts/minio/.helmignore -2025-11-24T09:08:04.5848326Z charts/fake-aws-s3/charts/minio/README.md -2025-11-24T09:08:04.5848833Z charts/fake-aws-s3/charts/minio/values.yaml -2025-11-24T09:08:04.5849335Z charts/fake-aws-s3/charts/minio/templates/ -2025-11-24T09:08:04.5849900Z charts/fake-aws-s3/charts/minio/templates/servicemonitor.yaml -2025-11-24T09:08:04.5850527Z charts/fake-aws-s3/charts/minio/templates/deployment.yaml -2025-11-24T09:08:04.5851149Z charts/fake-aws-s3/charts/minio/templates/console-ingress.yaml -2025-11-24T09:08:04.5851755Z charts/fake-aws-s3/charts/minio/templates/pvc.yaml -2025-11-24T09:08:04.5852363Z charts/fake-aws-s3/charts/minio/templates/_helper_create_bucket.txt -2025-11-24T09:08:04.5853186Z charts/fake-aws-s3/charts/minio/templates/secrets.yaml -2025-11-24T09:08:04.5854238Z charts/fake-aws-s3/charts/minio/templates/configmap.yaml -2025-11-24T09:08:04.5854841Z charts/fake-aws-s3/charts/minio/templates/NOTES.txt -2025-11-24T09:08:04.5855422Z charts/fake-aws-s3/charts/minio/templates/serviceaccount.yaml -2025-11-24T09:08:04.5856039Z charts/fake-aws-s3/charts/minio/templates/_helper_policy.tpl -2025-11-24T09:08:04.5856680Z charts/fake-aws-s3/charts/minio/templates/_helper_create_policy.txt -2025-11-24T09:08:04.5857319Z charts/fake-aws-s3/charts/minio/templates/console-service.yaml -2025-11-24T09:08:04.5857927Z charts/fake-aws-s3/charts/minio/templates/post-job.yaml -2025-11-24T09:08:04.5858501Z charts/fake-aws-s3/charts/minio/templates/service.yaml -2025-11-24T09:08:04.5859129Z charts/fake-aws-s3/charts/minio/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.5859804Z charts/fake-aws-s3/charts/minio/templates/_helper_custom_command.txt -2025-11-24T09:08:04.5860458Z charts/fake-aws-s3/charts/minio/templates/_helper_create_user.txt -2025-11-24T09:08:04.5861266Z charts/fake-aws-s3/charts/minio/templates/securitycontextconstraints.yaml -2025-11-24T09:08:04.5861938Z charts/fake-aws-s3/charts/minio/templates/networkpolicy.yaml -2025-11-24T09:08:04.5862533Z charts/fake-aws-s3/charts/minio/templates/_helpers.tpl -2025-11-24T09:08:04.5863212Z charts/fake-aws-s3/charts/minio/templates/ingress.yaml -2025-11-24T09:08:04.5863786Z charts/fake-aws-s3/charts/minio/templates/statefulset.yaml -2025-11-24T09:08:04.5864431Z charts/fake-aws-s3/charts/minio/templates/_helper_create_svcacct.txt -2025-11-24T09:08:04.5865002Z charts/fake-aws-s3/templates/ -2025-11-24T09:08:04.5865456Z charts/fake-aws-s3/templates/reaper.yaml -2025-11-24T09:08:04.5865955Z charts/fake-aws-s3/templates/_helpers.tpl -2025-11-24T09:08:04.5866429Z charts/keycloakx/ -2025-11-24T09:08:04.5866839Z charts/keycloakx/Chart.yaml -2025-11-24T09:08:04.5867273Z charts/keycloakx/requirements.lock -2025-11-24T09:08:04.5867745Z charts/keycloakx/requirements.yaml -2025-11-24T09:08:04.5868205Z charts/keycloakx/values.yaml -2025-11-24T09:08:04.5868634Z charts/keycloakx/charts/ -2025-11-24T09:08:04.5869063Z charts/keycloakx/charts/keycloakx/ -2025-11-24T09:08:04.5869540Z charts/keycloakx/charts/keycloakx/Chart.yaml -2025-11-24T09:08:04.5870069Z charts/keycloakx/charts/keycloakx/.bumpversion.cfg -2025-11-24T09:08:04.5870600Z charts/keycloakx/charts/keycloakx/.helmignore -2025-11-24T09:08:04.5871105Z charts/keycloakx/charts/keycloakx/README.md -2025-11-24T09:08:04.5871607Z charts/keycloakx/charts/keycloakx/values.yaml -2025-11-24T09:08:04.5872105Z charts/keycloakx/charts/keycloakx/OWNERS -2025-11-24T09:08:04.5872893Z charts/keycloakx/charts/keycloakx/templates/ -2025-11-24T09:08:04.5873482Z charts/keycloakx/charts/keycloakx/templates/service-http.yaml -2025-11-24T09:08:04.5874138Z charts/keycloakx/charts/keycloakx/templates/servicemonitor.yaml -2025-11-24T09:08:04.5874760Z charts/keycloakx/charts/keycloakx/templates/secrets.yaml -2025-11-24T09:08:04.5875359Z charts/keycloakx/charts/keycloakx/templates/NOTES.txt -2025-11-24T09:08:04.5875964Z charts/keycloakx/charts/keycloakx/templates/serviceaccount.yaml -2025-11-24T09:08:04.5876570Z charts/keycloakx/charts/keycloakx/templates/route.yaml -2025-11-24T09:08:04.5877270Z charts/keycloakx/charts/keycloakx/templates/database-secret.yaml -2025-11-24T09:08:04.5877882Z charts/keycloakx/charts/keycloakx/templates/hpa.yaml -2025-11-24T09:08:04.5878493Z charts/keycloakx/charts/keycloakx/templates/service-headless.yaml -2025-11-24T09:08:04.5879185Z charts/keycloakx/charts/keycloakx/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.5879823Z charts/keycloakx/charts/keycloakx/templates/rbac.yaml -2025-11-24T09:08:04.5880381Z charts/keycloakx/charts/keycloakx/templates/test/ -2025-11-24T09:08:04.5881047Z charts/keycloakx/charts/keycloakx/templates/test/configmap-test.yaml -2025-11-24T09:08:04.5881714Z charts/keycloakx/charts/keycloakx/templates/test/pod-test.yaml -2025-11-24T09:08:04.5882376Z charts/keycloakx/charts/keycloakx/templates/configmap-startup.yaml -2025-11-24T09:08:04.5883146Z charts/keycloakx/charts/keycloakx/templates/networkpolicy.yaml -2025-11-24T09:08:04.5883757Z charts/keycloakx/charts/keycloakx/templates/_helpers.tpl -2025-11-24T09:08:04.5884346Z charts/keycloakx/charts/keycloakx/templates/ingress.yaml -2025-11-24T09:08:04.5884977Z charts/keycloakx/charts/keycloakx/templates/prometheusrule.yaml -2025-11-24T09:08:04.5885618Z charts/keycloakx/charts/keycloakx/templates/statefulset.yaml -2025-11-24T09:08:04.5886213Z charts/keycloakx/charts/keycloakx/values.schema.json -2025-11-24T09:08:04.5886734Z charts/migrate-features/ -2025-11-24T09:08:04.5887166Z charts/migrate-features/Chart.yaml -2025-11-24T09:08:04.5887640Z charts/migrate-features/README.md -2025-11-24T09:08:04.5888110Z charts/migrate-features/values.yaml -2025-11-24T09:08:04.5888586Z charts/migrate-features/templates/ -2025-11-24T09:08:04.5889064Z charts/migrate-features/templates/NOTES.txt -2025-11-24T09:08:04.5889575Z charts/migrate-features/templates/job.yaml -2025-11-24T09:08:04.5890058Z charts/step-certificates/ -2025-11-24T09:08:04.5890575Z charts/step-certificates/Chart.yaml -2025-11-24T09:08:04.5891060Z charts/step-certificates/requirements.lock -2025-11-24T09:08:04.5891566Z charts/step-certificates/requirements.yaml -2025-11-24T09:08:04.5892056Z charts/step-certificates/values.yaml -2025-11-24T09:08:04.5892530Z charts/step-certificates/charts/ -2025-11-24T09:08:04.5893130Z charts/step-certificates/charts/step-certificates/ -2025-11-24T09:08:04.5893708Z charts/step-certificates/charts/step-certificates/Chart.yaml -2025-11-24T09:08:04.5894360Z charts/step-certificates/charts/step-certificates/examples/ -2025-11-24T09:08:04.5895149Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/ -2025-11-24T09:08:04.5896142Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.crt -2025-11-24T09:08:04.5897166Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/user-ssh.key -2025-11-24T09:08:04.5898199Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/user-ssh.password -2025-11-24T09:08:04.5899214Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.crt -2025-11-24T09:08:04.5900232Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/generate-values.sh -2025-11-24T09:08:04.5901235Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/values.yml -2025-11-24T09:08:04.5902404Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/host-ssh.key.pub -2025-11-24T09:08:04.5903503Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/ca.config -2025-11-24T09:08:04.5904479Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/values.yml.tpl -2025-11-24T09:08:04.5905516Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.key -2025-11-24T09:08:04.5906571Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.json -2025-11-24T09:08:04.5907653Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/host-ssh.key -2025-11-24T09:08:04.5908700Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.password -2025-11-24T09:08:04.5909790Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/jwk_provisioner.password -2025-11-24T09:08:04.5910863Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/jwk_provisioner.key -2025-11-24T09:08:04.5911943Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/jwk_provisioner.compact.key -2025-11-24T09:08:04.5913171Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/jwk_provisioner.pub -2025-11-24T09:08:04.5914220Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.password -2025-11-24T09:08:04.5915256Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/user-ssh.key.pub -2025-11-24T09:08:04.5916289Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.key -2025-11-24T09:08:04.5917282Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.json -2025-11-24T09:08:04.5918289Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/root-tls.json.tpl -2025-11-24T09:08:04.5919315Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/host-ssh.password -2025-11-24T09:08:04.5920376Z charts/step-certificates/charts/step-certificates/examples/certificate_authority_single_instance/intermediate-tls.json.tpl -2025-11-24T09:08:04.5991897Z charts/step-certificates/charts/step-certificates/examples/registration_authority/ -2025-11-24T09:08:04.5992982Z charts/step-certificates/charts/step-certificates/examples/registration_authority/values.yml -2025-11-24T09:08:04.5993809Z charts/step-certificates/charts/step-certificates/examples/README.md -2025-11-24T09:08:04.5994534Z charts/step-certificates/charts/step-certificates/examples/existing_secrets/ -2025-11-24T09:08:04.5995330Z charts/step-certificates/charts/step-certificates/examples/existing_secrets/values.yaml -2025-11-24T09:08:04.5996060Z charts/step-certificates/charts/step-certificates/.helmignore -2025-11-24T09:08:04.5996718Z charts/step-certificates/charts/step-certificates/README.md -2025-11-24T09:08:04.5997345Z charts/step-certificates/charts/step-certificates/values.yaml -2025-11-24T09:08:04.5997958Z charts/step-certificates/charts/step-certificates/templates/ -2025-11-24T09:08:04.5998606Z charts/step-certificates/charts/step-certificates/templates/ca.yaml -2025-11-24T09:08:04.5999310Z charts/step-certificates/charts/step-certificates/templates/secrets.yaml -2025-11-24T09:08:04.6000040Z charts/step-certificates/charts/step-certificates/templates/configmaps.yaml -2025-11-24T09:08:04.6000759Z charts/step-certificates/charts/step-certificates/templates/NOTES.txt -2025-11-24T09:08:04.6001484Z charts/step-certificates/charts/step-certificates/templates/serviceaccount.yaml -2025-11-24T09:08:04.6002217Z charts/step-certificates/charts/step-certificates/templates/service.yaml -2025-11-24T09:08:04.6003387Z charts/step-certificates/charts/step-certificates/templates/bootstrap.yaml -2025-11-24T09:08:04.6004111Z charts/step-certificates/charts/step-certificates/templates/rbac.yaml -2025-11-24T09:08:04.6004790Z charts/step-certificates/charts/step-certificates/templates/tests/ -2025-11-24T09:08:04.6005483Z charts/step-certificates/charts/step-certificates/templates/_helpers.tpl -2025-11-24T09:08:04.6006180Z charts/step-certificates/charts/step-certificates/templates/ingress.yaml -2025-11-24T09:08:04.6152505Z charts/ldap-scim-bridge/ -2025-11-24T09:08:04.6153314Z charts/ldap-scim-bridge/Chart.yaml -2025-11-24T09:08:04.6154099Z charts/ldap-scim-bridge/.helmignore -2025-11-24T09:08:04.6154581Z charts/ldap-scim-bridge/README.md -2025-11-24T09:08:04.6155037Z charts/ldap-scim-bridge/values.yaml -2025-11-24T09:08:04.6155504Z charts/ldap-scim-bridge/templates/ -2025-11-24T09:08:04.6156010Z charts/ldap-scim-bridge/templates/secret.yaml -2025-11-24T09:08:04.6156535Z charts/ldap-scim-bridge/templates/cronjob.yaml -2025-11-24T09:08:04.6157055Z charts/ldap-scim-bridge/templates/_helpers.tpl -2025-11-24T09:08:04.6157560Z charts/account-pages/ -2025-11-24T09:08:04.6157982Z charts/account-pages/Chart.yaml -2025-11-24T09:08:04.6158431Z charts/account-pages/.helmignore -2025-11-24T09:08:04.6158886Z charts/account-pages/README.md -2025-11-24T09:08:04.6159322Z charts/account-pages/values.yaml -2025-11-24T09:08:04.6159765Z charts/account-pages/templates/ -2025-11-24T09:08:04.6160248Z charts/account-pages/templates/deployment.yaml -2025-11-24T09:08:04.6160812Z charts/account-pages/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6161370Z charts/account-pages/templates/_helpers.tpl -2025-11-24T09:08:04.6161858Z charts/redis-ephemeral/ -2025-11-24T09:08:04.6162285Z charts/redis-ephemeral/Chart.yaml -2025-11-24T09:08:04.6162956Z charts/redis-ephemeral/requirements.lock -2025-11-24T09:08:04.6163472Z charts/redis-ephemeral/requirements.yaml -2025-11-24T09:08:04.6163959Z charts/redis-ephemeral/values.yaml -2025-11-24T09:08:04.6164421Z charts/redis-ephemeral/charts/ -2025-11-24T09:08:04.6164870Z charts/redis-ephemeral/charts/redis/ -2025-11-24T09:08:04.6165359Z charts/redis-ephemeral/charts/redis/Chart.lock -2025-11-24T09:08:04.6165878Z charts/redis-ephemeral/charts/redis/Chart.yaml -2025-11-24T09:08:04.6166385Z charts/redis-ephemeral/charts/redis/.helmignore -2025-11-24T09:08:04.6166898Z charts/redis-ephemeral/charts/redis/README.md -2025-11-24T09:08:04.6167402Z charts/redis-ephemeral/charts/redis/values.yaml -2025-11-24T09:08:04.6168052Z charts/redis-ephemeral/charts/redis/charts/ -2025-11-24T09:08:04.6168566Z charts/redis-ephemeral/charts/redis/charts/common/ -2025-11-24T09:08:04.6169143Z charts/redis-ephemeral/charts/redis/charts/common/Chart.yaml -2025-11-24T09:08:04.6169760Z charts/redis-ephemeral/charts/redis/charts/common/.helmignore -2025-11-24T09:08:04.6170370Z charts/redis-ephemeral/charts/redis/charts/common/README.md -2025-11-24T09:08:04.6170974Z charts/redis-ephemeral/charts/redis/charts/common/values.yaml -2025-11-24T09:08:04.6171594Z charts/redis-ephemeral/charts/redis/charts/common/templates/ -2025-11-24T09:08:04.6407403Z charts/redis-ephemeral/charts/redis/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.6408289Z charts/redis-ephemeral/charts/redis/charts/common/templates/_resources.tpl -2025-11-24T09:08:04.6409122Z charts/redis-ephemeral/charts/redis/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.6409889Z charts/redis-ephemeral/charts/redis/charts/common/templates/_names.tpl -2025-11-24T09:08:04.6410675Z charts/redis-ephemeral/charts/redis/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.6411477Z charts/redis-ephemeral/charts/redis/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.6412264Z charts/redis-ephemeral/charts/redis/charts/common/templates/_compatibility.tpl -2025-11-24T09:08:04.6413207Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/ -2025-11-24T09:08:04.6414031Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mongodb.tpl -2025-11-24T09:08:04.6414892Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mysql.tpl -2025-11-24T09:08:04.6527836Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.6529368Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.6530327Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.6532208Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.6533420Z charts/redis-ephemeral/charts/redis/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.6535039Z charts/redis-ephemeral/charts/redis/charts/common/templates/_images.tpl -2025-11-24T09:08:04.6535863Z charts/redis-ephemeral/charts/redis/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.6536675Z charts/redis-ephemeral/charts/redis/charts/common/templates/_ingress.tpl -2025-11-24T09:08:04.6537413Z charts/redis-ephemeral/charts/redis/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.6538175Z charts/redis-ephemeral/charts/redis/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.6538934Z charts/redis-ephemeral/charts/redis/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.6539696Z charts/redis-ephemeral/charts/redis/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.6540304Z charts/redis-ephemeral/charts/redis/templates/ -2025-11-24T09:08:04.6540886Z charts/redis-ephemeral/charts/redis/templates/tls-secret.yaml -2025-11-24T09:08:04.6541534Z charts/redis-ephemeral/charts/redis/templates/servicemonitor.yaml -2025-11-24T09:08:04.6542163Z charts/redis-ephemeral/charts/redis/templates/secret.yaml -2025-11-24T09:08:04.6542947Z charts/redis-ephemeral/charts/redis/templates/metrics-svc.yaml -2025-11-24T09:08:04.6543575Z charts/redis-ephemeral/charts/redis/templates/configmap.yaml -2025-11-24T09:08:04.6544171Z charts/redis-ephemeral/charts/redis/templates/master/ -2025-11-24T09:08:04.6544768Z charts/redis-ephemeral/charts/redis/templates/master/pdb.yaml -2025-11-24T09:08:04.6545388Z charts/redis-ephemeral/charts/redis/templates/master/pvc.yaml -2025-11-24T09:08:04.6545996Z charts/redis-ephemeral/charts/redis/templates/master/psp.yaml -2025-11-24T09:08:04.6599744Z charts/redis-ephemeral/charts/redis/templates/master/serviceaccount.yaml -2025-11-24T09:08:04.6600619Z charts/redis-ephemeral/charts/redis/templates/master/service.yaml -2025-11-24T09:08:04.6601740Z charts/redis-ephemeral/charts/redis/templates/master/application.yaml -2025-11-24T09:08:04.6602484Z charts/redis-ephemeral/charts/redis/templates/NOTES.txt -2025-11-24T09:08:04.6603416Z charts/redis-ephemeral/charts/redis/templates/serviceaccount.yaml -2025-11-24T09:08:04.6604199Z charts/redis-ephemeral/charts/redis/templates/health-configmap.yaml -2025-11-24T09:08:04.6604943Z charts/redis-ephemeral/charts/redis/templates/rolebinding.yaml -2025-11-24T09:08:04.6605637Z charts/redis-ephemeral/charts/redis/templates/role.yaml -2025-11-24T09:08:04.6606357Z charts/redis-ephemeral/charts/redis/templates/scripts-configmap.yaml -2025-11-24T09:08:04.6607086Z charts/redis-ephemeral/charts/redis/templates/replicas/ -2025-11-24T09:08:04.6607765Z charts/redis-ephemeral/charts/redis/templates/replicas/pdb.yaml -2025-11-24T09:08:04.6608553Z charts/redis-ephemeral/charts/redis/templates/replicas/serviceaccount.yaml -2025-11-24T09:08:04.6609359Z charts/redis-ephemeral/charts/redis/templates/replicas/service.yaml -2025-11-24T09:08:04.6610104Z charts/redis-ephemeral/charts/redis/templates/replicas/hpa.yaml -2025-11-24T09:08:04.6610867Z charts/redis-ephemeral/charts/redis/templates/replicas/application.yaml -2025-11-24T09:08:04.6611597Z charts/redis-ephemeral/charts/redis/templates/sentinel/ -2025-11-24T09:08:04.6612268Z charts/redis-ephemeral/charts/redis/templates/sentinel/pdb.yaml -2025-11-24T09:08:04.6613196Z charts/redis-ephemeral/charts/redis/templates/sentinel/node-services.yaml -2025-11-24T09:08:04.6614055Z charts/redis-ephemeral/charts/redis/templates/sentinel/ports-configmap.yaml -2025-11-24T09:08:04.6614862Z charts/redis-ephemeral/charts/redis/templates/sentinel/service.yaml -2025-11-24T09:08:04.6615780Z charts/redis-ephemeral/charts/redis/templates/sentinel/hpa.yaml -2025-11-24T09:08:04.6616561Z charts/redis-ephemeral/charts/redis/templates/sentinel/statefulset.yaml -2025-11-24T09:08:04.6617289Z charts/redis-ephemeral/charts/redis/templates/extra-list.yaml -2025-11-24T09:08:04.6617950Z charts/redis-ephemeral/charts/redis/templates/secret-svcbind.yaml -2025-11-24T09:08:04.6618597Z charts/redis-ephemeral/charts/redis/templates/headless-svc.yaml -2025-11-24T09:08:04.6619216Z charts/redis-ephemeral/charts/redis/templates/podmonitor.yaml -2025-11-24T09:08:04.6619967Z charts/redis-ephemeral/charts/redis/templates/networkpolicy.yaml -2025-11-24T09:08:04.6620587Z charts/redis-ephemeral/charts/redis/templates/_helpers.tpl -2025-11-24T09:08:04.6621231Z charts/redis-ephemeral/charts/redis/templates/prometheusrule.yaml -2025-11-24T09:08:04.6621849Z charts/redis-ephemeral/charts/redis/values.schema.json -2025-11-24T09:08:04.6622365Z charts/wire-server/ -2025-11-24T09:08:04.6622899Z charts/wire-server/Chart.yaml -2025-11-24T09:08:04.6623373Z charts/wire-server/.helmignore -2025-11-24T09:08:04.6623815Z charts/wire-server/requirements.lock -2025-11-24T09:08:04.6624285Z charts/wire-server/requirements.yaml -2025-11-24T09:08:04.6625602Z charts/wire-server/values.yaml -2025-11-24T09:08:04.6626447Z charts/wire-server/charts/ -2025-11-24T09:08:04.6626917Z charts/wire-server/charts/background-worker/ -2025-11-24T09:08:04.6627686Z charts/wire-server/charts/background-worker/Chart.yaml -2025-11-24T09:08:04.6628673Z charts/wire-server/charts/background-worker/README.md -2025-11-24T09:08:04.6629659Z charts/wire-server/charts/background-worker/values.yaml -2025-11-24T09:08:04.6630345Z charts/wire-server/charts/background-worker/templates/ -2025-11-24T09:08:04.6631019Z charts/wire-server/charts/background-worker/templates/servicemonitor.yaml -2025-11-24T09:08:04.6631718Z charts/wire-server/charts/background-worker/templates/secret.yaml -2025-11-24T09:08:04.6632402Z charts/wire-server/charts/background-worker/templates/deployment.yaml -2025-11-24T09:08:04.6633362Z charts/wire-server/charts/background-worker/templates/configmap.yaml -2025-11-24T09:08:04.6634042Z charts/wire-server/charts/background-worker/templates/service.yaml -2025-11-24T09:08:04.6634750Z charts/wire-server/charts/background-worker/templates/cassandra-secret.yaml -2025-11-24T09:08:04.6641868Z charts/wire-server/charts/background-worker/templates/_helpers.tpl -2025-11-24T09:08:04.6642858Z charts/wire-server/charts/integration/ -2025-11-24T09:08:04.6643709Z charts/wire-server/charts/integration/Chart.yaml -2025-11-24T09:08:04.6644458Z charts/wire-server/charts/integration/values.yaml -2025-11-24T09:08:04.6645081Z charts/wire-server/charts/integration/templates/ -2025-11-24T09:08:04.6645662Z charts/wire-server/charts/integration/templates/secret.yaml -2025-11-24T09:08:04.6646291Z charts/wire-server/charts/integration/templates/configmap.yaml -2025-11-24T09:08:04.6646927Z charts/wire-server/charts/integration/templates/service.yaml -2025-11-24T09:08:04.6647615Z charts/wire-server/charts/integration/templates/cassandra-secret.yaml -2025-11-24T09:08:04.6648278Z charts/wire-server/charts/integration/templates/_helpers.tpl -2025-11-24T09:08:04.6648889Z charts/wire-server/charts/integration/templates/ingress.yaml -2025-11-24T09:08:04.6649639Z charts/wire-server/charts/integration/templates/integration-integration.yaml -2025-11-24T09:08:04.6650255Z charts/wire-server/charts/gundeck/ -2025-11-24T09:08:04.6650749Z charts/wire-server/charts/gundeck/Chart.yaml -2025-11-24T09:08:04.6651255Z charts/wire-server/charts/gundeck/.helmignore -2025-11-24T09:08:04.6651770Z charts/wire-server/charts/gundeck/README.md -2025-11-24T09:08:04.6652270Z charts/wire-server/charts/gundeck/values.yaml -2025-11-24T09:08:04.6652916Z charts/wire-server/charts/gundeck/templates/ -2025-11-24T09:08:04.6653489Z charts/wire-server/charts/gundeck/templates/servicemonitor.yaml -2025-11-24T09:08:04.6654101Z charts/wire-server/charts/gundeck/templates/secret.yaml -2025-11-24T09:08:04.6654727Z charts/wire-server/charts/gundeck/templates/redis-ca-secret.yaml -2025-11-24T09:08:04.6655536Z charts/wire-server/charts/gundeck/templates/deployment.yaml -2025-11-24T09:08:04.6656166Z charts/wire-server/charts/gundeck/templates/configmap.yaml -2025-11-24T09:08:04.6656791Z charts/wire-server/charts/gundeck/templates/serviceaccount.yaml -2025-11-24T09:08:04.6657406Z charts/wire-server/charts/gundeck/templates/service.yaml -2025-11-24T09:08:04.6658072Z charts/wire-server/charts/gundeck/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6658710Z charts/wire-server/charts/gundeck/templates/tests/ -2025-11-24T09:08:04.6659371Z charts/wire-server/charts/gundeck/templates/tests/secret.yaml -2025-11-24T09:08:04.6660010Z charts/wire-server/charts/gundeck/templates/tests/configmap.yaml -2025-11-24T09:08:04.6660700Z charts/wire-server/charts/gundeck/templates/tests/gundeck-integration.yaml -2025-11-24T09:08:04.6661392Z charts/wire-server/charts/gundeck/templates/cassandra-secret.yaml -2025-11-24T09:08:04.6662007Z charts/wire-server/charts/gundeck/templates/_helpers.tpl -2025-11-24T09:08:04.6662554Z charts/wire-server/charts/backoffice/ -2025-11-24T09:08:04.6663178Z charts/wire-server/charts/backoffice/Chart.yaml -2025-11-24T09:08:04.6663697Z charts/wire-server/charts/backoffice/README.md -2025-11-24T09:08:04.6664205Z charts/wire-server/charts/backoffice/values.yaml -2025-11-24T09:08:04.6664729Z charts/wire-server/charts/backoffice/templates/ -2025-11-24T09:08:04.6665291Z charts/wire-server/charts/backoffice/templates/deployment.yaml -2025-11-24T09:08:04.6665915Z charts/wire-server/charts/backoffice/templates/configmap.yaml -2025-11-24T09:08:04.6666512Z charts/wire-server/charts/backoffice/templates/NOTES.txt -2025-11-24T09:08:04.6667100Z charts/wire-server/charts/backoffice/templates/service.yaml -2025-11-24T09:08:04.6667771Z charts/wire-server/charts/backoffice/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6668449Z charts/wire-server/charts/backoffice/templates/helpers.tpl -2025-11-24T09:08:04.6669036Z charts/wire-server/charts/backoffice/templates/tests/ -2025-11-24T09:08:04.6669651Z charts/wire-server/charts/backoffice/templates/tests/secret.yaml -2025-11-24T09:08:04.6670355Z charts/wire-server/charts/backoffice/templates/tests/stern-integration.yaml -2025-11-24T09:08:04.6671077Z charts/wire-server/charts/backoffice/templates/tests/configmap.yaml -2025-11-24T09:08:04.6671713Z charts/wire-server/charts/backoffice/templates/_helpers.tpl -2025-11-24T09:08:04.6672361Z charts/wire-server/charts/proxy/ -2025-11-24T09:08:04.6672970Z charts/wire-server/charts/proxy/Chart.yaml -2025-11-24T09:08:04.6673475Z charts/wire-server/charts/proxy/.helmignore -2025-11-24T09:08:04.6673972Z charts/wire-server/charts/proxy/values.yaml -2025-11-24T09:08:04.6674461Z charts/wire-server/charts/proxy/templates/ -2025-11-24T09:08:04.6675016Z charts/wire-server/charts/proxy/templates/servicemonitor.yaml -2025-11-24T09:08:04.6675609Z charts/wire-server/charts/proxy/templates/secret.yaml -2025-11-24T09:08:04.6676190Z charts/wire-server/charts/proxy/templates/deployment.yaml -2025-11-24T09:08:04.6676797Z charts/wire-server/charts/proxy/templates/configmap.yaml -2025-11-24T09:08:04.6677379Z charts/wire-server/charts/proxy/templates/service.yaml -2025-11-24T09:08:04.6678004Z charts/wire-server/charts/proxy/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6678628Z charts/wire-server/charts/proxy/templates/_helpers.tpl -2025-11-24T09:08:04.6679155Z charts/wire-server/charts/federator/ -2025-11-24T09:08:04.6679656Z charts/wire-server/charts/federator/Chart.yaml -2025-11-24T09:08:04.6680166Z charts/wire-server/charts/federator/.helmignore -2025-11-24T09:08:04.6680684Z charts/wire-server/charts/federator/values.yaml -2025-11-24T09:08:04.6681193Z charts/wire-server/charts/federator/templates/ -2025-11-24T09:08:04.6681777Z charts/wire-server/charts/federator/templates/servicemonitor.yaml -2025-11-24T09:08:04.6682413Z charts/wire-server/charts/federator/templates/secret.yaml -2025-11-24T09:08:04.6683123Z charts/wire-server/charts/federator/templates/deployment.yaml -2025-11-24T09:08:04.6683716Z charts/wire-server/charts/federator/templates/ca.yaml -2025-11-24T09:08:04.6684501Z charts/wire-server/charts/federator/templates/configmap.yaml -2025-11-24T09:08:04.6685118Z charts/wire-server/charts/federator/templates/service.yaml -2025-11-24T09:08:04.6685781Z charts/wire-server/charts/federator/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6686435Z charts/wire-server/charts/federator/templates/tests/ -2025-11-24T09:08:04.6687039Z charts/wire-server/charts/federator/templates/tests/secret.yaml -2025-11-24T09:08:04.6687743Z charts/wire-server/charts/federator/templates/tests/federator-integration.yaml -2025-11-24T09:08:04.6688560Z charts/wire-server/charts/federator/templates/tests/configmap.yaml -2025-11-24T09:08:04.6689190Z charts/wire-server/charts/federator/templates/_helpers.tpl -2025-11-24T09:08:04.6689727Z charts/wire-server/charts/brig/ -2025-11-24T09:08:04.6690170Z charts/wire-server/charts/brig/Chart.yaml -2025-11-24T09:08:04.6690654Z charts/wire-server/charts/brig/.helmignore -2025-11-24T09:08:04.6691142Z charts/wire-server/charts/brig/README.md -2025-11-24T09:08:04.6691629Z charts/wire-server/charts/brig/values.yaml -2025-11-24T09:08:04.6692111Z charts/wire-server/charts/brig/templates/ -2025-11-24T09:08:04.6692812Z charts/wire-server/charts/brig/templates/elasticsearch-ca-secret.yaml -2025-11-24T09:08:04.6693432Z charts/wire-server/charts/brig/templates/conf/ -2025-11-24T09:08:04.6694040Z charts/wire-server/charts/brig/templates/conf/_turn-servers-v2.txt.tpl -2025-11-24T09:08:04.6694730Z charts/wire-server/charts/brig/templates/conf/_turn-servers.txt.tpl -2025-11-24T09:08:04.6695362Z charts/wire-server/charts/brig/templates/servicemonitor.yaml -2025-11-24T09:08:04.6695951Z charts/wire-server/charts/brig/templates/secret.yaml -2025-11-24T09:08:04.6696518Z charts/wire-server/charts/brig/templates/deployment.yaml -2025-11-24T09:08:04.6697098Z charts/wire-server/charts/brig/templates/configmap.yaml -2025-11-24T09:08:04.6697677Z charts/wire-server/charts/brig/templates/serviceaccount.yaml -2025-11-24T09:08:04.6698257Z charts/wire-server/charts/brig/templates/service.yaml -2025-11-24T09:08:04.6698843Z charts/wire-server/charts/brig/templates/turnconfigmap.yaml -2025-11-24T09:08:04.6699479Z charts/wire-server/charts/brig/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6700069Z charts/wire-server/charts/brig/templates/tests/ -2025-11-24T09:08:04.6700614Z charts/wire-server/charts/brig/templates/tests/secret.yaml -2025-11-24T09:08:04.6701308Z charts/wire-server/charts/brig/templates/tests/configmap.yaml -2025-11-24T09:08:04.6701962Z charts/wire-server/charts/brig/templates/tests/brig-integration.yaml -2025-11-24T09:08:04.6702721Z charts/wire-server/charts/brig/templates/tests/nginz-service.yaml -2025-11-24T09:08:04.6703358Z charts/wire-server/charts/brig/templates/cassandra-secret.yaml -2025-11-24T09:08:04.6703953Z charts/wire-server/charts/brig/templates/_helpers.tpl -2025-11-24T09:08:04.6704480Z charts/wire-server/charts/legalhold/ -2025-11-24T09:08:04.6704965Z charts/wire-server/charts/legalhold/Chart.yaml -2025-11-24T09:08:04.6705493Z charts/wire-server/charts/legalhold/requirements.lock -2025-11-24T09:08:04.6706047Z charts/wire-server/charts/legalhold/requirements.yaml -2025-11-24T09:08:04.6706590Z charts/wire-server/charts/legalhold/values.yaml -2025-11-24T09:08:04.6707096Z charts/wire-server/charts/legalhold/charts/ -2025-11-24T09:08:04.6707629Z charts/wire-server/charts/legalhold/charts/postgresql/ -2025-11-24T09:08:04.6708239Z charts/wire-server/charts/legalhold/charts/postgresql/Chart.yaml -2025-11-24T09:08:04.6708882Z charts/wire-server/charts/legalhold/charts/postgresql/.helmignore -2025-11-24T09:08:04.6709566Z charts/wire-server/charts/legalhold/charts/postgresql/requirements.lock -2025-11-24T09:08:04.6710232Z charts/wire-server/charts/legalhold/charts/postgresql/README.md -2025-11-24T09:08:04.6710902Z charts/wire-server/charts/legalhold/charts/postgresql/requirements.yaml -2025-11-24T09:08:04.6711547Z charts/wire-server/charts/legalhold/charts/postgresql/files/ -2025-11-24T09:08:04.6712931Z charts/wire-server/charts/legalhold/charts/postgresql/files/README.md -2025-11-24T09:08:04.6714374Z charts/wire-server/charts/legalhold/charts/postgresql/files/docker-entrypoint-initdb.d/ -2025-11-24T09:08:04.6716202Z charts/wire-server/charts/legalhold/charts/postgresql/files/docker-entrypoint-initdb.d/README.md -2025-11-24T09:08:04.6717033Z charts/wire-server/charts/legalhold/charts/postgresql/files/conf.d/ -2025-11-24T09:08:04.6717748Z charts/wire-server/charts/legalhold/charts/postgresql/files/conf.d/README.md -2025-11-24T09:08:04.6718449Z charts/wire-server/charts/legalhold/charts/postgresql/values.yaml -2025-11-24T09:08:04.6719090Z charts/wire-server/charts/legalhold/charts/postgresql/charts/ -2025-11-24T09:08:04.6719904Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/ -2025-11-24T09:08:04.6720626Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/Chart.yaml -2025-11-24T09:08:04.6721393Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/.helmignore -2025-11-24T09:08:04.6722149Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/README.md -2025-11-24T09:08:04.6723851Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/values.yaml -2025-11-24T09:08:04.6725520Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/ -2025-11-24T09:08:04.6726462Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.6727353Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.6728214Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_names.tpl -2025-11-24T09:08:04.6729105Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.6730000Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.6730864Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/ -2025-11-24T09:08:04.6731778Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.6732907Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.6733884Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.6734841Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.6735938Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.6736871Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_images.tpl -2025-11-24T09:08:04.6737726Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.6738596Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.6739465Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.6740319Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.6741172Z charts/wire-server/charts/legalhold/charts/postgresql/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.6741873Z charts/wire-server/charts/legalhold/charts/postgresql/ci/ -2025-11-24T09:08:04.6742613Z charts/wire-server/charts/legalhold/charts/postgresql/ci/shmvolume-disabled-values.yaml -2025-11-24T09:08:04.6743533Z charts/wire-server/charts/legalhold/charts/postgresql/ci/commonAnnotations.yaml -2025-11-24T09:08:04.6744297Z charts/wire-server/charts/legalhold/charts/postgresql/ci/default-values.yaml -2025-11-24T09:08:04.6745028Z charts/wire-server/charts/legalhold/charts/postgresql/values-production.yaml -2025-11-24T09:08:04.6745722Z charts/wire-server/charts/legalhold/charts/postgresql/templates/ -2025-11-24T09:08:04.6746451Z charts/wire-server/charts/legalhold/charts/postgresql/templates/servicemonitor.yaml -2025-11-24T09:08:04.6747377Z charts/wire-server/charts/legalhold/charts/postgresql/templates/metrics-svc.yaml -2025-11-24T09:08:04.6748154Z charts/wire-server/charts/legalhold/charts/postgresql/templates/svc-headless.yaml -2025-11-24T09:08:04.6748998Z charts/wire-server/charts/legalhold/charts/postgresql/templates/initialization-configmap.yaml -2025-11-24T09:08:04.6749808Z charts/wire-server/charts/legalhold/charts/postgresql/templates/secrets.yaml -2025-11-24T09:08:04.6750549Z charts/wire-server/charts/legalhold/charts/postgresql/templates/configmap.yaml -2025-11-24T09:08:04.6751354Z charts/wire-server/charts/legalhold/charts/postgresql/templates/NOTES.txt -2025-11-24T09:08:04.6752105Z charts/wire-server/charts/legalhold/charts/postgresql/templates/serviceaccount.yaml -2025-11-24T09:08:04.6752989Z charts/wire-server/charts/legalhold/charts/postgresql/templates/rolebinding.yaml -2025-11-24T09:08:04.6753733Z charts/wire-server/charts/legalhold/charts/postgresql/templates/role.yaml -2025-11-24T09:08:04.6754515Z charts/wire-server/charts/legalhold/charts/postgresql/templates/statefulset-slaves.yaml -2025-11-24T09:08:04.6755310Z charts/wire-server/charts/legalhold/charts/postgresql/templates/extra-list.yaml -2025-11-24T09:08:04.6756111Z charts/wire-server/charts/legalhold/charts/postgresql/templates/metrics-configmap.yaml -2025-11-24T09:08:04.6756980Z charts/wire-server/charts/legalhold/charts/postgresql/templates/extended-config-configmap.yaml -2025-11-24T09:08:04.6757823Z charts/wire-server/charts/legalhold/charts/postgresql/templates/networkpolicy.yaml -2025-11-24T09:08:04.6758588Z charts/wire-server/charts/legalhold/charts/postgresql/templates/_helpers.tpl -2025-11-24T09:08:04.6759353Z charts/wire-server/charts/legalhold/charts/postgresql/templates/prometheusrule.yaml -2025-11-24T09:08:04.6760112Z charts/wire-server/charts/legalhold/charts/postgresql/templates/svc.yaml -2025-11-24T09:08:04.6760836Z charts/wire-server/charts/legalhold/charts/postgresql/templates/svc-read.yaml -2025-11-24T09:08:04.6761585Z charts/wire-server/charts/legalhold/charts/postgresql/templates/statefulset.yaml -2025-11-24T09:08:04.6762388Z charts/wire-server/charts/legalhold/charts/postgresql/templates/podsecuritypolicy.yaml -2025-11-24T09:08:04.6763600Z charts/wire-server/charts/legalhold/charts/postgresql/values.schema.json -2025-11-24T09:08:04.6764664Z charts/wire-server/charts/legalhold/templates/ -2025-11-24T09:08:04.6765345Z charts/wire-server/charts/legalhold/templates/deployment.yaml -2025-11-24T09:08:04.6765977Z charts/wire-server/charts/legalhold/templates/secret-token.yaml -2025-11-24T09:08:04.6766599Z charts/wire-server/charts/legalhold/templates/service.yaml -2025-11-24T09:08:04.6767212Z charts/wire-server/charts/legalhold/templates/secret-tls.yaml -2025-11-24T09:08:04.6767816Z charts/wire-server/charts/legalhold/templates/_helpers.tpl -2025-11-24T09:08:04.6768408Z charts/wire-server/charts/legalhold/templates/ingress.yaml -2025-11-24T09:08:04.6768949Z charts/wire-server/charts/cannon/ -2025-11-24T09:08:04.6769415Z charts/wire-server/charts/cannon/conf/ -2025-11-24T09:08:04.6769911Z charts/wire-server/charts/cannon/conf/static/ -2025-11-24T09:08:04.6770446Z charts/wire-server/charts/cannon/conf/static/zauth.acl -2025-11-24T09:08:04.6770985Z charts/wire-server/charts/cannon/Chart.yaml -2025-11-24T09:08:04.6771484Z charts/wire-server/charts/cannon/.helmignore -2025-11-24T09:08:04.6771976Z charts/wire-server/charts/cannon/values.yaml -2025-11-24T09:08:04.6772476Z charts/wire-server/charts/cannon/templates/ -2025-11-24T09:08:04.6773117Z charts/wire-server/charts/cannon/templates/conf/ -2025-11-24T09:08:04.6773698Z charts/wire-server/charts/cannon/templates/conf/_nginx.conf.tpl -2025-11-24T09:08:04.6774333Z charts/wire-server/charts/cannon/templates/servicemonitor.yaml -2025-11-24T09:08:04.6774934Z charts/wire-server/charts/cannon/templates/secret.yaml -2025-11-24T09:08:04.6775514Z charts/wire-server/charts/cannon/templates/configmap.yaml -2025-11-24T09:08:04.6776136Z charts/wire-server/charts/cannon/templates/headless-service.yaml -2025-11-24T09:08:04.6776923Z charts/wire-server/charts/cannon/templates/nginz-configmap.yaml -2025-11-24T09:08:04.6779353Z charts/wire-server/charts/cannon/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6780530Z charts/wire-server/charts/cannon/templates/nginz-secret.yaml -2025-11-24T09:08:04.6781657Z charts/wire-server/charts/cannon/templates/cassandra-secret.yaml -2025-11-24T09:08:04.6782884Z charts/wire-server/charts/cannon/templates/_helpers.tpl -2025-11-24T09:08:04.6783936Z charts/wire-server/charts/cannon/templates/nginz-service.yaml -2025-11-24T09:08:04.6785030Z charts/wire-server/charts/cannon/templates/statefulset.yaml -2025-11-24T09:08:04.6786275Z charts/wire-server/charts/cannon/templates/nginz-certificate.yaml -2025-11-24T09:08:04.6787475Z charts/wire-server/charts/cannon/templates/nginz-certificate-secret.yaml -2025-11-24T09:08:04.6788884Z charts/wire-server/charts/spar/ -2025-11-24T09:08:04.6790444Z charts/wire-server/charts/spar/Chart.yaml -2025-11-24T09:08:04.6791287Z charts/wire-server/charts/spar/.helmignore -2025-11-24T09:08:04.6792854Z charts/wire-server/charts/spar/values.yaml -2025-11-24T09:08:04.6793883Z charts/wire-server/charts/spar/templates/ -2025-11-24T09:08:04.6794852Z charts/wire-server/charts/spar/templates/servicemonitor.yaml -2025-11-24T09:08:04.6796029Z charts/wire-server/charts/spar/templates/deployment.yaml -2025-11-24T09:08:04.6798057Z charts/wire-server/charts/spar/templates/configmap.yaml -2025-11-24T09:08:04.6799664Z charts/wire-server/charts/spar/templates/service.yaml -2025-11-24T09:08:04.6801030Z charts/wire-server/charts/spar/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6803204Z charts/wire-server/charts/spar/templates/tests/ -2025-11-24T09:08:04.6804190Z charts/wire-server/charts/spar/templates/tests/secret.yaml -2025-11-24T09:08:04.6805664Z charts/wire-server/charts/spar/templates/tests/spar-integration.yaml -2025-11-24T09:08:04.6806827Z charts/wire-server/charts/spar/templates/tests/configmap.yaml -2025-11-24T09:08:04.6807710Z charts/wire-server/charts/spar/templates/cassandra-secret.yaml -2025-11-24T09:08:04.6808332Z charts/wire-server/charts/spar/templates/_helpers.tpl -2025-11-24T09:08:04.6808869Z charts/wire-server/charts/nginz/ -2025-11-24T09:08:04.6809341Z charts/wire-server/charts/nginz/Chart.yaml -2025-11-24T09:08:04.6809857Z charts/wire-server/charts/nginz/.helmignore -2025-11-24T09:08:04.6810356Z charts/wire-server/charts/nginz/static/ -2025-11-24T09:08:04.6810847Z charts/wire-server/charts/nginz/static/conf/ -2025-11-24T09:08:04.6811508Z charts/wire-server/charts/nginz/static/conf/zauth.acl -2025-11-24T09:08:04.6812036Z charts/wire-server/charts/nginz/zauth.txt -2025-11-24T09:08:04.6812532Z charts/wire-server/charts/nginz/README.md -2025-11-24T09:08:04.6813190Z charts/wire-server/charts/nginz/values.yaml -2025-11-24T09:08:04.6813694Z charts/wire-server/charts/nginz/templates/ -2025-11-24T09:08:04.6814366Z charts/wire-server/charts/nginz/templates/conf/ -2025-11-24T09:08:04.6814938Z charts/wire-server/charts/nginz/templates/conf/_nginx.conf.tpl -2025-11-24T09:08:04.6815566Z charts/wire-server/charts/nginz/templates/servicemonitor.yaml -2025-11-24T09:08:04.6816167Z charts/wire-server/charts/nginz/templates/secret.yaml -2025-11-24T09:08:04.6816743Z charts/wire-server/charts/nginz/templates/deployment.yaml -2025-11-24T09:08:04.6817336Z charts/wire-server/charts/nginz/templates/configmap.yaml -2025-11-24T09:08:04.6817921Z charts/wire-server/charts/nginz/templates/service.yaml -2025-11-24T09:08:04.6818568Z charts/wire-server/charts/nginz/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6819194Z charts/wire-server/charts/nginz/templates/_helpers.tpl -2025-11-24T09:08:04.6819722Z charts/wire-server/charts/mlsstats/ -2025-11-24T09:08:04.6820214Z charts/wire-server/charts/mlsstats/Chart.yaml -2025-11-24T09:08:04.6820734Z charts/wire-server/charts/mlsstats/.helmignore -2025-11-24T09:08:04.6821694Z charts/wire-server/charts/mlsstats/README.md -2025-11-24T09:08:04.6822386Z charts/wire-server/charts/mlsstats/values.yaml -2025-11-24T09:08:04.6823017Z charts/wire-server/charts/mlsstats/templates/ -2025-11-24T09:08:04.6823840Z charts/wire-server/charts/mlsstats/templates/secret.yaml -2025-11-24T09:08:04.6824472Z charts/wire-server/charts/mlsstats/templates/cronjob.yaml -2025-11-24T09:08:04.6825064Z charts/wire-server/charts/mlsstats/templates/_helpers.tpl -2025-11-24T09:08:04.6825627Z charts/wire-server/charts/cassandra-migrations/ -2025-11-24T09:08:04.6826172Z charts/wire-server/charts/cassandra-migrations/Chart.yaml -2025-11-24T09:08:04.6826772Z charts/wire-server/charts/cassandra-migrations/.helmignore -2025-11-24T09:08:04.6827376Z charts/wire-server/charts/cassandra-migrations/values.yaml -2025-11-24T09:08:04.6828054Z charts/wire-server/charts/cassandra-migrations/templates/ -2025-11-24T09:08:04.6828760Z charts/wire-server/charts/cassandra-migrations/templates/gundeck-migrate-data.yaml -2025-11-24T09:08:04.6829539Z charts/wire-server/charts/cassandra-migrations/templates/migrate-schema.yaml -2025-11-24T09:08:04.6830279Z charts/wire-server/charts/cassandra-migrations/templates/cassandra-certs.yaml -2025-11-24T09:08:04.6830987Z charts/wire-server/charts/cassandra-migrations/templates/NOTES.txt -2025-11-24T09:08:04.6831704Z charts/wire-server/charts/cassandra-migrations/templates/spar-migrate-data.yaml -2025-11-24T09:08:04.6832470Z charts/wire-server/charts/cassandra-migrations/templates/galley-migrate-data.yaml -2025-11-24T09:08:04.6833334Z charts/wire-server/charts/cassandra-migrations/templates/_helpers.tpl -2025-11-24T09:08:04.6840708Z charts/wire-server/charts/galley/ -2025-11-24T09:08:04.6841261Z charts/wire-server/charts/galley/Chart.yaml -2025-11-24T09:08:04.6841802Z charts/wire-server/charts/galley/values.yaml -2025-11-24T09:08:04.6842326Z charts/wire-server/charts/galley/templates/ -2025-11-24T09:08:04.6843286Z charts/wire-server/charts/galley/templates/servicemonitor.yaml -2025-11-24T09:08:04.6843926Z charts/wire-server/charts/galley/templates/secret.yaml -2025-11-24T09:08:04.6844532Z charts/wire-server/charts/galley/templates/aws-secret.yaml -2025-11-24T09:08:04.6845141Z charts/wire-server/charts/galley/templates/deployment.yaml -2025-11-24T09:08:04.6845749Z charts/wire-server/charts/galley/templates/configmap.yaml -2025-11-24T09:08:04.6846363Z charts/wire-server/charts/galley/templates/serviceaccount.yaml -2025-11-24T09:08:04.6846975Z charts/wire-server/charts/galley/templates/service.yaml -2025-11-24T09:08:04.6847624Z charts/wire-server/charts/galley/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6848254Z charts/wire-server/charts/galley/templates/tests/ -2025-11-24T09:08:04.6849007Z charts/wire-server/charts/galley/templates/tests/secret.yaml -2025-11-24T09:08:04.6849695Z charts/wire-server/charts/galley/templates/tests/galley-integration.yaml -2025-11-24T09:08:04.6850384Z charts/wire-server/charts/galley/templates/tests/configmap.yaml -2025-11-24T09:08:04.6851041Z charts/wire-server/charts/galley/templates/cassandra-secret.yaml -2025-11-24T09:08:04.6851660Z charts/wire-server/charts/galley/templates/_helpers.tpl -2025-11-24T09:08:04.6852204Z charts/wire-server/charts/cargohold/ -2025-11-24T09:08:04.6852830Z charts/wire-server/charts/cargohold/Chart.yaml -2025-11-24T09:08:04.6853373Z charts/wire-server/charts/cargohold/.helmignore -2025-11-24T09:08:04.6853896Z charts/wire-server/charts/cargohold/values.yaml -2025-11-24T09:08:04.6854424Z charts/wire-server/charts/cargohold/templates/ -2025-11-24T09:08:04.6855019Z charts/wire-server/charts/cargohold/templates/servicemonitor.yaml -2025-11-24T09:08:04.6855649Z charts/wire-server/charts/cargohold/templates/secret.yaml -2025-11-24T09:08:04.6856260Z charts/wire-server/charts/cargohold/templates/deployment.yaml -2025-11-24T09:08:04.6856899Z charts/wire-server/charts/cargohold/templates/configmap.yaml -2025-11-24T09:08:04.6857541Z charts/wire-server/charts/cargohold/templates/serviceaccount.yaml -2025-11-24T09:08:04.6858161Z charts/wire-server/charts/cargohold/templates/service.yaml -2025-11-24T09:08:04.6858835Z charts/wire-server/charts/cargohold/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6859474Z charts/wire-server/charts/cargohold/templates/tests/ -2025-11-24T09:08:04.6860067Z charts/wire-server/charts/cargohold/templates/tests/secret.yaml -2025-11-24T09:08:04.6860919Z charts/wire-server/charts/cargohold/templates/tests/cargohold-integration.yaml -2025-11-24T09:08:04.6861657Z charts/wire-server/charts/cargohold/templates/tests/configmap.yaml -2025-11-24T09:08:04.6862284Z charts/wire-server/charts/cargohold/templates/_helpers.tpl -2025-11-24T09:08:04.6862973Z charts/wire-server/charts/elasticsearch-index/ -2025-11-24T09:08:04.6863522Z charts/wire-server/charts/elasticsearch-index/Chart.yaml -2025-11-24T09:08:04.6864113Z charts/wire-server/charts/elasticsearch-index/.helmignore -2025-11-24T09:08:04.6864789Z charts/wire-server/charts/elasticsearch-index/values.yaml -2025-11-24T09:08:04.6865386Z charts/wire-server/charts/elasticsearch-index/templates/ -2025-11-24T09:08:04.6866094Z charts/wire-server/charts/elasticsearch-index/templates/elasticsearch-ca-secret.yaml -2025-11-24T09:08:04.6866859Z charts/wire-server/charts/elasticsearch-index/templates/secret.yaml -2025-11-24T09:08:04.6867570Z charts/wire-server/charts/elasticsearch-index/templates/create-index.yaml -2025-11-24T09:08:04.6868299Z charts/wire-server/charts/elasticsearch-index/templates/migrate-data.yaml -2025-11-24T09:08:04.6868993Z charts/wire-server/charts/elasticsearch-index/templates/helpers.tpl -2025-11-24T09:08:04.6869707Z charts/wire-server/charts/elasticsearch-index/templates/cassandra-secret.yaml -2025-11-24T09:08:04.6870427Z charts/wire-server/charts/elasticsearch-index/templates/_helpers.tpl -2025-11-24T09:08:04.6871012Z charts/wire-server/templates/ -2025-11-24T09:08:04.6871454Z charts/wire-server/templates/NOTES.txt -2025-11-24T09:08:04.6871932Z charts/smallstep-accomp/ -2025-11-24T09:08:04.6872362Z charts/smallstep-accomp/Chart.yaml -2025-11-24T09:08:04.6872942Z charts/smallstep-accomp/requirements.lock -2025-11-24T09:08:04.6873428Z charts/smallstep-accomp/README.md -2025-11-24T09:08:04.6873895Z charts/smallstep-accomp/requirements.yaml -2025-11-24T09:08:04.6874376Z charts/smallstep-accomp/values.yaml -2025-11-24T09:08:04.6874846Z charts/smallstep-accomp/charts/ -2025-11-24T09:08:04.6875293Z charts/smallstep-accomp/charts/nginx/ -2025-11-24T09:08:04.6875794Z charts/smallstep-accomp/charts/nginx/Chart.lock -2025-11-24T09:08:04.6876319Z charts/smallstep-accomp/charts/nginx/Chart.yaml -2025-11-24T09:08:04.6876842Z charts/smallstep-accomp/charts/nginx/.helmignore -2025-11-24T09:08:04.6877353Z charts/smallstep-accomp/charts/nginx/README.md -2025-11-24T09:08:04.6877952Z charts/smallstep-accomp/charts/nginx/values.yaml -2025-11-24T09:08:04.6878462Z charts/smallstep-accomp/charts/nginx/charts/ -2025-11-24T09:08:04.6878974Z charts/smallstep-accomp/charts/nginx/charts/common/ -2025-11-24T09:08:04.6879555Z charts/smallstep-accomp/charts/nginx/charts/common/Chart.yaml -2025-11-24T09:08:04.6880180Z charts/smallstep-accomp/charts/nginx/charts/common/.helmignore -2025-11-24T09:08:04.6880798Z charts/smallstep-accomp/charts/nginx/charts/common/README.md -2025-11-24T09:08:04.6881413Z charts/smallstep-accomp/charts/nginx/charts/common/values.yaml -2025-11-24T09:08:04.6882023Z charts/smallstep-accomp/charts/nginx/charts/common/templates/ -2025-11-24T09:08:04.6882350Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.6882889Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_resources.tpl -2025-11-24T09:08:04.6883302Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.6883622Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_names.tpl -2025-11-24T09:08:04.6883962Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.6884272Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.6884604Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_compatibility.tpl -2025-11-24T09:08:04.6884914Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/ -2025-11-24T09:08:04.6885286Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_mongodb.tpl -2025-11-24T09:08:04.6885787Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_mysql.tpl -2025-11-24T09:08:04.6886166Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.6886567Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.6886913Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.6887291Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.6887679Z charts/smallstep-accomp/charts/nginx/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.6888056Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_images.tpl -2025-11-24T09:08:04.6888368Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.6888676Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_ingress.tpl -2025-11-24T09:08:04.6888999Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.6889307Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.6889626Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.6889929Z charts/smallstep-accomp/charts/nginx/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.6890149Z charts/smallstep-accomp/charts/nginx/templates/ -2025-11-24T09:08:04.6890412Z charts/smallstep-accomp/charts/nginx/templates/tls-secret.yaml -2025-11-24T09:08:04.6890704Z charts/smallstep-accomp/charts/nginx/templates/servicemonitor.yaml -2025-11-24T09:08:04.6891006Z charts/smallstep-accomp/charts/nginx/templates/prometheusrules.yaml -2025-11-24T09:08:04.6891261Z charts/smallstep-accomp/charts/nginx/templates/pdb.yaml -2025-11-24T09:08:04.6891531Z charts/smallstep-accomp/charts/nginx/templates/deployment.yaml -2025-11-24T09:08:04.6891819Z charts/smallstep-accomp/charts/nginx/templates/health-ingress.yaml -2025-11-24T09:08:04.6892065Z charts/smallstep-accomp/charts/nginx/templates/NOTES.txt -2025-11-24T09:08:04.6892350Z charts/smallstep-accomp/charts/nginx/templates/serviceaccount.yaml -2025-11-24T09:08:04.6892586Z charts/smallstep-accomp/charts/nginx/templates/hpa.yaml -2025-11-24T09:08:04.6892954Z charts/smallstep-accomp/charts/nginx/templates/extra-list.yaml -2025-11-24T09:08:04.6893268Z charts/smallstep-accomp/charts/nginx/templates/ingress-tls-secret.yaml -2025-11-24T09:08:04.6893630Z charts/smallstep-accomp/charts/nginx/templates/networkpolicy.yaml -2025-11-24T09:08:04.6893984Z charts/smallstep-accomp/charts/nginx/templates/stream-server-block-configmap.yaml -2025-11-24T09:08:04.6894244Z charts/smallstep-accomp/charts/nginx/templates/_helpers.tpl -2025-11-24T09:08:04.6894490Z charts/smallstep-accomp/charts/nginx/templates/ingress.yaml -2025-11-24T09:08:04.6894722Z charts/smallstep-accomp/charts/nginx/templates/svc.yaml -2025-11-24T09:08:04.6895044Z charts/smallstep-accomp/charts/nginx/templates/server-block-configmap.yaml -2025-11-24T09:08:04.6895290Z charts/smallstep-accomp/charts/nginx/values.schema.json -2025-11-24T09:08:04.6895490Z charts/smallstep-accomp/templates/ -2025-11-24T09:08:04.6895709Z charts/smallstep-accomp/templates/secrets.yaml -2025-11-24T09:08:04.6895917Z charts/smallstep-accomp/templates/certs.yaml -2025-11-24T09:08:04.6896144Z charts/smallstep-accomp/templates/step-config.yaml -2025-11-24T09:08:04.6896386Z charts/smallstep-accomp/templates/ca-password.yaml -2025-11-24T09:08:04.6896602Z charts/smallstep-accomp/templates/_helpers.tpl -2025-11-24T09:08:04.6896863Z charts/smallstep-accomp/templates/server-block-configmap.yaml -2025-11-24T09:08:04.6897042Z charts/restund/ -2025-11-24T09:08:04.6897224Z charts/restund/Chart.yaml -2025-11-24T09:08:04.6897408Z charts/restund/README.md -2025-11-24T09:08:04.6897593Z charts/restund/values.yaml -2025-11-24T09:08:04.6897774Z charts/restund/templates/ -2025-11-24T09:08:04.6897967Z charts/restund/templates/secret.yaml -2025-11-24T09:08:04.6898199Z charts/restund/templates/secret-or-certificate.yaml -2025-11-24T09:08:04.6898526Z charts/restund/templates/ca-configmap.yaml -2025-11-24T09:08:04.6898729Z charts/restund/templates/service.yaml -2025-11-24T09:08:04.6898942Z charts/restund/templates/service-account.yaml -2025-11-24T09:08:04.6899213Z charts/restund/templates/configmap-restund-conf-template.yaml -2025-11-24T09:08:04.6899406Z charts/restund/templates/_helpers.tpl -2025-11-24T09:08:04.6899605Z charts/restund/templates/statefulset.yaml -2025-11-24T09:08:04.6899797Z charts/cassandra-external/ -2025-11-24T09:08:04.6899993Z charts/cassandra-external/Chart.yaml -2025-11-24T09:08:04.6900184Z charts/cassandra-external/values.yaml -2025-11-24T09:08:04.6900437Z charts/cassandra-external/templates/ -2025-11-24T09:08:04.6900654Z charts/cassandra-external/templates/helpers.tpl -2025-11-24T09:08:04.6900873Z charts/cassandra-external/templates/endpoint.yaml -2025-11-24T09:08:04.6901064Z charts/elasticsearch-curator/ -2025-11-24T09:08:04.6901263Z charts/elasticsearch-curator/Chart.yaml -2025-11-24T09:08:04.6901478Z charts/elasticsearch-curator/requirements.lock -2025-11-24T09:08:04.6901690Z charts/elasticsearch-curator/requirements.yaml -2025-11-24T09:08:04.6901889Z charts/elasticsearch-curator/values.yaml -2025-11-24T09:08:04.6902075Z charts/elasticsearch-curator/charts/ -2025-11-24T09:08:04.6902334Z charts/elasticsearch-curator/charts/elasticsearch-curator/ -2025-11-24T09:08:04.6902736Z charts/elasticsearch-curator/charts/elasticsearch-curator/Chart.yaml -2025-11-24T09:08:04.6903047Z charts/elasticsearch-curator/charts/elasticsearch-curator/.helmignore -2025-11-24T09:08:04.6903341Z charts/elasticsearch-curator/charts/elasticsearch-curator/README.md -2025-11-24T09:08:04.6903646Z charts/elasticsearch-curator/charts/elasticsearch-curator/values.yaml -2025-11-24T09:08:04.6903907Z charts/elasticsearch-curator/charts/elasticsearch-curator/ci/ -2025-11-24T09:08:04.6904293Z charts/elasticsearch-curator/charts/elasticsearch-curator/ci/initcontainer-values.yaml -2025-11-24T09:08:04.6904572Z charts/elasticsearch-curator/charts/elasticsearch-curator/OWNERS -2025-11-24T09:08:04.6904873Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/ -2025-11-24T09:08:04.6905216Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/configmap.yaml -2025-11-24T09:08:04.6905548Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/NOTES.txt -2025-11-24T09:08:04.6905929Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/serviceaccount.yaml -2025-11-24T09:08:04.6906371Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/rolebinding.yaml -2025-11-24T09:08:04.6906702Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/role.yaml -2025-11-24T09:08:04.6907040Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/cronjob.yaml -2025-11-24T09:08:04.6907363Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/hooks/ -2025-11-24T09:08:04.6907760Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/hooks/job.install.yaml -2025-11-24T09:08:04.6908091Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/psp.yml -2025-11-24T09:08:04.6908428Z charts/elasticsearch-curator/charts/elasticsearch-curator/templates/_helpers.tpl -2025-11-24T09:08:04.6908607Z charts/wire-utility/ -2025-11-24T09:08:04.6908799Z charts/wire-utility/CHANGELOG.md -2025-11-24T09:08:04.6908987Z charts/wire-utility/Chart.yaml -2025-11-24T09:08:04.6909173Z charts/wire-utility/README.md -2025-11-24T09:08:04.6909361Z charts/wire-utility/values.yaml -2025-11-24T09:08:04.6909548Z charts/wire-utility/templates/ -2025-11-24T09:08:04.6909745Z charts/wire-utility/templates/NOTES.txt -2025-11-24T09:08:04.6909952Z charts/wire-utility/templates/_helpers.tpl -2025-11-24T09:08:04.6910165Z charts/wire-utility/templates/statefulset.yaml -2025-11-24T09:08:04.6910344Z charts/openebs/ -2025-11-24T09:08:04.6910527Z charts/openebs/Chart.yaml -2025-11-24T09:08:04.6910716Z charts/openebs/requirements.lock -2025-11-24T09:08:04.6910902Z charts/openebs/requirements.yaml -2025-11-24T09:08:04.6911088Z charts/openebs/values.yaml -2025-11-24T09:08:04.6911404Z charts/openebs/charts/ -2025-11-24T09:08:04.6911593Z charts/openebs/charts/openebs/ -2025-11-24T09:08:04.6911787Z charts/openebs/charts/openebs/Chart.lock -2025-11-24T09:08:04.6911986Z charts/openebs/charts/openebs/Chart.yaml -2025-11-24T09:08:04.6912178Z charts/openebs/charts/openebs/crds/ -2025-11-24T09:08:04.6912409Z charts/openebs/charts/openebs/crds/blockdevice.yaml -2025-11-24T09:08:04.6912856Z charts/openebs/charts/openebs/crds/blockdeviceclaim.yaml -2025-11-24T09:08:04.6913064Z charts/openebs/charts/openebs/README.md -2025-11-24T09:08:04.6913265Z charts/openebs/charts/openebs/values.yaml -2025-11-24T09:08:04.6913555Z charts/openebs/charts/openebs/charts/ -2025-11-24T09:08:04.6913794Z charts/openebs/charts/openebs/charts/cstor/ -2025-11-24T09:08:04.6914030Z charts/openebs/charts/openebs/charts/cstor/Chart.lock -2025-11-24T09:08:04.6914260Z charts/openebs/charts/openebs/charts/cstor/Chart.yaml -2025-11-24T09:08:04.6914496Z charts/openebs/charts/openebs/charts/cstor/.helmignore -2025-11-24T09:08:04.6914718Z charts/openebs/charts/openebs/charts/cstor/crds/ -2025-11-24T09:08:04.6914999Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolume.yaml -2025-11-24T09:08:04.6915315Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolumepolicy.yaml -2025-11-24T09:08:04.6915590Z charts/openebs/charts/openebs/charts/cstor/crds/cstorbackup.yaml -2025-11-24T09:08:04.6915896Z charts/openebs/charts/openebs/charts/cstor/crds/cstorpoolcluster.yaml -2025-11-24T09:08:04.6916210Z charts/openebs/charts/openebs/charts/cstor/crds/cstorpoolinstance.yaml -2025-11-24T09:08:04.6916478Z charts/openebs/charts/openebs/charts/cstor/crds/upgradetask.yaml -2025-11-24T09:08:04.6916794Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolumereplica.yaml -2025-11-24T09:08:04.6917099Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolumeconfig.yaml -2025-11-24T09:08:04.6917426Z charts/openebs/charts/openebs/charts/cstor/crds/cstorcompletedbackup.yaml -2025-11-24T09:08:04.6917720Z charts/openebs/charts/openebs/charts/cstor/crds/migrationtask.yaml -2025-11-24T09:08:04.6918003Z charts/openebs/charts/openebs/charts/cstor/crds/cstorrestore.yaml -2025-11-24T09:08:04.6918329Z charts/openebs/charts/openebs/charts/cstor/crds/cstorvolumeattachment.yaml -2025-11-24T09:08:04.6918559Z charts/openebs/charts/openebs/charts/cstor/README.md -2025-11-24T09:08:04.6918794Z charts/openebs/charts/openebs/charts/cstor/values.yaml -2025-11-24T09:08:04.6919088Z charts/openebs/charts/openebs/charts/cstor/charts/ -2025-11-24T09:08:04.6919349Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/ -2025-11-24T09:08:04.6919664Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/Chart.yaml -2025-11-24T09:08:04.6919964Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/crds/ -2025-11-24T09:08:04.6920319Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/crds/blockdevice.yaml -2025-11-24T09:08:04.6920711Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/crds/blockdeviceclaim.yaml -2025-11-24T09:08:04.6921024Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/README.md -2025-11-24T09:08:04.6921342Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/values.yaml -2025-11-24T09:08:04.6921651Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/ -2025-11-24T09:08:04.6922086Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/node-exporter-service.yaml -2025-11-24T09:08:04.6922469Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/deployment.yaml -2025-11-24T09:08:04.6923205Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/cluster-exporter-service.yaml -2025-11-24T09:08:04.6923604Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/configmap.yaml -2025-11-24T09:08:04.6923956Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/NOTES.txt -2025-11-24T09:08:04.6924329Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/daemonset.yaml -2025-11-24T09:08:04.6924863Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/node-exporter.yaml -2025-11-24T09:08:04.6925214Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/rbac.yaml -2025-11-24T09:08:04.6925626Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/cluster-exporter.yaml -2025-11-24T09:08:04.6925991Z charts/openebs/charts/openebs/charts/cstor/charts/openebs-ndm/templates/_helpers.tpl -2025-11-24T09:08:04.6926236Z charts/openebs/charts/openebs/charts/cstor/templates/ -2025-11-24T09:08:04.6926574Z charts/openebs/charts/openebs/charts/cstor/templates/csi-iscsiadm-config.yaml -2025-11-24T09:08:04.6926951Z charts/openebs/charts/openebs/charts/cstor/templates/csi-driver.yaml -2025-11-24T09:08:04.6927287Z charts/openebs/charts/openebs/charts/cstor/templates/cvc-operator-service.yaml -2025-11-24T09:08:04.6927556Z charts/openebs/charts/openebs/charts/cstor/templates/psp.yaml -2025-11-24T09:08:04.6927890Z charts/openebs/charts/openebs/charts/cstor/templates/volumesnapshotclass.yaml -2025-11-24T09:08:04.6928207Z charts/openebs/charts/openebs/charts/cstor/templates/csi-controller.yaml -2025-11-24T09:08:04.6928475Z charts/openebs/charts/openebs/charts/cstor/templates/NOTES.txt -2025-11-24T09:08:04.6928808Z charts/openebs/charts/openebs/charts/cstor/templates/csi-controller-rbac.yaml -2025-11-24T09:08:04.6929121Z charts/openebs/charts/openebs/charts/cstor/templates/cvc-operator.yaml -2025-11-24T09:08:04.6929434Z charts/openebs/charts/openebs/charts/cstor/templates/csi-node-rbac.yaml -2025-11-24T09:08:04.6929727Z charts/openebs/charts/openebs/charts/cstor/templates/csi-node.yaml -2025-11-24T09:08:04.6929987Z charts/openebs/charts/openebs/charts/cstor/templates/rbac.yaml -2025-11-24T09:08:04.6930300Z charts/openebs/charts/openebs/charts/cstor/templates/snapshot-class.yaml -2025-11-24T09:08:04.6930617Z charts/openebs/charts/openebs/charts/cstor/templates/volumesnapshot.yaml -2025-11-24T09:08:04.6930901Z charts/openebs/charts/openebs/charts/cstor/templates/_helpers.tpl -2025-11-24T09:08:04.6931251Z charts/openebs/charts/openebs/charts/cstor/templates/volumesnapshotcontent.yaml -2025-11-24T09:08:04.6931580Z charts/openebs/charts/openebs/charts/cstor/templates/cleanup-webhook.yaml -2025-11-24T09:08:04.6931892Z charts/openebs/charts/openebs/charts/cstor/templates/cspc-operator.yaml -2025-11-24T09:08:04.6932205Z charts/openebs/charts/openebs/charts/cstor/templates/priority-class.yaml -2025-11-24T09:08:04.6932614Z charts/openebs/charts/openebs/charts/cstor/templates/admission-server.yaml -2025-11-24T09:08:04.6933016Z charts/openebs/charts/openebs/charts/lvm-localpv/ -2025-11-24T09:08:04.6933277Z charts/openebs/charts/openebs/charts/lvm-localpv/Chart.yaml -2025-11-24T09:08:04.6933538Z charts/openebs/charts/openebs/charts/lvm-localpv/.helmignore -2025-11-24T09:08:04.6933775Z charts/openebs/charts/openebs/charts/lvm-localpv/crds/ -2025-11-24T09:08:04.6934085Z charts/openebs/charts/openebs/charts/lvm-localpv/crds/lvmsnapshot.yaml -2025-11-24T09:08:04.6934388Z charts/openebs/charts/openebs/charts/lvm-localpv/crds/lvmvolume.yaml -2025-11-24T09:08:04.6934679Z charts/openebs/charts/openebs/charts/lvm-localpv/crds/lvmnode.yaml -2025-11-24T09:08:04.6934932Z charts/openebs/charts/openebs/charts/lvm-localpv/README.md -2025-11-24T09:08:04.6935190Z charts/openebs/charts/openebs/charts/lvm-localpv/values.yaml -2025-11-24T09:08:04.6935439Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/ -2025-11-24T09:08:04.6935791Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/volumesnapshots-crd.yaml -2025-11-24T09:08:04.6936190Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/volumesnapshotclasses-crd.yaml -2025-11-24T09:08:04.6936494Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/psp.yaml -2025-11-24T09:08:04.6936804Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/lvm-node.yaml -2025-11-24T09:08:04.6937107Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/NOTES.txt -2025-11-24T09:08:04.6937441Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/lvm-controller.yaml -2025-11-24T09:08:04.6937857Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/rbac.yaml -2025-11-24T09:08:04.6938171Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/_helpers.tpl -2025-11-24T09:08:04.6938567Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/volumesnapshotcontents-crd.yaml -2025-11-24T09:08:04.6938899Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/priority-class.yaml -2025-11-24T09:08:04.6939233Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/lvm-node-service.yaml -2025-11-24T09:08:04.6939551Z charts/openebs/charts/openebs/charts/lvm-localpv/templates/csidriver.yaml -2025-11-24T09:08:04.6939850Z charts/openebs/charts/openebs/charts/nfs-provisioner/ -2025-11-24T09:08:04.6940120Z charts/openebs/charts/openebs/charts/nfs-provisioner/Chart.yaml -2025-11-24T09:08:04.6940385Z charts/openebs/charts/openebs/charts/nfs-provisioner/README.md -2025-11-24T09:08:04.6940662Z charts/openebs/charts/openebs/charts/nfs-provisioner/values.yaml -2025-11-24T09:08:04.6940933Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/ -2025-11-24T09:08:04.6941264Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/deployment.yaml -2025-11-24T09:08:04.6941571Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/psp.yaml -2025-11-24T09:08:04.6941885Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/NOTES.txt -2025-11-24T09:08:04.6942233Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/serviceaccount.yaml -2025-11-24T09:08:04.6942571Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/clusterrole.yaml -2025-11-24T09:08:04.6943068Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/kernel-nfs-storageclass.yaml -2025-11-24T09:08:04.6943395Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/_helpers.tpl -2025-11-24T09:08:04.6943769Z charts/openebs/charts/openebs/charts/nfs-provisioner/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.6943982Z charts/openebs/charts/openebs/charts/mayastor/ -2025-11-24T09:08:04.6944232Z charts/openebs/charts/openebs/charts/mayastor/Chart.lock -2025-11-24T09:08:04.6944470Z charts/openebs/charts/openebs/charts/mayastor/Chart.yaml -2025-11-24T09:08:04.6944715Z charts/openebs/charts/openebs/charts/mayastor/.helmignore -2025-11-24T09:08:04.6944938Z charts/openebs/charts/openebs/charts/mayastor/crds/ -2025-11-24T09:08:04.6945210Z charts/openebs/charts/openebs/charts/mayastor/crds/jaeger.yaml -2025-11-24T09:08:04.6945655Z charts/openebs/charts/openebs/charts/mayastor/crds/csi-volume-snapshot-content.yaml -2025-11-24T09:08:04.6946008Z charts/openebs/charts/openebs/charts/mayastor/crds/csi-volume-snapshot-class.yaml -2025-11-24T09:08:04.6946340Z charts/openebs/charts/openebs/charts/mayastor/crds/csi-volume-snapshot.yaml -2025-11-24T09:08:04.6946599Z charts/openebs/charts/openebs/charts/mayastor/README.md.tmpl -2025-11-24T09:08:04.6946835Z charts/openebs/charts/openebs/charts/mayastor/doc.yaml -2025-11-24T09:08:04.6947080Z charts/openebs/charts/openebs/charts/mayastor/values.yaml -2025-11-24T09:08:04.6947321Z charts/openebs/charts/openebs/charts/mayastor/charts/ -2025-11-24T09:08:04.6947605Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/ -2025-11-24T09:08:04.6947932Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/Chart.yaml -2025-11-24T09:08:04.6948253Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/.helmignore -2025-11-24T09:08:04.6948598Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/requirements.lock -2025-11-24T09:08:04.6948915Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/README.md -2025-11-24T09:08:04.6949258Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/requirements.yaml -2025-11-24T09:08:04.6949576Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/values.yaml -2025-11-24T09:08:04.6949885Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/ -2025-11-24T09:08:04.6950231Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/ -2025-11-24T09:08:04.6950756Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/Chart.yaml -2025-11-24T09:08:04.6951166Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/.helmignore -2025-11-24T09:08:04.6951556Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/README.md -2025-11-24T09:08:04.6951954Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/values.yaml -2025-11-24T09:08:04.6953422Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/ -2025-11-24T09:08:04.6954413Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/servicemonitor.yaml -2025-11-24T09:08:04.6954903Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/configmap.yaml -2025-11-24T09:08:04.6955511Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/NOTES.txt -2025-11-24T09:08:04.6956004Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/serviceaccount.yaml -2025-11-24T09:08:04.6956462Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/daemonset.yaml -2025-11-24T09:08:04.6956921Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/rolebinding.yaml -2025-11-24T09:08:04.6957376Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/clusterrole.yaml -2025-11-24T09:08:04.6957811Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/role.yaml -2025-11-24T09:08:04.6958297Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/service-headless.yaml -2025-11-24T09:08:04.6958734Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/_helpers.tpl -2025-11-24T09:08:04.6959235Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.6959728Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/fluent-bit/templates/podsecuritypolicy.yaml -2025-11-24T09:08:04.6960062Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/ -2025-11-24T09:08:04.6960441Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/Chart.yaml -2025-11-24T09:08:04.6960916Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/.helmignore -2025-11-24T09:08:04.6961286Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/README.md -2025-11-24T09:08:04.6961659Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/values.yaml -2025-11-24T09:08:04.6962029Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/ -2025-11-24T09:08:04.6962482Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/configmap-alert.yaml -2025-11-24T09:08:04.6963099Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/servicemonitor.yaml -2025-11-24T09:08:04.6963526Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/secret.yaml -2025-11-24T09:08:04.6963937Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/pdb.yaml -2025-11-24T09:08:04.6964350Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/NOTES.txt -2025-11-24T09:08:04.6964792Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/serviceaccount.yaml -2025-11-24T09:08:04.6965229Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/rolebinding.yaml -2025-11-24T09:08:04.6965627Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/role.yaml -2025-11-24T09:08:04.6966053Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/service.yaml -2025-11-24T09:08:04.6966677Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/service-headless.yaml -2025-11-24T09:08:04.6967127Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/networkpolicy.yaml -2025-11-24T09:08:04.6967549Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/_helpers.tpl -2025-11-24T09:08:04.6967969Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/ingress.yaml -2025-11-24T09:08:04.6968412Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/prometheusrule.yaml -2025-11-24T09:08:04.6968932Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/statefulset.yaml -2025-11-24T09:08:04.6969394Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/loki/templates/podsecuritypolicy.yaml -2025-11-24T09:08:04.6969736Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/ -2025-11-24T09:08:04.6970137Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/Chart.yaml -2025-11-24T09:08:04.6970531Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/ -2025-11-24T09:08:04.6970944Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/ -2025-11-24T09:08:04.6971393Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/README.md -2025-11-24T09:08:04.6971823Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/test/ -2025-11-24T09:08:04.6972294Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/test/goss.yaml -2025-11-24T09:08:04.6972836Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/default/Makefile -2025-11-24T09:08:04.6973242Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/ -2025-11-24T09:08:04.6973669Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/README.md -2025-11-24T09:08:04.6974109Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/values.yaml -2025-11-24T09:08:04.6974527Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/test/ -2025-11-24T09:08:04.6975049Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/test/goss.yaml -2025-11-24T09:08:04.6975479Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/oss/Makefile -2025-11-24T09:08:04.6975897Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/ -2025-11-24T09:08:04.6976353Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/README.md -2025-11-24T09:08:04.6976810Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/values.yaml -2025-11-24T09:08:04.6977248Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/test/ -2025-11-24T09:08:04.6977718Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/test/goss.yaml -2025-11-24T09:08:04.6978159Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/security/Makefile -2025-11-24T09:08:04.6978593Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/ -2025-11-24T09:08:04.6979065Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/README.md -2025-11-24T09:08:04.6979550Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/values.yaml -2025-11-24T09:08:04.6980008Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/test/ -2025-11-24T09:08:04.6980627Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/test/goss.yaml -2025-11-24T09:08:04.6981461Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/elasticsearch/Makefile -2025-11-24T09:08:04.6982237Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/ -2025-11-24T09:08:04.6982937Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/README.md -2025-11-24T09:08:04.6983832Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/values.yaml -2025-11-24T09:08:04.6984289Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/test/ -2025-11-24T09:08:04.6984764Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/test/goss.yaml -2025-11-24T09:08:04.6985218Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/examples/upgrade/Makefile -2025-11-24T09:08:04.6985614Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/.helmignore -2025-11-24T09:08:04.6986009Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/README.md -2025-11-24T09:08:04.6986398Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/values.yaml -2025-11-24T09:08:04.6986802Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/ -2025-11-24T09:08:04.6987244Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/secret.yaml -2025-11-24T09:08:04.6987720Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/configmap-config.yaml -2025-11-24T09:08:04.6988208Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/configmap-pattern.yaml -2025-11-24T09:08:04.6988643Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/NOTES.txt -2025-11-24T09:08:04.6989108Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/serviceaccount.yaml -2025-11-24T09:08:04.6989557Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/rolebinding.yaml -2025-11-24T09:08:04.6990126Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/configmap-pipeline.yaml -2025-11-24T09:08:04.6990551Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/role.yaml -2025-11-24T09:08:04.6990987Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/service.yaml -2025-11-24T09:08:04.6991459Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/service-headless.yaml -2025-11-24T09:08:04.6991954Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.6992389Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/_helpers.tpl -2025-11-24T09:08:04.6993059Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/ingress.yaml -2025-11-24T09:08:04.6993517Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/statefulset.yaml -2025-11-24T09:08:04.6994002Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/templates/podsecuritypolicy.yaml -2025-11-24T09:08:04.6994397Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/logstash/Makefile -2025-11-24T09:08:04.6994742Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ -2025-11-24T09:08:04.6995162Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/README.md.gotmpl -2025-11-24T09:08:04.6995559Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/Chart.yaml -2025-11-24T09:08:04.6996079Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/.helmignore -2025-11-24T09:08:04.6996475Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/README.md -2025-11-24T09:08:04.6996866Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/values.yaml -2025-11-24T09:08:04.6997229Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ci/ -2025-11-24T09:08:04.6997667Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ci/service-values.yaml -2025-11-24T09:08:04.6998183Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ci/default-values.yaml -2025-11-24T09:08:04.6998615Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/ci/netpol-values.yaml -2025-11-24T09:08:04.6999008Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/ -2025-11-24T09:08:04.6999485Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/extra-manifests.yaml -2025-11-24T09:08:04.6999951Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/servicemonitor.yaml -2025-11-24T09:08:04.7000407Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/service-extra.yaml -2025-11-24T09:08:04.7000835Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/secret.yaml -2025-11-24T09:08:04.7001301Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/service-metrics.yaml -2025-11-24T09:08:04.7001731Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/NOTES.txt -2025-11-24T09:08:04.7002193Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/serviceaccount.yaml -2025-11-24T09:08:04.7002749Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/daemonset.yaml -2025-11-24T09:08:04.7003206Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/rolebinding.yaml -2025-11-24T09:08:04.7003655Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/clusterrole.yaml -2025-11-24T09:08:04.7004082Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/role.yaml -2025-11-24T09:08:04.7004635Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/networkpolicy.yaml -2025-11-24T09:08:04.7005080Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/_helpers.tpl -2025-11-24T09:08:04.7005568Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.7006047Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/promtail/templates/podsecuritypolicy.yaml -2025-11-24T09:08:04.7006387Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ -2025-11-24T09:08:04.7006779Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/Chart.yaml -2025-11-24T09:08:04.7007173Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/.helmignore -2025-11-24T09:08:04.7007565Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/dashboards/ -2025-11-24T09:08:04.7008048Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/dashboards/custom-dashboard.json -2025-11-24T09:08:04.7008433Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/README.md -2025-11-24T09:08:04.7008820Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/values.yaml -2025-11-24T09:08:04.7009175Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/ -2025-11-24T09:08:04.7009789Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/with-image-renderer-values.yaml -2025-11-24T09:08:04.7010258Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/with-dashboard-values.yaml -2025-11-24T09:08:04.7010743Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/with-dashboard-json-values.yaml -2025-11-24T09:08:04.7011177Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/ci/default-values.yaml -2025-11-24T09:08:04.7011570Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/ -2025-11-24T09:08:04.7012120Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/extra-manifests.yaml -2025-11-24T09:08:04.7012576Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/servicemonitor.yaml -2025-11-24T09:08:04.7013110Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/secret.yaml -2025-11-24T09:08:04.7013564Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/deployment.yaml -2025-11-24T09:08:04.7014121Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/image-renderer-deployment.yaml -2025-11-24T09:08:04.7014635Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/dashboards-json-configmap.yaml -2025-11-24T09:08:04.7015067Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/pvc.yaml -2025-11-24T09:08:04.7015513Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/configmap.yaml -2025-11-24T09:08:04.7015938Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/NOTES.txt -2025-11-24T09:08:04.7016399Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/serviceaccount.yaml -2025-11-24T09:08:04.7016939Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/image-renderer-network-policy.yaml -2025-11-24T09:08:04.7017393Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/rolebinding.yaml -2025-11-24T09:08:04.7017838Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/clusterrole.yaml -2025-11-24T09:08:04.7018266Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/role.yaml -2025-11-24T09:08:04.7018814Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/headless-service.yaml -2025-11-24T09:08:04.7019253Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/service.yaml -2025-11-24T09:08:04.7019671Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/hpa.yaml -2025-11-24T09:08:04.7020085Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/_pod.tpl -2025-11-24T09:08:04.7020594Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/image-renderer-service.yaml -2025-11-24T09:08:04.7021088Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.7021500Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/ -2025-11-24T09:08:04.7021996Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-rolebinding.yaml -2025-11-24T09:08:04.7022485Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-configmap.yaml -2025-11-24T09:08:04.7023160Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-podsecuritypolicy.yaml -2025-11-24T09:08:04.7033035Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test.yaml -2025-11-24T09:08:04.7033894Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-serviceaccount.yaml -2025-11-24T09:08:04.7034404Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/tests/test-role.yaml -2025-11-24T09:08:04.7034894Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/networkpolicy.yaml -2025-11-24T09:08:04.7035349Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/_helpers.tpl -2025-11-24T09:08:04.7035789Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/ingress.yaml -2025-11-24T09:08:04.7036326Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/secret-env.yaml -2025-11-24T09:08:04.7036868Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/configmap-dashboard-provider.yaml -2025-11-24T09:08:04.7037326Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/statefulset.yaml -2025-11-24T09:08:04.7037807Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.7038289Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/grafana/templates/podsecuritypolicy.yaml -2025-11-24T09:08:04.7038658Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/ -2025-11-24T09:08:04.7039077Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/Chart.lock -2025-11-24T09:08:04.7039474Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/Chart.yaml -2025-11-24T09:08:04.7039872Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/.helmignore -2025-11-24T09:08:04.7040267Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/README.md -2025-11-24T09:08:04.7040670Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/values.yaml -2025-11-24T09:08:04.7041072Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/ -2025-11-24T09:08:04.7041537Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/ -2025-11-24T09:08:04.7042047Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/Chart.yaml -2025-11-24T09:08:04.7042777Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/.helmignore -2025-11-24T09:08:04.7043287Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/README.md -2025-11-24T09:08:04.7043794Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/values.yaml -2025-11-24T09:08:04.7044307Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/ -2025-11-24T09:08:04.7044893Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/servicemonitor.yaml -2025-11-24T09:08:04.7045435Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/pdb.yaml -2025-11-24T09:08:04.7046001Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/deployment.yaml -2025-11-24T09:08:04.7046538Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/NOTES.txt -2025-11-24T09:08:04.7047125Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/serviceaccount.yaml -2025-11-24T09:08:04.7047737Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/psp-clusterrolebinding.yaml -2025-11-24T09:08:04.7048426Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/rolebinding.yaml -2025-11-24T09:08:04.7049013Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/stsdiscovery-role.yaml -2025-11-24T09:08:04.7049636Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/stsdiscovery-rolebinding.yaml -2025-11-24T09:08:04.7050172Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/role.yaml -2025-11-24T09:08:04.7050810Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/psp-clusterrole.yaml -2025-11-24T09:08:04.7051364Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/service.yaml -2025-11-24T09:08:04.7051954Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/kubeconfig-secret.yaml -2025-11-24T09:08:04.7052502Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/_helpers.tpl -2025-11-24T09:08:04.7053201Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.7053789Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/charts/kube-state-metrics/templates/podsecuritypolicy.yaml -2025-11-24T09:08:04.7054201Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/ -2025-11-24T09:08:04.7054655Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/ -2025-11-24T09:08:04.7055143Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/pdb.yaml -2025-11-24T09:08:04.7055622Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/pvc.yaml -2025-11-24T09:08:04.7056095Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/psp.yaml -2025-11-24T09:08:04.7056627Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/serviceaccount.yaml -2025-11-24T09:08:04.7057230Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/rolebinding.yaml -2025-11-24T09:08:04.7057693Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/cm.yaml -2025-11-24T09:08:04.7058203Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/clusterrole.yaml -2025-11-24T09:08:04.7058683Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/role.yaml -2025-11-24T09:08:04.7059183Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/deploy.yaml -2025-11-24T09:08:04.7059659Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/sts.yaml -2025-11-24T09:08:04.7060159Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/service.yaml -2025-11-24T09:08:04.7060683Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/headless-svc.yaml -2025-11-24T09:08:04.7061176Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/netpol.yaml -2025-11-24T09:08:04.7061672Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/ingress.yaml -2025-11-24T09:08:04.7062218Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/alertmanager/clusterrolebinding.yaml -2025-11-24T09:08:04.7062870Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/ -2025-11-24T09:08:04.7063339Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/pdb.yaml -2025-11-24T09:08:04.7063788Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/pvc.yaml -2025-11-24T09:08:04.7064232Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/psp.yaml -2025-11-24T09:08:04.7064739Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/serviceaccount.yaml -2025-11-24T09:08:04.7065338Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/rolebinding.yaml -2025-11-24T09:08:04.7065783Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/cm.yaml -2025-11-24T09:08:04.7066271Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/clusterrole.yaml -2025-11-24T09:08:04.7066733Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/deploy.yaml -2025-11-24T09:08:04.7067178Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/sts.yaml -2025-11-24T09:08:04.7067647Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/service.yaml -2025-11-24T09:08:04.7068143Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/headless-svc.yaml -2025-11-24T09:08:04.7068601Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/netpol.yaml -2025-11-24T09:08:04.7069044Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/vpa.yaml -2025-11-24T09:08:04.7069507Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/ingress.yaml -2025-11-24T09:08:04.7070022Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/server/clusterrolebinding.yaml -2025-11-24T09:08:04.7070471Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/ -2025-11-24T09:08:04.7070958Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/psp.yaml -2025-11-24T09:08:04.7071559Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/serviceaccount.yaml -2025-11-24T09:08:04.7072068Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/daemonset.yaml -2025-11-24T09:08:04.7072578Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/rolebinding.yaml -2025-11-24T09:08:04.7073380Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/role.yaml -2025-11-24T09:08:04.7073875Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/node-exporter/svc.yaml -2025-11-24T09:08:04.7074310Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/NOTES.txt -2025-11-24T09:08:04.7074753Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/_helpers.tpl -2025-11-24T09:08:04.7075195Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/ -2025-11-24T09:08:04.7075672Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/pdb.yaml -2025-11-24T09:08:04.7076134Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/pvc.yaml -2025-11-24T09:08:04.7076600Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/psp.yaml -2025-11-24T09:08:04.7077252Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/serviceaccount.yaml -2025-11-24T09:08:04.7077768Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/clusterrole.yaml -2025-11-24T09:08:04.7078255Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/deploy.yaml -2025-11-24T09:08:04.7078753Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/service.yaml -2025-11-24T09:08:04.7079297Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/netpol.yaml -2025-11-24T09:08:04.7079766Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/vpa.yaml -2025-11-24T09:08:04.7080256Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/ingress.yaml -2025-11-24T09:08:04.7080805Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/prometheus/templates/pushgateway/clusterrolebinding.yaml -2025-11-24T09:08:04.7081149Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/ -2025-11-24T09:08:04.7081548Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/Chart.yaml -2025-11-24T09:08:04.7081936Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/ -2025-11-24T09:08:04.7082358Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/ -2025-11-24T09:08:04.7082912Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/README.md -2025-11-24T09:08:04.7083351Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/test/ -2025-11-24T09:08:04.7083817Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/test/goss.yaml -2025-11-24T09:08:04.7084258Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/default/Makefile -2025-11-24T09:08:04.7084662Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/ -2025-11-24T09:08:04.7085090Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/README.md -2025-11-24T09:08:04.7085609Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/values.yaml -2025-11-24T09:08:04.7086029Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/test/ -2025-11-24T09:08:04.7086477Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/test/goss.yaml -2025-11-24T09:08:04.7086906Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/oss/Makefile -2025-11-24T09:08:04.7087332Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/ -2025-11-24T09:08:04.7087797Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/README.md -2025-11-24T09:08:04.7088274Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/values.yaml -2025-11-24T09:08:04.7088716Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/test/ -2025-11-24T09:08:04.7089203Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/test/goss.yaml -2025-11-24T09:08:04.7089660Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/deployment/Makefile -2025-11-24T09:08:04.7090083Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/ -2025-11-24T09:08:04.7090531Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/README.md -2025-11-24T09:08:04.7091108Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/values.yaml -2025-11-24T09:08:04.7091551Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/test/ -2025-11-24T09:08:04.7092020Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/test/goss.yaml -2025-11-24T09:08:04.7092457Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/security/Makefile -2025-11-24T09:08:04.7092978Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/ -2025-11-24T09:08:04.7093494Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/README.md -2025-11-24T09:08:04.7093950Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/values.yaml -2025-11-24T09:08:04.7094384Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/test/ -2025-11-24T09:08:04.7094851Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/test/goss.yaml -2025-11-24T09:08:04.7095294Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/examples/upgrade/Makefile -2025-11-24T09:08:04.7095690Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/.helmignore -2025-11-24T09:08:04.7096081Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/README.md -2025-11-24T09:08:04.7096469Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/values.yaml -2025-11-24T09:08:04.7096867Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/ -2025-11-24T09:08:04.7097320Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/deployment.yaml -2025-11-24T09:08:04.7097751Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/configmap.yaml -2025-11-24T09:08:04.7098187Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/NOTES.txt -2025-11-24T09:08:04.7098647Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/serviceaccount.yaml -2025-11-24T09:08:04.7099080Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/daemonset.yaml -2025-11-24T09:08:04.7099602Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/rolebinding.yaml -2025-11-24T09:08:04.7100040Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/clusterrole.yaml -2025-11-24T09:08:04.7100461Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/role.yaml -2025-11-24T09:08:04.7100893Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/_helpers.tpl -2025-11-24T09:08:04.7101380Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.7101767Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/charts/filebeat/Makefile -2025-11-24T09:08:04.7102099Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/ -2025-11-24T09:08:04.7102489Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/datasources.yaml -2025-11-24T09:08:04.7102948Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/NOTES.txt -2025-11-24T09:08:04.7103289Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/tests/ -2025-11-24T09:08:04.7103733Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/tests/loki-test-configmap.yaml -2025-11-24T09:08:04.7104162Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/tests/loki-test-pod.yaml -2025-11-24T09:08:04.7104541Z charts/openebs/charts/openebs/charts/mayastor/charts/loki-stack/templates/_helpers.tpl -2025-11-24T09:08:04.7104913Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/ -2025-11-24T09:08:04.7105226Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/Chart.yaml -2025-11-24T09:08:04.7105533Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/.helmignore -2025-11-24T09:08:04.7105832Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/README.md -2025-11-24T09:08:04.7106131Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/values.yaml -2025-11-24T09:08:04.7106433Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/ -2025-11-24T09:08:04.7106831Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/pdb.yaml -2025-11-24T09:08:04.7107178Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/nats-box.yaml -2025-11-24T09:08:04.7107530Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/configmap.yaml -2025-11-24T09:08:04.7107858Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/NOTES.txt -2025-11-24T09:08:04.7108199Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/service.yaml -2025-11-24T09:08:04.7108522Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/rbac.yaml -2025-11-24T09:08:04.7108904Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/serviceMonitor.yaml -2025-11-24T09:08:04.7109232Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/tests/ -2025-11-24T09:08:04.7109660Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/tests/test-request-reply.yaml -2025-11-24T09:08:04.7110037Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/networkpolicy.yaml -2025-11-24T09:08:04.7110380Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/_helpers.tpl -2025-11-24T09:08:04.7110751Z charts/openebs/charts/openebs/charts/mayastor/charts/nats/templates/statefulset.yaml -2025-11-24T09:08:04.7111004Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/ -2025-11-24T09:08:04.7111310Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/Chart.lock -2025-11-24T09:08:04.7111604Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/Chart.yaml -2025-11-24T09:08:04.7111904Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/.helmignore -2025-11-24T09:08:04.7112199Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/README.md -2025-11-24T09:08:04.7112501Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/values.yaml -2025-11-24T09:08:04.7113162Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/ -2025-11-24T09:08:04.7113496Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/ -2025-11-24T09:08:04.7113884Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/Chart.yaml -2025-11-24T09:08:04.7114239Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/.helmignore -2025-11-24T09:08:04.7114585Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/README.md -2025-11-24T09:08:04.7114935Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/values.yaml -2025-11-24T09:08:04.7115279Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/ -2025-11-24T09:08:04.7115697Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.7116103Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.7116506Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_names.tpl -2025-11-24T09:08:04.7116943Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.7117337Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.7117745Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/ -2025-11-24T09:08:04.7118801Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_mongodb.tpl -2025-11-24T09:08:04.7119650Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_mysql.tpl -2025-11-24T09:08:04.7120443Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.7121087Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.7121546Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.7122105Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.7122578Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.7123204Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_images.tpl -2025-11-24T09:08:04.7123619Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.7124016Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_ingress.tpl -2025-11-24T09:08:04.7124442Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.7124845Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.7125262Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.7125658Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.7125963Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/ -2025-11-24T09:08:04.7126344Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/token-secrets.yaml -2025-11-24T09:08:04.7126678Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/pdb.yaml -2025-11-24T09:08:04.7127055Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/svc-headless.yaml -2025-11-24T09:08:04.7127391Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/secrets.yaml -2025-11-24T09:08:04.7127745Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/configmap.yaml -2025-11-24T09:08:04.7128072Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/NOTES.txt -2025-11-24T09:08:04.7128536Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/serviceaccount.yaml -2025-11-24T09:08:04.7128873Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/cronjob.yaml -2025-11-24T09:08:04.7129232Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/extra-list.yaml -2025-11-24T09:08:04.7129585Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/podmonitor.yaml -2025-11-24T09:08:04.7129964Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/networkpolicy.yaml -2025-11-24T09:08:04.7130337Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/snapshot-pvc.yaml -2025-11-24T09:08:04.7130674Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/_helpers.tpl -2025-11-24T09:08:04.7131050Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/prometheusrule.yaml -2025-11-24T09:08:04.7131376Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/svc.yaml -2025-11-24T09:08:04.7131738Z charts/openebs/charts/openebs/charts/mayastor/charts/etcd/templates/statefulset.yaml -2025-11-24T09:08:04.7132051Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/ -2025-11-24T09:08:04.7132393Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/Chart.yaml -2025-11-24T09:08:04.7132840Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/.helmignore -2025-11-24T09:08:04.7133175Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/crds/ -2025-11-24T09:08:04.7133720Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/crds/crd.yaml -2025-11-24T09:08:04.7134065Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/README.md -2025-11-24T09:08:04.7134411Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/values.yaml -2025-11-24T09:08:04.7134745Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/ -2025-11-24T09:08:04.7135149Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/jaeger.yaml -2025-11-24T09:08:04.7135553Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/deployment.yaml -2025-11-24T09:08:04.7135998Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/psp.yaml -2025-11-24T09:08:04.7136385Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/crds.yaml -2025-11-24T09:08:04.7136767Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/NOTES.txt -2025-11-24T09:08:04.7137145Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/role.yaml -2025-11-24T09:08:04.7137544Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/service.yaml -2025-11-24T09:08:04.7137979Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/service-account.yaml -2025-11-24T09:08:04.7138367Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/_helpers.tpl -2025-11-24T09:08:04.7138785Z charts/openebs/charts/openebs/charts/mayastor/charts/jaeger-operator/templates/role-binding.yaml -2025-11-24T09:08:04.7139115Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/ -2025-11-24T09:08:04.7139477Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/Chart.lock -2025-11-24T09:08:04.7139825Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/Chart.yaml -2025-11-24T09:08:04.7140194Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/.helmignore -2025-11-24T09:08:04.7140547Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/README.md -2025-11-24T09:08:04.7140910Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/values.yaml -2025-11-24T09:08:04.7141250Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/ -2025-11-24T09:08:04.7141654Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/ -2025-11-24T09:08:04.7142175Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/Chart.yaml -2025-11-24T09:08:04.7142603Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/crds/ -2025-11-24T09:08:04.7143200Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdevice.yaml -2025-11-24T09:08:04.7143719Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdeviceclaim.yaml -2025-11-24T09:08:04.7144164Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/README.md -2025-11-24T09:08:04.7144601Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/values.yaml -2025-11-24T09:08:04.7145038Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/ -2025-11-24T09:08:04.7145594Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter-service.yaml -2025-11-24T09:08:04.7146101Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/deployment.yaml -2025-11-24T09:08:04.7146668Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter-service.yaml -2025-11-24T09:08:04.7147165Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/configmap.yaml -2025-11-24T09:08:04.7147762Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/NOTES.txt -2025-11-24T09:08:04.7148264Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/daemonset.yaml -2025-11-24T09:08:04.7148784Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter.yaml -2025-11-24T09:08:04.7149262Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/rbac.yaml -2025-11-24T09:08:04.7149787Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter.yaml -2025-11-24T09:08:04.7150349Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/charts/openebs-ndm/templates/_helpers.tpl -2025-11-24T09:08:04.7150701Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/ -2025-11-24T09:08:04.7151135Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/deployment.yaml -2025-11-24T09:08:04.7151545Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/psp.yaml -2025-11-24T09:08:04.7151944Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/NOTES.txt -2025-11-24T09:08:04.7152386Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/hostpath-class.yaml -2025-11-24T09:08:04.7152933Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/device-class.yaml -2025-11-24T09:08:04.7153328Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/rbac.yaml -2025-11-24T09:08:04.7153739Z charts/openebs/charts/openebs/charts/mayastor/charts/localpv-provisioner/templates/_helpers.tpl -2025-11-24T09:08:04.7154050Z charts/openebs/charts/openebs/charts/mayastor/product.yaml -2025-11-24T09:08:04.7154295Z charts/openebs/charts/openebs/charts/mayastor/templates/ -2025-11-24T09:08:04.7154600Z charts/openebs/charts/openebs/charts/mayastor/templates/loki-stack/ -2025-11-24T09:08:04.7154932Z charts/openebs/charts/openebs/charts/mayastor/templates/loki-stack/storage/ -2025-11-24T09:08:04.7155317Z charts/openebs/charts/openebs/charts/mayastor/templates/loki-stack/storage/localpv.yaml -2025-11-24T09:08:04.7155754Z charts/openebs/charts/openebs/charts/mayastor/templates/loki-stack/storage/localpv-storageclass.yaml -2025-11-24T09:08:04.7156155Z charts/openebs/charts/openebs/charts/mayastor/templates/storageclass.yaml -2025-11-24T09:08:04.7156442Z charts/openebs/charts/openebs/charts/mayastor/templates/NOTES.txt -2025-11-24T09:08:04.7156727Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/ -2025-11-24T09:08:04.7157055Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/operators/ -2025-11-24T09:08:04.7157536Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/operators/operator-diskpool-deployment.yaml -2025-11-24T09:08:04.7157856Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/metrics/ -2025-11-24T09:08:04.7158354Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/metrics/metrics-exporter-io-engine-service.yaml -2025-11-24T09:08:04.7158670Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/apis/ -2025-11-24T09:08:04.7159071Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/apis/api-rest-service.yaml -2025-11-24T09:08:04.7159491Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/apis/api-rest-deployment.yaml -2025-11-24T09:08:04.7159795Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/obs/ -2025-11-24T09:08:04.7160173Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/obs/stats-service.yaml -2025-11-24T09:08:04.7160599Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/obs/obs-callhome-deployment.yaml -2025-11-24T09:08:04.7160901Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/io/ -2025-11-24T09:08:04.7161305Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/io/io-engine-daemonset.yaml -2025-11-24T09:08:04.7161779Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/priority-class/ -2025-11-24T09:08:04.7162223Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/priority-class/priority-class.yaml -2025-11-24T09:08:04.7162540Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/ -2025-11-24T09:08:04.7162994Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/ha/ -2025-11-24T09:08:04.7163422Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/ha/ha-node-daemonset.yaml -2025-11-24T09:08:04.7163825Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/core/ -2025-11-24T09:08:04.7164275Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/core/agent-core-deployment.yaml -2025-11-24T09:08:04.7164710Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/agents/core/agent-core-service.yaml -2025-11-24T09:08:04.7165022Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/csi/ -2025-11-24T09:08:04.7165420Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/csi/csi-node-daemonset.yaml -2025-11-24T09:08:04.7165854Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/csi/csi-controller-deployment.yaml -2025-11-24T09:08:04.7166165Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/rbac/ -2025-11-24T09:08:04.7166506Z charts/openebs/charts/openebs/charts/mayastor/templates/mayastor/rbac/rbac.yaml -2025-11-24T09:08:04.7166776Z charts/openebs/charts/openebs/charts/mayastor/templates/etcd/ -2025-11-24T09:08:04.7167083Z charts/openebs/charts/openebs/charts/mayastor/templates/etcd/storage/ -2025-11-24T09:08:04.7167430Z charts/openebs/charts/openebs/charts/mayastor/templates/etcd/storage/localpv.yaml -2025-11-24T09:08:04.7167842Z charts/openebs/charts/openebs/charts/mayastor/templates/etcd/storage/localpv-storageclass.yaml -2025-11-24T09:08:04.7168162Z charts/openebs/charts/openebs/charts/mayastor/templates/jaeger-operator/ -2025-11-24T09:08:04.7168526Z charts/openebs/charts/openebs/charts/mayastor/templates/jaeger-operator/jaeger.yaml -2025-11-24T09:08:04.7168830Z charts/openebs/charts/openebs/charts/mayastor/templates/_helpers.tpl -2025-11-24T09:08:04.7169054Z charts/openebs/charts/openebs/charts/zfs-localpv/ -2025-11-24T09:08:04.7169312Z charts/openebs/charts/openebs/charts/zfs-localpv/Chart.yaml -2025-11-24T09:08:04.7169661Z charts/openebs/charts/openebs/charts/zfs-localpv/.helmignore -2025-11-24T09:08:04.7169900Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/ -2025-11-24T09:08:04.7170203Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfsvolume.yaml -2025-11-24T09:08:04.7170497Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfsbackup.yaml -2025-11-24T09:08:04.7170783Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfsnode.yaml -2025-11-24T09:08:04.7171083Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfsrestore.yaml -2025-11-24T09:08:04.7171396Z charts/openebs/charts/openebs/charts/zfs-localpv/crds/zfssnapshot.yaml -2025-11-24T09:08:04.7171647Z charts/openebs/charts/openebs/charts/zfs-localpv/README.md -2025-11-24T09:08:04.7171903Z charts/openebs/charts/openebs/charts/zfs-localpv/values.yaml -2025-11-24T09:08:04.7172154Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/ -2025-11-24T09:08:04.7172455Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/psp.yaml -2025-11-24T09:08:04.7172896Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/configmap.yaml -2025-11-24T09:08:04.7173194Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/NOTES.txt -2025-11-24T09:08:04.7173519Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/zfs-contoller.yaml -2025-11-24T09:08:04.7173854Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/volumesnapshots.yaml -2025-11-24T09:08:04.7174166Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/zfs-node.yaml -2025-11-24T09:08:04.7174458Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/rbac.yaml -2025-11-24T09:08:04.7175035Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/volumesnapshotcontents.yaml -2025-11-24T09:08:04.7175420Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/volumesnapshotclasses.yaml -2025-11-24T09:08:04.7175732Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/_helpers.tpl -2025-11-24T09:08:04.7176069Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/priority-class.yaml -2025-11-24T09:08:04.7176396Z charts/openebs/charts/openebs/charts/zfs-localpv/templates/csidriver.yaml -2025-11-24T09:08:04.7176602Z charts/openebs/charts/openebs/charts/jiva/ -2025-11-24T09:08:04.7176896Z charts/openebs/charts/openebs/charts/jiva/Chart.lock -2025-11-24T09:08:04.7177126Z charts/openebs/charts/openebs/charts/jiva/Chart.yaml -2025-11-24T09:08:04.7177360Z charts/openebs/charts/openebs/charts/jiva/.helmignore -2025-11-24T09:08:04.7177578Z charts/openebs/charts/openebs/charts/jiva/crds/ -2025-11-24T09:08:04.7177856Z charts/openebs/charts/openebs/charts/jiva/crds/jivavolumes.yaml -2025-11-24T09:08:04.7178158Z charts/openebs/charts/openebs/charts/jiva/crds/jivavolumepolicy.yaml -2025-11-24T09:08:04.7178430Z charts/openebs/charts/openebs/charts/jiva/crds/upgradetask.yaml -2025-11-24T09:08:04.7178658Z charts/openebs/charts/openebs/charts/jiva/README.md -2025-11-24T09:08:04.7178888Z charts/openebs/charts/openebs/charts/jiva/values.yaml -2025-11-24T09:08:04.7179103Z charts/openebs/charts/openebs/charts/jiva/charts/ -2025-11-24T09:08:04.7179417Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/ -2025-11-24T09:08:04.7179763Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/Chart.lock -2025-11-24T09:08:04.7180112Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/Chart.yaml -2025-11-24T09:08:04.7180454Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/.helmignore -2025-11-24T09:08:04.7180790Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/README.md -2025-11-24T09:08:04.7181129Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/values.yaml -2025-11-24T09:08:04.7181459Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/ -2025-11-24T09:08:04.7181855Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/ -2025-11-24T09:08:04.7182285Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/Chart.yaml -2025-11-24T09:08:04.7182879Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/crds/ -2025-11-24T09:08:04.7183351Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdevice.yaml -2025-11-24T09:08:04.7183845Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdeviceclaim.yaml -2025-11-24T09:08:04.7184264Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/README.md -2025-11-24T09:08:04.7184699Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/values.yaml -2025-11-24T09:08:04.7282264Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/ -2025-11-24T09:08:04.7283107Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter-service.yaml -2025-11-24T09:08:04.7283631Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/deployment.yaml -2025-11-24T09:08:04.7284215Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter-service.yaml -2025-11-24T09:08:04.7284723Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/configmap.yaml -2025-11-24T09:08:04.7285192Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/NOTES.txt -2025-11-24T09:08:04.7285670Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/daemonset.yaml -2025-11-24T09:08:04.7286537Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter.yaml -2025-11-24T09:08:04.7287006Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/rbac.yaml -2025-11-24T09:08:04.7287514Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter.yaml -2025-11-24T09:08:04.7287996Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/charts/openebs-ndm/templates/_helpers.tpl -2025-11-24T09:08:04.7288439Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/ -2025-11-24T09:08:04.7288859Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/deployment.yaml -2025-11-24T09:08:04.7289245Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/psp.yaml -2025-11-24T09:08:04.7289646Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/NOTES.txt -2025-11-24T09:08:04.7290079Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/hostpath-class.yaml -2025-11-24T09:08:04.7290506Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/device-class.yaml -2025-11-24T09:08:04.7290895Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/rbac.yaml -2025-11-24T09:08:04.7291294Z charts/openebs/charts/openebs/charts/jiva/charts/localpv-provisioner/templates/_helpers.tpl -2025-11-24T09:08:04.7291531Z charts/openebs/charts/openebs/charts/jiva/templates/ -2025-11-24T09:08:04.7537490Z charts/openebs/charts/openebs/charts/jiva/templates/csi-iscsiadm-config.yaml -2025-11-24T09:08:04.7538190Z charts/openebs/charts/openebs/charts/jiva/templates/csi-driver.yaml -2025-11-24T09:08:04.7538601Z charts/openebs/charts/openebs/charts/jiva/templates/default-storageclass.yaml -2025-11-24T09:08:04.7539220Z charts/openebs/charts/openebs/charts/jiva/templates/jiva-operator.yaml -2025-11-24T09:08:04.7539845Z charts/openebs/charts/openebs/charts/jiva/templates/psp.yaml -2025-11-24T09:08:04.7540210Z charts/openebs/charts/openebs/charts/jiva/templates/csi-controller.yaml -2025-11-24T09:08:04.7540509Z charts/openebs/charts/openebs/charts/jiva/templates/NOTES.txt -2025-11-24T09:08:04.7541038Z charts/openebs/charts/openebs/charts/jiva/templates/csi-controller-rbac.yaml -2025-11-24T09:08:04.7542026Z charts/openebs/charts/openebs/charts/jiva/templates/jiva-operator-rbac.yaml -2025-11-24T09:08:04.7542526Z charts/openebs/charts/openebs/charts/jiva/templates/csi-node-rbac.yaml -2025-11-24T09:08:04.7543108Z charts/openebs/charts/openebs/charts/jiva/templates/csi-node.yaml -2025-11-24T09:08:04.7543544Z charts/openebs/charts/openebs/charts/jiva/templates/_helpers.tpl -2025-11-24T09:08:04.7543910Z charts/openebs/charts/openebs/charts/jiva/templates/default-policy.yaml -2025-11-24T09:08:04.7544263Z charts/openebs/charts/openebs/charts/jiva/templates/priority-class.yaml -2025-11-24T09:08:04.7544541Z charts/openebs/charts/openebs/charts/openebs-ndm/ -2025-11-24T09:08:04.7544837Z charts/openebs/charts/openebs/charts/openebs-ndm/Chart.yaml -2025-11-24T09:08:04.7545146Z charts/openebs/charts/openebs/charts/openebs-ndm/crds/ -2025-11-24T09:08:04.7545507Z charts/openebs/charts/openebs/charts/openebs-ndm/crds/blockdevice.yaml -2025-11-24T09:08:04.7545891Z charts/openebs/charts/openebs/charts/openebs-ndm/crds/blockdeviceclaim.yaml -2025-11-24T09:08:04.7546183Z charts/openebs/charts/openebs/charts/openebs-ndm/README.md -2025-11-24T09:08:04.7546473Z charts/openebs/charts/openebs/charts/openebs-ndm/values.yaml -2025-11-24T09:08:04.7546770Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/ -2025-11-24T09:08:04.7547204Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/node-exporter-service.yaml -2025-11-24T09:08:04.7547572Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/deployment.yaml -2025-11-24T09:08:04.7548019Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/cluster-exporter-service.yaml -2025-11-24T09:08:04.7548573Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/configmap.yaml -2025-11-24T09:08:04.7548886Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/NOTES.txt -2025-11-24T09:08:04.7549202Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/daemonset.yaml -2025-11-24T09:08:04.7555529Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/node-exporter.yaml -2025-11-24T09:08:04.7556069Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/rbac.yaml -2025-11-24T09:08:04.7556446Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/cluster-exporter.yaml -2025-11-24T09:08:04.7556914Z charts/openebs/charts/openebs/charts/openebs-ndm/templates/_helpers.tpl -2025-11-24T09:08:04.7557179Z charts/openebs/charts/openebs/charts/localpv-provisioner/ -2025-11-24T09:08:04.7557493Z charts/openebs/charts/openebs/charts/localpv-provisioner/Chart.lock -2025-11-24T09:08:04.7557801Z charts/openebs/charts/openebs/charts/localpv-provisioner/Chart.yaml -2025-11-24T09:08:04.7558121Z charts/openebs/charts/openebs/charts/localpv-provisioner/.helmignore -2025-11-24T09:08:04.7558424Z charts/openebs/charts/openebs/charts/localpv-provisioner/README.md -2025-11-24T09:08:04.7558730Z charts/openebs/charts/openebs/charts/localpv-provisioner/values.yaml -2025-11-24T09:08:04.7559024Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/ -2025-11-24T09:08:04.7559511Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/ -2025-11-24T09:08:04.7560180Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/Chart.yaml -2025-11-24T09:08:04.7560679Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/crds/ -2025-11-24T09:08:04.7652289Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdevice.yaml -2025-11-24T09:08:04.7653449Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/crds/blockdeviceclaim.yaml -2025-11-24T09:08:04.7654273Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/README.md -2025-11-24T09:08:04.7655088Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/values.yaml -2025-11-24T09:08:04.7655725Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/ -2025-11-24T09:08:04.7656356Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter-service.yaml -2025-11-24T09:08:04.7657231Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/deployment.yaml -2025-11-24T09:08:04.7657919Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter-service.yaml -2025-11-24T09:08:04.7658543Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/configmap.yaml -2025-11-24T09:08:04.7659091Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/NOTES.txt -2025-11-24T09:08:04.7659679Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/daemonset.yaml -2025-11-24T09:08:04.7660293Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/node-exporter.yaml -2025-11-24T09:08:04.7660813Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/rbac.yaml -2025-11-24T09:08:04.7661451Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/cluster-exporter.yaml -2025-11-24T09:08:04.7661980Z charts/openebs/charts/openebs/charts/localpv-provisioner/charts/openebs-ndm/templates/_helpers.tpl -2025-11-24T09:08:04.7662503Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/ -2025-11-24T09:08:04.7663333Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/deployment.yaml -2025-11-24T09:08:04.7663875Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/psp.yaml -2025-11-24T09:08:04.7664313Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/NOTES.txt -2025-11-24T09:08:04.7665094Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/hostpath-class.yaml -2025-11-24T09:08:04.7665589Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/device-class.yaml -2025-11-24T09:08:04.7666105Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/rbac.yaml -2025-11-24T09:08:04.7729040Z charts/openebs/charts/openebs/charts/localpv-provisioner/templates/_helpers.tpl -2025-11-24T09:08:04.7729470Z charts/openebs/charts/openebs/OWNERS -2025-11-24T09:08:04.7729879Z charts/openebs/charts/openebs/templates/ -2025-11-24T09:08:04.7730419Z charts/openebs/charts/openebs/templates/kyverno/ -2025-11-24T09:08:04.7730921Z charts/openebs/charts/openebs/templates/kyverno/allow-proc-mount.yaml -2025-11-24T09:08:04.7731416Z charts/openebs/charts/openebs/templates/kyverno/allow-host-ports.yaml -2025-11-24T09:08:04.7731995Z charts/openebs/charts/openebs/templates/kyverno/require-user-groups.yaml -2025-11-24T09:08:04.7732511Z charts/openebs/charts/openebs/templates/kyverno/allow-privilege-escalation.yaml -2025-11-24T09:08:04.7733184Z charts/openebs/charts/openebs/templates/kyverno/allow-host-namespaces.yaml -2025-11-24T09:08:04.7733660Z charts/openebs/charts/openebs/templates/kyverno/allow-selinux.yaml -2025-11-24T09:08:04.7734135Z charts/openebs/charts/openebs/templates/kyverno/allow-capabilities.yaml -2025-11-24T09:08:04.7734623Z charts/openebs/charts/openebs/templates/kyverno/allow-privileged-containers.yaml -2025-11-24T09:08:04.7735008Z charts/openebs/charts/openebs/templates/psp.yaml -2025-11-24T09:08:04.7735387Z charts/openebs/charts/openebs/templates/legacy/ -2025-11-24T09:08:04.7735899Z charts/openebs/charts/openebs/templates/legacy/deployment-maya-apiserver.yaml -2025-11-24T09:08:04.7736378Z charts/openebs/charts/openebs/templates/legacy/deployment-admission-server.yaml -2025-11-24T09:08:04.7736784Z charts/openebs/charts/openebs/templates/legacy/deployment-maya-provisioner.yaml -2025-11-24T09:08:04.7737331Z charts/openebs/charts/openebs/templates/legacy/service-maya-apiserver.yaml -2025-11-24T09:08:04.7737828Z charts/openebs/charts/openebs/templates/legacy/deployment-maya-snapshot-operator.yaml -2025-11-24T09:08:04.7738317Z charts/openebs/charts/openebs/templates/legacy/cleanup-webhook.yaml -2025-11-24T09:08:04.7738651Z charts/openebs/charts/openebs/templates/NOTES.txt -2025-11-24T09:08:04.7739126Z charts/openebs/charts/openebs/templates/serviceaccount.yaml -2025-11-24T09:08:04.7739661Z charts/openebs/charts/openebs/templates/psp-clusterrolebinding.yaml -2025-11-24T09:08:04.7740090Z charts/openebs/charts/openebs/templates/clusterrole.yaml -2025-11-24T09:08:04.7740490Z charts/openebs/charts/openebs/templates/psp-clusterrole.yaml -2025-11-24T09:08:04.7740920Z charts/openebs/charts/openebs/templates/localprovisioner/ -2025-11-24T09:08:04.7741367Z charts/openebs/charts/openebs/templates/localprovisioner/hostpath-class.yaml -2025-11-24T09:08:04.7741832Z charts/openebs/charts/openebs/templates/localprovisioner/device-class.yaml -2025-11-24T09:08:04.7742417Z charts/openebs/charts/openebs/templates/localprovisioner/deployment-local-provisioner.yaml -2025-11-24T09:08:04.7743108Z charts/openebs/charts/openebs/templates/ndm/ -2025-11-24T09:08:04.7743588Z charts/openebs/charts/openebs/templates/ndm/node-exporter-service.yaml -2025-11-24T09:08:04.7744123Z charts/openebs/charts/openebs/templates/ndm/cluster-exporter-service.yaml -2025-11-24T09:08:04.7744608Z charts/openebs/charts/openebs/templates/ndm/deployment-ndm-operator.yaml -2025-11-24T09:08:04.7745105Z charts/openebs/charts/openebs/templates/ndm/cm-node-disk-manager.yaml -2025-11-24T09:08:04.7745500Z charts/openebs/charts/openebs/templates/ndm/node-exporter.yaml -2025-11-24T09:08:04.7745948Z charts/openebs/charts/openebs/templates/ndm/daemonset-ndm.yaml -2025-11-24T09:08:04.7746383Z charts/openebs/charts/openebs/templates/ndm/cluster-exporter.yaml -2025-11-24T09:08:04.7746782Z charts/openebs/charts/openebs/templates/_helpers.tpl -2025-11-24T09:08:04.7747326Z charts/openebs/charts/openebs/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.7747697Z charts/elasticsearch-ephemeral/ -2025-11-24T09:08:04.7748232Z charts/elasticsearch-ephemeral/Chart.yaml -2025-11-24T09:08:04.7748632Z charts/elasticsearch-ephemeral/values.yaml -2025-11-24T09:08:04.7748959Z charts/elasticsearch-ephemeral/templates/ -2025-11-24T09:08:04.7749348Z charts/elasticsearch-ephemeral/templates/es.yaml -2025-11-24T09:08:04.7749729Z charts/elasticsearch-ephemeral/templates/cert.yaml -2025-11-24T09:08:04.7750138Z charts/elasticsearch-ephemeral/templates/es-svc.yaml -2025-11-24T09:08:04.7750501Z charts/elasticsearch-ephemeral/templates/_helpers.tpl -2025-11-24T09:08:04.7750861Z charts/ingress-nginx-controller/ -2025-11-24T09:08:04.7751264Z charts/ingress-nginx-controller/Chart.lock -2025-11-24T09:08:04.7751616Z charts/ingress-nginx-controller/Chart.yaml -2025-11-24T09:08:04.7751959Z charts/ingress-nginx-controller/values.yaml -2025-11-24T09:08:04.7752303Z charts/ingress-nginx-controller/charts/ -2025-11-24T09:08:04.7753531Z charts/ingress-nginx-controller/charts/ingress-nginx/ -2025-11-24T09:08:04.7754750Z charts/ingress-nginx-controller/charts/ingress-nginx/README.md.gotmpl -2025-11-24T09:08:04.7755793Z charts/ingress-nginx-controller/charts/ingress-nginx/Chart.yaml -2025-11-24T09:08:04.7756742Z charts/ingress-nginx-controller/charts/ingress-nginx/.helmignore -2025-11-24T09:08:04.7757344Z charts/ingress-nginx-controller/charts/ingress-nginx/README.md -2025-11-24T09:08:04.7757750Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/ -2025-11-24T09:08:04.7758295Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.15.0.md -2025-11-24T09:08:04.7758732Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.9.md -2025-11-24T09:08:04.7759287Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.7.2.md -2025-11-24T09:08:04.7759766Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.11.3.md -2025-11-24T09:08:04.7760356Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.7.0.md -2025-11-24T09:08:04.7760817Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.0.md -2025-11-24T09:08:04.7761354Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.11.0.md -2025-11-24T09:08:04.7761806Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.2.md -2025-11-24T09:08:04.7762273Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.12.0.md -2025-11-24T09:08:04.7762993Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.5.1.md -2025-11-24T09:08:04.7763549Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.12.md -2025-11-24T09:08:04.7764013Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.0.md -2025-11-24T09:08:04.7764516Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.18.0.md -2025-11-24T09:08:04.7764971Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.15.1.md -2025-11-24T09:08:04.7765501Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.7.md -2025-11-24T09:08:04.7765952Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.9.0.md -2025-11-24T09:08:04.7766450Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.10.2.md -2025-11-24T09:08:04.7767083Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.7.0.md -2025-11-24T09:08:04.7767902Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.15.0.md -2025-11-24T09:08:04.7768531Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.18.md -2025-11-24T09:08:04.7775505Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.1.2.md -2025-11-24T09:08:04.7776044Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.6.1.md -2025-11-24T09:08:04.7776432Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.3.md -2025-11-24T09:08:04.7777000Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.10.0.md -2025-11-24T09:08:04.7777365Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.12.0.md -2025-11-24T09:08:04.7777712Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.5.md -2025-11-24T09:08:04.7778055Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.2.md -2025-11-24T09:08:04.7778415Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.26.0.md -2025-11-24T09:08:04.7778764Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.2.0.md -2025-11-24T09:08:04.7779192Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.22.0.md -2025-11-24T09:08:04.7779534Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.14.0.md -2025-11-24T09:08:04.7779882Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.2.1.md -2025-11-24T09:08:04.7780237Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.16.1.md -2025-11-24T09:08:04.7780579Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.7.1.md -2025-11-24T09:08:04.7780916Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.3.0.md -2025-11-24T09:08:04.7781257Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.9.1.md -2025-11-24T09:08:04.7781591Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.5.md -2025-11-24T09:08:04.7781927Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.0.0.md -2025-11-24T09:08:04.7782265Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.6.md -2025-11-24T09:08:04.7782610Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.1.md -2025-11-24T09:08:04.7783232Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.9.1.md -2025-11-24T09:08:04.7783580Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.29.0.md -2025-11-24T09:08:04.7783930Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.11.0.md -2025-11-24T09:08:04.7784273Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart.md.gotmpl -2025-11-24T09:08:04.7784612Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.10.0.md -2025-11-24T09:08:04.7785060Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.31.0.md -2025-11-24T09:08:04.7785394Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.34.0.md -2025-11-24T09:08:04.7785733Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.9.0.md -2025-11-24T09:08:04.7786082Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.25.0.md -2025-11-24T09:08:04.7786428Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.21.0.md -2025-11-24T09:08:04.7786771Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.4.0.md -2025-11-24T09:08:04.7787116Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.13.md -2025-11-24T09:08:04.7787454Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.1.0.md -2025-11-24T09:08:04.7787788Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.3.1.md -2025-11-24T09:08:04.7788129Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.4.md -2025-11-24T09:08:04.7788473Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.33.0.md -2025-11-24T09:08:04.7788822Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.27.0.md -2025-11-24T09:08:04.7789150Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.6.0.md -2025-11-24T09:08:04.7789488Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.11.1.md -2025-11-24T09:08:04.7789827Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.15.md -2025-11-24T09:08:04.7790293Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.19.0.md -2025-11-24T09:08:04.7790634Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.3.0.md -2025-11-24T09:08:04.7790971Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.5.0.md -2025-11-24T09:08:04.7791312Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.17.0.md -2025-11-24T09:08:04.7791653Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.23.0.md -2025-11-24T09:08:04.7792063Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.10.1.md -2025-11-24T09:08:04.7792400Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.10.1.md -2025-11-24T09:08:04.7792914Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.28.0.md -2025-11-24T09:08:04.7793257Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.7.1.md -2025-11-24T09:08:04.7793663Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.0-beta.0.md -2025-11-24T09:08:04.7794009Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.9.0.md -2025-11-24T09:08:04.7794346Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.8.0.md -2025-11-24T09:08:04.7794691Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.10.0.md -2025-11-24T09:08:04.7795038Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.20.1.md -2025-11-24T09:08:04.7795379Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.4.0.md -2025-11-24T09:08:04.7795712Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.3.md -2025-11-24T09:08:04.7796051Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.14.md -2025-11-24T09:08:04.7796381Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.5.2.md -2025-11-24T09:08:04.7796724Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.11.2.md -2025-11-24T09:08:04.7797061Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.10.md -2025-11-24T09:08:04.7797397Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.13.0.md -2025-11-24T09:08:04.7797735Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.11.md -2025-11-24T09:08:04.7798150Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.14.0.md -2025-11-24T09:08:04.7798501Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.11.1.md -2025-11-24T09:08:04.7798836Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.11.2.md -2025-11-24T09:08:04.7799173Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.3.md -2025-11-24T09:08:04.7799511Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.16.0.md -2025-11-24T09:08:04.7799851Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.0.1.md -2025-11-24T09:08:04.7800183Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.24.0.md -2025-11-24T09:08:04.7800523Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.20.0.md -2025-11-24T09:08:04.7800858Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.12.1.md -2025-11-24T09:08:04.7801197Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-2.16.0.md -2025-11-24T09:08:04.7801532Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.32.0.md -2025-11-24T09:08:04.7801872Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.30.0.md -2025-11-24T09:08:04.7802206Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.6.0.md -2025-11-24T09:08:04.7802542Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-3.13.0.md -2025-11-24T09:08:04.7803122Z charts/ingress-nginx-controller/charts/ingress-nginx/changelog/helm-chart-4.8.1.md -2025-11-24T09:08:04.7803413Z charts/ingress-nginx-controller/charts/ingress-nginx/values.yaml -2025-11-24T09:08:04.7803664Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/ -2025-11-24T09:08:04.7804069Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-configmap-values.yaml -2025-11-24T09:08:04.7804528Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-extra-modules-values.yaml -2025-11-24T09:08:04.7804931Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-values.yaml -2025-11-24T09:08:04.7805474Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-podannotations-values.yaml -2025-11-24T09:08:04.7805946Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-podannotations-values.yaml -2025-11-24T09:08:04.7806333Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-service-values.yaml -2025-11-24T09:08:04.7806735Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-values.yaml -2025-11-24T09:08:04.7807170Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-configmap-addheaders-values.yaml -2025-11-24T09:08:04.7807523Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-hpa-values.yaml -2025-11-24T09:08:04.7807942Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-service-internal-values.yaml -2025-11-24T09:08:04.7808388Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-opentelemetry-values.yaml -2025-11-24T09:08:04.7808843Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-opentelemetry-values.yaml -2025-11-24T09:08:04.7809194Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/deployment-psp-values.yaml -2025-11-24T09:08:04.7809605Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/deployment-webhook-and-psp-values.yaml -2025-11-24T09:08:04.7810040Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/admission-webhooks-cert-manager-values.yaml -2025-11-24T09:08:04.7810466Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-deployment-metrics-values.yaml -2025-11-24T09:08:04.7810908Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-extra-modules-values.yaml -2025-11-24T09:08:04.7811327Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-daemonset-metrics-values.yaml -2025-11-24T09:08:04.7811824Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/deamonset-webhook-and-psp-values.yaml -2025-11-24T09:08:04.7812272Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-configmap-proxyheaders-values.yaml -2025-11-24T09:08:04.7812729Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/deamonset-psp-values.yaml -2025-11-24T09:08:04.7813128Z charts/ingress-nginx-controller/charts/ingress-nginx/ci/controller-ingressclass-values.yaml -2025-11-24T09:08:04.7813396Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/ -2025-11-24T09:08:04.7813808Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-prometheusrule_test.yaml -2025-11-24T09:08:04.7814210Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-service-metrics_test.yaml -2025-11-24T09:08:04.7814599Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-configmap_test.yaml -2025-11-24T09:08:04.7815051Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-poddisruptionbudget_test.yaml -2025-11-24T09:08:04.7815420Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-keda_test.yaml -2025-11-24T09:08:04.7815829Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-service-internal_test.yaml -2025-11-24T09:08:04.7816235Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-serviceaccount_test.yaml -2025-11-24T09:08:04.7816610Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-service_test.yaml -2025-11-24T09:08:04.7817217Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-extra-configmaps_test.yaml -2025-11-24T09:08:04.7817612Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-service_test.yaml -2025-11-24T09:08:04.7818041Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-serviceaccount_test.yaml -2025-11-24T09:08:04.7818450Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-servicemonitor_test.yaml -2025-11-24T09:08:04.7818785Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/ -2025-11-24T09:08:04.7819244Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/ -2025-11-24T09:08:04.7819743Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/clusterrolebinding_test.yaml -2025-11-24T09:08:04.7820210Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/serviceaccount_test.yaml -2025-11-24T09:08:04.7820671Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/clusterrole_test.yaml -2025-11-24T09:08:04.7821119Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/rolebinding_test.yaml -2025-11-24T09:08:04.7821547Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/job-patch/role_test.yaml -2025-11-24T09:08:04.7821990Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/admission-webhooks/validating-webhook_test.yaml -2025-11-24T09:08:04.7822379Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-daemonset_test.yaml -2025-11-24T09:08:04.7822990Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-hpa_test.yaml -2025-11-24T09:08:04.7823457Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-service-webhook_test.yaml -2025-11-24T09:08:04.7823892Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-configmap-proxyheaders_test.yaml -2025-11-24T09:08:04.7824320Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-ingressclass-aliases_test.yaml -2025-11-24T09:08:04.7824741Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-poddisruptionbudget_test.yaml -2025-11-24T09:08:04.7825152Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-networkpolicy_test.yaml -2025-11-24T09:08:04.7825680Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-configmap-addheaders_test.yaml -2025-11-24T09:08:04.7826086Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-deployment_test.yaml -2025-11-24T09:08:04.7826497Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/default-backend-deployment_test.yaml -2025-11-24T09:08:04.7826889Z charts/ingress-nginx-controller/charts/ingress-nginx/tests/controller-ingressclass_test.yaml -2025-11-24T09:08:04.7827157Z charts/ingress-nginx-controller/charts/ingress-nginx/OWNERS -2025-11-24T09:08:04.7827437Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/ -2025-11-24T09:08:04.7827848Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-deployment.yaml -2025-11-24T09:08:04.7828230Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-psp.yaml -2025-11-24T09:08:04.7828605Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-secret.yaml -2025-11-24T09:08:04.7828984Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-service.yaml -2025-11-24T09:08:04.7829381Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-deployment.yaml -2025-11-24T09:08:04.7829779Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-rolebinding.yaml -2025-11-24T09:08:04.7830174Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap-udp.yaml -2025-11-24T09:08:04.7830524Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-role.yaml -2025-11-24T09:08:04.7831040Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-daemonset.yaml -2025-11-24T09:08:04.7831441Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-ingressclass.yaml -2025-11-24T09:08:04.7831819Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-role.yaml -2025-11-24T09:08:04.7832167Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-hpa.yaml -2025-11-24T09:08:04.7832592Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-ingressclass-aliases.yaml -2025-11-24T09:08:04.7833077Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-hpa.yaml -2025-11-24T09:08:04.7833536Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap.yaml -2025-11-24T09:08:04.7833930Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-service.yaml -2025-11-24T09:08:04.7834253Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/NOTES.txt -2025-11-24T09:08:04.7834662Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-servicemonitor.yaml -2025-11-24T09:08:04.7835061Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-rolebinding.yaml -2025-11-24T09:08:04.7835470Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-networkpolicy.yaml -2025-11-24T09:08:04.7835916Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-prometheusrule.yaml -2025-11-24T09:08:04.7836257Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/clusterrole.yaml -2025-11-24T09:08:04.7836691Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-poddisruptionbudget.yaml -2025-11-24T09:08:04.7837134Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-poddisruptionbudget.yaml -2025-11-24T09:08:04.7837556Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-serviceaccount.yaml -2025-11-24T09:08:04.7837912Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/ -2025-11-24T09:08:04.7838309Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/ -2025-11-24T09:08:04.7838735Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/psp.yaml -2025-11-24T09:08:04.7839218Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml -2025-11-24T09:08:04.7839760Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/serviceaccount.yaml -2025-11-24T09:08:04.7840210Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/rolebinding.yaml -2025-11-24T09:08:04.7841491Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/clusterrole.yaml -2025-11-24T09:08:04.7842516Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/role.yaml -2025-11-24T09:08:04.7843549Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml -2025-11-24T09:08:04.7844378Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/networkpolicy.yaml -2025-11-24T09:08:04.7845232Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/job-patch/clusterrolebinding.yaml -2025-11-24T09:08:04.7845978Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/cert-manager.yaml -2025-11-24T09:08:04.7846748Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/admission-webhooks/validating-webhook.yaml -2025-11-24T09:08:04.7847354Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-keda.yaml -2025-11-24T09:08:04.7848052Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-service-internal.yaml -2025-11-24T09:08:04.7848640Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap-addheaders.yaml -2025-11-24T09:08:04.7849277Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-extra-configmaps.yaml -2025-11-24T09:08:04.7849702Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap-tcp.yaml -2025-11-24T09:08:04.7850407Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/default-backend-networkpolicy.yaml -2025-11-24T09:08:04.7850926Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-service-webhook.yaml -2025-11-24T09:08:04.7851646Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-configmap-proxyheaders.yaml -2025-11-24T09:08:04.7852330Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/_params.tpl -2025-11-24T09:08:04.7853627Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-service-metrics.yaml -2025-11-24T09:08:04.7854202Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/_helpers.tpl -2025-11-24T09:08:04.7854928Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-serviceaccount.yaml -2025-11-24T09:08:04.7855622Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/controller-psp.yaml -2025-11-24T09:08:04.7856271Z charts/ingress-nginx-controller/charts/ingress-nginx/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.7856470Z charts/redis-cluster/ -2025-11-24T09:08:04.7856675Z charts/redis-cluster/Chart.yaml -2025-11-24T09:08:04.7856892Z charts/redis-cluster/requirements.lock -2025-11-24T09:08:04.7857230Z charts/redis-cluster/requirements.yaml -2025-11-24T09:08:04.7857572Z charts/redis-cluster/values.yaml -2025-11-24T09:08:04.7857891Z charts/redis-cluster/charts/ -2025-11-24T09:08:04.7858235Z charts/redis-cluster/charts/redis-cluster/ -2025-11-24T09:08:04.7858640Z charts/redis-cluster/charts/redis-cluster/Chart.lock -2025-11-24T09:08:04.7859019Z charts/redis-cluster/charts/redis-cluster/Chart.yaml -2025-11-24T09:08:04.7859423Z charts/redis-cluster/charts/redis-cluster/.helmignore -2025-11-24T09:08:04.7859786Z charts/redis-cluster/charts/redis-cluster/img/ -2025-11-24T09:08:04.7860253Z charts/redis-cluster/charts/redis-cluster/img/redis-topology.png -2025-11-24T09:08:04.7860788Z charts/redis-cluster/charts/redis-cluster/img/redis-cluster-topology.png -2025-11-24T09:08:04.7861185Z charts/redis-cluster/charts/redis-cluster/README.md -2025-11-24T09:08:04.7861775Z charts/redis-cluster/charts/redis-cluster/values.yaml -2025-11-24T09:08:04.7862287Z charts/redis-cluster/charts/redis-cluster/charts/ -2025-11-24T09:08:04.7862893Z charts/redis-cluster/charts/redis-cluster/charts/common/ -2025-11-24T09:08:04.7863392Z charts/redis-cluster/charts/redis-cluster/charts/common/Chart.yaml -2025-11-24T09:08:04.7863899Z charts/redis-cluster/charts/redis-cluster/charts/common/.helmignore -2025-11-24T09:08:04.7864375Z charts/redis-cluster/charts/redis-cluster/charts/common/README.md -2025-11-24T09:08:04.7864863Z charts/redis-cluster/charts/redis-cluster/charts/common/values.yaml -2025-11-24T09:08:04.7865339Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/ -2025-11-24T09:08:04.7865912Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_warnings.tpl -2025-11-24T09:08:04.7866474Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_labels.tpl -2025-11-24T09:08:04.7867017Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_names.tpl -2025-11-24T09:08:04.7867616Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_capabilities.tpl -2025-11-24T09:08:04.7868169Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_errors.tpl -2025-11-24T09:08:04.7868733Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/ -2025-11-24T09:08:04.7869417Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_mongodb.tpl -2025-11-24T09:08:04.7870072Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_mysql.tpl -2025-11-24T09:08:04.7870730Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_mariadb.tpl -2025-11-24T09:08:04.7871612Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_validations.tpl -2025-11-24T09:08:04.7872264Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_redis.tpl -2025-11-24T09:08:04.7873198Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_cassandra.tpl -2025-11-24T09:08:04.7873696Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/validations/_postgresql.tpl -2025-11-24T09:08:04.7874031Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_images.tpl -2025-11-24T09:08:04.7874466Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_secrets.tpl -2025-11-24T09:08:04.7874792Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_ingress.tpl -2025-11-24T09:08:04.7875138Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_affinities.tpl -2025-11-24T09:08:04.7875465Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_storage.tpl -2025-11-24T09:08:04.7875804Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_tplvalues.tpl -2025-11-24T09:08:04.7876120Z charts/redis-cluster/charts/redis-cluster/charts/common/templates/_utils.tpl -2025-11-24T09:08:04.7876364Z charts/redis-cluster/charts/redis-cluster/templates/ -2025-11-24T09:08:04.7876666Z charts/redis-cluster/charts/redis-cluster/templates/tls-secret.yaml -2025-11-24T09:08:04.7876936Z charts/redis-cluster/charts/redis-cluster/templates/secret.yaml -2025-11-24T09:08:04.7877243Z charts/redis-cluster/charts/redis-cluster/templates/metrics-svc.yaml -2025-11-24T09:08:04.7877586Z charts/redis-cluster/charts/redis-cluster/templates/metrics-prometheus.yaml -2025-11-24T09:08:04.7877881Z charts/redis-cluster/charts/redis-cluster/templates/redis-svc.yaml -2025-11-24T09:08:04.7878205Z charts/redis-cluster/charts/redis-cluster/templates/redis-serviceaccount.yaml -2025-11-24T09:08:04.7878463Z charts/redis-cluster/charts/redis-cluster/templates/psp.yaml -2025-11-24T09:08:04.7878751Z charts/redis-cluster/charts/redis-cluster/templates/configmap.yaml -2025-11-24T09:08:04.7879005Z charts/redis-cluster/charts/redis-cluster/templates/NOTES.txt -2025-11-24T09:08:04.7879329Z charts/redis-cluster/charts/redis-cluster/templates/scripts-configmap.yaml -2025-11-24T09:08:04.7879643Z charts/redis-cluster/charts/redis-cluster/templates/update-cluster.yaml -2025-11-24T09:08:04.7880018Z charts/redis-cluster/charts/redis-cluster/templates/redis-role.yaml -2025-11-24T09:08:04.7880306Z charts/redis-cluster/charts/redis-cluster/templates/extra-list.yaml -2025-11-24T09:08:04.7880637Z charts/redis-cluster/charts/redis-cluster/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.7880944Z charts/redis-cluster/charts/redis-cluster/templates/headless-svc.yaml -2025-11-24T09:08:04.7881265Z charts/redis-cluster/charts/redis-cluster/templates/redis-rolebinding.yaml -2025-11-24T09:08:04.7881585Z charts/redis-cluster/charts/redis-cluster/templates/networkpolicy.yaml -2025-11-24T09:08:04.7881866Z charts/redis-cluster/charts/redis-cluster/templates/_helpers.tpl -2025-11-24T09:08:04.7882180Z charts/redis-cluster/charts/redis-cluster/templates/prometheusrule.yaml -2025-11-24T09:08:04.7882552Z charts/redis-cluster/charts/redis-cluster/templates/svc-cluster-external-access.yaml -2025-11-24T09:08:04.7883062Z charts/redis-cluster/charts/redis-cluster/templates/redis-statefulset.yaml -2025-11-24T09:08:04.7883260Z charts/team-settings/ -2025-11-24T09:08:04.7883460Z charts/team-settings/Chart.yaml -2025-11-24T09:08:04.7883659Z charts/team-settings/.helmignore -2025-11-24T09:08:04.7883855Z charts/team-settings/README.md -2025-11-24T09:08:04.7884052Z charts/team-settings/values.yaml -2025-11-24T09:08:04.7884243Z charts/team-settings/templates/ -2025-11-24T09:08:04.7884457Z charts/team-settings/templates/secret.yaml -2025-11-24T09:08:04.7884688Z charts/team-settings/templates/deployment.yaml -2025-11-24T09:08:04.7884898Z charts/team-settings/templates/_helpers.tpl -2025-11-24T09:08:04.7885095Z charts/kube-prometheus-stack/ -2025-11-24T09:08:04.7885425Z charts/kube-prometheus-stack/Chart.yaml -2025-11-24T09:08:04.7885649Z charts/kube-prometheus-stack/requirements.lock -2025-11-24T09:08:04.7885851Z charts/kube-prometheus-stack/README.md -2025-11-24T09:08:04.7886066Z charts/kube-prometheus-stack/requirements.yaml -2025-11-24T09:08:04.7886265Z charts/kube-prometheus-stack/values.yaml -2025-11-24T09:08:04.7886463Z charts/kube-prometheus-stack/charts/ -2025-11-24T09:08:04.7886730Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/ -2025-11-24T09:08:04.7887037Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/Chart.lock -2025-11-24T09:08:04.7887400Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/Chart.yaml -2025-11-24T09:08:04.7887707Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/.helmignore -2025-11-24T09:08:04.7887998Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/README.md -2025-11-24T09:08:04.7888298Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/values.yaml -2025-11-24T09:08:04.7888589Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/ -2025-11-24T09:08:04.7888890Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/ -2025-11-24T09:08:04.7889230Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/Chart.yaml -2025-11-24T09:08:04.7889555Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/ -2025-11-24T09:08:04.7889966Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-thanosrulers.yaml -2025-11-24T09:08:04.7890385Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusrules.yaml -2025-11-24T09:08:04.7890802Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-scrapeconfigs.yaml -2025-11-24T09:08:04.7891200Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-podmonitors.yaml -2025-11-24T09:08:04.7891592Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-probes.yaml -2025-11-24T09:08:04.7892022Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheusagents.yaml -2025-11-24T09:08:04.7892435Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-servicemonitors.yaml -2025-11-24T09:08:04.7893071Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagers.yaml -2025-11-24T09:08:04.7893466Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-prometheuses.yaml -2025-11-24T09:08:04.7893980Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/crds/crd-alertmanagerconfigs.yaml -2025-11-24T09:08:04.7894322Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/README.md -2025-11-24T09:08:04.7894694Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/files/ -2025-11-24T09:08:04.7895058Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/files/crds.bz2 -2025-11-24T09:08:04.7895403Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/values.yaml -2025-11-24T09:08:04.7895745Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/ -2025-11-24T09:08:04.7896130Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/ -2025-11-24T09:08:04.7896542Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/crds.yaml -2025-11-24T09:08:04.7897009Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/serviceaccount.yaml -2025-11-24T09:08:04.7897443Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/clusterrole.yaml -2025-11-24T09:08:04.7897919Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/clusterrolebinding.yaml -2025-11-24T09:08:04.7898328Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/upgrade/job.yaml -2025-11-24T09:08:04.7898725Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/crds/templates/_helpers.tpl -2025-11-24T09:08:04.7899223Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/ -2025-11-24T09:08:04.7899633Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml -2025-11-24T09:08:04.7900033Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/.helmignore -2025-11-24T09:08:04.7900431Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/README.md -2025-11-24T09:08:04.7900822Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/values.yaml -2025-11-24T09:08:04.7901284Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/ -2025-11-24T09:08:04.7901763Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/extra-manifests.yaml -2025-11-24T09:08:04.7902226Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/servicemonitor.yaml -2025-11-24T09:08:04.7902766Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/pdb.yaml -2025-11-24T09:08:04.7903222Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/deployment.yaml -2025-11-24T09:08:04.7903726Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/verticalpodautoscaler.yaml -2025-11-24T09:08:04.7904212Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/ciliumnetworkpolicy.yaml -2025-11-24T09:08:04.7904642Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/NOTES.txt -2025-11-24T09:08:04.7905104Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/serviceaccount.yaml -2025-11-24T09:08:04.7905553Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/rolebinding.yaml -2025-11-24T09:08:04.7906039Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/stsdiscovery-role.yaml -2025-11-24T09:08:04.7906547Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/stsdiscovery-rolebinding.yaml -2025-11-24T09:08:04.7906972Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/role.yaml -2025-11-24T09:08:04.7907504Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/crs-configmap.yaml -2025-11-24T09:08:04.7907943Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/service.yaml -2025-11-24T09:08:04.7908395Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/scrapeconfig.yaml -2025-11-24T09:08:04.7908852Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/rbac-configmap.yaml -2025-11-24T09:08:04.7909330Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/kubeconfig-secret.yaml -2025-11-24T09:08:04.7909786Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/networkpolicy.yaml -2025-11-24T09:08:04.7910214Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/_helpers.tpl -2025-11-24T09:08:04.7910698Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/kube-state-metrics/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.7911098Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/ -2025-11-24T09:08:04.7911527Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/Chart.yaml -2025-11-24T09:08:04.7911953Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/.helmignore -2025-11-24T09:08:04.7912370Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/README.md -2025-11-24T09:08:04.7913007Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/values.yaml -2025-11-24T09:08:04.7913430Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/ -2025-11-24T09:08:04.7913932Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/extra-manifests.yaml -2025-11-24T09:08:04.7914427Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/servicemonitor.yaml -2025-11-24T09:08:04.7915015Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/verticalpodautoscaler.yaml -2025-11-24T09:08:04.7915462Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/NOTES.txt -2025-11-24T09:08:04.7915955Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/serviceaccount.yaml -2025-11-24T09:08:04.7916435Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/daemonset.yaml -2025-11-24T09:08:04.7916917Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/clusterrole.yaml -2025-11-24T09:08:04.7917386Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/service.yaml -2025-11-24T09:08:04.7917862Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/endpoints.yaml -2025-11-24T09:08:04.7918348Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/podmonitor.yaml -2025-11-24T09:08:04.7918844Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/rbac-configmap.yaml -2025-11-24T09:08:04.7919336Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/networkpolicy.yaml -2025-11-24T09:08:04.7919805Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/_helpers.tpl -2025-11-24T09:08:04.7920318Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-node-exporter/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.7920640Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ -2025-11-24T09:08:04.7921087Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/Chart.yaml -2025-11-24T09:08:04.7921448Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/.helmignore -2025-11-24T09:08:04.7921803Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/dashboards/ -2025-11-24T09:08:04.7922247Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/dashboards/custom-dashboard.json -2025-11-24T09:08:04.7922593Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/README.md -2025-11-24T09:08:04.7923070Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/values.yaml -2025-11-24T09:08:04.7923403Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/ -2025-11-24T09:08:04.7923885Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-sidecars-envvaluefrom-values.yaml -2025-11-24T09:08:04.7924331Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-image-renderer-values.yaml -2025-11-24T09:08:04.7924749Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml -2025-11-24T09:08:04.7925180Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-values.yaml -2025-11-24T09:08:04.7925616Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-dashboard-json-values.yaml -2025-11-24T09:08:04.7926089Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-extraconfigmapmounts-values.yaml -2025-11-24T09:08:04.7984347Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-affinity-values.yaml -2025-11-24T09:08:04.7986036Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/with-nondefault-values.yaml -2025-11-24T09:08:04.7987383Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/ci/default-values.yaml -2025-11-24T09:08:04.7988257Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/ -2025-11-24T09:08:04.7989770Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/extra-manifests.yaml -2025-11-24T09:08:04.7991406Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/servicemonitor.yaml -2025-11-24T09:08:04.7992935Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/secret.yaml -2025-11-24T09:08:04.7994932Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/deployment.yaml -2025-11-24T09:08:04.7995830Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-deployment.yaml -2025-11-24T09:08:04.7997055Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/dashboards-json-configmap.yaml -2025-11-24T09:08:04.7997975Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-hpa.yaml -2025-11-24T09:08:04.7998659Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/pvc.yaml -2025-11-24T09:08:04.8000240Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/_config.tpl -2025-11-24T09:08:04.8001470Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/configmap.yaml -2025-11-24T09:08:04.8002188Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/NOTES.txt -2025-11-24T09:08:04.8002971Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/serviceaccount.yaml -2025-11-24T09:08:04.8003503Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-network-policy.yaml -2025-11-24T09:08:04.8004972Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/rolebinding.yaml -2025-11-24T09:08:04.8006305Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/route.yaml -2025-11-24T09:08:04.8007313Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/clusterrole.yaml -2025-11-24T09:08:04.8008025Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/role.yaml -2025-11-24T09:08:04.8008768Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/configSecret.yaml -2025-11-24T09:08:04.8009538Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/headless-service.yaml -2025-11-24T09:08:04.8010230Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/service.yaml -2025-11-24T09:08:04.8010947Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/hpa.yaml -2025-11-24T09:08:04.8011362Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/_pod.tpl -2025-11-24T09:08:04.8011835Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-service.yaml -2025-11-24T09:08:04.8012307Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.8012954Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/image-renderer-servicemonitor.yaml -2025-11-24T09:08:04.8013365Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/ -2025-11-24T09:08:04.8013824Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-rolebinding.yaml -2025-11-24T09:08:04.8014269Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-configmap.yaml -2025-11-24T09:08:04.8015182Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-podsecuritypolicy.yaml -2025-11-24T09:08:04.8015757Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test.yaml -2025-11-24T09:08:04.8016252Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-serviceaccount.yaml -2025-11-24T09:08:04.8016683Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/tests/test-role.yaml -2025-11-24T09:08:04.8017208Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/networkpolicy.yaml -2025-11-24T09:08:04.8017611Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/_helpers.tpl -2025-11-24T09:08:04.8018003Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/ingress.yaml -2025-11-24T09:08:04.8018419Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/secret-env.yaml -2025-11-24T09:08:04.8018933Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/configmap-dashboard-provider.yaml -2025-11-24T09:08:04.8019358Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/statefulset.yaml -2025-11-24T09:08:04.8019808Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.8020252Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/grafana/templates/podsecuritypolicy.yaml -2025-11-24T09:08:04.8020661Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/ -2025-11-24T09:08:04.8021098Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/Chart.yaml -2025-11-24T09:08:04.8021528Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/.helmignore -2025-11-24T09:08:04.8021955Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/README.md -2025-11-24T09:08:04.8022386Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/values.yaml -2025-11-24T09:08:04.8022952Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/ -2025-11-24T09:08:04.8023560Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/servicemonitor.yaml -2025-11-24T09:08:04.8024070Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/serviceaccount.yaml -2025-11-24T09:08:04.8024570Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/daemonset.yaml -2025-11-24T09:08:04.8025057Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/service.yaml -2025-11-24T09:08:04.8025559Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/podmonitor.yaml -2025-11-24T09:08:04.8026042Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/_helpers.tpl -2025-11-24T09:08:04.8026519Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/charts/prometheus-windows-exporter/templates/config.yaml -2025-11-24T09:08:04.8026830Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/ -2025-11-24T09:08:04.8027173Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/ -2025-11-24T09:08:04.8027600Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/servicemonitor.yaml -2025-11-24T09:08:04.8027995Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/secret.yaml -2025-11-24T09:08:04.8028428Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/serviceperreplica.yaml -2025-11-24T09:08:04.8028975Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/extrasecret.yaml -2025-11-24T09:08:04.8029394Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/serviceaccount.yaml -2025-11-24T09:08:04.8029785Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/route.yaml -2025-11-24T09:08:04.8030196Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/alertmanager.yaml -2025-11-24T09:08:04.8030590Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/service.yaml -2025-11-24T09:08:04.8031100Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/podDisruptionBudget.yaml -2025-11-24T09:08:04.8031532Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/ingressperreplica.yaml -2025-11-24T09:08:04.8031952Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/networkpolicy.yaml -2025-11-24T09:08:04.8032337Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/alertmanager/ingress.yaml -2025-11-24T09:08:04.8032822Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/extra-objects.yaml -2025-11-24T09:08:04.8033155Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/NOTES.txt -2025-11-24T09:08:04.8033499Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/ -2025-11-24T09:08:04.8033920Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/servicemonitor.yaml -2025-11-24T09:08:04.8034313Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/secret.yaml -2025-11-24T09:08:04.8034697Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/ruler.yaml -2025-11-24T09:08:04.8035101Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/extrasecret.yaml -2025-11-24T09:08:04.8035512Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/serviceaccount.yaml -2025-11-24T09:08:04.8035898Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/route.yaml -2025-11-24T09:08:04.8036283Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/service.yaml -2025-11-24T09:08:04.8036723Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/podDisruptionBudget.yaml -2025-11-24T09:08:04.8037190Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/thanos-ruler/ingress.yaml -2025-11-24T09:08:04.8037581Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/ -2025-11-24T09:08:04.8038026Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/servicemonitor.yaml -2025-11-24T09:08:04.8038457Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/certmanager.yaml -2025-11-24T09:08:04.8038856Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/pdb.yaml -2025-11-24T09:08:04.8039287Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/deployment.yaml -2025-11-24T09:08:04.8039767Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/verticalpodautoscaler.yaml -2025-11-24T09:08:04.8040231Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/ciliumnetworkpolicy.yaml -2025-11-24T09:08:04.8040691Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/_prometheus-operator.tpl -2025-11-24T09:08:04.8041135Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/serviceaccount.yaml -2025-11-24T09:08:04.8041611Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/aggregate-clusterroles.yaml -2025-11-24T09:08:04.8042042Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/clusterrole.yaml -2025-11-24T09:08:04.8042591Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/service.yaml -2025-11-24T09:08:04.8043138Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/ -2025-11-24T09:08:04.8043632Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ -2025-11-24T09:08:04.8044275Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ciliumnetworkpolicy-createSecret.yaml -2025-11-24T09:08:04.8044963Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/networkpolicy-patchWebhook.yaml -2025-11-24T09:08:04.8045528Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/job-patchWebhook.yaml -2025-11-24T09:08:04.8046094Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/serviceaccount.yaml -2025-11-24T09:08:04.8046640Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/rolebinding.yaml -2025-11-24T09:08:04.8047180Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/clusterrole.yaml -2025-11-24T09:08:04.8047699Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/role.yaml -2025-11-24T09:08:04.8048258Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/job-createSecret.yaml -2025-11-24T09:08:04.8048862Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/networkpolicy-createSecret.yaml -2025-11-24T09:08:04.8049498Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/ciliumnetworkpolicy-patchWebhook.yaml -2025-11-24T09:08:04.8050070Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/job-patch/clusterrolebinding.yaml -2025-11-24T09:08:04.8050655Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/validatingWebhookConfiguration.yaml -2025-11-24T09:08:04.8051322Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/_prometheus-operator-webhook.tpl -2025-11-24T09:08:04.8051815Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/ -2025-11-24T09:08:04.8052334Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/pdb.yaml -2025-11-24T09:08:04.8052977Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/deployment.yaml -2025-11-24T09:08:04.8053540Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/serviceaccount.yaml -2025-11-24T09:08:04.8054074Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/deployment/service.yaml -2025-11-24T09:08:04.8054650Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/admission-webhooks/mutatingWebhookConfiguration.yaml -2025-11-24T09:08:04.8055094Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/networkpolicy.yaml -2025-11-24T09:08:04.8055559Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus-operator/clusterrolebinding.yaml -2025-11-24T09:08:04.8055894Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/_helpers.tpl -2025-11-24T09:08:04.8056217Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/ -2025-11-24T09:08:04.8056733Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/ -2025-11-24T09:08:04.8057244Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-windows-node-rsrc-use.yaml -2025-11-24T09:08:04.8057733Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/alertmanager-overview.yaml -2025-11-24T09:08:04.8058231Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/prometheus-remote-write.yaml -2025-11-24T09:08:04.8058723Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-namespace.yaml -2025-11-24T09:08:04.8059236Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/prometheus.yaml -2025-11-24T09:08:04.8059686Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/cluster-total.yaml -2025-11-24T09:08:04.8060125Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/pod-total.yaml -2025-11-24T09:08:04.8060663Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-namespace.yaml -2025-11-24T09:08:04.8061132Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/grafana-overview.yaml -2025-11-24T09:08:04.8061654Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-cluster.yaml -2025-11-24T09:08:04.8062112Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-pod.yaml -2025-11-24T09:08:04.8062539Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes.yaml -2025-11-24T09:08:04.8063067Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/apiserver.yaml -2025-11-24T09:08:04.8063543Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-pod.yaml -2025-11-24T09:08:04.8064030Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-cluster-rsrc-use.yaml -2025-11-24T09:08:04.8064504Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/controller-manager.yaml -2025-11-24T09:08:04.8064922Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/etcd.yaml -2025-11-24T09:08:04.8065448Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-rsrc-use.yaml -2025-11-24T09:08:04.8065873Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/kubelet.yaml -2025-11-24T09:08:04.8066380Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-multicluster.yaml -2025-11-24T09:08:04.8066885Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-windows-pod.yaml -2025-11-24T09:08:04.8067336Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes-darwin.yaml -2025-11-24T09:08:04.8067766Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-coredns.yaml -2025-11-24T09:08:04.8068243Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-node.yaml -2025-11-24T09:08:04.8068676Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/scheduler.yaml -2025-11-24T09:08:04.8069098Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/proxy.yaml -2025-11-24T09:08:04.8069523Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes-aix.yaml -2025-11-24T09:08:04.8070006Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-workload.yaml -2025-11-24T09:08:04.8070666Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workloads-namespace.yaml -2025-11-24T09:08:04.8071166Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/persistentvolumesusage.yaml -2025-11-24T09:08:04.8071618Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/workload-total.yaml -2025-11-24T09:08:04.8072102Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workload.yaml -2025-11-24T09:08:04.8072737Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-cluster.yaml -2025-11-24T09:08:04.8073539Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-windows-cluster-rsrc-use.yaml -2025-11-24T09:08:04.8079723Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/grafana/configmaps-datasources.yaml -2025-11-24T09:08:04.8080755Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ -2025-11-24T09:08:04.8081616Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/servicemonitor.yaml -2025-11-24T09:08:04.8082046Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/secret.yaml -2025-11-24T09:08:04.8082480Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/csi-secret.yaml -2025-11-24T09:08:04.8083300Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/additionalAlertmanagerConfigs.yaml -2025-11-24T09:08:04.8083765Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/serviceperreplica.yaml -2025-11-24T09:08:04.8084181Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/ -2025-11-24T09:08:04.8084725Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_swap.yaml -2025-11-24T09:08:04.8085213Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/windows.node.rules.yaml -2025-11-24T09:08:04.8085754Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_requests.yaml -2025-11-24T09:08:04.8086203Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/general.rules.yaml -2025-11-24T09:08:04.8086946Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-burnrate.rules.yaml -2025-11-24T09:08:04.8087382Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/prometheus.yaml -2025-11-24T09:08:04.8087848Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system.yaml -2025-11-24T09:08:04.8088327Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-slos.yaml -2025-11-24T09:08:04.8088791Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/config-reloaders.yaml -2025-11-24T09:08:04.8089245Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-apps.yaml -2025-11-24T09:08:04.8089744Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-kubelet.yaml -2025-11-24T09:08:04.8090228Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-resources.yaml -2025-11-24T09:08:04.8090744Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_rss.yaml -2025-11-24T09:08:04.8091298Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-controller-manager.yaml -2025-11-24T09:08:04.8091827Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-prometheus-general.rules.yaml -2025-11-24T09:08:04.8092405Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-network.yaml -2025-11-24T09:08:04.8093100Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_cache.yaml -2025-11-24T09:08:04.8093579Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/windows.pod.rules.yaml -2025-11-24T09:08:04.8094110Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_limits.yaml -2025-11-24T09:08:04.8094754Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_cpu_usage_seconds_total.yaml -2025-11-24T09:08:04.8095209Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubelet.rules.yaml -2025-11-24T09:08:04.8095655Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-exporter.yaml -2025-11-24T09:08:04.8096199Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-availability.rules.yaml -2025-11-24T09:08:04.8096752Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-prometheus-node-recording.rules.yaml -2025-11-24T09:08:04.8097662Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_memory_working_set_bytes.yaml -2025-11-24T09:08:04.8098183Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.pod_owner.yaml -2025-11-24T09:08:04.8098667Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/prometheus-operator.yaml -2025-11-24T09:08:04.8099092Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/etcd.yaml -2025-11-24T09:08:04.8099568Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node-exporter.rules.yaml -2025-11-24T09:08:04.8100010Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/node.rules.yaml -2025-11-24T09:08:04.8100538Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-apiserver-histogram.rules.yaml -2025-11-24T09:08:04.8101042Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-apiserver.yaml -2025-11-24T09:08:04.8101641Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_resource.yaml -2025-11-24T09:08:04.8102128Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/alertmanager.rules.yaml -2025-11-24T09:08:04.8102768Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-scheduler.yaml -2025-11-24T09:08:04.8103243Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-storage.yaml -2025-11-24T09:08:04.8103769Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_cpu_requests.yaml -2025-11-24T09:08:04.8104248Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-scheduler.rules.yaml -2025-11-24T09:08:04.8104762Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kubernetes-system-kube-proxy.yaml -2025-11-24T09:08:04.8105270Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/k8s.rules.container_cpu_limits.yaml -2025-11-24T09:08:04.8105739Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/rules-1.14/kube-state-metrics.yaml -2025-11-24T09:08:04.8106149Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/prometheus.yaml -2025-11-24T09:08:04.8106749Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/servicemonitorThanosSidecar.yaml -2025-11-24T09:08:04.8107264Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/serviceThanosSidecarExternal.yaml -2025-11-24T09:08:04.8107705Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ciliumnetworkpolicy.yaml -2025-11-24T09:08:04.8108108Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/extrasecret.yaml -2025-11-24T09:08:04.8108586Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/additionalAlertRelabelConfigs.yaml -2025-11-24T09:08:04.8109823Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/additionalScrapeConfigs.yaml -2025-11-24T09:08:04.8110290Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/serviceaccount.yaml -2025-11-24T09:08:04.8110691Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/route.yaml -2025-11-24T09:08:04.8111104Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/clusterrole.yaml -2025-11-24T09:08:04.8111551Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/serviceThanosSidecar.yaml -2025-11-24T09:08:04.8112007Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/additionalPrometheusRules.yaml -2025-11-24T09:08:04.8112410Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/podmonitors.yaml -2025-11-24T09:08:04.8112927Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/service.yaml -2025-11-24T09:08:04.8113371Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/podDisruptionBudget.yaml -2025-11-24T09:08:04.8113803Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ingressperreplica.yaml -2025-11-24T09:08:04.8114195Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/_rules.tpl -2025-11-24T09:08:04.8114642Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ingressThanosSidecar.yaml -2025-11-24T09:08:04.8115061Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/servicemonitors.yaml -2025-11-24T09:08:04.8115483Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/networkpolicy.yaml -2025-11-24T09:08:04.8115994Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/ingress.yaml -2025-11-24T09:08:04.8116420Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/prometheus/clusterrolebinding.yaml -2025-11-24T09:08:04.8116762Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/ -2025-11-24T09:08:04.8117153Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-proxy/ -2025-11-24T09:08:04.8117597Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-proxy/servicemonitor.yaml -2025-11-24T09:08:04.8118017Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-proxy/service.yaml -2025-11-24T09:08:04.8118444Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-proxy/endpoints.yaml -2025-11-24T09:08:04.8118830Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-etcd/ -2025-11-24T09:08:04.8119284Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-etcd/servicemonitor.yaml -2025-11-24T09:08:04.8119702Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-etcd/service.yaml -2025-11-24T09:08:04.8120121Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-etcd/endpoints.yaml -2025-11-24T09:08:04.8120519Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/ -2025-11-24T09:08:04.8120983Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/servicemonitor.yaml -2025-11-24T09:08:04.8121534Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/service.yaml -2025-11-24T09:08:04.8121982Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-scheduler/endpoints.yaml -2025-11-24T09:08:04.8122357Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-dns/ -2025-11-24T09:08:04.8123056Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-dns/servicemonitor.yaml -2025-11-24T09:08:04.8123491Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-dns/service.yaml -2025-11-24T09:08:04.8123988Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-api-server/ -2025-11-24T09:08:04.8124464Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-api-server/servicemonitor.yaml -2025-11-24T09:08:04.8124832Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/core-dns/ -2025-11-24T09:08:04.8125275Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/core-dns/servicemonitor.yaml -2025-11-24T09:08:04.8125687Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/core-dns/service.yaml -2025-11-24T09:08:04.8126110Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/ -2025-11-24T09:08:04.8126621Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/servicemonitor.yaml -2025-11-24T09:08:04.8127100Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/service.yaml -2025-11-24T09:08:04.8127595Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kube-controller-manager/endpoints.yaml -2025-11-24T09:08:04.8127968Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kubelet/ -2025-11-24T09:08:04.8128406Z charts/kube-prometheus-stack/charts/kube-prometheus-stack/templates/exporters/kubelet/servicemonitor.yaml -2025-11-24T09:08:04.8128615Z charts/kube-prometheus-stack/templates/ -2025-11-24T09:08:04.8128851Z charts/kube-prometheus-stack/templates/secrets.yaml -2025-11-24T09:08:04.8129110Z charts/kube-prometheus-stack/templates/storageclass.yaml -2025-11-24T09:08:04.8129334Z charts/kube-prometheus-stack/templates/NOTES.txt -2025-11-24T09:08:04.8129673Z charts/kube-prometheus-stack/templates/persistentvolume.yaml -2025-11-24T09:08:04.8129872Z charts/postgresql-external/ -2025-11-24T09:08:04.8130075Z charts/postgresql-external/Chart.yaml -2025-11-24T09:08:04.8130278Z charts/postgresql-external/README.md -2025-11-24T09:08:04.8130474Z charts/postgresql-external/values.yaml -2025-11-24T09:08:04.8130677Z charts/postgresql-external/templates/ -2025-11-24T09:08:04.8130990Z charts/postgresql-external/templates/pg-endpoint-manager-cron.yaml -2025-11-24T09:08:04.8131225Z charts/postgresql-external/templates/_helpers.tpl -2025-11-24T09:08:04.8131482Z charts/postgresql-external/templates/service_account.yaml -2025-11-24T09:08:04.8131715Z charts/postgresql-external/templates/endpoint.yaml -2025-11-24T09:08:04.8131914Z charts/nginx-ingress-services/ -2025-11-24T09:08:04.8132119Z charts/nginx-ingress-services/Chart.yaml -2025-11-24T09:08:04.8132319Z charts/nginx-ingress-services/.helmignore -2025-11-24T09:08:04.8132521Z charts/nginx-ingress-services/README.md -2025-11-24T09:08:04.8132836Z charts/nginx-ingress-services/values.yaml -2025-11-24T09:08:04.8133046Z charts/nginx-ingress-services/templates/ -2025-11-24T09:08:04.8133279Z charts/nginx-ingress-services/templates/secret.yaml -2025-11-24T09:08:04.8133546Z charts/nginx-ingress-services/templates/secret_federator.yaml -2025-11-24T09:08:04.8133797Z charts/nginx-ingress-services/templates/ca_federator.yaml -2025-11-24T09:08:04.8134032Z charts/nginx-ingress-services/templates/service.yaml -2025-11-24T09:08:04.8134340Z charts/nginx-ingress-services/templates/federation-test-helper.yaml -2025-11-24T09:08:04.8134599Z charts/nginx-ingress-services/templates/ingress_federator.yaml -2025-11-24T09:08:04.8134964Z charts/nginx-ingress-services/templates/certificate.yaml -2025-11-24T09:08:04.8135261Z charts/nginx-ingress-services/templates/certificate_federator.yaml -2025-11-24T09:08:04.8135509Z charts/nginx-ingress-services/templates/_helpers.tpl -2025-11-24T09:08:04.8135738Z charts/nginx-ingress-services/templates/ingress.yaml -2025-11-24T09:08:04.8136018Z charts/nginx-ingress-services/templates/custom_solvers_secret.yaml -2025-11-24T09:08:04.8136271Z charts/nginx-ingress-services/templates/ingress_minio.yaml -2025-11-24T09:08:04.8136500Z charts/nginx-ingress-services/templates/issuer.yaml -2025-11-24T09:08:04.8136749Z charts/fake-aws/ -2025-11-24T09:08:04.8136937Z charts/fake-aws/Chart.yaml -2025-11-24T09:08:04.8137125Z charts/fake-aws/.helmignore -2025-11-24T09:08:04.8137320Z charts/fake-aws/requirements.lock -2025-11-24T09:08:04.8137510Z charts/fake-aws/requirements.yaml -2025-11-24T09:08:04.8137691Z charts/fake-aws/values.yaml -2025-11-24T09:08:04.8137877Z charts/fake-aws/charts/ -2025-11-24T09:08:04.8138082Z charts/fake-aws/charts/fake-aws-sqs/ -2025-11-24T09:08:04.8138300Z charts/fake-aws/charts/fake-aws-sqs/Chart.yaml -2025-11-24T09:08:04.8138516Z charts/fake-aws/charts/fake-aws-sqs/values.yaml -2025-11-24T09:08:04.8138732Z charts/fake-aws/charts/fake-aws-sqs/templates/ -2025-11-24T09:08:04.8138993Z charts/fake-aws/charts/fake-aws-sqs/templates/deployment.yaml -2025-11-24T09:08:04.8139257Z charts/fake-aws/charts/fake-aws-sqs/templates/configmap.yaml -2025-11-24T09:08:04.8139506Z charts/fake-aws/charts/fake-aws-sqs/templates/service.yaml -2025-11-24T09:08:04.8139749Z charts/fake-aws/charts/fake-aws-sqs/templates/_helpers.tpl -2025-11-24T09:08:04.8139947Z charts/fake-aws/charts/fake-aws-s3/ -2025-11-24T09:08:04.8140161Z charts/fake-aws/charts/fake-aws-s3/Chart.yaml -2025-11-24T09:08:04.8140371Z charts/fake-aws/charts/fake-aws-s3/.helmignore -2025-11-24T09:08:04.8140601Z charts/fake-aws/charts/fake-aws-s3/requirements.lock -2025-11-24T09:08:04.8140830Z charts/fake-aws/charts/fake-aws-s3/requirements.yaml -2025-11-24T09:08:04.8141043Z charts/fake-aws/charts/fake-aws-s3/values.yaml -2025-11-24T09:08:04.8141247Z charts/fake-aws/charts/fake-aws-s3/charts/ -2025-11-24T09:08:04.8141466Z charts/fake-aws/charts/fake-aws-s3/charts/minio/ -2025-11-24T09:08:04.8141703Z charts/fake-aws/charts/fake-aws-s3/charts/minio/Chart.yaml -2025-11-24T09:08:04.8141954Z charts/fake-aws/charts/fake-aws-s3/charts/minio/.helmignore -2025-11-24T09:08:04.8142264Z charts/fake-aws/charts/fake-aws-s3/charts/minio/README.md -2025-11-24T09:08:04.8142510Z charts/fake-aws/charts/fake-aws-s3/charts/minio/values.yaml -2025-11-24T09:08:04.8142851Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/ -2025-11-24T09:08:04.8143182Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/servicemonitor.yaml -2025-11-24T09:08:04.8143497Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/deployment.yaml -2025-11-24T09:08:04.8143818Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/console-ingress.yaml -2025-11-24T09:08:04.8144105Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/pvc.yaml -2025-11-24T09:08:04.8144440Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_create_bucket.txt -2025-11-24T09:08:04.8144747Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/secrets.yaml -2025-11-24T09:08:04.8145054Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/configmap.yaml -2025-11-24T09:08:04.8145344Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/NOTES.txt -2025-11-24T09:08:04.8145658Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/serviceaccount.yaml -2025-11-24T09:08:04.8145970Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_policy.tpl -2025-11-24T09:08:04.8146304Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_create_policy.txt -2025-11-24T09:08:04.8146619Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/console-service.yaml -2025-11-24T09:08:04.8146926Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/post-job.yaml -2025-11-24T09:08:04.8147371Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/service.yaml -2025-11-24T09:08:04.8147710Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/poddisruptionbudget.yaml -2025-11-24T09:08:04.8148068Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_custom_command.txt -2025-11-24T09:08:04.8148393Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_create_user.txt -2025-11-24T09:08:04.8148789Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/securitycontextconstraints.yaml -2025-11-24T09:08:04.8149103Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/networkpolicy.yaml -2025-11-24T09:08:04.8149472Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helpers.tpl -2025-11-24T09:08:04.8149766Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/ingress.yaml -2025-11-24T09:08:04.8150079Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/statefulset.yaml -2025-11-24T09:08:04.8150436Z charts/fake-aws/charts/fake-aws-s3/charts/minio/templates/_helper_create_svcacct.txt -2025-11-24T09:08:04.8150654Z charts/fake-aws/charts/fake-aws-s3/templates/ -2025-11-24T09:08:04.8150894Z charts/fake-aws/charts/fake-aws-s3/templates/reaper.yaml -2025-11-24T09:08:04.8151137Z charts/fake-aws/charts/fake-aws-s3/templates/_helpers.tpl -2025-11-24T09:08:04.8151336Z charts/fake-aws/charts/fake-aws-sns/ -2025-11-24T09:08:04.8151551Z charts/fake-aws/charts/fake-aws-sns/Chart.yaml -2025-11-24T09:08:04.8151771Z charts/fake-aws/charts/fake-aws-sns/values.yaml -2025-11-24T09:08:04.8151983Z charts/fake-aws/charts/fake-aws-sns/templates/ -2025-11-24T09:08:04.8152247Z charts/fake-aws/charts/fake-aws-sns/templates/deployment.yaml -2025-11-24T09:08:04.8152502Z charts/fake-aws/charts/fake-aws-sns/templates/service.yaml -2025-11-24T09:08:04.8152843Z charts/fake-aws/charts/fake-aws-sns/templates/_helpers.tpl -2025-11-24T09:08:04.8153037Z charts/fake-aws/charts/fake-aws-ses/ -2025-11-24T09:08:04.8153246Z charts/fake-aws/charts/fake-aws-ses/Chart.yaml -2025-11-24T09:08:04.8153464Z charts/fake-aws/charts/fake-aws-ses/values.yaml -2025-11-24T09:08:04.8153674Z charts/fake-aws/charts/fake-aws-ses/templates/ -2025-11-24T09:08:04.8153933Z charts/fake-aws/charts/fake-aws-ses/templates/deployment.yaml -2025-11-24T09:08:04.8154177Z charts/fake-aws/charts/fake-aws-ses/templates/service.yaml -2025-11-24T09:08:04.8154422Z charts/fake-aws/charts/fake-aws-ses/templates/_helpers.tpl -2025-11-24T09:08:04.8154682Z charts/fake-aws/templates/ -2025-11-24T09:08:04.8154881Z charts/fake-aws/templates/NOTES.txt -2025-11-24T09:08:04.8155076Z charts/elasticsearch-external/ -2025-11-24T09:08:04.8155287Z charts/elasticsearch-external/Chart.yaml -2025-11-24T09:08:04.8155492Z charts/elasticsearch-external/values.yaml -2025-11-24T09:08:04.8155695Z charts/elasticsearch-external/templates/ -2025-11-24T09:08:04.8155927Z charts/elasticsearch-external/templates/helpers.tpl -2025-11-24T09:08:04.8156168Z charts/elasticsearch-external/templates/endpoint.yaml -2025-11-24T09:08:04.8156358Z charts/rabbitmq-external/ -2025-11-24T09:08:04.8156557Z charts/rabbitmq-external/Chart.yaml -2025-11-24T09:08:04.8156748Z charts/rabbitmq-external/values.yaml -2025-11-24T09:08:04.8156943Z charts/rabbitmq-external/templates/ -2025-11-24T09:08:04.8157157Z charts/rabbitmq-external/templates/helpers.tpl -2025-11-24T09:08:04.8157380Z charts/rabbitmq-external/templates/endpoint.yaml -2025-11-24T09:08:04.8157580Z charts/nginx-ingress-controller/ -2025-11-24T09:08:04.8157791Z charts/nginx-ingress-controller/Chart.yaml -2025-11-24T09:08:04.8158004Z charts/nginx-ingress-controller/.helmignore -2025-11-24T09:08:04.8158228Z charts/nginx-ingress-controller/requirements.lock -2025-11-24T09:08:04.8158442Z charts/nginx-ingress-controller/README.md -2025-11-24T09:08:04.8158661Z charts/nginx-ingress-controller/requirements.yaml -2025-11-24T09:08:04.8158869Z charts/nginx-ingress-controller/values.yaml -2025-11-24T09:08:04.8159071Z charts/nginx-ingress-controller/charts/ -2025-11-24T09:08:04.8159311Z charts/nginx-ingress-controller/charts/nginx-ingress/ -2025-11-24T09:08:04.8159702Z charts/nginx-ingress-controller/charts/nginx-ingress/Chart.yaml -2025-11-24T09:08:04.8159985Z charts/nginx-ingress-controller/charts/nginx-ingress/.helmignore -2025-11-24T09:08:04.8160250Z charts/nginx-ingress-controller/charts/nginx-ingress/README.md -2025-11-24T09:08:04.8160521Z charts/nginx-ingress-controller/charts/nginx-ingress/values.yaml -2025-11-24T09:08:04.8160767Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/ -2025-11-24T09:08:04.8161117Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-tcp-values.yaml -2025-11-24T09:08:04.8161579Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-tcp-udp-configMapNamespace-values.yaml -2025-11-24T09:08:04.8162026Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-webhook-values.yaml -2025-11-24T09:08:04.8162409Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-nodeport-values.yaml -2025-11-24T09:08:04.8163159Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-tcp-udp-configMapNamespace-values.yaml -2025-11-24T09:08:04.8163555Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-webhook-values.yaml -2025-11-24T09:08:04.8163960Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-autoscaling-values.yaml -2025-11-24T09:08:04.8164328Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-metrics-values.yaml -2025-11-24T09:08:04.8164694Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-nodeport-values.yaml -2025-11-24T09:08:04.8165062Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-headers-values.yaml -2025-11-24T09:08:04.8165463Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-customconfig-values.yaml -2025-11-24T09:08:04.8165826Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-default-values.yaml -2025-11-24T09:08:04.8166188Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-tcp-udp-values.yaml -2025-11-24T09:08:04.8166557Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-default-values.yaml -2025-11-24T09:08:04.8166907Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-psp-values.yaml -2025-11-24T09:08:04.8167315Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-customnodeport-values.yaml -2025-11-24T09:08:04.8167710Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-customconfig-values.yaml -2025-11-24T09:08:04.8168206Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-webhook-and-psp-values.yaml -2025-11-24T09:08:04.8168569Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-headers-values.yaml -2025-11-24T09:08:04.8168975Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-customnodeport-values.yaml -2025-11-24T09:08:04.8169334Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/daemonset-tcp-udp-values.yaml -2025-11-24T09:08:04.8169730Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-webhook-and-psp-values.yaml -2025-11-24T09:08:04.8170101Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-metrics-values.yaml -2025-11-24T09:08:04.8170447Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deployment-tcp-values.yaml -2025-11-24T09:08:04.8170789Z charts/nginx-ingress-controller/charts/nginx-ingress/ci/deamonset-psp-values.yaml -2025-11-24T09:08:04.8171048Z charts/nginx-ingress-controller/charts/nginx-ingress/OWNERS -2025-11-24T09:08:04.8171318Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/ -2025-11-24T09:08:04.8171722Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-webhook-service.yaml -2025-11-24T09:08:04.8172120Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-deployment.yaml -2025-11-24T09:08:04.8172495Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-psp.yaml -2025-11-24T09:08:04.8173044Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-service.yaml -2025-11-24T09:08:04.8173565Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-deployment.yaml -2025-11-24T09:08:04.8173958Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-rolebinding.yaml -2025-11-24T09:08:04.8174321Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-role.yaml -2025-11-24T09:08:04.8174709Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-daemonset.yaml -2025-11-24T09:08:04.8175091Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-role.yaml -2025-11-24T09:08:04.8175438Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-hpa.yaml -2025-11-24T09:08:04.8175880Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-configmap.yaml -2025-11-24T09:08:04.8176272Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-service.yaml -2025-11-24T09:08:04.8176673Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-metrics-service.yaml -2025-11-24T09:08:04.8176994Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/NOTES.txt -2025-11-24T09:08:04.8177371Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/addheaders-configmap.yaml -2025-11-24T09:08:04.8177770Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-servicemonitor.yaml -2025-11-24T09:08:04.8178174Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-rolebinding.yaml -2025-11-24T09:08:04.8178519Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/tcp-configmap.yaml -2025-11-24T09:08:04.8178858Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/clusterrole.yaml -2025-11-24T09:08:04.8179196Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/udp-configmap.yaml -2025-11-24T09:08:04.8179629Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-poddisruptionbudget.yaml -2025-11-24T09:08:04.8180078Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-poddisruptionbudget.yaml -2025-11-24T09:08:04.8180501Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/default-backend-serviceaccount.yaml -2025-11-24T09:08:04.8180851Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/ -2025-11-24T09:08:04.8181250Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/ -2025-11-24T09:08:04.8181745Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/psp.yaml -2025-11-24T09:08:04.8182219Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/job-patchWebhook.yaml -2025-11-24T09:08:04.8182775Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/serviceaccount.yaml -2025-11-24T09:08:04.8183229Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/rolebinding.yaml -2025-11-24T09:08:04.8183677Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/clusterrole.yaml -2025-11-24T09:08:04.8184103Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/role.yaml -2025-11-24T09:08:04.8184572Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/job-createSecret.yaml -2025-11-24T09:08:04.8185061Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/job-patch/clusterrolebinding.yaml -2025-11-24T09:08:04.8185506Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/admission-webhooks/validating-webhook.yaml -2025-11-24T09:08:04.8185918Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-prometheusrules.yaml -2025-11-24T09:08:04.8186248Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/_helpers.tpl -2025-11-24T09:08:04.8186647Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-serviceaccount.yaml -2025-11-24T09:08:04.8187171Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/controller-psp.yaml -2025-11-24T09:08:04.8187573Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/proxyheaders-configmap.yaml -2025-11-24T09:08:04.8187949Z charts/nginx-ingress-controller/charts/nginx-ingress/templates/clusterrolebinding.yaml -2025-11-24T09:08:04.8188163Z charts/nginx-ingress-controller/templates/ -2025-11-24T09:08:04.8188409Z charts/nginx-ingress-controller/templates/_helpers.tpl -2025-11-24T09:08:04.8188590Z values/ -2025-11-24T09:08:04.8188773Z values/fluent-bit/ -2025-11-24T09:08:04.8188984Z values/fluent-bit/prod-values.example.yaml -2025-11-24T09:08:04.8189229Z values/rabbitmq/ -2025-11-24T09:08:04.8189433Z values/rabbitmq/prod-secrets.example.yaml -2025-11-24T09:08:04.8189635Z values/rabbitmq/prod-values.example.yaml -2025-11-24T09:08:04.8189817Z values/aws-ingress/ -2025-11-24T09:08:04.8190003Z values/minio-external/ -2025-11-24T09:08:04.8190223Z values/minio-external/prod-values.example.yaml -2025-11-24T09:08:04.8190400Z values/webapp/ -2025-11-24T09:08:04.8190609Z values/webapp/prod-values.example.yaml -2025-11-24T09:08:04.8190801Z values/k8ssandra-operator/ -2025-11-24T09:08:04.8191034Z values/k8ssandra-operator/prod-values.example.yaml -2025-11-24T09:08:04.8191222Z values/databases-ephemeral/ -2025-11-24T09:08:04.8191458Z values/databases-ephemeral/prod-values.example.yaml -2025-11-24T09:08:04.8191654Z values/k8ssandra-test-cluster/ -2025-11-24T09:08:04.8191903Z values/k8ssandra-test-cluster/prod-values.example.yaml -2025-11-24T09:08:04.8192082Z values/smtp/ -2025-11-24T09:08:04.8192283Z values/smtp/prod-values.example.yaml -2025-11-24T09:08:04.8192462Z values/coturn/ -2025-11-24T09:08:04.8192770Z values/coturn/prod-secrets.example.yaml -2025-11-24T09:08:04.8192970Z values/coturn/prod-values.example.yaml -2025-11-24T09:08:04.8193153Z values/cert-manager/ -2025-11-24T09:08:04.8193368Z values/cert-manager/prod-values.example.yaml -2025-11-24T09:08:04.8193545Z values/reaper/ -2025-11-24T09:08:04.8193748Z values/reaper/prod-values.example.yaml -2025-11-24T09:08:04.8193923Z values/sftd/ -2025-11-24T09:08:04.8194125Z values/sftd/prod-values.example.yaml -2025-11-24T09:08:04.8194305Z values/keycloakx/ -2025-11-24T09:08:04.8194505Z values/keycloakx/prod-values.example.yaml -2025-11-24T09:08:04.8194697Z values/step-certificates/ -2025-11-24T09:08:04.8194924Z values/step-certificates/prod-values.example.yaml -2025-11-24T09:08:04.8195112Z values/ldap-scim-bridge/ -2025-11-24T09:08:04.8195375Z values/account-pages/ -2025-11-24T09:08:04.8195596Z values/account-pages/prod-values.example.yaml -2025-11-24T09:08:04.8195782Z values/redis-ephemeral/ -2025-11-24T09:08:04.8196009Z values/redis-ephemeral/prod-values.example.yaml -2025-11-24T09:08:04.8196183Z values/wire-server/ -2025-11-24T09:08:04.8196400Z values/wire-server/prod-secrets.example.yaml -2025-11-24T09:08:04.8196611Z values/wire-server/prod-values.example.yaml -2025-11-24T09:08:04.8196797Z values/smallstep-accomp/ -2025-11-24T09:08:04.8197020Z values/smallstep-accomp/prod-values.example.yaml -2025-11-24T09:08:04.8197198Z values/restund/ -2025-11-24T09:08:04.8197403Z values/restund/prod-values.example.yaml -2025-11-24T09:08:04.8197593Z values/cassandra-external/ -2025-11-24T09:08:04.8197819Z values/cassandra-external/prod-values.example.yaml -2025-11-24T09:08:04.8197997Z values/wire-utility/ -2025-11-24T09:08:04.8198207Z values/wire-utility/prod-values.example.yaml -2025-11-24T09:08:04.8198408Z values/ingress-nginx-controller/ -2025-11-24T09:08:04.8198669Z values/ingress-nginx-controller/prod-values.example.yaml -2025-11-24T09:08:04.8198851Z values/team-settings/ -2025-11-24T09:08:04.8199074Z values/team-settings/prod-secrets.example.yaml -2025-11-24T09:08:04.8199294Z values/team-settings/prod-values.example.yaml -2025-11-24T09:08:04.8199490Z values/kube-prometheus-stack/ -2025-11-24T09:08:04.8199735Z values/kube-prometheus-stack/prod-secrets.example.yaml -2025-11-24T09:08:04.8199926Z values/postgresql-external/ -2025-11-24T09:08:04.8200161Z values/postgresql-external/prod-values.example.yaml -2025-11-24T09:08:04.8200357Z values/nginx-ingress-services/ -2025-11-24T09:08:04.8200754Z values/nginx-ingress-services/prod-secrets.example.yaml -2025-11-24T09:08:04.8201001Z values/nginx-ingress-services/prod-values.example.yaml -2025-11-24T09:08:04.8201180Z values/fake-aws/ -2025-11-24T09:08:04.8201384Z values/fake-aws/prod-values.example.yaml -2025-11-24T09:08:04.8201577Z values/elasticsearch-external/ -2025-11-24T09:08:04.8201817Z values/elasticsearch-external/prod-values.example.yaml -2025-11-24T09:08:04.8202008Z values/rabbitmq-external/ -2025-11-24T09:08:04.8202232Z values/rabbitmq-external/prod-values.example.yaml -2025-11-24T09:08:04.8202409Z ansible/ -2025-11-24T09:08:04.8202768Z ansible/kube-minio-static-files.yml -2025-11-24T09:08:04.8202953Z ansible/admin_users.yml -2025-11-24T09:08:04.8203131Z ansible/tinc.yml -2025-11-24T09:08:04.8203314Z ansible/helm_external.yml -2025-11-24T09:08:04.8203501Z ansible/postgresql-deploy.yml -2025-11-24T09:08:04.8203683Z ansible/kubernetes.yml -2025-11-24T09:08:04.8203870Z ansible/backup_rabbitmq.yml -2025-11-24T09:08:04.8204049Z ansible/ntp.yml -2025-11-24T09:08:04.8204226Z ansible/roles/ -2025-11-24T09:08:04.8204423Z ansible/roles/rabbitmq-cluster/ -2025-11-24T09:08:04.8204629Z ansible/roles/rabbitmq-cluster/defaults/ -2025-11-24T09:08:04.8204849Z ansible/roles/rabbitmq-cluster/defaults/main.yml -2025-11-24T09:08:04.8205045Z ansible/roles/rabbitmq-cluster/tasks/ -2025-11-24T09:08:04.8205297Z ansible/roles/rabbitmq-cluster/tasks/enable_ha_queues.yml -2025-11-24T09:08:04.8205518Z ansible/roles/rabbitmq-cluster/tasks/install.yml -2025-11-24T09:08:04.8205732Z ansible/roles/rabbitmq-cluster/tasks/hosts.yml -2025-11-24T09:08:04.8205949Z ansible/roles/rabbitmq-cluster/tasks/config.yml -2025-11-24T09:08:04.8206189Z ansible/roles/rabbitmq-cluster/tasks/erlang_cookie.yml -2025-11-24T09:08:04.8206421Z ansible/roles/rabbitmq-cluster/tasks/configure_dns.yml -2025-11-24T09:08:04.8206657Z ansible/roles/rabbitmq-cluster/tasks/join_cluster.yml -2025-11-24T09:08:04.8206910Z ansible/roles/rabbitmq-cluster/tasks/service.yaml -2025-11-24T09:08:04.8207124Z ansible/roles/rabbitmq-cluster/tasks/cluster.yml -2025-11-24T09:08:04.8207337Z ansible/roles/rabbitmq-cluster/tasks/tls.yml -2025-11-24T09:08:04.8207570Z ansible/roles/rabbitmq-cluster/tasks/create_users.yml -2025-11-24T09:08:04.8207779Z ansible/roles/rabbitmq-cluster/tasks/main.yml -2025-11-24T09:08:04.8207982Z ansible/roles/rabbitmq-cluster/handlers/ -2025-11-24T09:08:04.8208207Z ansible/roles/rabbitmq-cluster/handlers/main.yml -2025-11-24T09:08:04.8208500Z ansible/roles/rabbitmq-cluster/templates/ -2025-11-24T09:08:04.8208759Z ansible/roles/rabbitmq-cluster/templates/erlang.cookie.j2 -2025-11-24T09:08:04.8208979Z ansible/roles/rabbitmq-cluster/templates/etc/ -2025-11-24T09:08:04.8209214Z ansible/roles/rabbitmq-cluster/templates/etc/default/ -2025-11-24T09:08:04.8209542Z ansible/roles/rabbitmq-cluster/templates/etc/default/rabbitmq-server.j2 -2025-11-24T09:08:04.8209785Z ansible/roles/rabbitmq-cluster/templates/etc/rabbitmq/ -2025-11-24T09:08:04.8210110Z ansible/roles/rabbitmq-cluster/templates/etc/rabbitmq/rabbitmq.config.j2 -2025-11-24T09:08:04.8210304Z ansible/roles/systemd-coredump/ -2025-11-24T09:08:04.8210514Z ansible/roles/systemd-coredump/defaults/ -2025-11-24T09:08:04.8210737Z ansible/roles/systemd-coredump/defaults/main.yml -2025-11-24T09:08:04.8210940Z ansible/roles/systemd-coredump/tasks/ -2025-11-24T09:08:04.8211147Z ansible/roles/systemd-coredump/tasks/main.yml -2025-11-24T09:08:04.8211339Z ansible/roles/etcd-helpers/ -2025-11-24T09:08:04.8211541Z ansible/roles/etcd-helpers/defaults/ -2025-11-24T09:08:04.8211755Z ansible/roles/etcd-helpers/defaults/main.yml -2025-11-24T09:08:04.8211950Z ansible/roles/etcd-helpers/tasks/ -2025-11-24T09:08:04.8212158Z ansible/roles/etcd-helpers/tasks/main.yml -2025-11-24T09:08:04.8212358Z ansible/roles/etcd-helpers/templates/ -2025-11-24T09:08:04.8212604Z ansible/roles/etcd-helpers/templates/etcd-health.sh.j2 -2025-11-24T09:08:04.8212935Z ansible/roles/etcd-helpers/templates/etcdctl3.sh.j2 -2025-11-24T09:08:04.8213134Z ansible/roles/minio-static-files/ -2025-11-24T09:08:04.8213342Z ansible/roles/minio-static-files/defaults/ -2025-11-24T09:08:04.8213695Z ansible/roles/minio-static-files/defaults/main.yml -2025-11-24T09:08:04.8213906Z ansible/roles/minio-static-files/tasks/ -2025-11-24T09:08:04.8214128Z ansible/roles/minio-static-files/tasks/main.yml -2025-11-24T09:08:04.8214328Z ansible/roles/minio-static-files/files/ -2025-11-24T09:08:04.8214543Z ansible/roles/minio-static-files/files/ios.json -2025-11-24T09:08:04.8214771Z ansible/roles/minio-static-files/files/android.json -2025-11-24T09:08:04.8214982Z ansible/roles/minio-static-files/templates/ -2025-11-24T09:08:04.8215239Z ansible/roles/minio-static-files/templates/deeplink.json.j2 -2025-11-24T09:08:04.8215560Z ansible/roles/minio-static-files/templates/deeplink.html.j2 -2025-11-24T09:08:04.8215743Z ansible/rabbitmq.yml -2025-11-24T09:08:04.8215933Z ansible/provision-sft.yml -2025-11-24T09:08:04.8216122Z ansible/roles-external/ -2025-11-24T09:08:04.8216322Z ansible/roles-external/kubespray/ -2025-11-24T09:08:04.8216535Z ansible/roles-external/kubespray/Dockerfile -2025-11-24T09:08:04.8216757Z ansible/roles-external/kubespray/Vagrantfile -2025-11-24T09:08:04.8216968Z ansible/roles-external/kubespray/CHANGELOG.md -2025-11-24T09:08:04.8217180Z ansible/roles-external/kubespray/setup.cfg -2025-11-24T09:08:04.8217385Z ansible/roles-external/kubespray/run.rc -2025-11-24T09:08:04.8217592Z ansible/roles-external/kubespray/contrib/ -2025-11-24T09:08:04.8217847Z ansible/roles-external/kubespray/contrib/inventory_builder/ -2025-11-24T09:08:04.8218154Z ansible/roles-external/kubespray/contrib/inventory_builder/setup.cfg -2025-11-24T09:08:04.8218481Z ansible/roles-external/kubespray/contrib/inventory_builder/requirements.txt -2025-11-24T09:08:04.8218782Z ansible/roles-external/kubespray/contrib/inventory_builder/setup.py -2025-11-24T09:08:04.8219122Z ansible/roles-external/kubespray/contrib/inventory_builder/test-requirements.txt -2025-11-24T09:08:04.8219430Z ansible/roles-external/kubespray/contrib/inventory_builder/inventory.py -2025-11-24T09:08:04.8219721Z ansible/roles-external/kubespray/contrib/inventory_builder/tox.ini -2025-11-24T09:08:04.8220009Z ansible/roles-external/kubespray/contrib/inventory_builder/tests/ -2025-11-24T09:08:04.8220360Z ansible/roles-external/kubespray/contrib/inventory_builder/tests/test_inventory.py -2025-11-24T09:08:04.8220587Z ansible/roles-external/kubespray/contrib/offline/ -2025-11-24T09:08:04.8220887Z ansible/roles-external/kubespray/contrib/offline/docker-daemon.json -2025-11-24T09:08:04.8221253Z ansible/roles-external/kubespray/contrib/offline/generate_list.yml -2025-11-24T09:08:04.8221506Z ansible/roles-external/kubespray/contrib/offline/nginx.conf -2025-11-24T09:08:04.8221760Z ansible/roles-external/kubespray/contrib/offline/README.md -2025-11-24T09:08:04.8222083Z ansible/roles-external/kubespray/contrib/offline/manage-offline-files.sh -2025-11-24T09:08:04.8222355Z ansible/roles-external/kubespray/contrib/offline/registries.conf -2025-11-24T09:08:04.8222735Z ansible/roles-external/kubespray/contrib/offline/generate_list.sh -2025-11-24T09:08:04.8223104Z ansible/roles-external/kubespray/contrib/offline/manage-offline-container-images.sh -2025-11-24T09:08:04.8223336Z ansible/roles-external/kubespray/contrib/kvm-setup/ -2025-11-24T09:08:04.8223648Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/ -2025-11-24T09:08:04.8223941Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/ -2025-11-24T09:08:04.8224261Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/tasks/ -2025-11-24T09:08:04.8224603Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/tasks/user.yml -2025-11-24T09:08:04.8224948Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/tasks/sysctl.yml -2025-11-24T09:08:04.8225289Z ansible/roles-external/kubespray/contrib/kvm-setup/roles/kvm-setup/tasks/main.yml -2025-11-24T09:08:04.8225551Z ansible/roles-external/kubespray/contrib/kvm-setup/README.md -2025-11-24T09:08:04.8225821Z ansible/roles-external/kubespray/contrib/kvm-setup/group_vars/ -2025-11-24T09:08:04.8226097Z ansible/roles-external/kubespray/contrib/kvm-setup/group_vars/all -2025-11-24T09:08:04.8226499Z ansible/roles-external/kubespray/contrib/kvm-setup/kvm-setup.yml -2025-11-24T09:08:04.8226738Z ansible/roles-external/kubespray/contrib/packaging/ -2025-11-24T09:08:04.8226986Z ansible/roles-external/kubespray/contrib/packaging/rpm/ -2025-11-24T09:08:04.8227305Z ansible/roles-external/kubespray/contrib/packaging/rpm/kubespray.spec -2025-11-24T09:08:04.8227521Z ansible/roles-external/kubespray/contrib/dind/ -2025-11-24T09:08:04.8227790Z ansible/roles-external/kubespray/contrib/dind/requirements.txt -2025-11-24T09:08:04.8228026Z ansible/roles-external/kubespray/contrib/dind/roles/ -2025-11-24T09:08:04.8228368Z ansible/roles-external/kubespray/contrib/dind/roles/dind-cluster/ -2025-11-24T09:08:04.8228686Z ansible/roles-external/kubespray/contrib/dind/roles/dind-cluster/tasks/ -2025-11-24T09:08:04.8229017Z ansible/roles-external/kubespray/contrib/dind/roles/dind-cluster/tasks/main.yaml -2025-11-24T09:08:04.8229278Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/ -2025-11-24T09:08:04.8229587Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/tasks/ -2025-11-24T09:08:04.8229919Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/tasks/main.yaml -2025-11-24T09:08:04.8230237Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/templates/ -2025-11-24T09:08:04.8230648Z ansible/roles-external/kubespray/contrib/dind/roles/dind-host/templates/inventory_builder.sh.j2 -2025-11-24T09:08:04.8230986Z ansible/roles-external/kubespray/contrib/dind/test-some_distros-most_CNIs.env -2025-11-24T09:08:04.8231363Z ansible/roles-external/kubespray/contrib/dind/test-some_distros-kube_router_combo.env -2025-11-24T09:08:04.8231612Z ansible/roles-external/kubespray/contrib/dind/README.md -2025-11-24T09:08:04.8231895Z ansible/roles-external/kubespray/contrib/dind/kubespray-dind.yaml -2025-11-24T09:08:04.8232138Z ansible/roles-external/kubespray/contrib/dind/group_vars/ -2025-11-24T09:08:04.8232405Z ansible/roles-external/kubespray/contrib/dind/group_vars/all/ -2025-11-24T09:08:04.8232825Z ansible/roles-external/kubespray/contrib/dind/group_vars/all/all.yaml -2025-11-24T09:08:04.8233147Z ansible/roles-external/kubespray/contrib/dind/group_vars/all/distro.yaml -2025-11-24T09:08:04.8233472Z ansible/roles-external/kubespray/contrib/dind/test-most_distros-some_CNIs.env -2025-11-24T09:08:04.8233741Z ansible/roles-external/kubespray/contrib/dind/dind-cluster.yaml -2025-11-24T09:08:04.8234089Z ansible/roles-external/kubespray/contrib/dind/run-test-distros.sh -2025-11-24T09:08:04.8234321Z ansible/roles-external/kubespray/contrib/dind/hosts -2025-11-24T09:08:04.8234540Z ansible/roles-external/kubespray/contrib/misc/ -2025-11-24T09:08:04.8234843Z ansible/roles-external/kubespray/contrib/misc/clusteradmin-rbac.yml -2025-11-24T09:08:04.8235085Z ansible/roles-external/kubespray/contrib/aws_inventory/ -2025-11-24T09:08:04.8235392Z ansible/roles-external/kubespray/contrib/aws_inventory/requirements.txt -2025-11-24T09:08:04.8235742Z ansible/roles-external/kubespray/contrib/aws_inventory/kubespray-aws-inventory.py -2025-11-24T09:08:04.8235973Z ansible/roles-external/kubespray/contrib/terraform/ -2025-11-24T09:08:04.8236230Z ansible/roles-external/kubespray/contrib/terraform/hetzner/ -2025-11-24T09:08:04.8236567Z ansible/roles-external/kubespray/contrib/terraform/hetzner/sample-inventory/ -2025-11-24T09:08:04.8236978Z ansible/roles-external/kubespray/contrib/terraform/hetzner/sample-inventory/cluster.tfvars -2025-11-24T09:08:04.8237358Z ansible/roles-external/kubespray/contrib/terraform/hetzner/sample-inventory/group_vars -2025-11-24T09:08:04.8237682Z ansible/roles-external/kubespray/contrib/terraform/hetzner/default.tfvars -2025-11-24T09:08:04.8237968Z ansible/roles-external/kubespray/contrib/terraform/hetzner/main.tf -2025-11-24T09:08:04.8238278Z ansible/roles-external/kubespray/contrib/terraform/hetzner/variables.tf -2025-11-24T09:08:04.8238579Z ansible/roles-external/kubespray/contrib/terraform/hetzner/output.tf -2025-11-24T09:08:04.8238872Z ansible/roles-external/kubespray/contrib/terraform/hetzner/README.md -2025-11-24T09:08:04.8239317Z ansible/roles-external/kubespray/contrib/terraform/hetzner/versions.tf -2025-11-24T09:08:04.8239625Z ansible/roles-external/kubespray/contrib/terraform/hetzner/templates/ -2025-11-24T09:08:04.8239979Z ansible/roles-external/kubespray/contrib/terraform/hetzner/templates/inventory.tpl -2025-11-24T09:08:04.8240275Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/ -2025-11-24T09:08:04.8240698Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/ -2025-11-24T09:08:04.8241143Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/main.tf -2025-11-24T09:08:04.8241655Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/variables.tf -2025-11-24T09:08:04.8242101Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/versions.tf -2025-11-24T09:08:04.8242543Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/outputs.tf -2025-11-24T09:08:04.8243090Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/templates/ -2025-11-24T09:08:04.8243616Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster-flatcar/templates/machine.yaml.tmpl -2025-11-24T09:08:04.8243994Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/ -2025-11-24T09:08:04.8244404Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/main.tf -2025-11-24T09:08:04.8244830Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/variables.tf -2025-11-24T09:08:04.8245251Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/output.tf -2025-11-24T09:08:04.8245670Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/versions.tf -2025-11-24T09:08:04.8246085Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/templates/ -2025-11-24T09:08:04.8246568Z ansible/roles-external/kubespray/contrib/terraform/hetzner/modules/kubernetes-cluster/templates/cloud-init.tmpl -2025-11-24T09:08:04.8246818Z ansible/roles-external/kubespray/contrib/terraform/aws/ -2025-11-24T09:08:04.8247148Z ansible/roles-external/kubespray/contrib/terraform/aws/sample-inventory/ -2025-11-24T09:08:04.8247688Z ansible/roles-external/kubespray/contrib/terraform/aws/sample-inventory/cluster.tfvars -2025-11-24T09:08:04.8248493Z ansible/roles-external/kubespray/contrib/terraform/aws/sample-inventory/group_vars -2025-11-24T09:08:04.8248933Z ansible/roles-external/kubespray/contrib/terraform/aws/create-infrastructure.tf -2025-11-24T09:08:04.8253928Z ansible/roles-external/kubespray/contrib/terraform/aws/variables.tf -2025-11-24T09:08:04.8254233Z ansible/roles-external/kubespray/contrib/terraform/aws/output.tf -2025-11-24T09:08:04.8254517Z ansible/roles-external/kubespray/contrib/terraform/aws/.gitignore -2025-11-24T09:08:04.8254796Z ansible/roles-external/kubespray/contrib/terraform/aws/README.md -2025-11-24T09:08:04.8255147Z ansible/roles-external/kubespray/contrib/terraform/aws/credentials.tfvars.example -2025-11-24T09:08:04.8255407Z ansible/roles-external/kubespray/contrib/terraform/aws/docs/ -2025-11-24T09:08:04.8255745Z ansible/roles-external/kubespray/contrib/terraform/aws/docs/aws_kubespray.png -2025-11-24T09:08:04.8256091Z ansible/roles-external/kubespray/contrib/terraform/aws/terraform.tfvars.example -2025-11-24T09:08:04.8256374Z ansible/roles-external/kubespray/contrib/terraform/aws/templates/ -2025-11-24T09:08:04.8256705Z ansible/roles-external/kubespray/contrib/terraform/aws/templates/inventory.tpl -2025-11-24T09:08:04.8257020Z ansible/roles-external/kubespray/contrib/terraform/aws/terraform.tfvars -2025-11-24T09:08:04.8257285Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/ -2025-11-24T09:08:04.8257581Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/vpc/ -2025-11-24T09:08:04.8257903Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/vpc/main.tf -2025-11-24T09:08:04.8258411Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/vpc/variables.tf -2025-11-24T09:08:04.8258747Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/vpc/outputs.tf -2025-11-24T09:08:04.8259038Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/nlb/ -2025-11-24T09:08:04.8259349Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/nlb/main.tf -2025-11-24T09:08:04.8259679Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/nlb/variables.tf -2025-11-24T09:08:04.8260068Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/nlb/outputs.tf -2025-11-24T09:08:04.8260361Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/iam/ -2025-11-24T09:08:04.8260680Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/iam/main.tf -2025-11-24T09:08:04.8261014Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/iam/variables.tf -2025-11-24T09:08:04.8261345Z ansible/roles-external/kubespray/contrib/terraform/aws/modules/iam/outputs.tf -2025-11-24T09:08:04.8261601Z ansible/roles-external/kubespray/contrib/terraform/equinix/ -2025-11-24T09:08:04.8261928Z ansible/roles-external/kubespray/contrib/terraform/equinix/sample-inventory/ -2025-11-24T09:08:04.8262332Z ansible/roles-external/kubespray/contrib/terraform/equinix/sample-inventory/cluster.tfvars -2025-11-24T09:08:04.8262851Z ansible/roles-external/kubespray/contrib/terraform/equinix/sample-inventory/group_vars -2025-11-24T09:08:04.8263174Z ansible/roles-external/kubespray/contrib/terraform/equinix/kubespray.tf -2025-11-24T09:08:04.8263473Z ansible/roles-external/kubespray/contrib/terraform/equinix/variables.tf -2025-11-24T09:08:04.8263779Z ansible/roles-external/kubespray/contrib/terraform/equinix/output.tf -2025-11-24T09:08:04.8264082Z ansible/roles-external/kubespray/contrib/terraform/equinix/README.md -2025-11-24T09:08:04.8264401Z ansible/roles-external/kubespray/contrib/terraform/equinix/provider.tf -2025-11-24T09:08:04.8264683Z ansible/roles-external/kubespray/contrib/terraform/equinix/hosts -2025-11-24T09:08:04.8264943Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/ -2025-11-24T09:08:04.8265277Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/sample-inventory/ -2025-11-24T09:08:04.8265675Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/sample-inventory/cluster.tfvars -2025-11-24T09:08:04.8266137Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/sample-inventory/group_vars -2025-11-24T09:08:04.8266435Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/main.tf -2025-11-24T09:08:04.8266749Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/variables.tf -2025-11-24T09:08:04.8267051Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/output.tf -2025-11-24T09:08:04.8267357Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/.gitignore -2025-11-24T09:08:04.8267656Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/README.md -2025-11-24T09:08:04.8267969Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/terraform.tf -2025-11-24T09:08:04.8268317Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/generate-inventory.sh -2025-11-24T09:08:04.8268615Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/ -2025-11-24T09:08:04.8268989Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/ -2025-11-24T09:08:04.8269400Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/main.tf -2025-11-24T09:08:04.8411476Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/variables.tf -2025-11-24T09:08:04.8412131Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/terraform.tf -2025-11-24T09:08:04.8412889Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/outputs.tf -2025-11-24T09:08:04.8413440Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/templates/ -2025-11-24T09:08:04.8414456Z ansible/roles-external/kubespray/contrib/terraform/nifcloud/modules/kubernetes-cluster/templates/userdata.tftpl -2025-11-24T09:08:04.8414815Z ansible/roles-external/kubespray/contrib/terraform/terraform.py -2025-11-24T09:08:04.8415124Z ansible/roles-external/kubespray/contrib/terraform/gcp/ -2025-11-24T09:08:04.8415459Z ansible/roles-external/kubespray/contrib/terraform/gcp/main.tf -2025-11-24T09:08:04.8416164Z ansible/roles-external/kubespray/contrib/terraform/gcp/tfvars.json -2025-11-24T09:08:04.8416764Z ansible/roles-external/kubespray/contrib/terraform/gcp/variables.tf -2025-11-24T09:08:04.8417280Z ansible/roles-external/kubespray/contrib/terraform/gcp/output.tf -2025-11-24T09:08:04.8417620Z ansible/roles-external/kubespray/contrib/terraform/gcp/README.md -2025-11-24T09:08:04.8418040Z ansible/roles-external/kubespray/contrib/terraform/gcp/generate-inventory.sh -2025-11-24T09:08:04.8418372Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/ -2025-11-24T09:08:04.8418819Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/kubernetes-cluster/ -2025-11-24T09:08:04.8419313Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/kubernetes-cluster/main.tf -2025-11-24T09:08:04.8419803Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/kubernetes-cluster/variables.tf -2025-11-24T09:08:04.8420192Z ansible/roles-external/kubespray/contrib/terraform/gcp/modules/kubernetes-cluster/output.tf -2025-11-24T09:08:04.8420459Z ansible/roles-external/kubespray/contrib/terraform/exoscale/ -2025-11-24T09:08:04.8420792Z ansible/roles-external/kubespray/contrib/terraform/exoscale/sample-inventory/ -2025-11-24T09:08:04.8421186Z ansible/roles-external/kubespray/contrib/terraform/exoscale/sample-inventory/cluster.tfvars -2025-11-24T09:08:04.8421580Z ansible/roles-external/kubespray/contrib/terraform/exoscale/sample-inventory/group_vars -2025-11-24T09:08:04.8421916Z ansible/roles-external/kubespray/contrib/terraform/exoscale/default.tfvars -2025-11-24T09:08:04.8422220Z ansible/roles-external/kubespray/contrib/terraform/exoscale/main.tf -2025-11-24T09:08:04.8422540Z ansible/roles-external/kubespray/contrib/terraform/exoscale/variables.tf -2025-11-24T09:08:04.8666515Z ansible/roles-external/kubespray/contrib/terraform/exoscale/output.tf -2025-11-24T09:08:04.8667061Z ansible/roles-external/kubespray/contrib/terraform/exoscale/README.md -2025-11-24T09:08:04.8667774Z ansible/roles-external/kubespray/contrib/terraform/exoscale/versions.tf -2025-11-24T09:08:04.8668103Z ansible/roles-external/kubespray/contrib/terraform/exoscale/templates/ -2025-11-24T09:08:04.8668478Z ansible/roles-external/kubespray/contrib/terraform/exoscale/templates/inventory.tpl -2025-11-24T09:08:04.8668798Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/ -2025-11-24T09:08:04.8669202Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/ -2025-11-24T09:08:04.8669627Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/main.tf -2025-11-24T09:08:04.8670075Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/variables.tf -2025-11-24T09:08:04.8670483Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/output.tf -2025-11-24T09:08:04.8670909Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/versions.tf -2025-11-24T09:08:04.8671328Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/templates/ -2025-11-24T09:08:04.8671808Z ansible/roles-external/kubespray/contrib/terraform/exoscale/modules/kubernetes-cluster/templates/cloud-init.tmpl -2025-11-24T09:08:04.8672079Z ansible/roles-external/kubespray/contrib/terraform/group_vars -2025-11-24T09:08:04.8672332Z ansible/roles-external/kubespray/contrib/terraform/vsphere/ -2025-11-24T09:08:04.8672903Z ansible/roles-external/kubespray/contrib/terraform/vsphere/sample-inventory/ -2025-11-24T09:08:04.8673463Z ansible/roles-external/kubespray/contrib/terraform/vsphere/sample-inventory/cluster.tfvars -2025-11-24T09:08:04.8674059Z ansible/roles-external/kubespray/contrib/terraform/vsphere/sample-inventory/group_vars -2025-11-24T09:08:04.8674391Z ansible/roles-external/kubespray/contrib/terraform/vsphere/default.tfvars -2025-11-24T09:08:04.8674688Z ansible/roles-external/kubespray/contrib/terraform/vsphere/main.tf -2025-11-24T09:08:04.8674998Z ansible/roles-external/kubespray/contrib/terraform/vsphere/variables.tf -2025-11-24T09:08:04.8675306Z ansible/roles-external/kubespray/contrib/terraform/vsphere/output.tf -2025-11-24T09:08:04.8675601Z ansible/roles-external/kubespray/contrib/terraform/vsphere/README.md -2025-11-24T09:08:04.8676015Z ansible/roles-external/kubespray/contrib/terraform/vsphere/versions.tf -2025-11-24T09:08:04.8676322Z ansible/roles-external/kubespray/contrib/terraform/vsphere/templates/ -2025-11-24T09:08:04.8676672Z ansible/roles-external/kubespray/contrib/terraform/vsphere/templates/inventory.tpl -2025-11-24T09:08:04.8780669Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/ -2025-11-24T09:08:04.8781265Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/ -2025-11-24T09:08:04.8781765Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/main.tf -2025-11-24T09:08:04.8782284Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/variables.tf -2025-11-24T09:08:04.8782979Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/output.tf -2025-11-24T09:08:04.8783479Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/versions.tf -2025-11-24T09:08:04.8783967Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/templates/ -2025-11-24T09:08:04.8784605Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/templates/vapp-cloud-init.tpl -2025-11-24T09:08:04.8785138Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/templates/metadata.tpl -2025-11-24T09:08:04.8785679Z ansible/roles-external/kubespray/contrib/terraform/vsphere/modules/kubernetes-cluster/templates/cloud-init.tpl -2025-11-24T09:08:04.8785982Z ansible/roles-external/kubespray/contrib/terraform/openstack/ -2025-11-24T09:08:04.8786365Z ansible/roles-external/kubespray/contrib/terraform/openstack/sample-inventory/ -2025-11-24T09:08:04.8787104Z ansible/roles-external/kubespray/contrib/terraform/openstack/sample-inventory/cluster.tfvars -2025-11-24T09:08:04.8787550Z ansible/roles-external/kubespray/contrib/terraform/openstack/sample-inventory/group_vars -2025-11-24T09:08:04.8787921Z ansible/roles-external/kubespray/contrib/terraform/openstack/kubespray.tf -2025-11-24T09:08:04.8788276Z ansible/roles-external/kubespray/contrib/terraform/openstack/variables.tf -2025-11-24T09:08:04.8788631Z ansible/roles-external/kubespray/contrib/terraform/openstack/.gitignore -2025-11-24T09:08:04.8788972Z ansible/roles-external/kubespray/contrib/terraform/openstack/README.md -2025-11-24T09:08:04.8789335Z ansible/roles-external/kubespray/contrib/terraform/openstack/versions.tf -2025-11-24T09:08:04.8789662Z ansible/roles-external/kubespray/contrib/terraform/openstack/hosts -2025-11-24T09:08:04.8790003Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ -2025-11-24T09:08:04.8790384Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/ -2025-11-24T09:08:04.8790804Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/main.tf -2025-11-24T09:08:04.8791209Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/variables.tf -2025-11-24T09:08:04.8791596Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/versions.tf -2025-11-24T09:08:04.8791973Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/network/outputs.tf -2025-11-24T09:08:04.8792290Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/ -2025-11-24T09:08:04.8792921Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/main.tf -2025-11-24T09:08:04.8793311Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/variables.tf -2025-11-24T09:08:04.8793702Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/versions.tf -2025-11-24T09:08:04.8794062Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/ips/outputs.tf -2025-11-24T09:08:04.8794437Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/loadbalancer/ -2025-11-24T09:08:04.8794845Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/loadbalancer/main.tf -2025-11-24T09:08:04.8795353Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/loadbalancer/variables.tf -2025-11-24T09:08:04.8795761Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/loadbalancer/versions.tf -2025-11-24T09:08:04.8796100Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/ -2025-11-24T09:08:04.8796556Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/ansible_bastion_template.txt -2025-11-24T09:08:04.8796928Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/main.tf -2025-11-24T09:08:04.8797319Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/variables.tf -2025-11-24T09:08:04.8797706Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/versions.tf -2025-11-24T09:08:04.8798087Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/outputs.tf -2025-11-24T09:08:04.8798457Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/templates/ -2025-11-24T09:08:04.8798921Z ansible/roles-external/kubespray/contrib/terraform/openstack/modules/compute/templates/cloudinit.yaml.tmpl -2025-11-24T09:08:04.8799174Z ansible/roles-external/kubespray/contrib/terraform/OWNERS -2025-11-24T09:08:04.8799433Z ansible/roles-external/kubespray/contrib/terraform/upcloud/ -2025-11-24T09:08:04.8799775Z ansible/roles-external/kubespray/contrib/terraform/upcloud/sample-inventory/ -2025-11-24T09:08:04.8800171Z ansible/roles-external/kubespray/contrib/terraform/upcloud/sample-inventory/cluster.tfvars -2025-11-24T09:08:04.8800558Z ansible/roles-external/kubespray/contrib/terraform/upcloud/sample-inventory/group_vars -2025-11-24T09:08:04.8800856Z ansible/roles-external/kubespray/contrib/terraform/upcloud/main.tf -2025-11-24T09:08:04.8857298Z ansible/roles-external/kubespray/contrib/terraform/upcloud/variables.tf -2025-11-24T09:08:04.8857875Z ansible/roles-external/kubespray/contrib/terraform/upcloud/output.tf -2025-11-24T09:08:04.8858242Z ansible/roles-external/kubespray/contrib/terraform/upcloud/README.md -2025-11-24T09:08:04.8858623Z ansible/roles-external/kubespray/contrib/terraform/upcloud/versions.tf -2025-11-24T09:08:04.8859015Z ansible/roles-external/kubespray/contrib/terraform/upcloud/cluster-settings.tfvars -2025-11-24T09:08:04.8859358Z ansible/roles-external/kubespray/contrib/terraform/upcloud/templates/ -2025-11-24T09:08:04.8859746Z ansible/roles-external/kubespray/contrib/terraform/upcloud/templates/inventory.tpl -2025-11-24T09:08:04.8860057Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/ -2025-11-24T09:08:04.8860491Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/ -2025-11-24T09:08:04.8860975Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/main.tf -2025-11-24T09:08:04.8861480Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/variables.tf -2025-11-24T09:08:04.8861957Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/output.tf -2025-11-24T09:08:04.8862454Z ansible/roles-external/kubespray/contrib/terraform/upcloud/modules/kubernetes-cluster/versions.tf -2025-11-24T09:08:04.8862887Z ansible/roles-external/kubespray/contrib/mitogen/ -2025-11-24T09:08:04.8863190Z ansible/roles-external/kubespray/contrib/mitogen/mitogen.yml -2025-11-24T09:08:04.8863441Z ansible/roles-external/kubespray/contrib/azurerm/ -2025-11-24T09:08:04.8863985Z ansible/roles-external/kubespray/contrib/azurerm/roles/ -2025-11-24T09:08:04.8864389Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/ -2025-11-24T09:08:04.8864840Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/tasks/ -2025-11-24T09:08:04.8865298Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/tasks/main.yml -2025-11-24T09:08:04.8865737Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/templates/ -2025-11-24T09:08:04.8866351Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/templates/loadbalancer_vars.j2 -2025-11-24T09:08:04.8866837Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory_2/templates/inventory.j2 -2025-11-24T09:08:04.8867209Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/ -2025-11-24T09:08:04.8867611Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/defaults/ -2025-11-24T09:08:04.8868070Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/defaults/main.yml -2025-11-24T09:08:04.8868462Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/tasks/ -2025-11-24T09:08:04.8868905Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/tasks/main.yml -2025-11-24T09:08:04.8869322Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/ -2025-11-24T09:08:04.8869798Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/network.json -2025-11-24T09:08:04.8870264Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/bastion.json -2025-11-24T09:08:04.8870749Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/clear-rg.json -2025-11-24T09:08:04.8871270Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/availability-sets.json -2025-11-24T09:08:04.8871722Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/storage.json -2025-11-24T09:08:04.8872133Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/minions.json -2025-11-24T09:08:04.8872538Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-templates/templates/masters.json -2025-11-24T09:08:04.8873074Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/ -2025-11-24T09:08:04.8873417Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/tasks/ -2025-11-24T09:08:04.8873807Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/tasks/main.yml -2025-11-24T09:08:04.8874172Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/templates/ -2025-11-24T09:08:04.8874573Z ansible/roles-external/kubespray/contrib/azurerm/roles/generate-inventory/templates/inventory.j2 -2025-11-24T09:08:04.8874886Z ansible/roles-external/kubespray/contrib/azurerm/generate-inventory.yml -2025-11-24T09:08:04.8875152Z ansible/roles-external/kubespray/contrib/azurerm/apply-rg.sh -2025-11-24T09:08:04.8875459Z ansible/roles-external/kubespray/contrib/azurerm/generate-templates.yml -2025-11-24T09:08:04.8875714Z ansible/roles-external/kubespray/contrib/azurerm/.gitignore -2025-11-24T09:08:04.8875966Z ansible/roles-external/kubespray/contrib/azurerm/README.md -2025-11-24T09:08:04.8876226Z ansible/roles-external/kubespray/contrib/azurerm/group_vars/ -2025-11-24T09:08:04.8876490Z ansible/roles-external/kubespray/contrib/azurerm/group_vars/all -2025-11-24T09:08:04.8876814Z ansible/roles-external/kubespray/contrib/azurerm/generate-inventory_2.yml -2025-11-24T09:08:04.8877132Z ansible/roles-external/kubespray/contrib/azurerm/generate-inventory.sh -2025-11-24T09:08:04.8877378Z ansible/roles-external/kubespray/contrib/azurerm/clear-rg.sh -2025-11-24T09:08:04.8877603Z ansible/roles-external/kubespray/contrib/aws_iam/ -2025-11-24T09:08:04.8877935Z ansible/roles-external/kubespray/contrib/aws_iam/kubernetes-minion-role.json -2025-11-24T09:08:04.8878487Z ansible/roles-external/kubespray/contrib/aws_iam/kubernetes-minion-policy.json -2025-11-24T09:08:04.8884876Z ansible/roles-external/kubespray/contrib/aws_iam/kubernetes-master-policy.json -2025-11-24T09:08:04.8886032Z ansible/roles-external/kubespray/contrib/aws_iam/kubernetes-master-role.json -2025-11-24T09:08:04.8886445Z ansible/roles-external/kubespray/contrib/os-services/ -2025-11-24T09:08:04.8886880Z ansible/roles-external/kubespray/contrib/os-services/roles/ -2025-11-24T09:08:04.8887375Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/ -2025-11-24T09:08:04.8888074Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/defaults/ -2025-11-24T09:08:04.8888691Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/defaults/main.yml -2025-11-24T09:08:04.8889222Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/tasks/ -2025-11-24T09:08:04.8889793Z ansible/roles-external/kubespray/contrib/os-services/roles/prepare/tasks/main.yml -2025-11-24T09:08:04.8890163Z ansible/roles-external/kubespray/contrib/os-services/os-services.yml -2025-11-24T09:08:04.8890429Z ansible/roles-external/kubespray/contrib/network-storage/ -2025-11-24T09:08:04.8890724Z ansible/roles-external/kubespray/contrib/network-storage/heketi/ -2025-11-24T09:08:04.8891070Z ansible/roles-external/kubespray/contrib/network-storage/heketi/requirements.txt -2025-11-24T09:08:04.8891398Z ansible/roles-external/kubespray/contrib/network-storage/heketi/heketi.yml -2025-11-24T09:08:04.8891714Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/ -2025-11-24T09:08:04.8892059Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down/ -2025-11-24T09:08:04.8892436Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down/tasks/ -2025-11-24T09:08:04.8893029Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down/tasks/main.yml -2025-11-24T09:08:04.8893379Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/ -2025-11-24T09:08:04.8893772Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/defaults/ -2025-11-24T09:08:04.8894187Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/defaults/main.yml -2025-11-24T09:08:04.8894557Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/ -2025-11-24T09:08:04.8895069Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/heketi.yml -2025-11-24T09:08:04.8895470Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/ -2025-11-24T09:08:04.8895917Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/deploy.yml -2025-11-24T09:08:04.8896367Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/storage.yml -2025-11-24T09:08:04.8896825Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/tear-down.yml -2025-11-24T09:08:04.8897270Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/volumes.yml -2025-11-24T09:08:04.8897713Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap/topology.yml -2025-11-24T09:08:04.8898138Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/storageclass.yml -2025-11-24T09:08:04.8898562Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/storage.yml -2025-11-24T09:08:04.8898969Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/cleanup.yml -2025-11-24T09:08:04.8899703Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/glusterfs.yml -2025-11-24T09:08:04.8900123Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/bootstrap.yml -2025-11-24T09:08:04.8900754Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/topology.yml -2025-11-24T09:08:04.8901494Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/main.yml -2025-11-24T09:08:04.8902168Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/secret.yml -2025-11-24T09:08:04.8902578Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/glusterfs/ -2025-11-24T09:08:04.8903165Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/tasks/glusterfs/label.yml -2025-11-24T09:08:04.8903665Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/handlers/ -2025-11-24T09:08:04.8904072Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/handlers/main.yml -2025-11-24T09:08:04.8904472Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/ -2025-11-24T09:08:04.8904915Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi.json.j2 -2025-11-24T09:08:04.8905409Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi-bootstrap.json.j2 -2025-11-24T09:08:04.8905852Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/topology.json.j2 -2025-11-24T09:08:04.8906358Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/glusterfs-daemonset.json.j2 -2025-11-24T09:08:04.8906848Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi-deployment.json.j2 -2025-11-24T09:08:04.8907802Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi-storage.json.j2 -2025-11-24T09:08:04.8908484Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/storageclass.yml.j2 -2025-11-24T09:08:04.8909363Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/provision/templates/heketi-service-account.json.j2 -2025-11-24T09:08:04.8909715Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/prepare/ -2025-11-24T09:08:04.8910176Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/prepare/tasks/ -2025-11-24T09:08:04.8910577Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/prepare/tasks/main.yml -2025-11-24T09:08:04.8911067Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/ -2025-11-24T09:08:04.8911491Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/defaults/ -2025-11-24T09:08:04.8911929Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/defaults/main.yml -2025-11-24T09:08:04.8912318Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/tasks/ -2025-11-24T09:08:04.8912854Z ansible/roles-external/kubespray/contrib/network-storage/heketi/roles/tear-down-disks/tasks/main.yml -2025-11-24T09:08:04.8913222Z ansible/roles-external/kubespray/contrib/network-storage/heketi/inventory.yml.sample -2025-11-24T09:08:04.8913582Z ansible/roles-external/kubespray/contrib/network-storage/heketi/heketi-tear-down.yml -2025-11-24T09:08:04.8913899Z ansible/roles-external/kubespray/contrib/network-storage/heketi/README.md -2025-11-24T09:08:04.8914200Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/ -2025-11-24T09:08:04.8914515Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/ -2025-11-24T09:08:04.8914879Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/bootstrap-os -2025-11-24T09:08:04.8915256Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ -2025-11-24T09:08:04.8915642Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/meta/ -2025-11-24T09:08:04.8916067Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/meta/main.yaml -2025-11-24T09:08:04.8916601Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/ -2025-11-24T09:08:04.8917029Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/tasks/ -2025-11-24T09:08:04.8917481Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/tasks/main.yaml -2025-11-24T09:08:04.8917921Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/templates/ -2025-11-24T09:08:04.8918571Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/templates/glusterfs-kubernetes-endpoint-svc.json.j2 -2025-11-24T09:08:04.8919217Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/templates/glusterfs-kubernetes-pv.yml.j2 -2025-11-24T09:08:04.8919804Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/kubernetes-pv/ansible/templates/glusterfs-kubernetes-endpoint.json.j2 -2025-11-24T09:08:04.8920161Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/ -2025-11-24T09:08:04.8920556Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/ -2025-11-24T09:08:04.8920975Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/defaults/ -2025-11-24T09:08:04.8921417Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/defaults/main.yml -2025-11-24T09:08:04.8921812Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/meta/ -2025-11-24T09:08:04.8922251Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/meta/main.yml -2025-11-24T09:08:04.8922795Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/ -2025-11-24T09:08:04.8923265Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/setup-Debian.yml -2025-11-24T09:08:04.8923735Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/setup-RedHat.yml -2025-11-24T09:08:04.8924165Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/main.yml -2025-11-24T09:08:04.8924557Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/vars/ -2025-11-24T09:08:04.8925070Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/vars/RedHat.yml -2025-11-24T09:08:04.8925499Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/vars/Debian.yml -2025-11-24T09:08:04.8925920Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/templates/ -2025-11-24T09:08:04.8926391Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/server/templates/test-file.txt -2025-11-24T09:08:04.8926779Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/ -2025-11-24T09:08:04.8927196Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/defaults/ -2025-11-24T09:08:04.8927640Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/defaults/main.yml -2025-11-24T09:08:04.8928027Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/meta/ -2025-11-24T09:08:04.8928453Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/meta/main.yml -2025-11-24T09:08:04.8928851Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/tasks/ -2025-11-24T09:08:04.8929312Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/tasks/setup-Debian.yml -2025-11-24T09:08:04.8929767Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/tasks/setup-RedHat.yml -2025-11-24T09:08:04.8930313Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/client/tasks/main.yml -2025-11-24T09:08:04.8930703Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/roles/glusterfs/README.md -2025-11-24T09:08:04.8931030Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/README.md -2025-11-24T09:08:04.8931355Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/group_vars -2025-11-24T09:08:04.8931691Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/glusterfs.yml -2025-11-24T09:08:04.8932056Z ansible/roles-external/kubespray/contrib/network-storage/glusterfs/inventory.example -2025-11-24T09:08:04.8932326Z ansible/roles-external/kubespray/LICENSE -2025-11-24T09:08:04.8932553Z ansible/roles-external/kubespray/requirements.txt -2025-11-24T09:08:04.8932857Z ansible/roles-external/kubespray/setup.py -2025-11-24T09:08:04.8933064Z ansible/roles-external/kubespray/.nojekyll -2025-11-24T09:08:04.8933262Z ansible/roles-external/kubespray/.git -2025-11-24T09:08:04.8933466Z ansible/roles-external/kubespray/.yamllint -2025-11-24T09:08:04.8933723Z ansible/roles-external/kubespray/recover-control-plane.yml -2025-11-24T09:08:04.8933943Z ansible/roles-external/kubespray/CONTRIBUTING.md -2025-11-24T09:08:04.8934140Z ansible/roles-external/kubespray/roles/ -2025-11-24T09:08:04.8934354Z ansible/roles-external/kubespray/roles/win_nodes/ -2025-11-24T09:08:04.8934648Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/ -2025-11-24T09:08:04.8934976Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/defaults/ -2025-11-24T09:08:04.8935320Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/defaults/main.yml -2025-11-24T09:08:04.8935673Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/tasks/ -2025-11-24T09:08:04.8935999Z ansible/roles-external/kubespray/roles/win_nodes/kubernetes_patch/tasks/main.yml -2025-11-24T09:08:04.8936260Z ansible/roles-external/kubespray/roles/recover_control_plane/ -2025-11-24T09:08:04.8936588Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/ -2025-11-24T09:08:04.8936949Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/defaults/ -2025-11-24T09:08:04.8937337Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/defaults/main.yml -2025-11-24T09:08:04.8937674Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/tasks/ -2025-11-24T09:08:04.8938144Z ansible/roles-external/kubespray/roles/recover_control_plane/control-plane/tasks/main.yml -2025-11-24T09:08:04.8938466Z ansible/roles-external/kubespray/roles/recover_control_plane/post-recover/ -2025-11-24T09:08:04.8938798Z ansible/roles-external/kubespray/roles/recover_control_plane/post-recover/tasks/ -2025-11-24T09:08:04.8939177Z ansible/roles-external/kubespray/roles/recover_control_plane/post-recover/tasks/main.yml -2025-11-24T09:08:04.8939464Z ansible/roles-external/kubespray/roles/recover_control_plane/etcd/ -2025-11-24T09:08:04.8939772Z ansible/roles-external/kubespray/roles/recover_control_plane/etcd/tasks/ -2025-11-24T09:08:04.8940169Z ansible/roles-external/kubespray/roles/recover_control_plane/etcd/tasks/recover_lost_quorum.yml -2025-11-24T09:08:04.8940496Z ansible/roles-external/kubespray/roles/recover_control_plane/etcd/tasks/main.yml -2025-11-24T09:08:04.8940796Z ansible/roles-external/kubespray/roles/recover_control_plane/OWNERS -2025-11-24T09:08:04.8941012Z ansible/roles-external/kubespray/roles/adduser/ -2025-11-24T09:08:04.8941257Z ansible/roles-external/kubespray/roles/adduser/defaults/ -2025-11-24T09:08:04.8941531Z ansible/roles-external/kubespray/roles/adduser/defaults/main.yml -2025-11-24T09:08:04.8941767Z ansible/roles-external/kubespray/roles/adduser/tasks/ -2025-11-24T09:08:04.8942028Z ansible/roles-external/kubespray/roles/adduser/tasks/main.yml -2025-11-24T09:08:04.8942260Z ansible/roles-external/kubespray/roles/adduser/vars/ -2025-11-24T09:08:04.8942525Z ansible/roles-external/kubespray/roles/adduser/vars/debian.yml -2025-11-24T09:08:04.8942884Z ansible/roles-external/kubespray/roles/adduser/vars/redhat.yml -2025-11-24T09:08:04.8943265Z ansible/roles-external/kubespray/roles/adduser/vars/coreos.yml -2025-11-24T09:08:04.8943508Z ansible/roles-external/kubespray/roles/adduser/molecule/ -2025-11-24T09:08:04.8943776Z ansible/roles-external/kubespray/roles/adduser/molecule/default/ -2025-11-24T09:08:04.8944106Z ansible/roles-external/kubespray/roles/adduser/molecule/default/converge.yml -2025-11-24T09:08:04.8944431Z ansible/roles-external/kubespray/roles/adduser/molecule/default/molecule.yml -2025-11-24T09:08:04.8944655Z ansible/roles-external/kubespray/roles/kubernetes/ -2025-11-24T09:08:04.8944987Z ansible/roles-external/kubespray/roles/kubernetes/node-label/ -2025-11-24T09:08:04.8945280Z ansible/roles-external/kubespray/roles/kubernetes/node-label/tasks/ -2025-11-24T09:08:04.8945603Z ansible/roles-external/kubespray/roles/kubernetes/node-label/tasks/main.yml -2025-11-24T09:08:04.8945851Z ansible/roles-external/kubespray/roles/kubernetes/tokens/ -2025-11-24T09:08:04.8946110Z ansible/roles-external/kubespray/roles/kubernetes/tokens/tasks/ -2025-11-24T09:08:04.8946434Z ansible/roles-external/kubespray/roles/kubernetes/tokens/tasks/gen_tokens.yml -2025-11-24T09:08:04.8946774Z ansible/roles-external/kubespray/roles/kubernetes/tokens/tasks/check-tokens.yml -2025-11-24T09:08:04.8947084Z ansible/roles-external/kubespray/roles/kubernetes/tokens/tasks/main.yml -2025-11-24T09:08:04.8947354Z ansible/roles-external/kubespray/roles/kubernetes/tokens/files/ -2025-11-24T09:08:04.8947688Z ansible/roles-external/kubespray/roles/kubernetes/tokens/files/kube-gen-token.sh -2025-11-24T09:08:04.8947932Z ansible/roles-external/kubespray/roles/kubernetes/client/ -2025-11-24T09:08:04.8948223Z ansible/roles-external/kubespray/roles/kubernetes/client/defaults/ -2025-11-24T09:08:04.8948542Z ansible/roles-external/kubespray/roles/kubernetes/client/defaults/main.yml -2025-11-24T09:08:04.8948803Z ansible/roles-external/kubespray/roles/kubernetes/client/tasks/ -2025-11-24T09:08:04.8949106Z ansible/roles-external/kubespray/roles/kubernetes/client/tasks/main.yml -2025-11-24T09:08:04.8949385Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/ -2025-11-24T09:08:04.8949703Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/ -2025-11-24T09:08:04.8950031Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/ -2025-11-24T09:08:04.8950442Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/kube-scheduler.yml -2025-11-24T09:08:04.8950933Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/kube-proxy.yml -2025-11-24T09:08:04.8951306Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/etcd.yml -2025-11-24T09:08:04.8951667Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/defaults/main/main.yml -2025-11-24T09:08:04.8951975Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/meta/ -2025-11-24T09:08:04.8952301Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/meta/main.yml -2025-11-24T09:08:04.8952614Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/ -2025-11-24T09:08:04.8953137Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/encrypt-at-rest.yml -2025-11-24T09:08:04.8953513Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/pre-upgrade.yml -2025-11-24T09:08:04.8953903Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-secondary.yml -2025-11-24T09:08:04.8954279Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-etcd.yml -2025-11-24T09:08:04.8954657Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-setup.yml -2025-11-24T09:08:04.8955091Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/define-first-kube-control.yml -2025-11-24T09:08:04.8955476Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-backup.yml -2025-11-24T09:08:04.8955883Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-fix-apiserver.yml -2025-11-24T09:08:04.8956395Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-upgrade.yml -2025-11-24T09:08:04.8956855Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubelet-fix-client-cert-rotation.yml -2025-11-24T09:08:04.8957184Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/main.yml -2025-11-24T09:08:04.8957507Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/handlers/ -2025-11-24T09:08:04.8957854Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/handlers/main.yml -2025-11-24T09:08:04.8958223Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/vars/ -2025-11-24T09:08:04.8958562Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/vars/main.yaml -2025-11-24T09:08:04.8958883Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/ -2025-11-24T09:08:04.8959311Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/k8s-certs-renew.service.j2 -2025-11-24T09:08:04.8959795Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/apiserver-audit-webhook-config.yaml.j2 -2025-11-24T09:08:04.8960212Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/podnodeselector.yaml.j2 -2025-11-24T09:08:04.8960626Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/k8s-certs-renew.timer.j2 -2025-11-24T09:08:04.8961050Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/admission-controls.yaml.j2 -2025-11-24T09:08:04.8961511Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/webhook-authorization-config.yaml.j2 -2025-11-24T09:08:04.8961927Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/secrets_encryption.yaml.j2 -2025-11-24T09:08:04.8962362Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/kubeadm-config.v1beta3.yaml.j2 -2025-11-24T09:08:04.8962900Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/apiserver-audit-policy.yaml.j2 -2025-11-24T09:08:04.8963332Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/kubescheduler-config.yaml.j2 -2025-11-24T09:08:04.8963755Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/apiserver-tracing.yaml.j2 -2025-11-24T09:08:04.8964202Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/webhook-token-auth-config.yaml.j2 -2025-11-24T09:08:04.8964722Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/eventratelimit.yaml.j2 -2025-11-24T09:08:04.8965127Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/podsecurity.yaml.j2 -2025-11-24T09:08:04.8965526Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/k8s-certs-renew.sh.j2 -2025-11-24T09:08:04.8965988Z ansible/roles-external/kubespray/roles/kubernetes/control-plane/templates/kubeadm-controlplane.v1beta3.yaml.j2 -2025-11-24T09:08:04.8966251Z ansible/roles-external/kubespray/roles/kubernetes/node-taint/ -2025-11-24T09:08:04.8966547Z ansible/roles-external/kubespray/roles/kubernetes/node-taint/tasks/ -2025-11-24T09:08:04.8966871Z ansible/roles-external/kubespray/roles/kubernetes/node-taint/tasks/main.yml -2025-11-24T09:08:04.8967121Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/ -2025-11-24T09:08:04.8967413Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/defaults/ -2025-11-24T09:08:04.8967734Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/defaults/main.yml -2025-11-24T09:08:04.8968012Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/tasks/ -2025-11-24T09:08:04.8968382Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/tasks/kubeadm_etcd_node.yml -2025-11-24T09:08:04.8968697Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/tasks/main.yml -2025-11-24T09:08:04.8968991Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/handlers/ -2025-11-24T09:08:04.8969797Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/handlers/main.yml -2025-11-24T09:08:04.8970238Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/templates/ -2025-11-24T09:08:04.8970675Z ansible/roles-external/kubespray/roles/kubernetes/kubeadm/templates/kubeadm-client.conf.v1beta3.j2 -2025-11-24T09:08:04.8971254Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/ -2025-11-24T09:08:04.8971786Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/defaults/ -2025-11-24T09:08:04.8972371Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/defaults/main.yml -2025-11-24T09:08:04.8972996Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/meta/ -2025-11-24T09:08:04.8973514Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/meta/main.yml -2025-11-24T09:08:04.8974019Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/ -2025-11-24T09:08:04.8974443Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0063-networkmanager-dns.yml -2025-11-24T09:08:04.8975030Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0110-dhclient-hooks-undo.yml -2025-11-24T09:08:04.8975547Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0060-resolvconf.yml -2025-11-24T09:08:04.8976059Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0081-ntp-configurations.yml -2025-11-24T09:08:04.8976497Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0061-systemd-resolved.yml -2025-11-24T09:08:04.8977052Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0070-system-packages.yml -2025-11-24T09:08:04.8977822Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0080-system-configurations.yml -2025-11-24T09:08:04.8978322Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0010-swapoff.yml -2025-11-24T09:08:04.8978767Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0120-growpart-azure-centos-7.yml -2025-11-24T09:08:04.8979144Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0020-set_facts.yml -2025-11-24T09:08:04.8979657Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0100-dhclient-hooks.yml -2025-11-24T09:08:04.8980904Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0062-networkmanager-unmanaged-devices.yml -2025-11-24T09:08:04.8981546Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0090-etchosts.yml -2025-11-24T09:08:04.8982495Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0040-verify-settings.yml -2025-11-24T09:08:04.8983833Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/main.yml -2025-11-24T09:08:04.8984396Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/tasks/0050-create_directories.yml -2025-11-24T09:08:04.8984731Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/handlers/ -2025-11-24T09:08:04.8985065Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/handlers/main.yml -2025-11-24T09:08:04.8985363Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/files/ -2025-11-24T09:08:04.8985748Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/files/dhclient_nodnsupdate -2025-11-24T09:08:04.8986107Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/files/pkgs-schema.json -2025-11-24T09:08:04.8986399Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/vars/ -2025-11-24T09:08:04.8986724Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/vars/main.yml -2025-11-24T09:08:04.8987041Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/ -2025-11-24T09:08:04.8987417Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/chrony.conf.j2 -2025-11-24T09:08:04.8987761Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/ntp.conf.j2 -2025-11-24T09:08:04.8988187Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/dhclient_dnsupdate_rh.sh.j2 -2025-11-24T09:08:04.8988595Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/dhclient_dnsupdate.sh.j2 -2025-11-24T09:08:04.8989123Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/resolved.conf.j2 -2025-11-24T09:08:04.8989496Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/resolvconf.j2 -2025-11-24T09:08:04.8990059Z ansible/roles-external/kubespray/roles/kubernetes/preinstall/templates/ansible_git.j2 -2025-11-24T09:08:04.8990673Z ansible/roles-external/kubespray/roles/kubernetes/node/ -2025-11-24T09:08:04.8990963Z ansible/roles-external/kubespray/roles/kubernetes/node/defaults/ -2025-11-24T09:08:04.8991282Z ansible/roles-external/kubespray/roles/kubernetes/node/defaults/main.yml -2025-11-24T09:08:04.8991623Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/ -2025-11-24T09:08:04.8991926Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/install.yml -2025-11-24T09:08:04.8992268Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/cloud-credentials/ -2025-11-24T09:08:04.8993266Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/cloud-credentials/openstack-credential-check.yml -2025-11-24T09:08:04.8993733Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/cloud-credentials/vsphere-credential-check.yml -2025-11-24T09:08:04.8994181Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/cloud-credentials/azure-credential-check.yml -2025-11-24T09:08:04.8994493Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/facts.yml -2025-11-24T09:08:04.8994820Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/ -2025-11-24T09:08:04.8995218Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/nginx-proxy.yml -2025-11-24T09:08:04.8995598Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/kube-vip.yml -2025-11-24T09:08:04.8995965Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/loadbalancer/haproxy.yml -2025-11-24T09:08:04.8996283Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/kubelet.yml -2025-11-24T09:08:04.8996911Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/pre_upgrade.yml -2025-11-24T09:08:04.8997315Z ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml -2025-11-24T09:08:04.8997595Z ansible/roles-external/kubespray/roles/kubernetes/node/handlers/ -2025-11-24T09:08:04.8998367Z ansible/roles-external/kubespray/roles/kubernetes/node/handlers/main.yml -2025-11-24T09:08:04.8998633Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ -2025-11-24T09:08:04.8999050Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-24.yml -2025-11-24T09:08:04.8999371Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-22.yml -2025-11-24T09:08:04.8999683Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-20.yml -2025-11-24T09:08:04.8999992Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/fedora.yml -2025-11-24T09:08:04.9000290Z ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-18.yml -2025-11-24T09:08:04.9000569Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/ -2025-11-24T09:08:04.9000962Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/node-kubeconfig.yaml.j2 -2025-11-24T09:08:04.9001659Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/kubelet-config.v1beta1.yaml.j2 -2025-11-24T09:08:04.9001998Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/loadbalancer/ -2025-11-24T09:08:04.9002402Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/loadbalancer/haproxy.cfg.j2 -2025-11-24T09:08:04.9003317Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/loadbalancer/nginx.conf.j2 -2025-11-24T09:08:04.9003802Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/ -2025-11-24T09:08:04.9004809Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/vsphere-cloud-config.j2 -2025-11-24T09:08:04.9005237Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/aws-cloud-config.j2 -2025-11-24T09:08:04.9005828Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/gce-cloud-config.j2 -2025-11-24T09:08:04.9006278Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/openstack-cloud-config.j2 -2025-11-24T09:08:04.9006701Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/cloud-configs/azure-cloud-config.j2 -2025-11-24T09:08:04.9007079Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/kubelet.env.v1beta1.j2 -2025-11-24T09:08:04.9007437Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/http-proxy.conf.j2 -2025-11-24T09:08:04.9007846Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/kubelet.service.j2 -2025-11-24T09:08:04.9008170Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/ -2025-11-24T09:08:04.9008581Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/kube-vip.manifest.j2 -2025-11-24T09:08:04.9009000Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/nginx-proxy.manifest.j2 -2025-11-24T09:08:04.9009412Z ansible/roles-external/kubespray/roles/kubernetes/node/templates/manifests/haproxy.manifest.j2 -2025-11-24T09:08:04.9009665Z ansible/roles-external/kubespray/roles/bastion-ssh-config/ -2025-11-24T09:08:04.9009963Z ansible/roles-external/kubespray/roles/bastion-ssh-config/defaults/ -2025-11-24T09:08:04.9010281Z ansible/roles-external/kubespray/roles/bastion-ssh-config/defaults/main.yml -2025-11-24T09:08:04.9010563Z ansible/roles-external/kubespray/roles/bastion-ssh-config/tasks/ -2025-11-24T09:08:04.9010886Z ansible/roles-external/kubespray/roles/bastion-ssh-config/tasks/main.yml -2025-11-24T09:08:04.9011179Z ansible/roles-external/kubespray/roles/bastion-ssh-config/molecule/ -2025-11-24T09:08:04.9011502Z ansible/roles-external/kubespray/roles/bastion-ssh-config/molecule/default/ -2025-11-24T09:08:04.9011879Z ansible/roles-external/kubespray/roles/bastion-ssh-config/molecule/default/converge.yml -2025-11-24T09:08:04.9012249Z ansible/roles-external/kubespray/roles/bastion-ssh-config/molecule/default/molecule.yml -2025-11-24T09:08:04.9012557Z ansible/roles-external/kubespray/roles/bastion-ssh-config/templates/ -2025-11-24T09:08:04.9013038Z ansible/roles-external/kubespray/roles/bastion-ssh-config/templates/ssh-bastion.conf.j2 -2025-11-24T09:08:04.9013280Z ansible/roles-external/kubespray/roles/bootstrap-os/ -2025-11-24T09:08:04.9013543Z ansible/roles-external/kubespray/roles/bootstrap-os/defaults/ -2025-11-24T09:08:04.9013929Z ansible/roles-external/kubespray/roles/bootstrap-os/defaults/main.yml -2025-11-24T09:08:04.9014183Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/ -2025-11-24T09:08:04.9014485Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/debian.yml -2025-11-24T09:08:04.9014804Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/openEuler.yml -2025-11-24T09:08:04.9020313Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/ubuntu.yml -2025-11-24T09:08:04.9020844Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/opensuse-tumbleweed.yml -2025-11-24T09:08:04.9021186Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/amzn.yml -2025-11-24T09:08:04.9021512Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/centos.yml -2025-11-24T09:08:04.9021843Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/opensuse.yml -2025-11-24T09:08:04.9022184Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/fedora-coreos.yml -2025-11-24T09:08:04.9022528Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/opensuse-leap.yml -2025-11-24T09:08:04.9022988Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/flatcar.yml -2025-11-24T09:08:04.9023295Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/rhel.yml -2025-11-24T09:08:04.9023600Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/fedora.yml -2025-11-24T09:08:04.9023891Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/main.yml -2025-11-24T09:08:04.9024226Z ansible/roles-external/kubespray/roles/bootstrap-os/tasks/clear-linux-os.yml -2025-11-24T09:08:04.9024691Z ansible/roles-external/kubespray/roles/bootstrap-os/handlers/ -2025-11-24T09:08:04.9025012Z ansible/roles-external/kubespray/roles/bootstrap-os/handlers/main.yml -2025-11-24T09:08:04.9025275Z ansible/roles-external/kubespray/roles/bootstrap-os/files/ -2025-11-24T09:08:04.9025632Z ansible/roles-external/kubespray/roles/bootstrap-os/files/bootstrap.sh -2025-11-24T09:08:04.9025890Z ansible/roles-external/kubespray/roles/bootstrap-os/vars/ -2025-11-24T09:08:04.9026216Z ansible/roles-external/kubespray/roles/bootstrap-os/vars/fedora-coreos.yml -2025-11-24T09:08:04.9026513Z ansible/roles-external/kubespray/roles/bootstrap-os/vars/flatcar.yml -2025-11-24T09:08:04.9026852Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/ -2025-11-24T09:08:04.9027159Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/ -2025-11-24T09:08:04.9027504Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/converge.yml -2025-11-24T09:08:04.9027845Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/molecule.yml -2025-11-24T09:08:04.9028171Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/tests/ -2025-11-24T09:08:04.9028584Z ansible/roles-external/kubespray/roles/bootstrap-os/molecule/default/tests/test_default.py -2025-11-24T09:08:04.9028840Z ansible/roles-external/kubespray/roles/container-engine/ -2025-11-24T09:08:04.9029109Z ansible/roles-external/kubespray/roles/container-engine/runc/ -2025-11-24T09:08:04.9029432Z ansible/roles-external/kubespray/roles/container-engine/runc/defaults/ -2025-11-24T09:08:04.9029758Z ansible/roles-external/kubespray/roles/container-engine/runc/defaults/main.yml -2025-11-24T09:08:04.9030065Z ansible/roles-external/kubespray/roles/container-engine/runc/tasks/ -2025-11-24T09:08:04.9030387Z ansible/roles-external/kubespray/roles/container-engine/runc/tasks/main.yml -2025-11-24T09:08:04.9030717Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/ -2025-11-24T09:08:04.9031070Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/defaults/ -2025-11-24T09:08:04.9031469Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/defaults/main.yml -2025-11-24T09:08:04.9031806Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/tasks/ -2025-11-24T09:08:04.9032188Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/tasks/main.yml -2025-11-24T09:08:04.9032756Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/ -2025-11-24T09:08:04.9033149Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/ -2025-11-24T09:08:04.9033589Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/converge.yml -2025-11-24T09:08:04.9034018Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/molecule.yml -2025-11-24T09:08:04.9034426Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/files/ -2025-11-24T09:08:04.9034880Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/files/sandbox.json -2025-11-24T09:08:04.9035327Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/files/10-mynet.conf -2025-11-24T09:08:04.9035816Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/files/container.json -2025-11-24T09:08:04.9036220Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/tests/ -2025-11-24T09:08:04.9036675Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/tests/test_default.py -2025-11-24T09:08:04.9037299Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/molecule/default/prepare.yml -2025-11-24T09:08:04.9037645Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/OWNERS -2025-11-24T09:08:04.9037999Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/templates/ -2025-11-24T09:08:04.9038869Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/templates/configuration-qemu.toml.j2 -2025-11-24T09:08:04.9039641Z ansible/roles-external/kubespray/roles/container-engine/kata-containers/templates/containerd-shim-kata-v2.j2 -2025-11-24T09:08:04.9039926Z ansible/roles-external/kubespray/roles/container-engine/skopeo/ -2025-11-24T09:08:04.9040243Z ansible/roles-external/kubespray/roles/container-engine/skopeo/tasks/ -2025-11-24T09:08:04.9040581Z ansible/roles-external/kubespray/roles/container-engine/skopeo/tasks/main.yml -2025-11-24T09:08:04.9040929Z ansible/roles-external/kubespray/roles/container-engine/meta/ -2025-11-24T09:08:04.9041239Z ansible/roles-external/kubespray/roles/container-engine/meta/main.yml -2025-11-24T09:08:04.9041508Z ansible/roles-external/kubespray/roles/container-engine/docker/ -2025-11-24T09:08:04.9041826Z ansible/roles-external/kubespray/roles/container-engine/docker/defaults/ -2025-11-24T09:08:04.9042169Z ansible/roles-external/kubespray/roles/container-engine/docker/defaults/main.yml -2025-11-24T09:08:04.9042474Z ansible/roles-external/kubespray/roles/container-engine/docker/meta/ -2025-11-24T09:08:04.9042918Z ansible/roles-external/kubespray/roles/container-engine/docker/meta/main.yml -2025-11-24T09:08:04.9043222Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/ -2025-11-24T09:08:04.9043594Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/pre-upgrade.yml -2025-11-24T09:08:04.9043933Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/systemd.yml -2025-11-24T09:08:04.9044264Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/reset.yml -2025-11-24T09:08:04.9044637Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/set_facts_dns.yml -2025-11-24T09:08:04.9044963Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/main.yml -2025-11-24T09:08:04.9045327Z ansible/roles-external/kubespray/roles/container-engine/docker/tasks/docker_plugin.yml -2025-11-24T09:08:04.9045648Z ansible/roles-external/kubespray/roles/container-engine/docker/handlers/ -2025-11-24T09:08:04.9045977Z ansible/roles-external/kubespray/roles/container-engine/docker/handlers/main.yml -2025-11-24T09:08:04.9046277Z ansible/roles-external/kubespray/roles/container-engine/docker/files/ -2025-11-24T09:08:04.9046688Z ansible/roles-external/kubespray/roles/container-engine/docker/files/cleanup-docker-orphans.sh -2025-11-24T09:08:04.9047067Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/ -2025-11-24T09:08:04.9047399Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/debian.yml -2025-11-24T09:08:04.9047726Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/ubuntu.yml -2025-11-24T09:08:04.9048049Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/suse.yml -2025-11-24T09:08:04.9048390Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/uniontech.yml -2025-11-24T09:08:04.9048712Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/kylin.yml -2025-11-24T09:08:04.9049040Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/redhat.yml -2025-11-24T09:08:04.9049384Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/clearlinux.yml -2025-11-24T09:08:04.9049706Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/amazon.yml -2025-11-24T09:08:04.9050042Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/redhat-7.yml -2025-11-24T09:08:04.9050365Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/fedora.yml -2025-11-24T09:08:04.9050709Z ansible/roles-external/kubespray/roles/container-engine/docker/vars/openeuler.yml -2025-11-24T09:08:04.9051029Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/ -2025-11-24T09:08:04.9051468Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/docker-orphan-cleanup.conf.j2 -2025-11-24T09:08:04.9051868Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/fedora_docker.repo.j2 -2025-11-24T09:08:04.9052378Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/docker.service.j2 -2025-11-24T09:08:04.9052875Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/docker-dns.conf.j2 -2025-11-24T09:08:04.9053266Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/http-proxy.conf.j2 -2025-11-24T09:08:04.9053655Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/rh_docker.repo.j2 -2025-11-24T09:08:04.9054060Z ansible/roles-external/kubespray/roles/container-engine/docker/templates/docker-options.conf.j2 -2025-11-24T09:08:04.9054397Z ansible/roles-external/kubespray/roles/container-engine/crictl/ -2025-11-24T09:08:04.9054702Z ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/ -2025-11-24T09:08:04.9055029Z ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/main.yml -2025-11-24T09:08:04.9055359Z ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/crictl.yml -2025-11-24T09:08:04.9055677Z ansible/roles-external/kubespray/roles/container-engine/crictl/handlers/ -2025-11-24T09:08:04.9056011Z ansible/roles-external/kubespray/roles/container-engine/crictl/handlers/main.yml -2025-11-24T09:08:04.9056326Z ansible/roles-external/kubespray/roles/container-engine/crictl/templates/ -2025-11-24T09:08:04.9056703Z ansible/roles-external/kubespray/roles/container-engine/crictl/templates/crictl.yaml.j2 -2025-11-24T09:08:04.9057024Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/ -2025-11-24T09:08:04.9057374Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/defaults/ -2025-11-24T09:08:04.9057761Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/defaults/main.yml -2025-11-24T09:08:04.9058092Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/meta/ -2025-11-24T09:08:04.9058477Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/meta/main.yml -2025-11-24T09:08:04.9058814Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/tasks/ -2025-11-24T09:08:04.9059199Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/tasks/main.yml -2025-11-24T09:08:04.9059530Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/vars/ -2025-11-24T09:08:04.9059896Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/vars/suse.yml -2025-11-24T09:08:04.9060352Z ansible/roles-external/kubespray/roles/container-engine/containerd-common/vars/amazon.yml -2025-11-24T09:08:04.9060664Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/ -2025-11-24T09:08:04.9060974Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/meta/ -2025-11-24T09:08:04.9061315Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/meta/main.yml -2025-11-24T09:08:04.9061634Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/tasks/ -2025-11-24T09:08:04.9061980Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/tasks/main.yml -2025-11-24T09:08:04.9062305Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/handlers/ -2025-11-24T09:08:04.9062774Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/handlers/main.yml -2025-11-24T09:08:04.9063101Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/ -2025-11-24T09:08:04.9120253Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/ -2025-11-24T09:08:04.9121767Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/converge.yml -2025-11-24T09:08:04.9124363Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/molecule.yml -2025-11-24T09:08:04.9125010Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/files/ -2025-11-24T09:08:04.9125754Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/files/sandbox.json -2025-11-24T09:08:04.9126922Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/files/10-mynet.conf -2025-11-24T09:08:04.9127397Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/files/container.json -2025-11-24T09:08:04.9128528Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/tests/ -2025-11-24T09:08:04.9129514Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/tests/test_default.py -2025-11-24T09:08:04.9130113Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/molecule/default/prepare.yml -2025-11-24T09:08:04.9130616Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/templates/ -2025-11-24T09:08:04.9131657Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/templates/cri-dockerd.socket.j2 -2025-11-24T09:08:04.9132507Z ansible/roles-external/kubespray/roles/container-engine/cri-dockerd/templates/cri-dockerd.service.j2 -2025-11-24T09:08:04.9133198Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/ -2025-11-24T09:08:04.9133777Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/defaults/ -2025-11-24T09:08:04.9134367Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/defaults/main.yml -2025-11-24T09:08:04.9135013Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/tasks/ -2025-11-24T09:08:04.9135407Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/tasks/main.yml -2025-11-24T09:08:04.9135973Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/files/ -2025-11-24T09:08:04.9136706Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/files/install_container_storage_setup.sh -2025-11-24T09:08:04.9137227Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/templates/ -2025-11-24T09:08:04.9138545Z ansible/roles-external/kubespray/roles/container-engine/docker-storage/templates/docker-storage-setup.j2 -2025-11-24T09:08:04.9139323Z ansible/roles-external/kubespray/roles/container-engine/containerd/ -2025-11-24T09:08:04.9139673Z ansible/roles-external/kubespray/roles/container-engine/containerd/defaults/ -2025-11-24T09:08:04.9141319Z ansible/roles-external/kubespray/roles/container-engine/containerd/defaults/main.yml -2025-11-24T09:08:04.9141864Z ansible/roles-external/kubespray/roles/container-engine/containerd/meta/ -2025-11-24T09:08:04.9142559Z ansible/roles-external/kubespray/roles/container-engine/containerd/meta/main.yml -2025-11-24T09:08:04.9143210Z ansible/roles-external/kubespray/roles/container-engine/containerd/tasks/ -2025-11-24T09:08:04.9143575Z ansible/roles-external/kubespray/roles/container-engine/containerd/tasks/reset.yml -2025-11-24T09:08:04.9143920Z ansible/roles-external/kubespray/roles/container-engine/containerd/tasks/main.yml -2025-11-24T09:08:04.9144251Z ansible/roles-external/kubespray/roles/container-engine/containerd/handlers/ -2025-11-24T09:08:04.9144628Z ansible/roles-external/kubespray/roles/container-engine/containerd/handlers/reset.yml -2025-11-24T09:08:04.9144990Z ansible/roles-external/kubespray/roles/container-engine/containerd/handlers/main.yml -2025-11-24T09:08:04.9145305Z ansible/roles-external/kubespray/roles/container-engine/containerd/vars/ -2025-11-24T09:08:04.9145656Z ansible/roles-external/kubespray/roles/container-engine/containerd/vars/debian.yml -2025-11-24T09:08:04.9146002Z ansible/roles-external/kubespray/roles/container-engine/containerd/vars/ubuntu.yml -2025-11-24T09:08:04.9146329Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/ -2025-11-24T09:08:04.9146693Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/ -2025-11-24T09:08:04.9147103Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/converge.yml -2025-11-24T09:08:04.9147502Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/molecule.yml -2025-11-24T09:08:04.9148033Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/tests/ -2025-11-24T09:08:04.9148500Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/tests/test_default.py -2025-11-24T09:08:04.9148921Z ansible/roles-external/kubespray/roles/container-engine/containerd/molecule/default/prepare.yml -2025-11-24T09:08:04.9149257Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/ -2025-11-24T09:08:04.9149658Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/config.toml.j2 -2025-11-24T09:08:04.9150065Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/http-proxy.conf.j2 -2025-11-24T09:08:04.9150560Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/containerd.service.j2 -2025-11-24T09:08:04.9150949Z ansible/roles-external/kubespray/roles/container-engine/containerd/templates/hosts.toml.j2 -2025-11-24T09:08:04.9151232Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/ -2025-11-24T09:08:04.9151551Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/tasks/ -2025-11-24T09:08:04.9151880Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/tasks/main.yml -2025-11-24T09:08:04.9152207Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/handlers/ -2025-11-24T09:08:04.9152554Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/handlers/main.yml -2025-11-24T09:08:04.9153075Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/templates/ -2025-11-24T09:08:04.9153479Z ansible/roles-external/kubespray/roles/container-engine/nerdctl/templates/nerdctl.toml.j2 -2025-11-24T09:08:04.9153755Z ansible/roles-external/kubespray/roles/container-engine/youki/ -2025-11-24T09:08:04.9154071Z ansible/roles-external/kubespray/roles/container-engine/youki/defaults/ -2025-11-24T09:08:04.9154400Z ansible/roles-external/kubespray/roles/container-engine/youki/defaults/main.yml -2025-11-24T09:08:04.9154703Z ansible/roles-external/kubespray/roles/container-engine/youki/tasks/ -2025-11-24T09:08:04.9155031Z ansible/roles-external/kubespray/roles/container-engine/youki/tasks/main.yml -2025-11-24T09:08:04.9155339Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/ -2025-11-24T09:08:04.9155670Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/ -2025-11-24T09:08:04.9156064Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/converge.yml -2025-11-24T09:08:04.9156528Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/molecule.yml -2025-11-24T09:08:04.9156902Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/files/ -2025-11-24T09:08:04.9157315Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/files/sandbox.json -2025-11-24T09:08:04.9157731Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/files/10-mynet.conf -2025-11-24T09:08:04.9158148Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/files/container.json -2025-11-24T09:08:04.9158511Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/tests/ -2025-11-24T09:08:04.9158934Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/tests/test_default.py -2025-11-24T09:08:04.9159333Z ansible/roles-external/kubespray/roles/container-engine/youki/molecule/default/prepare.yml -2025-11-24T09:08:04.9159609Z ansible/roles-external/kubespray/roles/container-engine/crun/ -2025-11-24T09:08:04.9159911Z ansible/roles-external/kubespray/roles/container-engine/crun/tasks/ -2025-11-24T09:08:04.9160243Z ansible/roles-external/kubespray/roles/container-engine/crun/tasks/main.yml -2025-11-24T09:08:04.9160596Z ansible/roles-external/kubespray/roles/container-engine/validate-container-engine/ -2025-11-24T09:08:04.9160995Z ansible/roles-external/kubespray/roles/container-engine/validate-container-engine/tasks/ -2025-11-24T09:08:04.9161586Z ansible/roles-external/kubespray/roles/container-engine/validate-container-engine/tasks/main.yml -2025-11-24T09:08:04.9161882Z ansible/roles-external/kubespray/roles/container-engine/cri-o/ -2025-11-24T09:08:04.9162198Z ansible/roles-external/kubespray/roles/container-engine/cri-o/defaults/ -2025-11-24T09:08:04.9162537Z ansible/roles-external/kubespray/roles/container-engine/cri-o/defaults/main.yml -2025-11-24T09:08:04.9162963Z ansible/roles-external/kubespray/roles/container-engine/cri-o/meta/ -2025-11-24T09:08:04.9163301Z ansible/roles-external/kubespray/roles/container-engine/cri-o/meta/main.yml -2025-11-24T09:08:04.9163602Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/ -2025-11-24T09:08:04.9164067Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/setup-amazon.yaml -2025-11-24T09:08:04.9164410Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/load_vars.yml -2025-11-24T09:08:04.9164737Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/main.yaml -2025-11-24T09:08:04.9165062Z ansible/roles-external/kubespray/roles/container-engine/cri-o/tasks/reset.yml -2025-11-24T09:08:04.9165372Z ansible/roles-external/kubespray/roles/container-engine/cri-o/handlers/ -2025-11-24T09:08:04.9165694Z ansible/roles-external/kubespray/roles/container-engine/cri-o/handlers/main.yml -2025-11-24T09:08:04.9165990Z ansible/roles-external/kubespray/roles/container-engine/cri-o/files/ -2025-11-24T09:08:04.9166321Z ansible/roles-external/kubespray/roles/container-engine/cri-o/files/mounts.conf -2025-11-24T09:08:04.9166618Z ansible/roles-external/kubespray/roles/container-engine/cri-o/vars/ -2025-11-24T09:08:04.9166955Z ansible/roles-external/kubespray/roles/container-engine/cri-o/vars/v1.28.yml -2025-11-24T09:08:04.9167280Z ansible/roles-external/kubespray/roles/container-engine/cri-o/vars/v1.29.yml -2025-11-24T09:08:04.9167588Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/ -2025-11-24T09:08:04.9167958Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/ -2025-11-24T09:08:04.9168358Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/converge.yml -2025-11-24T09:08:04.9168740Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/molecule.yml -2025-11-24T09:08:04.9169097Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/files/ -2025-11-24T09:08:04.9169513Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/files/sandbox.json -2025-11-24T09:08:04.9170001Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/files/10-mynet.conf -2025-11-24T09:08:04.9170428Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/files/container.json -2025-11-24T09:08:04.9170789Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/tests/ -2025-11-24T09:08:04.9171209Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/tests/test_default.py -2025-11-24T09:08:04.9171615Z ansible/roles-external/kubespray/roles/container-engine/cri-o/molecule/default/prepare.yml -2025-11-24T09:08:04.9171937Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/ -2025-11-24T09:08:04.9172300Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/crio.conf.j2 -2025-11-24T09:08:04.9172788Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/registry.conf.j2 -2025-11-24T09:08:04.9173159Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/config.json.j2 -2025-11-24T09:08:04.9173553Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/http-proxy.conf.j2 -2025-11-24T09:08:04.9173941Z ansible/roles-external/kubespray/roles/container-engine/cri-o/templates/unqualified.conf.j2 -2025-11-24T09:08:04.9174211Z ansible/roles-external/kubespray/roles/container-engine/gvisor/ -2025-11-24T09:08:04.9174522Z ansible/roles-external/kubespray/roles/container-engine/gvisor/tasks/ -2025-11-24T09:08:04.9174853Z ansible/roles-external/kubespray/roles/container-engine/gvisor/tasks/main.yml -2025-11-24T09:08:04.9175291Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/ -2025-11-24T09:08:04.9175639Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/ -2025-11-24T09:08:04.9176036Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/converge.yml -2025-11-24T09:08:04.9176423Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/molecule.yml -2025-11-24T09:08:04.9176793Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/files/ -2025-11-24T09:08:04.9177281Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/files/sandbox.json -2025-11-24T09:08:04.9177694Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/files/10-mynet.conf -2025-11-24T09:08:04.9178115Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/files/container.json -2025-11-24T09:08:04.9178482Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/tests/ -2025-11-24T09:08:04.9178907Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/tests/test_default.py -2025-11-24T09:08:04.9179290Z ansible/roles-external/kubespray/roles/container-engine/gvisor/molecule/default/prepare.yml -2025-11-24T09:08:04.9179541Z ansible/roles-external/kubespray/roles/kubernetes-apps/ -2025-11-24T09:08:04.9179948Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/ -2025-11-24T09:08:04.9180319Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/defaults/ -2025-11-24T09:08:04.9180729Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/defaults/main.yml -2025-11-24T09:08:04.9181079Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/meta/ -2025-11-24T09:08:04.9181467Z ansible/roles-external/kubespray/roles/kubernetes-apps/kubelet-csr-approver/meta/main.yml -2025-11-24T09:08:04.9181793Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/ -2025-11-24T09:08:04.9182140Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/defaults/ -2025-11-24T09:08:04.9182530Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/defaults/main.yml -2025-11-24T09:08:04.9182973Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/tasks/ -2025-11-24T09:08:04.9183485Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/tasks/main.yml -2025-11-24T09:08:04.9183844Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/ -2025-11-24T09:08:04.9184427Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/topology.node.k8s.io_noderesourcetopologies.yaml.j2 -2025-11-24T09:08:04.9185014Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/networktopology.diktyo.x-k8s.io_networktopologies.yaml.j2 -2025-11-24T09:08:04.9185520Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/scheduling.x-k8s.io_podgroups.yaml.j2 -2025-11-24T09:08:04.9186030Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/scheduling.x-k8s.io_elasticquotas.yaml.j2 -2025-11-24T09:08:04.9186502Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/rbac-scheduler-plugins.yaml.j2 -2025-11-24T09:08:04.9186968Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/cm-scheduler-plugins.yaml.j2 -2025-11-24T09:08:04.9187425Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/sa-scheduler-plugins.yaml.j2 -2025-11-24T09:08:04.9187852Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/namespace.yaml.j2 -2025-11-24T09:08:04.9188370Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/appgroup.diktyo.x-k8s.io_appgroups.yaml.j2 -2025-11-24T09:08:04.9188980Z ansible/roles-external/kubespray/roles/kubernetes-apps/scheduler_plugins/templates/deploy-scheduler-plugins.yaml.j2 -2025-11-24T09:08:04.9189315Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/ -2025-11-24T09:08:04.9189652Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/meta/ -2025-11-24T09:08:04.9190027Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/meta/main.yml -2025-11-24T09:08:04.9190369Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/ -2025-11-24T09:08:04.9190741Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/tasks/ -2025-11-24T09:08:04.9191204Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/tasks/main.yaml -2025-11-24T09:08:04.9191600Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/templates/ -2025-11-24T09:08:04.9192067Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/youki/templates/runtimeclass-youki.yml -2025-11-24T09:08:04.9192401Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/ -2025-11-24T09:08:04.9192866Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/tasks/ -2025-11-24T09:08:04.9193274Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/tasks/main.yaml -2025-11-24T09:08:04.9193664Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/templates/ -2025-11-24T09:08:04.9194123Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/crun/templates/runtimeclass-crun.yml -2025-11-24T09:08:04.9194513Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/ -2025-11-24T09:08:04.9194941Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/defaults/ -2025-11-24T09:08:04.9195384Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/defaults/main.yaml -2025-11-24T09:08:04.9195791Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/tasks/ -2025-11-24T09:08:04.9196227Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/tasks/main.yaml -2025-11-24T09:08:04.9196649Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/templates/ -2025-11-24T09:08:04.9197183Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/kata_containers/templates/runtimeclass-kata-qemu.yml.j2 -2025-11-24T09:08:04.9197664Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/ -2025-11-24T09:08:04.9198042Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/tasks/ -2025-11-24T09:08:04.9198443Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/tasks/main.yaml -2025-11-24T09:08:04.9198835Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/templates/ -2025-11-24T09:08:04.9199328Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_runtimes/gvisor/templates/runtimeclass-gvisor.yml.j2 -2025-11-24T09:08:04.9199594Z ansible/roles-external/kubespray/roles/kubernetes-apps/meta/ -2025-11-24T09:08:04.9199897Z ansible/roles-external/kubespray/roles/kubernetes-apps/meta/main.yml -2025-11-24T09:08:04.9200217Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ -2025-11-24T09:08:04.9200589Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/ -2025-11-24T09:08:04.9200988Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/defaults/ -2025-11-24T09:08:04.9201417Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/defaults/main.yml -2025-11-24T09:08:04.9201809Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/tasks/ -2025-11-24T09:08:04.9202229Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/tasks/main.yml -2025-11-24T09:08:04.9202850Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/templates/ -2025-11-24T09:08:04.9203355Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/templates/cert-manager.crds.yml.j2 -2025-11-24T09:08:04.9203839Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/cert_manager/templates/cert-manager.yml.j2 -2025-11-24T09:08:04.9204176Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/meta/ -2025-11-24T09:08:04.9204541Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/meta/main.yml -2025-11-24T09:08:04.9204985Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/ -2025-11-24T09:08:04.9205390Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/defaults/ -2025-11-24T09:08:04.9205826Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/defaults/main.yml -2025-11-24T09:08:04.9206229Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/tasks/ -2025-11-24T09:08:04.9206650Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/tasks/main.yml -2025-11-24T09:08:04.9207060Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/ -2025-11-24T09:08:04.9207612Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/ds-ingress-nginx-controller.yml.j2 -2025-11-24T09:08:04.9208112Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/sa-ingress-nginx.yml.j2 -2025-11-24T09:08:04.9208991Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/clusterrolebinding-ingress-nginx.yml.j2 -2025-11-24T09:08:04.9209502Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/role-ingress-nginx.yml.j2 -2025-11-24T09:08:04.9210008Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/cm-ingress-nginx.yml.j2 -2025-11-24T09:08:04.9210567Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/rolebinding-admission-webhook.yml.j2 -2025-11-24T09:08:04.9211070Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/ingressclass-nginx.yml.j2 -2025-11-24T09:08:04.9211735Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/clusterrolebinding-admission-webhook.yml.j2 -2025-11-24T09:08:04.9212254Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/admission-webhook-job.yml.j2 -2025-11-24T09:08:04.9212898Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/rolebinding-ingress-nginx.yml.j2 -2025-11-24T09:08:04.9213417Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/sa-admission-webhook.yml.j2 -2025-11-24T09:08:04.9213917Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/svc-ingress-nginx.yml.j2 -2025-11-24T09:08:04.9214407Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/cm-tcp-services.yml.j2 -2025-11-24T09:08:04.9214926Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/role-admission-webhook.yml.j2 -2025-11-24T09:08:04.9215415Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/00-namespace.yml.j2 -2025-11-24T09:08:04.9215966Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/clusterrole-admission-webhook.yml.j2 -2025-11-24T09:08:04.9216456Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/cm-udp-services.yml.j2 -2025-11-24T09:08:04.9217137Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/admission-webhook-configuration.yml.j2 -2025-11-24T09:08:04.9217677Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/clusterrole-ingress-nginx.yml.j2 -2025-11-24T09:08:04.9218270Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/svc-ingress-nginx-controller-admission.yml.j2 -2025-11-24T09:08:04.9218682Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/ -2025-11-24T09:08:04.9219180Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/defaults/ -2025-11-24T09:08:04.9219648Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/defaults/main.yml -2025-11-24T09:08:04.9220079Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/tasks/ -2025-11-24T09:08:04.9220532Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/tasks/main.yml -2025-11-24T09:08:04.9220954Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/OWNERS -2025-11-24T09:08:04.9221391Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/ -2025-11-24T09:08:04.9221924Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-sa.yml.j2 -2025-11-24T09:08:04.9222439Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-ns.yml.j2 -2025-11-24T09:08:04.9223080Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-deploy.yml.j2 -2025-11-24T09:08:04.9223643Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-clusterrole.yml.j2 -2025-11-24T09:08:04.9224223Z ansible/roles-external/kubespray/roles/kubernetes-apps/ingress_controller/alb_ingress_controller/templates/alb-ingress-clusterrolebinding.yml.j2 -2025-11-24T09:08:04.9224547Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/ -2025-11-24T09:08:04.9224870Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/ -2025-11-24T09:08:04.9225316Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/defaults/ -2025-11-24T09:08:04.9225714Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/defaults/main.yml -2025-11-24T09:08:04.9226063Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/tasks/ -2025-11-24T09:08:04.9226499Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/tasks/credentials-check.yml -2025-11-24T09:08:04.9226891Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/tasks/main.yml -2025-11-24T09:08:04.9227265Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/templates/ -2025-11-24T09:08:04.9227729Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/templates/oci-cloud-provider.yml.j2 -2025-11-24T09:08:04.9228227Z ansible/roles-external/kubespray/roles/kubernetes-apps/cloud_controller/oci/templates/controller-manager-config.yml.j2 -2025-11-24T09:08:04.9228500Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/ -2025-11-24T09:08:04.9228821Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/defaults/ -2025-11-24T09:08:04.9229157Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/defaults/main.yml -2025-11-24T09:08:04.9229462Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/tasks/ -2025-11-24T09:08:04.9229792Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/tasks/main.yml -2025-11-24T09:08:04.9230109Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/templates/ -2025-11-24T09:08:04.9230651Z ansible/roles-external/kubespray/roles/kubernetes-apps/argocd/templates/argocd-namespace.yml.j2 -2025-11-24T09:08:04.9230972Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/ -2025-11-24T09:08:04.9231303Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/defaults/ -2025-11-24T09:08:04.9231677Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/defaults/main.yml -2025-11-24T09:08:04.9232010Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/tasks/ -2025-11-24T09:08:04.9232374Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/tasks/main.yml -2025-11-24T09:08:04.9232869Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/ -2025-11-24T09:08:04.9233316Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/metrics-apiservice.yaml.j2 -2025-11-24T09:08:04.9233748Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/auth-delegator.yaml.j2 -2025-11-24T09:08:04.9234166Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/auth-reader.yaml.j2 -2025-11-24T09:08:04.9234682Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/resource-reader-clusterrolebinding.yaml.j2 -2025-11-24T09:08:04.9235161Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/metrics-server-deployment.yaml.j2 -2025-11-24T09:08:04.9235593Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/resource-reader.yaml.j2 -2025-11-24T09:08:04.9236031Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/metrics-server-sa.yaml.j2 -2025-11-24T09:08:04.9236487Z ansible/roles-external/kubespray/roles/kubernetes-apps/metrics_server/templates/metrics-server-service.yaml.j2 -2025-11-24T09:08:04.9236752Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/ -2025-11-24T09:08:04.9237065Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/defaults/ -2025-11-24T09:08:04.9237683Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/defaults/main.yml -2025-11-24T09:08:04.9238023Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/tasks/ -2025-11-24T09:08:04.9238356Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/tasks/krew.yml -2025-11-24T09:08:04.9238672Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/tasks/main.yml -2025-11-24T09:08:04.9239107Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/templates/ -2025-11-24T09:08:04.9239663Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/templates/krew.yml.j2 -2025-11-24T09:08:04.9240227Z ansible/roles-external/kubespray/roles/kubernetes-apps/krew/templates/krew.j2 -2025-11-24T09:08:04.9240741Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/ -2025-11-24T09:08:04.9241084Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/tasks/ -2025-11-24T09:08:04.9241432Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/tasks/oci.yml -2025-11-24T09:08:04.9241786Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/tasks/main.yml -2025-11-24T09:08:04.9242123Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/files/ -2025-11-24T09:08:04.9242506Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/files/oci-rbac.yml -2025-11-24T09:08:04.9243079Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/files/k8s-cluster-critical-pc.yml -2025-11-24T09:08:04.9243428Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/templates/ -2025-11-24T09:08:04.9243830Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/templates/namespace.j2 -2025-11-24T09:08:04.9244239Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/templates/node-crb.yml.j2 -2025-11-24T09:08:04.9244668Z ansible/roles-external/kubespray/roles/kubernetes-apps/cluster_roles/templates/vsphere-rbac.yml.j2 -2025-11-24T09:08:04.9245101Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/ -2025-11-24T09:08:04.9245435Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/defaults/ -2025-11-24T09:08:04.9245778Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/defaults/main.yml -2025-11-24T09:08:04.9246097Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/tasks/ -2025-11-24T09:08:04.9246430Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/tasks/main.yml -2025-11-24T09:08:04.9246752Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/ -2025-11-24T09:08:04.9247215Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-rs.yml.j2 -2025-11-24T09:08:04.9247621Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-pvc.yml.j2 -2025-11-24T09:08:04.9248012Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-sa.yml.j2 -2025-11-24T09:08:04.9248410Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-ing.yml.j2 -2025-11-24T09:08:04.9248806Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-svc.yml.j2 -2025-11-24T09:08:04.9249195Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-ns.yml.j2 -2025-11-24T09:08:04.9249588Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-cm.yml.j2 -2025-11-24T09:08:04.9250004Z ansible/roles-external/kubespray/roles/kubernetes-apps/registry/templates/registry-secrets.yml.j2 -2025-11-24T09:08:04.9250279Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/ -2025-11-24T09:08:04.9250601Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/defaults/ -2025-11-24T09:08:04.9250942Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/defaults/main.yml -2025-11-24T09:08:04.9251251Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/ -2025-11-24T09:08:04.9251632Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/nodelocaldns.yml -2025-11-24T09:08:04.9251980Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/dashboard.yml -2025-11-24T09:08:04.9252342Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/etcd_metrics.yml -2025-11-24T09:08:04.9252801Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/netchecker.yml -2025-11-24T09:08:04.9253217Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/coredns.yml -2025-11-24T09:08:04.9253548Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/tasks/main.yml -2025-11-24T09:08:04.9253874Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/ -2025-11-24T09:08:04.9254387Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-clusterrolebinding.yml.j2 -2025-11-24T09:08:04.9254797Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dns-autoscaler.yml.j2 -2025-11-24T09:08:04.9255231Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-clusterrole.yml.j2 -2025-11-24T09:08:04.9255635Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-ns.yml.j2 -2025-11-24T09:08:04.9256074Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/etcd_metrics-endpoints.yml.j2 -2025-11-24T09:08:04.9256543Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-poddisruptionbudget.yml.j2 -2025-11-24T09:08:04.9256954Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-config.yml.j2 -2025-11-24T09:08:04.9257412Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-agent-hostnet-ds.yml.j2 -2025-11-24T09:08:04.9257882Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-deployment.yml.j2 -2025-11-24T09:08:04.9258306Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/nodelocaldns-config.yml.j2 -2025-11-24T09:08:04.9258859Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/nodelocaldns-daemonset.yml.j2 -2025-11-24T09:08:04.9259359Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dns-autoscaler-clusterrolebinding.yml.j2 -2025-11-24T09:08:04.9259780Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-agent-sa.yml.j2 -2025-11-24T09:08:04.9260213Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-sa.yml.j2 -2025-11-24T09:08:04.9260631Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dns-autoscaler-sa.yml.j2 -2025-11-24T09:08:04.9261100Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/nodelocaldns-sa.yml.j2 -2025-11-24T09:08:04.9261518Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-agent-ds.yml.j2 -2025-11-24T09:08:04.9261911Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dashboard.yml.j2 -2025-11-24T09:08:04.9262310Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-svc.yml.j2 -2025-11-24T09:08:04.9262870Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-clusterrolebinding.yml.j2 -2025-11-24T09:08:04.9263341Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-clusterrole.yml.j2 -2025-11-24T09:08:04.9263738Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-sa.yml.j2 -2025-11-24T09:08:04.9264188Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/dns-autoscaler-clusterrole.yml.j2 -2025-11-24T09:08:04.9264614Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/etcd_metrics-service.yml.j2 -2025-11-24T09:08:04.9265040Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/netchecker-server-svc.yml.j2 -2025-11-24T09:08:04.9265464Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/coredns-deployment.yml.j2 -2025-11-24T09:08:04.9265931Z ansible/roles-external/kubespray/roles/kubernetes-apps/ansible/templates/nodelocaldns-second-daemonset.yml.j2 -2025-11-24T09:08:04.9266265Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/ -2025-11-24T09:08:04.9266662Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/ -2025-11-24T09:08:04.9267092Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/defaults/ -2025-11-24T09:08:04.9267646Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/defaults/main.yml -2025-11-24T09:08:04.9268099Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/tasks/ -2025-11-24T09:08:04.9268531Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/tasks/main.yml -2025-11-24T09:08:04.9268959Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/ -2025-11-24T09:08:04.9269495Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/sa-rbd-provisioner.yml.j2 -2025-11-24T09:08:04.9270039Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/role-rbd-provisioner.yml.j2 -2025-11-24T09:08:04.9270584Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/deploy-rbd-provisioner.yml.j2 -2025-11-24T09:08:04.9271107Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/sc-rbd-provisioner.yml.j2 -2025-11-24T09:08:04.9271710Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/clusterrolebinding-rbd-provisioner.yml.j2 -2025-11-24T09:08:04.9272274Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/clusterrole-rbd-provisioner.yml.j2 -2025-11-24T09:08:04.9273040Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/rolebinding-rbd-provisioner.yml.j2 -2025-11-24T09:08:04.9273593Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/secret-rbd-provisioner.yml.j2 -2025-11-24T09:08:04.9274098Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/rbd_provisioner/templates/00-namespace.yml.j2 -2025-11-24T09:08:04.9274508Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/ -2025-11-24T09:08:04.9274948Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/defaults/ -2025-11-24T09:08:04.9275476Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/defaults/main.yml -2025-11-24T09:08:04.9275906Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/tasks/ -2025-11-24T09:08:04.9276390Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/tasks/main.yml -2025-11-24T09:08:04.9276836Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/ -2025-11-24T09:08:04.9277398Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/sc-cephfs-provisioner.yml.j2 -2025-11-24T09:08:04.9277962Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/role-cephfs-provisioner.yml.j2 -2025-11-24T09:08:04.9278594Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/clusterrolebinding-cephfs-provisioner.yml.j2 -2025-11-24T09:08:04.9279150Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/sa-cephfs-provisioner.yml.j2 -2025-11-24T09:08:04.9279719Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/secret-cephfs-provisioner.yml.j2 -2025-11-24T09:08:04.9280239Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/00-namespace.yml.j2 -2025-11-24T09:08:04.9280827Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/clusterrole-cephfs-provisioner.yml.j2 -2025-11-24T09:08:04.9281394Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/deploy-cephfs-provisioner.yml.j2 -2025-11-24T09:08:04.9282076Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/cephfs_provisioner/templates/rolebinding-cephfs-provisioner.yml.j2 -2025-11-24T09:08:04.9282428Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/meta/ -2025-11-24T09:08:04.9282954Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/meta/main.yml -2025-11-24T09:08:04.9283394Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/ -2025-11-24T09:08:04.9283863Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/defaults/ -2025-11-24T09:08:04.9284357Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/defaults/main.yml -2025-11-24T09:08:04.9284803Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/tasks/ -2025-11-24T09:08:04.9285297Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/tasks/basedirs.yml -2025-11-24T09:08:04.9285785Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/tasks/main.yml -2025-11-24T09:08:04.9286253Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/ -2025-11-24T09:08:04.9286852Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-sa.yml.j2 -2025-11-24T09:08:04.9287574Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-ds.yml.j2 -2025-11-24T09:08:04.9288168Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-ns.yml.j2 -2025-11-24T09:08:04.9288841Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-clusterrolebinding.yml.j2 -2025-11-24T09:08:04.9289530Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-cm.yml.j2 -2025-11-24T09:08:04.9290167Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-clusterrole.yml.j2 -2025-11-24T09:08:04.9290762Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_volume_provisioner/templates/local-volume-provisioner-sc.yml.j2 -2025-11-24T09:08:04.9291187Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/ -2025-11-24T09:08:04.9291632Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/defaults/ -2025-11-24T09:08:04.9292115Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/defaults/main.yml -2025-11-24T09:08:04.9292558Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/tasks/ -2025-11-24T09:08:04.9293134Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/tasks/main.yml -2025-11-24T09:08:04.9293585Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/ -2025-11-24T09:08:04.9294148Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-sc.yml.j2 -2025-11-24T09:08:04.9294742Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-deployment.yml.j2 -2025-11-24T09:08:04.9295297Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-cm.yml.j2 -2025-11-24T09:08:04.9295919Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-cr.yml.j2 -2025-11-24T09:08:04.9296557Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-clusterrolebinding.yml.j2 -2025-11-24T09:08:04.9297104Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-ns.yml.j2 -2025-11-24T09:08:04.9297661Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_provisioner/local_path_provisioner/templates/local-path-storage-sa.yml.j2 -2025-11-24T09:08:04.9297934Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/ -2025-11-24T09:08:04.9298244Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/defaults/ -2025-11-24T09:08:04.9298580Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/defaults/main.yml -2025-11-24T09:08:04.9298886Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/.gitkeep -2025-11-24T09:08:04.9299188Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/tasks/ -2025-11-24T09:08:04.9299561Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/tasks/pyyaml-flatcar.yml -2025-11-24T09:08:04.9299895Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/tasks/main.yml -2025-11-24T09:08:04.9300181Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/ -2025-11-24T09:08:04.9300504Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/debian.yml -2025-11-24T09:08:04.9300940Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/ubuntu.yml -2025-11-24T09:08:04.9301265Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/suse.yml -2025-11-24T09:08:04.9301591Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/centos.yml -2025-11-24T09:08:04.9301907Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/redhat.yml -2025-11-24T09:08:04.9308420Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/amazon.yml -2025-11-24T09:08:04.9308854Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/redhat-7.yml -2025-11-24T09:08:04.9309367Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/fedora.yml -2025-11-24T09:08:04.9309709Z ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/centos-7.yml -2025-11-24T09:08:04.9310000Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/ -2025-11-24T09:08:04.9310344Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/ -2025-11-24T09:08:04.9310725Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/defaults/ -2025-11-24T09:08:04.9311132Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/defaults/main.yml -2025-11-24T09:08:04.9311479Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/tasks/ -2025-11-24T09:08:04.9311883Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/tasks/main.yml -2025-11-24T09:08:04.9312262Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/templates/ -2025-11-24T09:08:04.9313087Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/cinder-csi/templates/cinder-csi-snapshot-class.yml.j2 -2025-11-24T09:08:04.9313444Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/meta/ -2025-11-24T09:08:04.9313790Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/meta/main.yml -2025-11-24T09:08:04.9314177Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/ -2025-11-24T09:08:04.9314592Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/defaults/ -2025-11-24T09:08:04.9315029Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/defaults/main.yml -2025-11-24T09:08:04.9315422Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/tasks/ -2025-11-24T09:08:04.9315933Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/tasks/main.yml -2025-11-24T09:08:04.9316342Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/templates/ -2025-11-24T09:08:04.9316877Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/templates/rbac-snapshot-controller.yml.j2 -2025-11-24T09:08:04.9317355Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/templates/snapshot-ns.yml.j2 -2025-11-24T09:08:04.9317869Z ansible/roles-external/kubespray/roles/kubernetes-apps/snapshots/snapshot-controller/templates/snapshot-controller.yml.j2 -2025-11-24T09:08:04.9318145Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/ -2025-11-24T09:08:04.9318467Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/defaults/ -2025-11-24T09:08:04.9318808Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/defaults/main.yml -2025-11-24T09:08:04.9319122Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/tasks/ -2025-11-24T09:08:04.9319450Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/tasks/main.yml -2025-11-24T09:08:04.9319757Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/OWNERS -2025-11-24T09:08:04.9320071Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/ -2025-11-24T09:08:04.9320450Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/layer3.yaml.j2 -2025-11-24T09:08:04.9320824Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/layer2.yaml.j2 -2025-11-24T09:08:04.9321352Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/pools.yaml.j2 -2025-11-24T09:08:04.9321746Z ansible/roles-external/kubespray/roles/kubernetes-apps/metallb/templates/metallb.yaml.j2 -2025-11-24T09:08:04.9322122Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/ -2025-11-24T09:08:04.9322518Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/meta/ -2025-11-24T09:08:04.9323059Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/meta/main.yml -2025-11-24T09:08:04.9323542Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/ -2025-11-24T09:08:04.9323990Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/defaults/ -2025-11-24T09:08:04.9324458Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/defaults/main.yml -2025-11-24T09:08:04.9324885Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/tasks/ -2025-11-24T09:08:04.9325351Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/tasks/main.yml -2025-11-24T09:08:04.9325786Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/vars/ -2025-11-24T09:08:04.9326260Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/vars/ubuntu-16.yml -2025-11-24T09:08:04.9326723Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/vars/centos-7.yml -2025-11-24T09:08:04.9327185Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/vars/ubuntu-18.yml -2025-11-24T09:08:04.9327626Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/templates/ -2025-11-24T09:08:04.9328225Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/templates/nvidia-driver-install-daemonset.yml.j2 -2025-11-24T09:08:04.9328825Z ansible/roles-external/kubespray/roles/kubernetes-apps/container_engine_accelerator/nvidia_gpu/templates/k8s-device-plugin-nvidia-daemonset.yml.j2 -2025-11-24T09:08:04.9329123Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/ -2025-11-24T09:08:04.9329451Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/ -2025-11-24T09:08:04.9329871Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/tasks/ -2025-11-24T09:08:04.9330258Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/tasks/main.yml -2025-11-24T09:08:04.9330629Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/templates/ -2025-11-24T09:08:04.9331097Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/templates/volumesnapshotcontents.yml.j2 -2025-11-24T09:08:04.9331558Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/templates/volumesnapshotclasses.yml.j2 -2025-11-24T09:08:04.9331998Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/csi_crd/templates/volumesnapshots.yml.j2 -2025-11-24T09:08:04.9332323Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/ -2025-11-24T09:08:04.9332784Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/defaults/ -2025-11-24T09:08:04.9333188Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/defaults/main.yml -2025-11-24T09:08:04.9333526Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/tasks/ -2025-11-24T09:08:04.9333904Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/tasks/main.yml -2025-11-24T09:08:04.9334254Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/ -2025-11-24T09:08:04.9334692Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-setup.yml.j2 -2025-11-24T09:08:04.9335274Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-cred-secret.yml.j2 -2025-11-24T09:08:04.9335733Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-sc-regional.yml.j2 -2025-11-24T09:08:04.9336164Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-node.yml.j2 -2025-11-24T09:08:04.9336621Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-controller.yml.j2 -2025-11-24T09:08:04.9337067Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/gcp_pd/templates/gcp-pd-csi-sc-zonal.yml.j2 -2025-11-24T09:08:04.9337459Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/ -2025-11-24T09:08:04.9337830Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/defaults/ -2025-11-24T09:08:04.9338228Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/defaults/main.yml -2025-11-24T09:08:04.9338573Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/tasks/ -2025-11-24T09:08:04.9339019Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/tasks/azure-credential-check.yml -2025-11-24T09:08:04.9339404Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/tasks/main.yml -2025-11-24T09:08:04.9339775Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/ -2025-11-24T09:08:04.9340299Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-node-rbac.yml.j2 -2025-11-24T09:08:04.9340812Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-controller.yml.j2 -2025-11-24T09:08:04.9341313Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-cloud-config-secret.yml.j2 -2025-11-24T09:08:04.9341807Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-node.yml.j2 -2025-11-24T09:08:04.9342265Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-cloud-config.j2 -2025-11-24T09:08:04.9342910Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-controller-rbac.yml.j2 -2025-11-24T09:08:04.9343410Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/azuredisk/templates/azure-csi-azuredisk-driver.yml.j2 -2025-11-24T09:08:04.9343805Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/ -2025-11-24T09:08:04.9344162Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/defaults/ -2025-11-24T09:08:04.9344553Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/defaults/main.yml -2025-11-24T09:08:04.9344886Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/tasks/ -2025-11-24T09:08:04.9345342Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/tasks/vsphere-credentials-check.yml -2025-11-24T09:08:04.9345726Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/tasks/main.yml -2025-11-24T09:08:04.9346091Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/ -2025-11-24T09:08:04.9346535Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-driver.yml.j2 -2025-11-24T09:08:04.9347059Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-controller-deployment.yml.j2 -2025-11-24T09:08:04.9347525Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-namespace.yml.j2 -2025-11-24T09:08:04.9348039Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-controller-service.yml.j2 -2025-11-24T09:08:04.9348540Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-controller-rbac.yml.j2 -2025-11-24T09:08:04.9349137Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-cloud-config.j2 -2025-11-24T09:08:04.9349591Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-node.yml.j2 -2025-11-24T09:08:04.9350053Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-node-rbac.yml.j2 -2025-11-24T09:08:04.9350561Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/vsphere/templates/vsphere-csi-controller-config.yml.j2 -2025-11-24T09:08:04.9350947Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/ -2025-11-24T09:08:04.9351308Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/defaults/ -2025-11-24T09:08:04.9351703Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/defaults/main.yml -2025-11-24T09:08:04.9352047Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/tasks/ -2025-11-24T09:08:04.9352435Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/tasks/main.yml -2025-11-24T09:08:04.9353105Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/ -2025-11-24T09:08:04.9353600Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/aws-ebs-csi-nodeservice.yml.j2 -2025-11-24T09:08:04.9354055Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/aws-ebs-csi-driver.yml.j2 -2025-11-24T09:08:04.9354577Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/aws-ebs-csi-controllerservice-rbac.yml.j2 -2025-11-24T09:08:04.9355071Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/aws_ebs/templates/aws-ebs-csi-controllerservice.yml.j2 -2025-11-24T09:08:04.9355388Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/OWNERS -2025-11-24T09:08:04.9355710Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/ -2025-11-24T09:08:04.9356065Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/defaults/ -2025-11-24T09:08:04.9356455Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/defaults/main.yml -2025-11-24T09:08:04.9356790Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/tasks/ -2025-11-24T09:08:04.9357171Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/tasks/main.yml -2025-11-24T09:08:04.9357664Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/ -2025-11-24T09:08:04.9358142Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-controller.yml.j2 -2025-11-24T09:08:04.9358588Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-setup.yml.j2 -2025-11-24T09:08:04.9359061Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-cred-secret.yml.j2 -2025-11-24T09:08:04.9359510Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-driver.yml.j2 -2025-11-24T09:08:04.9359956Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/upcloud/templates/upcloud-csi-node.yml.j2 -2025-11-24T09:08:04.9360278Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/ -2025-11-24T09:08:04.9360623Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/defaults/ -2025-11-24T09:08:04.9361018Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/defaults/main.yml -2025-11-24T09:08:04.9361358Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/tasks/ -2025-11-24T09:08:04.9361790Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/tasks/cinder-write-cacert.yml -2025-11-24T09:08:04.9362164Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/tasks/main.yml -2025-11-24T09:08:04.9362838Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/tasks/cinder-credential-check.yml -2025-11-24T09:08:04.9363210Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/ -2025-11-24T09:08:04.9363730Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-poddisruptionbudget.yml.j2 -2025-11-24T09:08:04.9364221Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-nodeplugin-rbac.yml.j2 -2025-11-24T09:08:04.9364716Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-driver.yml.j2 -2025-11-24T09:08:04.9365277Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-cloud-config-secret.yml.j2 -2025-11-24T09:08:04.9365778Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-controllerplugin.yml.j2 -2025-11-24T09:08:04.9366282Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-controllerplugin-rbac.yml.j2 -2025-11-24T09:08:04.9366732Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-cloud-config.j2 -2025-11-24T09:08:04.9367195Z ansible/roles-external/kubespray/roles/kubernetes-apps/csi_driver/cinder/templates/cinder-csi-nodeplugin.yml.j2 -2025-11-24T09:08:04.9367540Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/ -2025-11-24T09:08:04.9367978Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/ -2025-11-24T09:08:04.9368413Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/defaults/ -2025-11-24T09:08:04.9368863Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/defaults/main.yml -2025-11-24T09:08:04.9369287Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/tasks/ -2025-11-24T09:08:04.9369841Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/tasks/huaweicloud-credential-check.yml -2025-11-24T09:08:04.9370281Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/tasks/main.yml -2025-11-24T09:08:04.9370722Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/ -2025-11-24T09:08:04.9371285Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-config.j2 -2025-11-24T09:08:04.9371998Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-controller-manager-ds.yml.j2 -2025-11-24T09:08:04.9372607Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-config-secret.yml.j2 -2025-11-24T09:08:04.9373361Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-controller-manager-roles.yml.j2 -2025-11-24T09:08:04.9374065Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/huaweicloud/templates/external-huawei-cloud-controller-manager-role-bindings.yml.j2 -2025-11-24T09:08:04.9374442Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/meta/ -2025-11-24T09:08:04.9374850Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/meta/main.yml -2025-11-24T09:08:04.9375236Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/ -2025-11-24T09:08:04.9375649Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/defaults/ -2025-11-24T09:08:04.9376082Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/defaults/main.yml -2025-11-24T09:08:04.9376480Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/tasks/ -2025-11-24T09:08:04.9377015Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/tasks/main.yml -2025-11-24T09:08:04.9377436Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/ -2025-11-24T09:08:04.9378022Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-role-bindings.yml.j2 -2025-11-24T09:08:04.9378699Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-controller-manager-ds-with-networks.yml.j2 -2025-11-24T09:08:04.9379374Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-controller-manager-ds.yml.j2 -2025-11-24T09:08:04.9379962Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-service-account.yml.j2 -2025-11-24T09:08:04.9380547Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/hcloud/templates/external-hcloud-cloud-secret.yml.j2 -2025-11-24T09:08:04.9380947Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/ -2025-11-24T09:08:04.9381367Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/defaults/ -2025-11-24T09:08:04.9381811Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/defaults/main.yml -2025-11-24T09:08:04.9382223Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/tasks/ -2025-11-24T09:08:04.9382862Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/tasks/vsphere-credentials-check.yml -2025-11-24T09:08:04.9383296Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/tasks/main.yml -2025-11-24T09:08:04.9540794Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/ -2025-11-24T09:08:04.9541512Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cpi-cloud-config-secret.yml.j2 -2025-11-24T09:08:04.9542240Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cloud-controller-manager-role-bindings.yml.j2 -2025-11-24T09:08:04.9543108Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cloud-controller-manager-roles.yml.j2 -2025-11-24T09:08:04.9544078Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cloud-controller-manager-ds.yml.j2 -2025-11-24T09:08:04.9544655Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/vsphere/templates/external-vsphere-cpi-cloud-config.j2 -2025-11-24T09:08:04.9545058Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/ -2025-11-24T09:08:04.9545495Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/defaults/ -2025-11-24T09:08:04.9545944Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/defaults/main.yml -2025-11-24T09:08:04.9546362Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/tasks/ -2025-11-24T09:08:04.9546894Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/tasks/openstack-credential-check.yml -2025-11-24T09:08:04.9547337Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/tasks/main.yml -2025-11-24T09:08:04.9547747Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/OWNERS -2025-11-24T09:08:04.9548169Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/ -2025-11-24T09:08:04.9548734Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-config.j2 -2025-11-24T09:08:04.9549549Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-controller-manager-ds.yml.j2 -2025-11-24T09:08:04.9550254Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-controller-manager-role-bindings.yml.j2 -2025-11-24T09:08:04.9550870Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-config-secret.yml.j2 -2025-11-24T09:08:04.9797439Z ansible/roles-external/kubespray/roles/kubernetes-apps/external_cloud_controller/openstack/templates/external-openstack-cloud-controller-manager-roles.yml.j2 -2025-11-24T09:08:04.9797964Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/ -2025-11-24T09:08:04.9798465Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/defaults/ -2025-11-24T09:08:04.9799031Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/defaults/main.yml -2025-11-24T09:08:04.9799503Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/tasks/ -2025-11-24T09:08:04.9800010Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/tasks/main.yml -2025-11-24T09:08:04.9800488Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/ -2025-11-24T09:08:04.9801061Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-api-crds.yaml.j2 -2025-11-24T09:08:04.9801638Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-rolebinding.yaml.j2 -2025-11-24T09:08:04.9802188Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-master.yaml.j2 -2025-11-24T09:08:04.9802937Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-clusterrolebinding.yaml.j2 -2025-11-24T09:08:04.9803412Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-master-conf.yaml.j2 -2025-11-24T09:08:04.9803845Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-gc.yaml.j2 -2025-11-24T09:08:04.9804264Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-ns.yaml.j2 -2025-11-24T09:08:04.9805009Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-role.yaml.j2 -2025-11-24T09:08:04.9805476Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-worker-conf.yaml.j2 -2025-11-24T09:08:04.9805923Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-worker.yaml.j2 -2025-11-24T09:08:04.9806363Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-service.yaml.j2 -2025-11-24T09:08:04.9806819Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-clusterrole.yaml.j2 -2025-11-24T09:08:04.9807319Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-topologyupdater-conf.yaml.j2 -2025-11-24T09:08:04.9911264Z ansible/roles-external/kubespray/roles/kubernetes-apps/node_feature_discovery/templates/nfd-serviceaccount.yaml.j2 -2025-11-24T09:08:04.9911709Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/ -2025-11-24T09:08:04.9912078Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/flannel/ -2025-11-24T09:08:04.9912475Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/flannel/tasks/ -2025-11-24T09:08:04.9913071Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/flannel/tasks/main.yml -2025-11-24T09:08:04.9913427Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/weave/ -2025-11-24T09:08:04.9913783Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/weave/tasks/ -2025-11-24T09:08:04.9914483Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/weave/tasks/main.yml -2025-11-24T09:08:04.9914824Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/meta/ -2025-11-24T09:08:04.9915179Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/meta/main.yml -2025-11-24T09:08:04.9915510Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/multus/ -2025-11-24T09:08:04.9915865Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/multus/tasks/ -2025-11-24T09:08:04.9916255Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/multus/tasks/main.yml -2025-11-24T09:08:04.9916694Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-ovn/ -2025-11-24T09:08:04.9917062Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-ovn/tasks/ -2025-11-24T09:08:04.9917460Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-ovn/tasks/main.yml -2025-11-24T09:08:04.9917811Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-router/ -2025-11-24T09:08:04.9918192Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-router/tasks/ -2025-11-24T09:08:04.9918594Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-router/tasks/main.yml -2025-11-24T09:08:04.9918969Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/kube-router/OWNERS -2025-11-24T09:08:04.9919300Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/calico/ -2025-11-24T09:08:04.9919644Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/calico/tasks/ -2025-11-24T09:08:04.9920025Z ansible/roles-external/kubespray/roles/kubernetes-apps/network_plugin/calico/tasks/main.yml -2025-11-24T09:08:04.9920357Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/ -2025-11-24T09:08:04.9920689Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/meta/ -2025-11-24T09:08:04.9921065Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/meta/main.yml -2025-11-24T09:08:04.9921403Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/ -2025-11-24T09:08:04.9921782Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/defaults/ -2025-11-24T09:08:04.9922196Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/defaults/main.yml -2025-11-24T09:08:04.9922805Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/tasks/ -2025-11-24T09:08:04.9923221Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/tasks/main.yml -2025-11-24T09:08:04.9923613Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/ -2025-11-24T09:08:04.9924083Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/calico-kube-crb.yml.j2 -2025-11-24T09:08:04.9924546Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/calico-kube-cr.yml.j2 -2025-11-24T09:08:04.9925000Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/calico-kube-sa.yml.j2 -2025-11-24T09:08:04.9925505Z ansible/roles-external/kubespray/roles/kubernetes-apps/policy_controller/calico/templates/calico-kube-controllers.yml.j2 -2025-11-24T09:08:04.9925834Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/ -2025-11-24T09:08:04.9926204Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/ -2025-11-24T09:08:04.9926607Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/defaults/ -2025-11-24T09:08:04.9927046Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/defaults/main.yml -2025-11-24T09:08:04.9927441Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/tasks/ -2025-11-24T09:08:04.9928106Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/tasks/main.yml -2025-11-24T09:08:04.9928505Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/OWNERS -2025-11-24T09:08:04.9928920Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/templates/ -2025-11-24T09:08:04.9929460Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/aws-ebs-csi/templates/aws-ebs-csi-storage-class.yml.j2 -2025-11-24T09:08:04.9929883Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/ -2025-11-24T09:08:04.9930371Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/defaults/ -2025-11-24T09:08:04.9986134Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/defaults/main.yml -2025-11-24T09:08:04.9987377Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/tasks/ -2025-11-24T09:08:04.9988408Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/tasks/main.yml -2025-11-24T09:08:04.9989398Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/templates/ -2025-11-24T09:08:04.9990510Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/cinder-csi/templates/cinder-csi-storage-class.yml.j2 -2025-11-24T09:08:04.9991545Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/meta/ -2025-11-24T09:08:04.9992413Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/meta/main.yml -2025-11-24T09:08:04.9993478Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/ -2025-11-24T09:08:04.9994359Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/defaults/ -2025-11-24T09:08:04.9995293Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/defaults/main.yml -2025-11-24T09:08:04.9996215Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/tasks/ -2025-11-24T09:08:04.9997133Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/tasks/main.yml -2025-11-24T09:08:04.9998063Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/templates/ -2025-11-24T09:08:04.9999094Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/gcp-pd-csi/templates/gcp-pd-csi-storage-class.yml.j2 -2025-11-24T09:08:05.0000293Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/ -2025-11-24T09:08:05.0001176Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/defaults/ -2025-11-24T09:08:05.0002122Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/defaults/main.yml -2025-11-24T09:08:05.0003187Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/tasks/ -2025-11-24T09:08:05.0004086Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/tasks/main.yml -2025-11-24T09:08:05.0004987Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/templates/ -2025-11-24T09:08:05.0005993Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/upcloud-csi/templates/upcloud-csi-storage-class.yml.j2 -2025-11-24T09:08:05.0007001Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/ -2025-11-24T09:08:05.0007881Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/defaults/ -2025-11-24T09:08:05.0008809Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/defaults/main.yml -2025-11-24T09:08:05.0009735Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/tasks/ -2025-11-24T09:08:05.0011297Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/tasks/main.yml -2025-11-24T09:08:05.0013506Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/templates/ -2025-11-24T09:08:05.0015335Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/azuredisk-csi/templates/azure-csi-storage-class.yml.j2 -2025-11-24T09:08:05.0016362Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/ -2025-11-24T09:08:05.0017220Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/defaults/ -2025-11-24T09:08:05.0018121Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/defaults/main.yml -2025-11-24T09:08:05.0019652Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/tasks/ -2025-11-24T09:08:05.0020655Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/tasks/main.yml -2025-11-24T09:08:05.0021961Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/templates/ -2025-11-24T09:08:05.0023118Z ansible/roles-external/kubespray/roles/kubernetes-apps/persistent_volumes/openstack/templates/openstack-storage-class.yml.j2 -2025-11-24T09:08:05.0023947Z ansible/roles-external/kubespray/roles/reset/ -2025-11-24T09:08:05.0024493Z ansible/roles-external/kubespray/roles/reset/defaults/ -2025-11-24T09:08:05.0025087Z ansible/roles-external/kubespray/roles/reset/defaults/main.yml -2025-11-24T09:08:05.0025682Z ansible/roles-external/kubespray/roles/reset/tasks/ -2025-11-24T09:08:05.0026251Z ansible/roles-external/kubespray/roles/reset/tasks/main.yml -2025-11-24T09:08:05.0027216Z ansible/roles-external/kubespray/roles/upgrade/ -2025-11-24T09:08:05.0027804Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/ -2025-11-24T09:08:05.0028718Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/tasks/ -2025-11-24T09:08:05.0029716Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/tasks/yum.yml -2025-11-24T09:08:05.0030456Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/tasks/apt.yml -2025-11-24T09:08:05.0031240Z ansible/roles-external/kubespray/roles/upgrade/system-upgrade/tasks/main.yml -2025-11-24T09:08:05.0031911Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/ -2025-11-24T09:08:05.0032581Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/defaults/ -2025-11-24T09:08:05.0033466Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/defaults/main.yml -2025-11-24T09:08:05.0034307Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/tasks/ -2025-11-24T09:08:05.0035015Z ansible/roles-external/kubespray/roles/upgrade/post-upgrade/tasks/main.yml -2025-11-24T09:08:05.0035678Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/ -2025-11-24T09:08:05.0036334Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/defaults/ -2025-11-24T09:08:05.0037045Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/defaults/main.yml -2025-11-24T09:08:05.0037737Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/tasks/ -2025-11-24T09:08:05.0038425Z ansible/roles-external/kubespray/roles/upgrade/pre-upgrade/tasks/main.yml -2025-11-24T09:08:05.0039035Z ansible/roles-external/kubespray/roles/etcd/ -2025-11-24T09:08:05.0039565Z ansible/roles-external/kubespray/roles/etcd/defaults/ -2025-11-24T09:08:05.0040156Z ansible/roles-external/kubespray/roles/etcd/defaults/main.yml -2025-11-24T09:08:05.0040737Z ansible/roles-external/kubespray/roles/etcd/meta/ -2025-11-24T09:08:05.0041312Z ansible/roles-external/kubespray/roles/etcd/meta/main.yml -2025-11-24T09:08:05.0041887Z ansible/roles-external/kubespray/roles/etcd/tasks/ -2025-11-24T09:08:05.0042486Z ansible/roles-external/kubespray/roles/etcd/tasks/upd_ca_trust.yml -2025-11-24T09:08:05.0043291Z ansible/roles-external/kubespray/roles/etcd/tasks/gen_nodes_certs_script.yml -2025-11-24T09:08:05.0044011Z ansible/roles-external/kubespray/roles/etcd/tasks/join_etcd_member.yml -2025-11-24T09:08:05.0044701Z ansible/roles-external/kubespray/roles/etcd/tasks/refresh_config.yml -2025-11-24T09:08:05.0045522Z ansible/roles-external/kubespray/roles/etcd/tasks/gen_certs_script.yml -2025-11-24T09:08:05.0046174Z ansible/roles-external/kubespray/roles/etcd/tasks/configure.yml -2025-11-24T09:08:05.0046830Z ansible/roles-external/kubespray/roles/etcd/tasks/install_docker.yml -2025-11-24T09:08:05.0047492Z ansible/roles-external/kubespray/roles/etcd/tasks/install_host.yml -2025-11-24T09:08:05.0048192Z ansible/roles-external/kubespray/roles/etcd/tasks/join_etcd-events_member.yml -2025-11-24T09:08:05.0048882Z ansible/roles-external/kubespray/roles/etcd/tasks/check_certs.yml -2025-11-24T09:08:05.0049503Z ansible/roles-external/kubespray/roles/etcd/tasks/main.yml -2025-11-24T09:08:05.0050170Z ansible/roles-external/kubespray/roles/etcd/handlers/ -2025-11-24T09:08:05.0050809Z ansible/roles-external/kubespray/roles/etcd/handlers/backup_cleanup.yml -2025-11-24T09:08:05.0051461Z ansible/roles-external/kubespray/roles/etcd/handlers/main.yml -2025-11-24T09:08:05.0052086Z ansible/roles-external/kubespray/roles/etcd/handlers/backup.yml -2025-11-24T09:08:05.0052789Z ansible/roles-external/kubespray/roles/etcd/vars/ -2025-11-24T09:08:05.0053344Z ansible/roles-external/kubespray/roles/etcd/vars/main.yml -2025-11-24T09:08:05.0053918Z ansible/roles-external/kubespray/roles/etcd/templates/ -2025-11-24T09:08:05.0054552Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-events.j2 -2025-11-24T09:08:05.0055267Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-docker.service.j2 -2025-11-24T09:08:05.0055996Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-events.env.j2 -2025-11-24T09:08:05.0056705Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-host.service.j2 -2025-11-24T09:08:05.0057415Z ansible/roles-external/kubespray/roles/etcd/templates/openssl.conf.j2 -2025-11-24T09:08:05.0058154Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-events-docker.service.j2 -2025-11-24T09:08:05.0058862Z ansible/roles-external/kubespray/roles/etcd/templates/etcd.j2 -2025-11-24T09:08:05.0059554Z ansible/roles-external/kubespray/roles/etcd/templates/etcd-events-host.service.j2 -2025-11-24T09:08:05.0060313Z ansible/roles-external/kubespray/roles/etcd/templates/make-ssl-etcd.sh.j2 -2025-11-24T09:08:05.0060993Z ansible/roles-external/kubespray/roles/etcd/templates/etcd.env.j2 -2025-11-24T09:08:05.0061619Z ansible/roles-external/kubespray/roles/kubespray-defaults/ -2025-11-24T09:08:05.0062264Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/ -2025-11-24T09:08:05.0063158Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/ -2025-11-24T09:08:05.0063917Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/download.yml -2025-11-24T09:08:05.0064739Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/checksums.yml -2025-11-24T09:08:05.0065512Z ansible/roles-external/kubespray/roles/kubespray-defaults/defaults/main/main.yml -2025-11-24T09:08:05.0066213Z ansible/roles-external/kubespray/roles/kubespray-defaults/tasks/ -2025-11-24T09:08:05.0066896Z ansible/roles-external/kubespray/roles/kubespray-defaults/tasks/main.yaml -2025-11-24T09:08:05.0067626Z ansible/roles-external/kubespray/roles/kubespray-defaults/tasks/no_proxy.yml -2025-11-24T09:08:05.0068362Z ansible/roles-external/kubespray/roles/kubespray-defaults/tasks/fallback_ips.yml -2025-11-24T09:08:05.0069051Z ansible/roles-external/kubespray/roles/kubespray-defaults/vars/ -2025-11-24T09:08:05.0069721Z ansible/roles-external/kubespray/roles/kubespray-defaults/vars/main.yml -2025-11-24T09:08:05.0070358Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/ -2025-11-24T09:08:05.0070943Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/tasks/ -2025-11-24T09:08:05.0071602Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/tasks/main.yml -2025-11-24T09:08:05.0072269Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/templates/ -2025-11-24T09:08:05.0073070Z ansible/roles-external/kubespray/roles/etcdctl_etcdutl/templates/etcdctl.sh.j2 -2025-11-24T09:08:05.0073714Z ansible/roles-external/kubespray/roles/remove-node/ -2025-11-24T09:08:05.0074481Z ansible/roles-external/kubespray/roles/remove-node/remove-etcd-node/ -2025-11-24T09:08:05.0075228Z ansible/roles-external/kubespray/roles/remove-node/remove-etcd-node/tasks/ -2025-11-24T09:08:05.0075971Z ansible/roles-external/kubespray/roles/remove-node/remove-etcd-node/tasks/main.yml -2025-11-24T09:08:05.0076672Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/ -2025-11-24T09:08:05.0077343Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/defaults/ -2025-11-24T09:08:05.0078071Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/defaults/main.yml -2025-11-24T09:08:05.0078877Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/tasks/ -2025-11-24T09:08:05.0079582Z ansible/roles-external/kubespray/roles/remove-node/pre-remove/tasks/main.yml -2025-11-24T09:08:05.0080247Z ansible/roles-external/kubespray/roles/remove-node/post-remove/ -2025-11-24T09:08:05.0080921Z ansible/roles-external/kubespray/roles/remove-node/post-remove/defaults/ -2025-11-24T09:08:05.0081662Z ansible/roles-external/kubespray/roles/remove-node/post-remove/defaults/main.yml -2025-11-24T09:08:05.0082386Z ansible/roles-external/kubespray/roles/remove-node/post-remove/tasks/ -2025-11-24T09:08:05.0083202Z ansible/roles-external/kubespray/roles/remove-node/post-remove/tasks/main.yml -2025-11-24T09:08:05.0083836Z ansible/roles-external/kubespray/roles/helm-apps/ -2025-11-24T09:08:05.0084390Z ansible/roles-external/kubespray/roles/helm-apps/meta/ -2025-11-24T09:08:05.0085037Z ansible/roles-external/kubespray/roles/helm-apps/meta/argument_specs.yml -2025-11-24T09:08:05.0085687Z ansible/roles-external/kubespray/roles/helm-apps/meta/main.yml -2025-11-24T09:08:05.0086291Z ansible/roles-external/kubespray/roles/helm-apps/tasks/ -2025-11-24T09:08:05.0086902Z ansible/roles-external/kubespray/roles/helm-apps/tasks/main.yml -2025-11-24T09:08:05.0087527Z ansible/roles-external/kubespray/roles/helm-apps/README.md -2025-11-24T09:08:05.0095055Z ansible/roles-external/kubespray/roles/helm-apps/vars/ -2025-11-24T09:08:05.0095739Z ansible/roles-external/kubespray/roles/helm-apps/vars/main.yml -2025-11-24T09:08:05.0096368Z ansible/roles-external/kubespray/roles/download/ -2025-11-24T09:08:05.0096926Z ansible/roles-external/kubespray/roles/download/meta/ -2025-11-24T09:08:05.0097962Z ansible/roles-external/kubespray/roles/download/meta/main.yml -2025-11-24T09:08:05.0098908Z ansible/roles-external/kubespray/roles/download/tasks/ -2025-11-24T09:08:05.0099936Z ansible/roles-external/kubespray/roles/download/tasks/download_container.yml -2025-11-24T09:08:05.0101209Z ansible/roles-external/kubespray/roles/download/tasks/prep_download.yml -2025-11-24T09:08:05.0102468Z ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml -2025-11-24T09:08:05.0103858Z ansible/roles-external/kubespray/roles/download/tasks/prep_kubeadm_images.yml -2025-11-24T09:08:05.0104775Z ansible/roles-external/kubespray/roles/download/tasks/set_container_facts.yml -2025-11-24T09:08:05.0106148Z ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml -2025-11-24T09:08:05.0107242Z ansible/roles-external/kubespray/roles/download/tasks/download_file.yml -2025-11-24T09:08:05.0108187Z ansible/roles-external/kubespray/roles/download/tasks/main.yml -2025-11-24T09:08:05.0109471Z ansible/roles-external/kubespray/roles/download/templates/ -2025-11-24T09:08:05.0110257Z ansible/roles-external/kubespray/roles/download/templates/kubeadm-images.yaml.j2 -2025-11-24T09:08:05.0111551Z ansible/roles-external/kubespray/roles/network_plugin/ -2025-11-24T09:08:05.0113455Z ansible/roles-external/kubespray/roles/network_plugin/flannel/ -2025-11-24T09:08:05.0114482Z ansible/roles-external/kubespray/roles/network_plugin/flannel/defaults/ -2025-11-24T09:08:05.0115404Z ansible/roles-external/kubespray/roles/network_plugin/flannel/defaults/main.yml -2025-11-24T09:08:05.0116139Z ansible/roles-external/kubespray/roles/network_plugin/flannel/meta/ -2025-11-24T09:08:05.0116863Z ansible/roles-external/kubespray/roles/network_plugin/flannel/meta/main.yml -2025-11-24T09:08:05.0118132Z ansible/roles-external/kubespray/roles/network_plugin/flannel/tasks/ -2025-11-24T09:08:05.0119137Z ansible/roles-external/kubespray/roles/network_plugin/flannel/tasks/reset.yml -2025-11-24T09:08:05.0119893Z ansible/roles-external/kubespray/roles/network_plugin/flannel/tasks/main.yml -2025-11-24T09:08:05.0120624Z ansible/roles-external/kubespray/roles/network_plugin/flannel/templates/ -2025-11-24T09:08:05.0121420Z ansible/roles-external/kubespray/roles/network_plugin/flannel/templates/cni-flannel.yml.j2 -2025-11-24T09:08:05.0122312Z ansible/roles-external/kubespray/roles/network_plugin/flannel/templates/cni-flannel-rbac.yml.j2 -2025-11-24T09:08:05.0123316Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/ -2025-11-24T09:08:05.0124025Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/defaults/ -2025-11-24T09:08:05.0124773Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/defaults/main.yml -2025-11-24T09:08:05.0125525Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/meta/ -2025-11-24T09:08:05.0126259Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/meta/main.yml -2025-11-24T09:08:05.0126992Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/tasks/ -2025-11-24T09:08:05.0127725Z ansible/roles-external/kubespray/roles/network_plugin/custom_cni/tasks/main.yml -2025-11-24T09:08:05.0128407Z ansible/roles-external/kubespray/roles/network_plugin/weave/ -2025-11-24T09:08:05.0129080Z ansible/roles-external/kubespray/roles/network_plugin/weave/defaults/ -2025-11-24T09:08:05.0129801Z ansible/roles-external/kubespray/roles/network_plugin/weave/defaults/main.yml -2025-11-24T09:08:05.0130508Z ansible/roles-external/kubespray/roles/network_plugin/weave/meta/ -2025-11-24T09:08:05.0131195Z ansible/roles-external/kubespray/roles/network_plugin/weave/meta/main.yml -2025-11-24T09:08:05.0131886Z ansible/roles-external/kubespray/roles/network_plugin/weave/tasks/ -2025-11-24T09:08:05.0132588Z ansible/roles-external/kubespray/roles/network_plugin/weave/tasks/main.yml -2025-11-24T09:08:05.0133626Z ansible/roles-external/kubespray/roles/network_plugin/weave/templates/ -2025-11-24T09:08:05.0134438Z ansible/roles-external/kubespray/roles/network_plugin/weave/templates/10-weave.conflist.j2 -2025-11-24T09:08:05.0135290Z ansible/roles-external/kubespray/roles/network_plugin/weave/templates/weave-net.yml.j2 -2025-11-24T09:08:05.0136021Z ansible/roles-external/kubespray/roles/network_plugin/meta/ -2025-11-24T09:08:05.0136795Z ansible/roles-external/kubespray/roles/network_plugin/meta/main.yml -2025-11-24T09:08:05.0137509Z ansible/roles-external/kubespray/roles/network_plugin/calico_defaults/ -2025-11-24T09:08:05.0138254Z ansible/roles-external/kubespray/roles/network_plugin/calico_defaults/defaults/ -2025-11-24T09:08:05.0139071Z ansible/roles-external/kubespray/roles/network_plugin/calico_defaults/defaults/main.yml -2025-11-24T09:08:05.0139800Z ansible/roles-external/kubespray/roles/network_plugin/cni/ -2025-11-24T09:08:05.0140459Z ansible/roles-external/kubespray/roles/network_plugin/cni/defaults/ -2025-11-24T09:08:05.0141179Z ansible/roles-external/kubespray/roles/network_plugin/cni/defaults/main.yml -2025-11-24T09:08:05.0141878Z ansible/roles-external/kubespray/roles/network_plugin/cni/tasks/ -2025-11-24T09:08:05.0142575Z ansible/roles-external/kubespray/roles/network_plugin/cni/tasks/main.yml -2025-11-24T09:08:05.0143405Z ansible/roles-external/kubespray/roles/network_plugin/multus/ -2025-11-24T09:08:05.0144088Z ansible/roles-external/kubespray/roles/network_plugin/multus/defaults/ -2025-11-24T09:08:05.0144817Z ansible/roles-external/kubespray/roles/network_plugin/multus/defaults/main.yml -2025-11-24T09:08:05.0145539Z ansible/roles-external/kubespray/roles/network_plugin/multus/meta/ -2025-11-24T09:08:05.0146237Z ansible/roles-external/kubespray/roles/network_plugin/multus/meta/main.yml -2025-11-24T09:08:05.0146936Z ansible/roles-external/kubespray/roles/network_plugin/multus/tasks/ -2025-11-24T09:08:05.0147638Z ansible/roles-external/kubespray/roles/network_plugin/multus/tasks/main.yml -2025-11-24T09:08:05.0148491Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/ -2025-11-24T09:08:05.0149291Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/multus-clusterrolebinding.yml -2025-11-24T09:08:05.0150182Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/multus-clusterrole.yml -2025-11-24T09:08:05.0151055Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/multus-serviceaccount.yml -2025-11-24T09:08:05.0151893Z ansible/roles-external/kubespray/roles/network_plugin/multus/files/multus-crd.yml -2025-11-24T09:08:05.0152755Z ansible/roles-external/kubespray/roles/network_plugin/multus/templates/ -2025-11-24T09:08:05.0153654Z ansible/roles-external/kubespray/roles/network_plugin/multus/templates/multus-daemonset.yml.j2 -2025-11-24T09:08:05.0154406Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/ -2025-11-24T09:08:05.0155088Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/defaults/ -2025-11-24T09:08:05.0155821Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/defaults/main.yml -2025-11-24T09:08:05.0156547Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/meta/ -2025-11-24T09:08:05.0157272Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/meta/main.yml -2025-11-24T09:08:05.0157989Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/tasks/ -2025-11-24T09:08:05.0158702Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/tasks/main.yml -2025-11-24T09:08:05.0159422Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/handlers/ -2025-11-24T09:08:05.0160151Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/handlers/main.yml -2025-11-24T09:08:05.0160879Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ -2025-11-24T09:08:05.0161598Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-local -2025-11-24T09:08:05.0162358Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-local -2025-11-24T09:08:05.0163258Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-macvlan -2025-11-24T09:08:05.0164033Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-macvlan -2025-11-24T09:08:05.0164752Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/OWNERS -2025-11-24T09:08:05.0165456Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/ -2025-11-24T09:08:05.0166362Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/debian-network-macvlan.cfg.j2 -2025-11-24T09:08:05.0167320Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/centos-postdown-macvlan.cfg.j2 -2025-11-24T09:08:05.0168263Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/centos-postup-macvlan.cfg.j2 -2025-11-24T09:08:05.0169163Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/10-macvlan.conf.j2 -2025-11-24T09:08:05.0170053Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/centos-network-macvlan.cfg.j2 -2025-11-24T09:08:05.0170985Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/coreos-service-nat_ouside.j2 -2025-11-24T09:08:05.0171878Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/99-loopback.conf.j2 -2025-11-24T09:08:05.0172872Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/coreos-network-macvlan.cfg.j2 -2025-11-24T09:08:05.0173815Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/centos-routes-macvlan.cfg.j2 -2025-11-24T09:08:05.0174779Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/coreos-interface-macvlan.cfg.j2 -2025-11-24T09:08:05.0175717Z ansible/roles-external/kubespray/roles/network_plugin/macvlan/templates/coreos-device-macvlan.cfg.j2 -2025-11-24T09:08:05.0176490Z ansible/roles-external/kubespray/roles/network_plugin/ovn4nfv/ -2025-11-24T09:08:05.0177160Z ansible/roles-external/kubespray/roles/network_plugin/ovn4nfv/tasks/ -2025-11-24T09:08:05.0177864Z ansible/roles-external/kubespray/roles/network_plugin/ovn4nfv/tasks/main.yml -2025-11-24T09:08:05.0178677Z ansible/roles-external/kubespray/roles/network_plugin/cilium/ -2025-11-24T09:08:05.0179364Z ansible/roles-external/kubespray/roles/network_plugin/cilium/defaults/ -2025-11-24T09:08:05.0180088Z ansible/roles-external/kubespray/roles/network_plugin/cilium/defaults/main.yml -2025-11-24T09:08:05.0180798Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/ -2025-11-24T09:08:05.0181510Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/install.yml -2025-11-24T09:08:05.0182249Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/check.yml -2025-11-24T09:08:05.0183160Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/reset.yml -2025-11-24T09:08:05.0183912Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/reset_iface.yml -2025-11-24T09:08:05.0184674Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/apply.yml -2025-11-24T09:08:05.0185414Z ansible/roles-external/kubespray/roles/network_plugin/cilium/tasks/main.yml -2025-11-24T09:08:05.0186139Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/ -2025-11-24T09:08:05.0186956Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/000-cilium-portmap.conflist.j2 -2025-11-24T09:08:05.0187844Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/ -2025-11-24T09:08:05.0188723Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/deploy.yml.j2 -2025-11-24T09:08:05.0189642Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/cr.yml.j2 -2025-11-24T09:08:05.0190543Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/crb.yml.j2 -2025-11-24T09:08:05.0191435Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium-operator/sa.yml.j2 -2025-11-24T09:08:05.0192251Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/ -2025-11-24T09:08:05.0193201Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/config.yml.j2 -2025-11-24T09:08:05.0194040Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/cr.yml.j2 -2025-11-24T09:08:05.0194871Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/crb.yml.j2 -2025-11-24T09:08:05.0195694Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/sa.yml.j2 -2025-11-24T09:08:05.0196596Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/ds.yml.j2 -2025-11-24T09:08:05.0197428Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/cilium/secret.yml.j2 -2025-11-24T09:08:05.0198224Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/ -2025-11-24T09:08:05.0199031Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/service.yml.j2 -2025-11-24T09:08:05.0199886Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/job.yml.j2 -2025-11-24T09:08:05.0200726Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/config.yml.j2 -2025-11-24T09:08:05.0201570Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/deploy.yml.j2 -2025-11-24T09:08:05.0202391Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/cr.yml.j2 -2025-11-24T09:08:05.0203340Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/crb.yml.j2 -2025-11-24T09:08:05.0204185Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/cronjob.yml.j2 -2025-11-24T09:08:05.0205026Z ansible/roles-external/kubespray/roles/network_plugin/cilium/templates/hubble/sa.yml.j2 -2025-11-24T09:08:05.0205740Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/ -2025-11-24T09:08:05.0206430Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/defaults/ -2025-11-24T09:08:05.0207175Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/defaults/main.yml -2025-11-24T09:08:05.0208037Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/tasks/ -2025-11-24T09:08:05.0208763Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/tasks/main.yml -2025-11-24T09:08:05.0209484Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/OWNERS -2025-11-24T09:08:05.0210195Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/templates/ -2025-11-24T09:08:05.0211009Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/templates/cni-kube-ovn-crd.yml.j2 -2025-11-24T09:08:05.0211872Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/templates/cni-ovn.yml.j2 -2025-11-24T09:08:05.0212882Z ansible/roles-external/kubespray/roles/network_plugin/kube-ovn/templates/cni-kube-ovn.yml.j2 -2025-11-24T09:08:05.0213653Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/ -2025-11-24T09:08:05.0214361Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/defaults/ -2025-11-24T09:08:05.0215133Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/defaults/main.yml -2025-11-24T09:08:05.0215895Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/meta/ -2025-11-24T09:08:05.0216630Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/meta/main.yml -2025-11-24T09:08:05.0217373Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/tasks/ -2025-11-24T09:08:05.0218142Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/tasks/annotate.yml -2025-11-24T09:08:05.0218998Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/tasks/reset.yml -2025-11-24T09:08:05.0219774Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/tasks/main.yml -2025-11-24T09:08:05.0220521Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/handlers/ -2025-11-24T09:08:05.0221274Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/handlers/main.yml -2025-11-24T09:08:05.0222028Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/OWNERS -2025-11-24T09:08:05.0222849Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/templates/ -2025-11-24T09:08:05.0223658Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/templates/kubeconfig.yml.j2 -2025-11-24T09:08:05.0224522Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/templates/cni-conf.json.j2 -2025-11-24T09:08:05.0225521Z ansible/roles-external/kubespray/roles/network_plugin/kube-router/templates/kube-router.yml.j2 -2025-11-24T09:08:05.0226265Z ansible/roles-external/kubespray/roles/network_plugin/calico/ -2025-11-24T09:08:05.0226918Z ansible/roles-external/kubespray/roles/network_plugin/calico/meta/ -2025-11-24T09:08:05.0227617Z ansible/roles-external/kubespray/roles/network_plugin/calico/meta/main.yml -2025-11-24T09:08:05.0228298Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/ -2025-11-24T09:08:05.0228984Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/defaults/ -2025-11-24T09:08:05.0229731Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/defaults/main.yml -2025-11-24T09:08:05.0230476Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/tasks/ -2025-11-24T09:08:05.0231206Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/tasks/pre.yml -2025-11-24T09:08:05.0231998Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/tasks/update-node.yml -2025-11-24T09:08:05.0232877Z ansible/roles-external/kubespray/roles/network_plugin/calico/rr/tasks/main.yml -2025-11-24T09:08:05.0233596Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/ -2025-11-24T09:08:05.0234309Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/install.yml -2025-11-24T09:08:05.0235075Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/typha_certs.yml -2025-11-24T09:08:05.0235844Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/check.yml -2025-11-24T09:08:05.0236620Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/peer_with_router.yml -2025-11-24T09:08:05.0237593Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/calico_apiserver_certs.yml -2025-11-24T09:08:05.0238394Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/repos.yml -2025-11-24T09:08:05.0239123Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/pre.yml -2025-11-24T09:08:05.0239917Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/peer_with_calico_rr.yml -2025-11-24T09:08:05.0240694Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/reset.yml -2025-11-24T09:08:05.0241487Z ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/main.yml -2025-11-24T09:08:05.0242205Z ansible/roles-external/kubespray/roles/network_plugin/calico/handlers/ -2025-11-24T09:08:05.0243045Z ansible/roles-external/kubespray/roles/network_plugin/calico/handlers/main.yml -2025-11-24T09:08:05.0243757Z ansible/roles-external/kubespray/roles/network_plugin/calico/files/ -2025-11-24T09:08:05.0244485Z ansible/roles-external/kubespray/roles/network_plugin/calico/files/openssl.conf -2025-11-24T09:08:05.0245880Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/ -2025-11-24T09:08:05.0246774Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/debian.yml -2025-11-24T09:08:05.0247518Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/centos-9.yml -2025-11-24T09:08:05.0248500Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/rocky-9.yml -2025-11-24T09:08:05.0250125Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/opensuse.yml -2025-11-24T09:08:05.0251633Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/redhat-9.yml -2025-11-24T09:08:05.0253523Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/redhat.yml -2025-11-24T09:08:05.0254973Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/amazon.yml -2025-11-24T09:08:05.0256569Z ansible/roles-external/kubespray/roles/network_plugin/calico/vars/fedora.yml -2025-11-24T09:08:05.0258549Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/ -2025-11-24T09:08:05.0260260Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/make-ssl-calico.sh.j2 -2025-11-24T09:08:05.0262219Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-node.yml.j2 -2025-11-24T09:08:05.0264547Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-node-sa.yml.j2 -2025-11-24T09:08:05.0267367Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-typha.yml.j2 -2025-11-24T09:08:05.0269246Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calicoctl.etcd.sh.j2 -2025-11-24T09:08:05.0271208Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-ipamconfig.yml.j2 -2025-11-24T09:08:05.0273273Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-crb.yml.j2 -2025-11-24T09:08:05.0275273Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-apiserver.yml.j2 -2025-11-24T09:08:05.0276776Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calicoctl.kdd.sh.j2 -2025-11-24T09:08:05.0278264Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/kubernetes-services-endpoint.yml.j2 -2025-11-24T09:08:05.0279200Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-cr.yml.j2 -2025-11-24T09:08:05.0280088Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-apiserver-ns.yml.j2 -2025-11-24T09:08:05.0280997Z ansible/roles-external/kubespray/roles/network_plugin/calico/templates/calico-config.yml.j2 -2025-11-24T09:08:05.0281695Z ansible/roles-external/kubespray/meta/ -2025-11-24T09:08:05.0282217Z ansible/roles-external/kubespray/meta/runtime.yml -2025-11-24T09:08:05.0282903Z ansible/roles-external/kubespray/.gitlab-ci.yml -2025-11-24T09:08:05.0283439Z ansible/roles-external/kubespray/scripts/ -2025-11-24T09:08:05.0283988Z ansible/roles-external/kubespray/scripts/download_hash.sh -2025-11-24T09:08:05.0284779Z ansible/roles-external/kubespray/scripts/download_hash.py -2025-11-24T09:08:05.0285418Z ansible/roles-external/kubespray/scripts/openstack-cleanup/ -2025-11-24T09:08:05.0286128Z ansible/roles-external/kubespray/scripts/openstack-cleanup/requirements.txt -2025-11-24T09:08:05.0286875Z ansible/roles-external/kubespray/scripts/openstack-cleanup/.gitignore -2025-11-24T09:08:05.0287591Z ansible/roles-external/kubespray/scripts/openstack-cleanup/README.md -2025-11-24T09:08:05.0288285Z ansible/roles-external/kubespray/scripts/openstack-cleanup/main.py -2025-11-24T09:08:05.0289012Z ansible/roles-external/kubespray/scripts/gen_docs_sidebar.sh -2025-11-24T09:08:05.0289620Z ansible/roles-external/kubespray/scripts/premoderator.sh -2025-11-24T09:08:05.0290215Z ansible/roles-external/kubespray/scripts/gen_tags.sh -2025-11-24T09:08:05.0290803Z ansible/roles-external/kubespray/scripts/collect-info.yaml -2025-11-24T09:08:05.0291416Z ansible/roles-external/kubespray/scripts/gitlab-runner.sh -2025-11-24T09:08:05.0292045Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/ -2025-11-24T09:08:05.0292878Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/requirements.txt -2025-11-24T09:08:05.0293653Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/.gitignore -2025-11-24T09:08:05.0294382Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/README.md -2025-11-24T09:08:05.0295106Z ansible/roles-external/kubespray/scripts/gitlab-branch-cleanup/main.py -2025-11-24T09:08:05.0295723Z ansible/roles-external/kubespray/.github/ -2025-11-24T09:08:05.0296266Z ansible/roles-external/kubespray/.github/dependabot.yml -2025-11-24T09:08:05.0296908Z ansible/roles-external/kubespray/.github/PULL_REQUEST_TEMPLATE.md -2025-11-24T09:08:05.0297538Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/ -2025-11-24T09:08:05.0298208Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/bug-report.yaml -2025-11-24T09:08:05.0298925Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/config.yml -2025-11-24T09:08:05.0299643Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/failing-test.yaml -2025-11-24T09:08:05.0300381Z ansible/roles-external/kubespray/.github/ISSUE_TEMPLATE/enhancement.yaml -2025-11-24T09:08:05.0301010Z ansible/roles-external/kubespray/index.html -2025-11-24T09:08:05.0301542Z ansible/roles-external/kubespray/.gitattributes -2025-11-24T09:08:05.0302174Z ansible/roles-external/kubespray/scale.yml -2025-11-24T09:08:05.0302823Z ansible/roles-external/kubespray/test-infra/ -2025-11-24T09:08:05.0303412Z ansible/roles-external/kubespray/test-infra/vagrant-docker/ -2025-11-24T09:08:05.0304106Z ansible/roles-external/kubespray/test-infra/vagrant-docker/Dockerfile -2025-11-24T09:08:05.0304817Z ansible/roles-external/kubespray/test-infra/vagrant-docker/README.md -2025-11-24T09:08:05.0305509Z ansible/roles-external/kubespray/test-infra/vagrant-docker/build.sh -2025-11-24T09:08:05.0306164Z ansible/roles-external/kubespray/test-infra/image-builder/ -2025-11-24T09:08:05.0306818Z ansible/roles-external/kubespray/test-infra/image-builder/roles/ -2025-11-24T09:08:05.0307535Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/ -2025-11-24T09:08:05.0308354Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/defaults/ -2025-11-24T09:08:05.0309238Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/defaults/main.yml -2025-11-24T09:08:05.0310112Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/tasks/ -2025-11-24T09:08:05.0310973Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/tasks/main.yml -2025-11-24T09:08:05.0311845Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/templates/ -2025-11-24T09:08:05.0312825Z ansible/roles-external/kubespray/test-infra/image-builder/roles/kubevirt-images/templates/Dockerfile -2025-11-24T09:08:05.0313639Z ansible/roles-external/kubespray/test-infra/image-builder/hosts.ini -2025-11-24T09:08:05.0314468Z ansible/roles-external/kubespray/test-infra/image-builder/cluster.yml -2025-11-24T09:08:05.0315153Z ansible/roles-external/kubespray/test-infra/image-builder/OWNERS -2025-11-24T09:08:05.0315816Z ansible/roles-external/kubespray/test-infra/image-builder/Makefile -2025-11-24T09:08:05.0316412Z ansible/roles-external/kubespray/library/ -2025-11-24T09:08:05.0316945Z ansible/roles-external/kubespray/library/kube.py -2025-11-24T09:08:05.0317471Z ansible/roles-external/kubespray/.mdlrc -2025-11-24T09:08:05.0317973Z ansible/roles-external/kubespray/.gitignore -2025-11-24T09:08:05.0318574Z ansible/roles-external/kubespray/README.md -2025-11-24T09:08:05.0326386Z ansible/roles-external/kubespray/.gitlab-ci/ -2025-11-24T09:08:05.0327050Z ansible/roles-external/kubespray/.gitlab-ci/vagrant.yml -2025-11-24T09:08:05.0327666Z ansible/roles-external/kubespray/.gitlab-ci/terraform.yml -2025-11-24T09:08:05.0328284Z ansible/roles-external/kubespray/.gitlab-ci/molecule.yml -2025-11-24T09:08:05.0328879Z ansible/roles-external/kubespray/.gitlab-ci/build.yml -2025-11-24T09:08:05.0329479Z ansible/roles-external/kubespray/.gitlab-ci/packet.yml -2025-11-24T09:08:05.0330150Z ansible/roles-external/kubespray/.gitlab-ci/pre-commit-dynamic-stub.yml -2025-11-24T09:08:05.0330796Z ansible/roles-external/kubespray/.gitlab-ci/lint.yml -2025-11-24T09:08:05.0331334Z ansible/roles-external/kubespray/logo/ -2025-11-24T09:08:05.0331842Z ansible/roles-external/kubespray/logo/LICENSE -2025-11-24T09:08:05.0332397Z ansible/roles-external/kubespray/logo/usage_guidelines.md -2025-11-24T09:08:05.0333428Z ansible/roles-external/kubespray/logo/logo-text-dark.svg -2025-11-24T09:08:05.0334079Z ansible/roles-external/kubespray/logo/logo-text-mixed.svg -2025-11-24T09:08:05.0334675Z ansible/roles-external/kubespray/logo/logo-text-clear.svg -2025-11-24T09:08:05.0335261Z ansible/roles-external/kubespray/logo/logo-clear.svg -2025-11-24T09:08:05.0335843Z ansible/roles-external/kubespray/logo/logo-text-mixed.png -2025-11-24T09:08:05.0336413Z ansible/roles-external/kubespray/logo/logo-dark.svg -2025-11-24T09:08:05.0336995Z ansible/roles-external/kubespray/logo/logo-text-clear.png -2025-11-24T09:08:05.0337880Z ansible/roles-external/kubespray/logo/OWNERS -2025-11-24T09:08:05.0338428Z ansible/roles-external/kubespray/logo/logo-clear.png -2025-11-24T09:08:05.0339070Z ansible/roles-external/kubespray/logo/logo-text-dark.png -2025-11-24T09:08:05.0340029Z ansible/roles-external/kubespray/logo/logo-dark.png -2025-11-24T09:08:05.0340817Z ansible/roles-external/kubespray/logo/logos.pdf -2025-11-24T09:08:05.0341363Z ansible/roles-external/kubespray/SECURITY_CONTACTS -2025-11-24T09:08:05.0341929Z ansible/roles-external/kubespray/pipeline.Dockerfile -2025-11-24T09:08:05.0342482Z ansible/roles-external/kubespray/extra_playbooks/ -2025-11-24T09:08:05.0343176Z ansible/roles-external/kubespray/extra_playbooks/roles -2025-11-24T09:08:05.0343867Z ansible/roles-external/kubespray/extra_playbooks/migrate_openstack_provider.yml -2025-11-24T09:08:05.0344620Z ansible/roles-external/kubespray/extra_playbooks/wait-for-cloud-init.yml -2025-11-24T09:08:05.0345271Z ansible/roles-external/kubespray/extra_playbooks/files/ -2025-11-24T09:08:05.0345929Z ansible/roles-external/kubespray/extra_playbooks/files/get_cinder_pvs.sh -2025-11-24T09:08:05.0346587Z ansible/roles-external/kubespray/extra_playbooks/inventory -2025-11-24T09:08:05.0347274Z ansible/roles-external/kubespray/extra_playbooks/upgrade-only-k8s.yml -2025-11-24T09:08:05.0347898Z ansible/roles-external/kubespray/galaxy.yml -2025-11-24T09:08:05.0348416Z ansible/roles-external/kubespray/.ansible-lint -2025-11-24T09:08:05.0348928Z ansible/roles-external/kubespray/reset.yml -2025-11-24T09:08:05.0349432Z ansible/roles-external/kubespray/docs/ -2025-11-24T09:08:05.0349961Z ansible/roles-external/kubespray/docs/cloud_providers/ -2025-11-24T09:08:05.0350636Z ansible/roles-external/kubespray/docs/cloud_providers/cloud.md -2025-11-24T09:08:05.0351286Z ansible/roles-external/kubespray/docs/cloud_providers/vsphere.md -2025-11-24T09:08:05.0351953Z ansible/roles-external/kubespray/docs/cloud_providers/openstack.md -2025-11-24T09:08:05.0352843Z ansible/roles-external/kubespray/docs/cloud_providers/aws.md -2025-11-24T09:08:05.0353550Z ansible/roles-external/kubespray/docs/cloud_providers/equinix-metal.md -2025-11-24T09:08:05.0354231Z ansible/roles-external/kubespray/docs/cloud_providers/azure.md -2025-11-24T09:08:05.0354815Z ansible/roles-external/kubespray/docs/CRI/ -2025-11-24T09:08:05.0355352Z ansible/roles-external/kubespray/docs/CRI/gvisor.md -2025-11-24T09:08:05.0355945Z ansible/roles-external/kubespray/docs/CRI/kata-containers.md -2025-11-24T09:08:05.0356564Z ansible/roles-external/kubespray/docs/CRI/containerd.md -2025-11-24T09:08:05.0357250Z ansible/roles-external/kubespray/docs/CRI/cri-o.md -2025-11-24T09:08:05.0357803Z ansible/roles-external/kubespray/docs/CRI/docker.md -2025-11-24T09:08:05.0358435Z ansible/roles-external/kubespray/docs/external_storage_provisioners/ -2025-11-24T09:08:05.0359219Z ansible/roles-external/kubespray/docs/external_storage_provisioners/scheduler_plugins.md -2025-11-24T09:08:05.0360068Z ansible/roles-external/kubespray/docs/external_storage_provisioners/rbd_provisioner.md -2025-11-24T09:08:05.0360934Z ansible/roles-external/kubespray/docs/external_storage_provisioners/local_volume_provisioner.md -2025-11-24T09:08:05.0361822Z ansible/roles-external/kubespray/docs/external_storage_provisioners/cephfs_provisioner.md -2025-11-24T09:08:05.0362516Z ansible/roles-external/kubespray/docs/upgrades/ -2025-11-24T09:08:05.0363339Z ansible/roles-external/kubespray/docs/upgrades/migrate_docker2containerd.md -2025-11-24T09:08:05.0363969Z ansible/roles-external/kubespray/docs/img/ -2025-11-24T09:08:05.0364545Z ansible/roles-external/kubespray/docs/img/kubernetes-logo.png -2025-11-24T09:08:05.0365190Z ansible/roles-external/kubespray/docs/img/kubelet-hardening.png -2025-11-24T09:08:05.0365790Z ansible/roles-external/kubespray/docs/advanced/ -2025-11-24T09:08:05.0366654Z ansible/roles-external/kubespray/docs/advanced/arch.md -2025-11-24T09:08:05.0367262Z ansible/roles-external/kubespray/docs/advanced/registry.md -2025-11-24T09:08:05.0367907Z ansible/roles-external/kubespray/docs/advanced/proxy.md -2025-11-24T09:08:05.0369044Z ansible/roles-external/kubespray/docs/advanced/kubernetes-reliability.md -2025-11-24T09:08:05.0369787Z ansible/roles-external/kubespray/docs/advanced/cert_manager.md -2025-11-24T09:08:05.0370420Z ansible/roles-external/kubespray/docs/advanced/gcp-lb.md -2025-11-24T09:08:05.0371128Z ansible/roles-external/kubespray/docs/advanced/ntp.md -2025-11-24T09:08:05.0371728Z ansible/roles-external/kubespray/docs/advanced/dns-stack.md -2025-11-24T09:08:05.0372336Z ansible/roles-external/kubespray/docs/advanced/downloads.md -2025-11-24T09:08:05.0373435Z ansible/roles-external/kubespray/docs/advanced/mitogen.md -2025-11-24T09:08:05.0374071Z ansible/roles-external/kubespray/docs/advanced/netcheck.md -2025-11-24T09:08:05.0374680Z ansible/roles-external/kubespray/docs/CNI/ -2025-11-24T09:08:05.0375217Z ansible/roles-external/kubespray/docs/CNI/macvlan.md -2025-11-24T09:08:05.0375784Z ansible/roles-external/kubespray/docs/CNI/flannel.md -2025-11-24T09:08:05.0376362Z ansible/roles-external/kubespray/docs/CNI/calico.md -2025-11-24T09:08:05.0376913Z ansible/roles-external/kubespray/docs/CNI/multus.md -2025-11-24T09:08:05.0377477Z ansible/roles-external/kubespray/docs/CNI/kube-router.md -2025-11-24T09:08:05.0378056Z ansible/roles-external/kubespray/docs/CNI/cilium.md -2025-11-24T09:08:05.0378672Z ansible/roles-external/kubespray/docs/CNI/cni.md -2025-11-24T09:08:05.0379216Z ansible/roles-external/kubespray/docs/CNI/weave.md -2025-11-24T09:08:05.0379776Z ansible/roles-external/kubespray/docs/CNI/kube-ovn.md -2025-11-24T09:08:05.0380340Z ansible/roles-external/kubespray/docs/figures/ -2025-11-24T09:08:05.0380978Z ansible/roles-external/kubespray/docs/figures/loadbalancer_localhost.png -2025-11-24T09:08:05.0381710Z ansible/roles-external/kubespray/docs/figures/kubespray-calico-rr.png -2025-11-24T09:08:05.0382369Z ansible/roles-external/kubespray/docs/calico_peer_example/ -2025-11-24T09:08:05.0383248Z ansible/roles-external/kubespray/docs/calico_peer_example/new-york.yml -2025-11-24T09:08:05.0384169Z ansible/roles-external/kubespray/docs/calico_peer_example/paris.yml -2025-11-24T09:08:05.0384792Z ansible/roles-external/kubespray/docs/roadmap/ -2025-11-24T09:08:05.0385348Z ansible/roles-external/kubespray/docs/roadmap/roadmap.md -2025-11-24T09:08:05.0385917Z ansible/roles-external/kubespray/docs/ansible/ -2025-11-24T09:08:05.0386459Z ansible/roles-external/kubespray/docs/ansible/vars.md -2025-11-24T09:08:05.0387037Z ansible/roles-external/kubespray/docs/ansible/ansible.md -2025-11-24T09:08:05.0387675Z ansible/roles-external/kubespray/docs/ansible/ansible_collection.md -2025-11-24T09:08:05.0388378Z ansible/roles-external/kubespray/docs/CSI/ -2025-11-24T09:08:05.0388920Z ansible/roles-external/kubespray/docs/CSI/cinder-csi.md -2025-11-24T09:08:05.0389499Z ansible/roles-external/kubespray/docs/CSI/azure-csi.md -2025-11-24T09:08:05.0390081Z ansible/roles-external/kubespray/docs/CSI/gcp-pd-csi.md -2025-11-24T09:08:05.0390676Z ansible/roles-external/kubespray/docs/CSI/vsphere-csi.md -2025-11-24T09:08:05.0391277Z ansible/roles-external/kubespray/docs/CSI/aws-ebs-csi.md -2025-11-24T09:08:05.0391846Z ansible/roles-external/kubespray/docs/developers/ -2025-11-24T09:08:05.0392436Z ansible/roles-external/kubespray/docs/developers/ci-setup.md -2025-11-24T09:08:05.0393254Z ansible/roles-external/kubespray/docs/developers/vagrant.md -2025-11-24T09:08:05.0393876Z ansible/roles-external/kubespray/docs/developers/ci.md -2025-11-24T09:08:05.0394484Z ansible/roles-external/kubespray/docs/developers/test_cases.md -2025-11-24T09:08:05.0395090Z ansible/roles-external/kubespray/docs/getting_started/ -2025-11-24T09:08:05.0395756Z ansible/roles-external/kubespray/docs/getting_started/getting-started.md -2025-11-24T09:08:05.0396537Z ansible/roles-external/kubespray/docs/getting_started/setting-up-your-first-cluster.md -2025-11-24T09:08:05.0397311Z ansible/roles-external/kubespray/docs/getting_started/comparisons.md -2025-11-24T09:08:05.0397943Z ansible/roles-external/kubespray/docs/_sidebar.md -2025-11-24T09:08:05.0398492Z ansible/roles-external/kubespray/docs/ingress/ -2025-11-24T09:08:05.0399058Z ansible/roles-external/kubespray/docs/ingress/kube-vip.md -2025-11-24T09:08:05.0399667Z ansible/roles-external/kubespray/docs/ingress/metallb.md -2025-11-24T09:08:05.0399985Z ansible/roles-external/kubespray/docs/ingress/alb_ingress_controller.md -2025-11-24T09:08:05.0400253Z ansible/roles-external/kubespray/docs/ingress/ingress_nginx.md -2025-11-24T09:08:05.0400594Z ansible/roles-external/kubespray/docs/operating_systems/ -2025-11-24T09:08:05.0400866Z ansible/roles-external/kubespray/docs/operating_systems/fcos.md -2025-11-24T09:08:05.0401182Z ansible/roles-external/kubespray/docs/operating_systems/bootstrap-os.md -2025-11-24T09:08:05.0401451Z ansible/roles-external/kubespray/docs/operating_systems/rhel.md -2025-11-24T09:08:05.0401764Z ansible/roles-external/kubespray/docs/operating_systems/kylinlinux.md -2025-11-24T09:08:05.0402075Z ansible/roles-external/kubespray/docs/operating_systems/openeuler.md -2025-11-24T09:08:05.0402377Z ansible/roles-external/kubespray/docs/operating_systems/opensuse.md -2025-11-24T09:08:05.0402861Z ansible/roles-external/kubespray/docs/operating_systems/flatcar.md -2025-11-24T09:08:05.0403154Z ansible/roles-external/kubespray/docs/operating_systems/centos.md -2025-11-24T09:08:05.0403483Z ansible/roles-external/kubespray/docs/operating_systems/amazonlinux.md -2025-11-24T09:08:05.0403784Z ansible/roles-external/kubespray/docs/operating_systems/uoslinux.md -2025-11-24T09:08:05.0404013Z ansible/roles-external/kubespray/docs/operations/ -2025-11-24T09:08:05.0404324Z ansible/roles-external/kubespray/docs/operations/port-requirements.md -2025-11-24T09:08:05.0404584Z ansible/roles-external/kubespray/docs/operations/ha-mode.md -2025-11-24T09:08:05.0404835Z ansible/roles-external/kubespray/docs/operations/nodes.md -2025-11-24T09:08:05.0405098Z ansible/roles-external/kubespray/docs/operations/upgrades.md -2025-11-24T09:08:05.0405400Z ansible/roles-external/kubespray/docs/operations/large-deployments.md -2025-11-24T09:08:05.0405869Z ansible/roles-external/kubespray/docs/operations/recover-control-plane.md -2025-11-24T09:08:05.0406132Z ansible/roles-external/kubespray/docs/operations/mirror.md -2025-11-24T09:08:05.0406394Z ansible/roles-external/kubespray/docs/operations/cgroups.md -2025-11-24T09:08:05.0406660Z ansible/roles-external/kubespray/docs/operations/hardening.md -2025-11-24T09:08:05.0406978Z ansible/roles-external/kubespray/docs/operations/offline-environment.md -2025-11-24T09:08:05.0407346Z ansible/roles-external/kubespray/docs/operations/encrypting-secret-data-at-rest.md -2025-11-24T09:08:05.0407662Z ansible/roles-external/kubespray/docs/operations/etcd.md -2025-11-24T09:08:05.0407933Z ansible/roles-external/kubespray/docs/operations/integration.md -2025-11-24T09:08:05.0408145Z ansible/roles-external/kubespray/plugins/ -2025-11-24T09:08:05.0408367Z ansible/roles-external/kubespray/plugins/modules/ -2025-11-24T09:08:05.0408619Z ansible/roles-external/kubespray/plugins/modules/kube.py -2025-11-24T09:08:05.0408835Z ansible/roles-external/kubespray/cluster.yml -2025-11-24T09:08:05.0409062Z ansible/roles-external/kubespray/.gitmodules -2025-11-24T09:08:05.0409272Z ansible/roles-external/kubespray/playbooks/ -2025-11-24T09:08:05.0409528Z ansible/roles-external/kubespray/playbooks/boilerplate.yml -2025-11-24T09:08:05.0409795Z ansible/roles-external/kubespray/playbooks/upgrade_cluster.yml -2025-11-24T09:08:05.0410035Z ansible/roles-external/kubespray/playbooks/scale.yml -2025-11-24T09:08:05.0410262Z ansible/roles-external/kubespray/playbooks/facts.yml -2025-11-24T09:08:05.0410519Z ansible/roles-external/kubespray/playbooks/install_etcd.yml -2025-11-24T09:08:05.0410772Z ansible/roles-external/kubespray/playbooks/remove_node.yml -2025-11-24T09:08:05.0411034Z ansible/roles-external/kubespray/playbooks/ansible_version.yml -2025-11-24T09:08:05.0411265Z ansible/roles-external/kubespray/playbooks/reset.yml -2025-11-24T09:08:05.0411507Z ansible/roles-external/kubespray/playbooks/cluster.yml -2025-11-24T09:08:05.0411812Z ansible/roles-external/kubespray/playbooks/recover_control_plane.yml -2025-11-24T09:08:05.0412038Z ansible/roles-external/kubespray/remove-node.yml -2025-11-24T09:08:05.0412278Z ansible/roles-external/kubespray/upgrade-cluster.yml -2025-11-24T09:08:05.0412489Z ansible/roles-external/kubespray/ansible.cfg -2025-11-24T09:08:05.0412903Z ansible/roles-external/kubespray/code-of-conduct.md -2025-11-24T09:08:05.0413114Z ansible/roles-external/kubespray/CNAME -2025-11-24T09:08:05.0413406Z ansible/roles-external/kubespray/tests/ -2025-11-24T09:08:05.0413663Z ansible/roles-external/kubespray/tests/requirements.txt -2025-11-24T09:08:05.0413893Z ansible/roles-external/kubespray/tests/run-tests.sh -2025-11-24T09:08:05.0414114Z ansible/roles-external/kubespray/tests/scripts/ -2025-11-24T09:08:05.0414420Z ansible/roles-external/kubespray/tests/scripts/testcases_prepare.sh -2025-11-24T09:08:05.0414687Z ansible/roles-external/kubespray/tests/scripts/molecule_logs.sh -2025-11-24T09:08:05.0414978Z ansible/roles-external/kubespray/tests/scripts/terraform_install.sh -2025-11-24T09:08:05.0415227Z ansible/roles-external/kubespray/tests/scripts/rebase.sh -2025-11-24T09:08:05.0415543Z ansible/roles-external/kubespray/tests/scripts/check_galaxy_version.sh -2025-11-24T09:08:05.0415798Z ansible/roles-external/kubespray/tests/scripts/delete-tf.sh -2025-11-24T09:08:05.0416064Z ansible/roles-external/kubespray/tests/scripts/testcases_run.sh -2025-11-24T09:08:05.0416360Z ansible/roles-external/kubespray/tests/scripts/testcases_cleanup.sh -2025-11-24T09:08:05.0416670Z ansible/roles-external/kubespray/tests/scripts/check_readme_versions.sh -2025-11-24T09:08:05.0417004Z ansible/roles-external/kubespray/tests/scripts/collection-build-install.sh -2025-11-24T09:08:05.0417274Z ansible/roles-external/kubespray/tests/scripts/molecule_run.sh -2025-11-24T09:08:05.0417537Z ansible/roles-external/kubespray/tests/scripts/vagrant_clean.sh -2025-11-24T09:08:05.0417831Z ansible/roles-external/kubespray/tests/scripts/vagrant-validate.sh -2025-11-24T09:08:05.0418116Z ansible/roles-external/kubespray/tests/scripts/vagrant-install.sh -2025-11-24T09:08:05.0418531Z ansible/roles-external/kubespray/tests/scripts/check-templates.py -2025-11-24T09:08:05.0418786Z ansible/roles-external/kubespray/tests/scripts/md-table/ -2025-11-24T09:08:05.0419049Z ansible/roles-external/kubespray/tests/scripts/md-table/main.py -2025-11-24T09:08:05.0419348Z ansible/roles-external/kubespray/tests/scripts/md-table/table.md.j2 -2025-11-24T09:08:05.0419604Z ansible/roles-external/kubespray/tests/scripts/create-tf.sh -2025-11-24T09:08:05.0419833Z ansible/roles-external/kubespray/tests/shebang-unit -2025-11-24T09:08:05.0420055Z ansible/roles-external/kubespray/tests/testcases/ -2025-11-24T09:08:05.0420458Z ansible/roles-external/kubespray/tests/testcases/020_check-pods-running.yml -2025-11-24T09:08:05.0420700Z ansible/roles-external/kubespray/tests/testcases/roles/ -2025-11-24T09:08:05.0421005Z ansible/roles-external/kubespray/tests/testcases/roles/cluster-dump/ -2025-11-24T09:08:05.0421329Z ansible/roles-external/kubespray/tests/testcases/roles/cluster-dump/tasks/ -2025-11-24T09:08:05.0421693Z ansible/roles-external/kubespray/tests/testcases/roles/cluster-dump/tasks/main.yml -2025-11-24T09:08:05.0422007Z ansible/roles-external/kubespray/tests/testcases/030_check-network.yml -2025-11-24T09:08:05.0422341Z ansible/roles-external/kubespray/tests/testcases/100_check-k8s-conformance.yml -2025-11-24T09:08:05.0422861Z ansible/roles-external/kubespray/tests/testcases/010_check-apiserver.yml -2025-11-24T09:08:05.0423196Z ansible/roles-external/kubespray/tests/testcases/040_check-network-adv.yml -2025-11-24T09:08:05.0423520Z ansible/roles-external/kubespray/tests/testcases/015_check-nodes-ready.yml -2025-11-24T09:08:05.0423736Z ansible/roles-external/kubespray/tests/files/ -2025-11-24T09:08:05.0424085Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-kube-router-sep.yml -2025-11-24T09:08:05.0424419Z ansible/roles-external/kubespray/tests/files/packet_opensuse-docker-cilium.yml -2025-11-24T09:08:05.0424799Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-kube-router-svc-proxy.rb -2025-11-24T09:08:05.0425131Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-weave-medium.rb -2025-11-24T09:08:05.0425451Z ansible/roles-external/kubespray/tests/files/packet_debian12-cilium.yml -2025-11-24T09:08:05.0425775Z ansible/roles-external/kubespray/tests/files/packet_rockylinux9-calico.yml -2025-11-24T09:08:05.0426094Z ansible/roles-external/kubespray/tests/files/packet_centos7-calico-ha.yml -2025-11-24T09:08:05.0426517Z ansible/roles-external/kubespray/tests/files/packet_debian11-calico-upgrade.yml -2025-11-24T09:08:05.0426988Z ansible/roles-external/kubespray/tests/files/packet_debian12-cilium-svc-proxy.yml -2025-11-24T09:08:05.0427347Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-calico-dual-stack.rb -2025-11-24T09:08:05.0427675Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-flannel-ha.yml -2025-11-24T09:08:05.0427926Z ansible/roles-external/kubespray/tests/files/custom_cni/ -2025-11-24T09:08:05.0428229Z ansible/roles-external/kubespray/tests/files/custom_cni/cilium.yaml -2025-11-24T09:08:05.0428523Z ansible/roles-external/kubespray/tests/files/custom_cni/README.md -2025-11-24T09:08:05.0428816Z ansible/roles-external/kubespray/tests/files/custom_cni/values.yaml -2025-11-24T09:08:05.0429148Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-cilium-sep.yml -2025-11-24T09:08:05.0429476Z ansible/roles-external/kubespray/tests/files/vagrant_centos7-kube-router.rb -2025-11-24T09:08:05.0429827Z ansible/roles-external/kubespray/tests/files/packet_amazon-linux-2-all-in-one.yml -2025-11-24T09:08:05.0430151Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-flannel.rb -2025-11-24T09:08:05.0430487Z ansible/roles-external/kubespray/tests/files/packet_fedora37-calico-selinux.yml -2025-11-24T09:08:05.0430832Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-docker-weave-sep.yml -2025-11-24T09:08:05.0431185Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-flannel-collection.rb -2025-11-24T09:08:05.0431652Z ansible/roles-external/kubespray/tests/files/packet_rockylinux9-cilium.yml -2025-11-24T09:08:05.0432077Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-all-in-one-ansible-2_11.yml -2025-11-24T09:08:05.0432404Z ansible/roles-external/kubespray/tests/files/tf-elastx_ubuntu20-calico.yml -2025-11-24T09:08:05.0433094Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-calico-nodelocaldns-secondary.yml -2025-11-24T09:08:05.0433425Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-crio.yml -2025-11-24T09:08:05.0433779Z ansible/roles-external/kubespray/tests/files/packet_fedora38-docker-calico.yml -2025-11-24T09:08:05.0434243Z ansible/roles-external/kubespray/tests/files/packet_centos7-flannel-addons-ha.yml -2025-11-24T09:08:05.0434633Z ansible/roles-external/kubespray/tests/files/packet_fedora37-calico-swap-selinux.yml -2025-11-24T09:08:05.0434951Z ansible/roles-external/kubespray/tests/files/packet_debian12-calico.yml -2025-11-24T09:08:05.0435306Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-ha-recover.yml -2025-11-24T09:08:05.0435643Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-weave-medium.yml -2025-11-24T09:08:05.0435990Z ansible/roles-external/kubespray/tests/files/packet_ubuntu24-calico-all-in-one.yml -2025-11-24T09:08:05.0436333Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-all-in-one.yml -2025-11-24T09:08:05.0436753Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-etcd-kubeadm-upgrade-ha.yml -2025-11-24T09:08:05.0437066Z ansible/roles-external/kubespray/tests/files/packet_fedora37-crio.yml -2025-11-24T09:08:05.0437403Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-kube-ovn.yml -2025-11-24T09:08:05.0437746Z ansible/roles-external/kubespray/tests/files/packet_ubuntu22-calico-all-in-one.yml -2025-11-24T09:08:05.0438117Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-ha-wireguard.yml -2025-11-24T09:08:05.0438520Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-all-in-one-hardening.yml -2025-11-24T09:08:05.0438844Z ansible/roles-external/kubespray/tests/files/packet_fedora38-kube-ovn.yml -2025-11-24T09:08:05.0439186Z ansible/roles-external/kubespray/tests/files/packet_ubuntu22-all-in-one-docker.yml -2025-11-24T09:08:05.0439568Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-kube-router-svc-proxy.yml -2025-11-24T09:08:05.0439882Z ansible/roles-external/kubespray/tests/files/packet_debian12-docker.yml -2025-11-24T09:08:05.0440304Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-kube-router-sep.rb -2025-11-24T09:08:05.0440654Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-all-in-one-docker.yml -2025-11-24T09:08:05.0441000Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-calico-ha-ebpf.yml -2025-11-24T09:08:05.0441325Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-calico.yml -2025-11-24T09:08:05.0441638Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-flannel.yml -2025-11-24T09:08:05.0441974Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-flannel-ha-once.yml -2025-11-24T09:08:05.0442355Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-calico-remove-node.yml -2025-11-24T09:08:05.0442918Z ansible/roles-external/kubespray/tests/files/packet_ubuntu24-calico-etcd-datastore.yml -2025-11-24T09:08:05.0443249Z ansible/roles-external/kubespray/tests/files/packet_debian11-custom-cni.yml -2025-11-24T09:08:05.0443610Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-calico-dual-stack.yml -2025-11-24T09:08:05.0443947Z ansible/roles-external/kubespray/tests/files/packet_debian12-custom-cni-helm.yml -2025-11-24T09:08:05.0444316Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-etcd-kubeadm.yml -2025-11-24T09:08:05.0444678Z ansible/roles-external/kubespray/tests/files/vagrant_ubuntu20-flannel-collection.yml -2025-11-24T09:08:05.0445080Z ansible/roles-external/kubespray/tests/files/packet_ubuntu20-calico-ha-recover-noquorum.yml -2025-11-24T09:08:05.0445535Z ansible/roles-external/kubespray/tests/files/packet_centos7-multus-calico.yml -2025-11-24T09:08:05.0445865Z ansible/roles-external/kubespray/tests/files/vagrant_fedora37-kube-router.rb -2025-11-24T09:08:05.0446195Z ansible/roles-external/kubespray/tests/files/packet_fedora38-docker-weave.yml -2025-11-24T09:08:05.0446518Z ansible/roles-external/kubespray/tests/files/vagrant_fedora37-kube-router.yml -2025-11-24T09:08:05.0446860Z ansible/roles-external/kubespray/tests/files/packet_centos7-weave-upgrade-ha.yml -2025-11-24T09:08:05.0447182Z ansible/roles-external/kubespray/tests/files/packet_rockylinux8-calico.yml -2025-11-24T09:08:05.0447574Z ansible/roles-external/kubespray/tests/files/vagrant_centos7-kube-router.yml -2025-11-24T09:08:05.0447943Z ansible/roles-external/kubespray/tests/files/packet_debian11-calico-upgrade-once.yml -2025-11-24T09:08:05.0448254Z ansible/roles-external/kubespray/tests/files/packet_debian11-calico.yml -2025-11-24T09:08:05.0448560Z ansible/roles-external/kubespray/tests/files/tf-ovh_ubuntu20-calico.yml -2025-11-24T09:08:05.0448961Z ansible/roles-external/kubespray/tests/files/packet_centos7-calico-ha-once-localhost.yml -2025-11-24T09:08:05.0449302Z ansible/roles-external/kubespray/tests/files/packet_ubuntu24-all-in-one-docker.yml -2025-11-24T09:08:05.0449616Z ansible/roles-external/kubespray/tests/files/packet_debian11-macvlan.yml -2025-11-24T09:08:05.0449926Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-crio.yml -2025-11-24T09:08:05.0450308Z ansible/roles-external/kubespray/tests/files/packet_debian11-kubelet-csr-approver.yml -2025-11-24T09:08:05.0450628Z ansible/roles-external/kubespray/tests/files/packet_almalinux8-docker.yml -2025-11-24T09:08:05.0450933Z ansible/roles-external/kubespray/tests/files/packet_debian11-docker.yml -2025-11-24T09:08:05.0451153Z ansible/roles-external/kubespray/tests/common/ -2025-11-24T09:08:05.0451480Z ansible/roles-external/kubespray/tests/common/_docker_hub_registry_mirror.yml -2025-11-24T09:08:05.0451802Z ansible/roles-external/kubespray/tests/common/_kubespray_test_settings.yml -2025-11-24T09:08:05.0452034Z ansible/roles-external/kubespray/tests/ansible.cfg -2025-11-24T09:08:05.0452277Z ansible/roles-external/kubespray/tests/cloud_playbooks/ -2025-11-24T09:08:05.0452543Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/ -2025-11-24T09:08:05.0453007Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/cleanup-packet-ci/ -2025-11-24T09:08:05.0453482Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/cleanup-packet-ci/tasks/ -2025-11-24T09:08:05.0453884Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/cleanup-packet-ci/tasks/main.yml -2025-11-24T09:08:05.0454197Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/ -2025-11-24T09:08:05.0454536Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/defaults/ -2025-11-24T09:08:05.0454910Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/defaults/main.yml -2025-11-24T09:08:05.0455236Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/ -2025-11-24T09:08:05.0455626Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/delete-vms.yml -2025-11-24T09:08:05.0456000Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/create-vms.yml -2025-11-24T09:08:05.0456403Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/cleanup-old-vms.yml -2025-11-24T09:08:05.0456769Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/tasks/main.yml -2025-11-24T09:08:05.0457093Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/vars/ -2025-11-24T09:08:05.0457454Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/vars/main.yml -2025-11-24T09:08:05.0457795Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/templates/ -2025-11-24T09:08:05.0458190Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/templates/inventory.j2 -2025-11-24T09:08:05.0458699Z ansible/roles-external/kubespray/tests/cloud_playbooks/roles/packet-ci/templates/vm.yml.j2 -2025-11-24T09:08:05.0459022Z ansible/roles-external/kubespray/tests/cloud_playbooks/delete-packet.yml -2025-11-24T09:08:05.0459332Z ansible/roles-external/kubespray/tests/cloud_playbooks/wait-for-ssh.yml -2025-11-24T09:08:05.0459646Z ansible/roles-external/kubespray/tests/cloud_playbooks/cleanup-packet.yml -2025-11-24T09:08:05.0459961Z ansible/roles-external/kubespray/tests/cloud_playbooks/create-packet.yml -2025-11-24T09:08:05.0460189Z ansible/roles-external/kubespray/tests/templates/ -2025-11-24T09:08:05.0460486Z ansible/roles-external/kubespray/tests/templates/fake_hosts.yml.j2 -2025-11-24T09:08:05.0460774Z ansible/roles-external/kubespray/tests/Makefile -2025-11-24T09:08:05.0460984Z ansible/roles-external/kubespray/inventory/ -2025-11-24T09:08:05.0461208Z ansible/roles-external/kubespray/inventory/local/ -2025-11-24T09:08:05.0461463Z ansible/roles-external/kubespray/inventory/local/hosts.ini -2025-11-24T09:08:05.0461723Z ansible/roles-external/kubespray/inventory/local/group_vars -2025-11-24T09:08:05.0461953Z ansible/roles-external/kubespray/inventory/sample/ -2025-11-24T09:08:05.0462207Z ansible/roles-external/kubespray/inventory/sample/patches/ -2025-11-24T09:08:05.0462618Z ansible/roles-external/kubespray/inventory/sample/patches/kube-controller-manager+merge.yaml -2025-11-24T09:08:05.0463079Z ansible/roles-external/kubespray/inventory/sample/patches/kube-scheduler+merge.yaml -2025-11-24T09:08:05.0463348Z ansible/roles-external/kubespray/inventory/sample/group_vars/ -2025-11-24T09:08:05.0463669Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/ -2025-11-24T09:08:05.0464099Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-kube-router.yml -2025-11-24T09:08:05.0464500Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-weave.yml -2025-11-24T09:08:05.0464899Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-flannel.yml -2025-11-24T09:08:05.0465312Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-custom-cni.yml -2025-11-24T09:08:05.0465699Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-macvlan.yml -2025-11-24T09:08:05.0466085Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-kube-ovn.yml -2025-11-24T09:08:05.0466436Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/addons.yml -2025-11-24T09:08:05.0466902Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml -2025-11-24T09:08:05.0467289Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-calico.yml -2025-11-24T09:08:05.0467674Z ansible/roles-external/kubespray/inventory/sample/group_vars/k8s_cluster/k8s-net-cilium.yml -2025-11-24T09:08:05.0467958Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/ -2025-11-24T09:08:05.0468274Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/oci.yml -2025-11-24T09:08:05.0468599Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/offline.yml -2025-11-24T09:08:05.0468917Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/azure.yml -2025-11-24T09:08:05.0469236Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/cri-o.yml -2025-11-24T09:08:05.0469539Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/all.yml -2025-11-24T09:08:05.0469866Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/upcloud.yml -2025-11-24T09:08:05.0470209Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/huaweicloud.yml -2025-11-24T09:08:05.0470537Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/coreos.yml -2025-11-24T09:08:05.0470846Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/gcp.yml -2025-11-24T09:08:05.0471160Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/etcd.yml -2025-11-24T09:08:05.0471498Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/containerd.yml -2025-11-24T09:08:05.0471936Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/hcloud.yml -2025-11-24T09:08:05.0472248Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/aws.yml -2025-11-24T09:08:05.0472567Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/docker.yml -2025-11-24T09:08:05.0472996Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/openstack.yml -2025-11-24T09:08:05.0473325Z ansible/roles-external/kubespray/inventory/sample/group_vars/all/vsphere.yml -2025-11-24T09:08:05.0473632Z ansible/roles-external/kubespray/inventory/sample/group_vars/etcd.yml -2025-11-24T09:08:05.0473970Z ansible/roles-external/kubespray/inventory/sample/inventory.ini -2025-11-24T09:08:05.0474193Z ansible/roles-external/kubespray/.editorconfig -2025-11-24T09:08:05.0474397Z ansible/roles-external/kubespray/OWNERS -2025-11-24T09:08:05.0474650Z ansible/roles-external/kubespray/_config.yml -2025-11-24T09:08:05.0474868Z ansible/roles-external/kubespray/.md_style.rb -2025-11-24T09:08:05.0475125Z ansible/roles-external/kubespray/.pre-commit-config.yaml -2025-11-24T09:08:05.0475360Z ansible/roles-external/kubespray/.ansible-lint-ignore -2025-11-24T09:08:05.0475579Z ansible/roles-external/kubespray/OWNERS_ALIASES -2025-11-24T09:08:05.0475782Z ansible/roles-external/kubespray/Makefile -2025-11-24T09:08:05.0475991Z ansible/roles-external/kubespray/RELEASE.md -2025-11-24T09:08:05.0476197Z ansible/roles-external/ansible-minio/ -2025-11-24T09:08:05.0476425Z ansible/roles-external/ansible-minio/CHANGELOG.md -2025-11-24T09:08:05.0476644Z ansible/roles-external/ansible-minio/defaults/ -2025-11-24T09:08:05.0476891Z ansible/roles-external/ansible-minio/defaults/main.yml -2025-11-24T09:08:05.0477096Z ansible/roles-external/ansible-minio/.git -2025-11-24T09:08:05.0477307Z ansible/roles-external/ansible-minio/.yamllint -2025-11-24T09:08:05.0477525Z ansible/roles-external/ansible-minio/LICENSE.md -2025-11-24T09:08:05.0477731Z ansible/roles-external/ansible-minio/meta/ -2025-11-24T09:08:05.0477959Z ansible/roles-external/ansible-minio/meta/main.yml -2025-11-24T09:08:05.0478212Z ansible/roles-external/ansible-minio/.travis.disabled.yml -2025-11-24T09:08:05.0478470Z ansible/roles-external/ansible-minio/test-requirements.txt -2025-11-24T09:08:05.0478679Z ansible/roles-external/ansible-minio/tasks/ -2025-11-24T09:08:05.0478939Z ansible/roles-external/ansible-minio/tasks/install-server.yml -2025-11-24T09:08:05.0479324Z ansible/roles-external/ansible-minio/tasks/install-client.yml -2025-11-24T09:08:05.0479567Z ansible/roles-external/ansible-minio/tasks/python_sni.yml -2025-11-24T09:08:05.0479797Z ansible/roles-external/ansible-minio/tasks/main.yml -2025-11-24T09:08:05.0480015Z ansible/roles-external/ansible-minio/handlers/ -2025-11-24T09:08:05.0480253Z ansible/roles-external/ansible-minio/handlers/main.yml -2025-11-24T09:08:05.0480476Z ansible/roles-external/ansible-minio/.gitignore -2025-11-24T09:08:05.0480687Z ansible/roles-external/ansible-minio/README.md -2025-11-24T09:08:05.0480900Z ansible/roles-external/ansible-minio/tox.ini -2025-11-24T09:08:05.0481142Z ansible/roles-external/ansible-minio/.travis.disabled/ -2025-11-24T09:08:05.0481425Z ansible/roles-external/ansible-minio/.travis.disabled/releaser.sh -2025-11-24T09:08:05.0481627Z ansible/roles-external/ansible-minio/vars/ -2025-11-24T09:08:05.0481853Z ansible/roles-external/ansible-minio/vars/main.yml -2025-11-24T09:08:05.0482067Z ansible/roles-external/ansible-minio/molecule/ -2025-11-24T09:08:05.0482307Z ansible/roles-external/ansible-minio/molecule/default/ -2025-11-24T09:08:05.0482599Z ansible/roles-external/ansible-minio/molecule/default/playbook.yml -2025-11-24T09:08:05.0482997Z ansible/roles-external/ansible-minio/molecule/default/molecule.yml -2025-11-24T09:08:05.0483257Z ansible/roles-external/ansible-minio/molecule/default/tests/ -2025-11-24T09:08:05.0483613Z ansible/roles-external/ansible-minio/molecule/default/tests/test_minio_default.py -2025-11-24T09:08:05.0483849Z ansible/roles-external/ansible-minio/molecule/cluster/ -2025-11-24T09:08:05.0484243Z ansible/roles-external/ansible-minio/molecule/cluster/playbook.yml -2025-11-24T09:08:05.0484530Z ansible/roles-external/ansible-minio/molecule/cluster/molecule.yml -2025-11-24T09:08:05.0484789Z ansible/roles-external/ansible-minio/molecule/cluster/tests/ -2025-11-24T09:08:05.0485127Z ansible/roles-external/ansible-minio/molecule/cluster/tests/test_minio_cluster.py -2025-11-24T09:08:05.0485373Z ansible/roles-external/ansible-minio/molecule/resources/ -2025-11-24T09:08:05.0485654Z ansible/roles-external/ansible-minio/molecule/resources/vars.yml -2025-11-24T09:08:05.0485916Z ansible/roles-external/ansible-minio/molecule/resources/tests/ -2025-11-24T09:08:05.0670878Z ansible/roles-external/ansible-minio/molecule/resources/tests/test_minio_common.py -2025-11-24T09:08:05.0671290Z ansible/roles-external/ansible-minio/molecule/resources/destroy.yml -2025-11-24T09:08:05.0671633Z ansible/roles-external/ansible-minio/molecule/resources/prepare.yml -2025-11-24T09:08:05.0671958Z ansible/roles-external/ansible-minio/molecule/resources/create.yml -2025-11-24T09:08:05.0672242Z ansible/roles-external/ansible-minio/molecule/client/ -2025-11-24T09:08:05.0672543Z ansible/roles-external/ansible-minio/molecule/client/verify.yml -2025-11-24T09:08:05.0673086Z ansible/roles-external/ansible-minio/molecule/client/playbook.yml -2025-11-24T09:08:05.0673400Z ansible/roles-external/ansible-minio/molecule/client/molecule.yml -2025-11-24T09:08:05.0673713Z ansible/roles-external/ansible-minio/molecule/alternative/ -2025-11-24T09:08:05.0674106Z ansible/roles-external/ansible-minio/molecule/alternative/playbook.yml -2025-11-24T09:08:05.0674473Z ansible/roles-external/ansible-minio/molecule/alternative/molecule.yml -2025-11-24T09:08:05.0674826Z ansible/roles-external/ansible-minio/molecule/alternative/tests/ -2025-11-24T09:08:05.0675320Z ansible/roles-external/ansible-minio/molecule/alternative/tests/test_minio_alternative.py -2025-11-24T09:08:05.0675616Z ansible/roles-external/ansible-minio/molecule/layouts/ -2025-11-24T09:08:05.0675968Z ansible/roles-external/ansible-minio/molecule/layouts/playbook.yml -2025-11-24T09:08:05.0676319Z ansible/roles-external/ansible-minio/molecule/layouts/molecule.yml -2025-11-24T09:08:05.0676632Z ansible/roles-external/ansible-minio/molecule/layouts/tests/ -2025-11-24T09:08:05.0677091Z ansible/roles-external/ansible-minio/molecule/layouts/tests/test_minio_default.py -2025-11-24T09:08:05.0677375Z ansible/roles-external/ansible-minio/MAINTAINERS.md -2025-11-24T09:08:05.0677974Z ansible/roles-external/ansible-minio/templates/ -2025-11-24T09:08:05.0678370Z ansible/roles-external/ansible-minio/templates/minio.init.j2 -2025-11-24T09:08:05.0679046Z ansible/roles-external/ansible-minio/templates/minio.service.j2 -2025-11-24T09:08:05.0685845Z ansible/roles-external/ansible-minio/templates/minio.env.j2 -2025-11-24T09:08:05.0686254Z ansible/roles-external/ansible-minio/templates/minio.old-credentials.env.j2 -2025-11-24T09:08:05.0686483Z ansible/roles-external/ansible-ntp-verify/ -2025-11-24T09:08:05.0686722Z ansible/roles-external/ansible-ntp-verify/defaults/ -2025-11-24T09:08:05.0686995Z ansible/roles-external/ansible-ntp-verify/defaults/main.yml -2025-11-24T09:08:05.0687218Z ansible/roles-external/ansible-ntp-verify/LICENSE -2025-11-24T09:08:05.0687432Z ansible/roles-external/ansible-ntp-verify/.git -2025-11-24T09:08:05.0687683Z ansible/roles-external/ansible-ntp-verify/meta/ -2025-11-24T09:08:05.0687945Z ansible/roles-external/ansible-ntp-verify/meta/main.yml -2025-11-24T09:08:05.0688177Z ansible/roles-external/ansible-ntp-verify/tasks/ -2025-11-24T09:08:05.0688419Z ansible/roles-external/ansible-ntp-verify/tasks/main.yml -2025-11-24T09:08:05.0926901Z ansible/roles-external/ansible-ntp-verify/README.md -2025-11-24T09:08:05.0927285Z ansible/roles-external/ansible-role-java/ -2025-11-24T09:08:05.0927613Z ansible/roles-external/ansible-role-java/defaults/ -2025-11-24T09:08:05.0927989Z ansible/roles-external/ansible-role-java/defaults/main.yml -2025-11-24T09:08:05.0928297Z ansible/roles-external/ansible-role-java/LICENSE -2025-11-24T09:08:05.0928592Z ansible/roles-external/ansible-role-java/.git -2025-11-24T09:08:05.0929330Z ansible/roles-external/ansible-role-java/.yamllint -2025-11-24T09:08:05.0929643Z ansible/roles-external/ansible-role-java/meta/ -2025-11-24T09:08:05.0929986Z ansible/roles-external/ansible-role-java/meta/main.yml -2025-11-24T09:08:05.0930286Z ansible/roles-external/ansible-role-java/.github/ -2025-11-24T09:08:05.0930639Z ansible/roles-external/ansible-role-java/.github/workflows/ -2025-11-24T09:08:05.0931036Z ansible/roles-external/ansible-role-java/.github/workflows/ci.yml -2025-11-24T09:08:05.0931469Z ansible/roles-external/ansible-role-java/.github/workflows/release.yml -2025-11-24T09:08:05.0931923Z ansible/roles-external/ansible-role-java/.github/stale.yml -2025-11-24T09:08:05.0932290Z ansible/roles-external/ansible-role-java/.github/FUNDING.yml -2025-11-24T09:08:05.0932599Z ansible/roles-external/ansible-role-java/tasks/ -2025-11-24T09:08:05.0933264Z ansible/roles-external/ansible-role-java/tasks/setup-Debian.yml -2025-11-24T09:08:05.0933656Z ansible/roles-external/ansible-role-java/tasks/setup-FreeBSD.yml -2025-11-24T09:08:05.0934033Z ansible/roles-external/ansible-role-java/tasks/setup-RedHat.yml -2025-11-24T09:08:05.0934363Z ansible/roles-external/ansible-role-java/tasks/main.yml -2025-11-24T09:08:05.0934640Z ansible/roles-external/ansible-role-java/.gitignore -2025-11-24T09:08:05.0934892Z ansible/roles-external/ansible-role-java/README.md -2025-11-24T09:08:05.0935160Z ansible/roles-external/ansible-role-java/.ansible-lint -2025-11-24T09:08:05.0935404Z ansible/roles-external/ansible-role-java/vars/ -2025-11-24T09:08:05.0935688Z ansible/roles-external/ansible-role-java/vars/Ubuntu-22.yml -2025-11-24T09:08:05.0935974Z ansible/roles-external/ansible-role-java/vars/Ubuntu-14.yml -2025-11-24T09:08:05.0936255Z ansible/roles-external/ansible-role-java/vars/RedHat-9.yml -2025-11-24T09:08:05.0936533Z ansible/roles-external/ansible-role-java/vars/Ubuntu-16.yml -2025-11-24T09:08:05.0936803Z ansible/roles-external/ansible-role-java/vars/Debian-10.yml -2025-11-24T09:08:05.0937086Z ansible/roles-external/ansible-role-java/vars/Ubuntu-12.yml -2025-11-24T09:08:05.0937370Z ansible/roles-external/ansible-role-java/vars/FreeBSD.yml -2025-11-24T09:08:05.0937645Z ansible/roles-external/ansible-role-java/vars/Debian-11.yml -2025-11-24T09:08:05.0937924Z ansible/roles-external/ansible-role-java/vars/RedHat-8.yml -2025-11-24T09:08:05.0938201Z ansible/roles-external/ansible-role-java/vars/Ubuntu-20.yml -2025-11-24T09:08:05.1040194Z ansible/roles-external/ansible-role-java/vars/RedHat-7.yml -2025-11-24T09:08:05.1040653Z ansible/roles-external/ansible-role-java/vars/Fedora.yml -2025-11-24T09:08:05.1041078Z ansible/roles-external/ansible-role-java/vars/Debian-9.yml -2025-11-24T09:08:05.1041378Z ansible/roles-external/ansible-role-java/vars/Debian-8.yml -2025-11-24T09:08:05.1041735Z ansible/roles-external/ansible-role-java/vars/Ubuntu-18.yml -2025-11-24T09:08:05.1042133Z ansible/roles-external/ansible-role-java/molecule/ -2025-11-24T09:08:05.1042565Z ansible/roles-external/ansible-role-java/molecule/default/ -2025-11-24T09:08:05.1043290Z ansible/roles-external/ansible-role-java/molecule/default/converge.yml -2025-11-24T09:08:05.1043622Z ansible/roles-external/ansible-role-java/molecule/default/molecule.yml -2025-11-24T09:08:05.1043871Z ansible/roles-external/ansible-role-java/templates/ -2025-11-24T09:08:05.1044181Z ansible/roles-external/ansible-role-java/templates/java_home.sh.j2 -2025-11-24T09:08:05.1044399Z ansible/roles-external/ansible-role-ntp/ -2025-11-24T09:08:05.1044645Z ansible/roles-external/ansible-role-ntp/defaults/ -2025-11-24T09:08:05.1044907Z ansible/roles-external/ansible-role-ntp/defaults/main.yml -2025-11-24T09:08:05.1045134Z ansible/roles-external/ansible-role-ntp/LICENSE -2025-11-24T09:08:05.1045356Z ansible/roles-external/ansible-role-ntp/.git -2025-11-24T09:08:05.1045578Z ansible/roles-external/ansible-role-ntp/meta/ -2025-11-24T09:08:05.1045823Z ansible/roles-external/ansible-role-ntp/meta/main.yml -2025-11-24T09:08:05.1046048Z ansible/roles-external/ansible-role-ntp/tasks/ -2025-11-24T09:08:05.1046327Z ansible/roles-external/ansible-role-ntp/tasks/clock-rhel-6.yml -2025-11-24T09:08:05.1046880Z ansible/roles-external/ansible-role-ntp/tasks/main.yml -2025-11-24T09:08:05.1047121Z ansible/roles-external/ansible-role-ntp/handlers/ -2025-11-24T09:08:05.1047378Z ansible/roles-external/ansible-role-ntp/handlers/main.yml -2025-11-24T09:08:05.1047610Z ansible/roles-external/ansible-role-ntp/.gitignore -2025-11-24T09:08:05.1047840Z ansible/roles-external/ansible-role-ntp/README.md -2025-11-24T09:08:05.1048082Z ansible/roles-external/ansible-role-ntp/.travis.yml -2025-11-24T09:08:05.1048303Z ansible/roles-external/ansible-role-ntp/vars/ -2025-11-24T09:08:05.1048647Z ansible/roles-external/ansible-role-ntp/vars/RedHat.yml -2025-11-24T09:08:05.1048893Z ansible/roles-external/ansible-role-ntp/vars/Suse.yml -2025-11-24T09:08:05.1049149Z ansible/roles-external/ansible-role-ntp/vars/FreeBSD.yml -2025-11-24T09:08:05.1049398Z ansible/roles-external/ansible-role-ntp/vars/Debian.yml -2025-11-24T09:08:05.1049663Z ansible/roles-external/ansible-role-ntp/vars/Archlinux.yml -2025-11-24T09:08:05.1049891Z ansible/roles-external/ansible-role-ntp/tests/ -2025-11-24T09:08:05.1050143Z ansible/roles-external/ansible-role-ntp/tests/test.yml -2025-11-24T09:08:05.1050391Z ansible/roles-external/ansible-role-ntp/tests/README.md -2025-11-24T09:08:05.1050628Z ansible/roles-external/ansible-role-ntp/templates/ -2025-11-24T09:08:05.1050887Z ansible/roles-external/ansible-role-ntp/templates/clock.j2 -2025-11-24T09:08:05.1051164Z ansible/roles-external/ansible-role-ntp/templates/ntp.conf.j2 -2025-11-24T09:08:05.1051367Z ansible/roles-external/hostname/ -2025-11-24T09:08:05.1051585Z ansible/roles-external/hostname/Vagrantfile -2025-11-24T09:08:05.1051795Z ansible/roles-external/hostname/defaults/ -2025-11-24T09:08:05.1052018Z ansible/roles-external/hostname/defaults/main.yml -2025-11-24T09:08:05.1161374Z ansible/roles-external/hostname/LICENSE -2025-11-24T09:08:05.1163386Z ansible/roles-external/hostname/test.yml -2025-11-24T09:08:05.1163742Z ansible/roles-external/hostname/.git -2025-11-24T09:08:05.1164073Z ansible/roles-external/hostname/meta/ -2025-11-24T09:08:05.1164471Z ansible/roles-external/hostname/meta/main.yml -2025-11-24T09:08:05.1164987Z ansible/roles-external/hostname/tasks/ -2025-11-24T09:08:05.1166374Z ansible/roles-external/hostname/tasks/main.yml -2025-11-24T09:08:05.1166612Z ansible/roles-external/hostname/.gitignore -2025-11-24T09:08:05.1168010Z ansible/roles-external/hostname/README.md -2025-11-24T09:08:05.1168803Z ansible/roles-external/hostname/vagrant-inventory -2025-11-24T09:08:05.1169384Z ansible/roles-external/hostname/.travis.yml -2025-11-24T09:08:05.1169786Z ansible/roles-external/hostname/vars/ -2025-11-24T09:08:05.1170348Z ansible/roles-external/hostname/vars/main.yml -2025-11-24T09:08:05.1174094Z ansible/roles-external/elasticsearch/ -2025-11-24T09:08:05.1174515Z ansible/roles-external/elasticsearch/CHANGELOG.md -2025-11-24T09:08:05.1174919Z ansible/roles-external/elasticsearch/helpers/ -2025-11-24T09:08:05.1175562Z ansible/roles-external/elasticsearch/helpers/bumper.py -2025-11-24T09:08:05.1175968Z ansible/roles-external/elasticsearch/defaults/ -2025-11-24T09:08:05.1179454Z ansible/roles-external/elasticsearch/defaults/main.yml -2025-11-24T09:08:05.1179871Z ansible/roles-external/elasticsearch/LICENSE -2025-11-24T09:08:05.1180454Z ansible/roles-external/elasticsearch/.git -2025-11-24T09:08:05.1180702Z ansible/roles-external/elasticsearch/meta/ -2025-11-24T09:08:05.1229831Z ansible/roles-external/elasticsearch/meta/main.yml -2025-11-24T09:08:05.1230155Z ansible/roles-external/elasticsearch/.github/ -2025-11-24T09:08:05.1230686Z ansible/roles-external/elasticsearch/.github/issue_template.md -2025-11-24T09:08:05.1231185Z ansible/roles-external/elasticsearch/.github/stale.yml -2025-11-24T09:08:05.1231496Z ansible/roles-external/elasticsearch/filter_plugins/ -2025-11-24T09:08:05.1231845Z ansible/roles-external/elasticsearch/filter_plugins/custom.py -2025-11-24T09:08:05.1232113Z ansible/roles-external/elasticsearch/Gemfile -2025-11-24T09:08:05.1232369Z ansible/roles-external/elasticsearch/tasks/ -2025-11-24T09:08:05.1233682Z ansible/roles-external/elasticsearch/tasks/elasticsearch-plugins.yml -2025-11-24T09:08:05.1233995Z ansible/roles-external/elasticsearch/tasks/xpack/ -2025-11-24T09:08:05.1234416Z ansible/roles-external/elasticsearch/tasks/xpack/elasticsearch-xpack.yml -2025-11-24T09:08:05.1234762Z ansible/roles-external/elasticsearch/tasks/xpack/security/ -2025-11-24T09:08:05.1235341Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-xpack-activation.yml -2025-11-24T09:08:05.1235859Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-xpack-trial-activation.yml -2025-11-24T09:08:05.1236563Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-security-file.yml -2025-11-24T09:08:05.1237338Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-security.yml -2025-11-24T09:08:05.1238015Z ansible/roles-external/elasticsearch/tasks/xpack/security/elasticsearch-security-native.yml -2025-11-24T09:08:05.1238330Z ansible/roles-external/elasticsearch/tasks/snapshot-release.yml -2025-11-24T09:08:05.1238599Z ansible/roles-external/elasticsearch/tasks/java.yml -2025-11-24T09:08:05.1239278Z ansible/roles-external/elasticsearch/tasks/elasticsearch-RedHat.yml -2025-11-24T09:08:05.1239783Z ansible/roles-external/elasticsearch/tasks/elasticsearch-parameters.yml -2025-11-24T09:08:05.1240166Z ansible/roles-external/elasticsearch/tasks/elasticsearch-optional-user.yml -2025-11-24T09:08:05.1240521Z ansible/roles-external/elasticsearch/tasks/elasticsearch-template.yml -2025-11-24T09:08:05.1240851Z ansible/roles-external/elasticsearch/tasks/elasticsearch-Debian.yml -2025-11-24T09:08:05.1241174Z ansible/roles-external/elasticsearch/tasks/elasticsearch-config.yml -2025-11-24T09:08:05.1241485Z ansible/roles-external/elasticsearch/tasks/elasticsearch-ssl.yml -2025-11-24T09:08:05.1241878Z ansible/roles-external/elasticsearch/tasks/elasticsearch-RedHat-version-lock.yml -2025-11-24T09:08:05.1242303Z ansible/roles-external/elasticsearch/tasks/elasticsearch.yml -2025-11-24T09:08:05.1242792Z ansible/roles-external/elasticsearch/tasks/main.yml -2025-11-24T09:08:05.1243204Z ansible/roles-external/elasticsearch/tasks/compatibility-variables.yml -2025-11-24T09:08:05.1243456Z ansible/roles-external/elasticsearch/.kitchen.yml -2025-11-24T09:08:05.1243695Z ansible/roles-external/elasticsearch/handlers/ -2025-11-24T09:08:05.1243961Z ansible/roles-external/elasticsearch/handlers/main.yml -2025-11-24T09:08:05.1244320Z ansible/roles-external/elasticsearch/.gitignore -2025-11-24T09:08:05.1244552Z ansible/roles-external/elasticsearch/README.md -2025-11-24T09:08:05.1244795Z ansible/roles-external/elasticsearch/Gemfile.lock -2025-11-24T09:08:05.1245079Z ansible/roles-external/elasticsearch/.ruby-version -2025-11-24T09:08:05.1245306Z ansible/roles-external/elasticsearch/docs/ -2025-11-24T09:08:05.1245586Z ansible/roles-external/elasticsearch/docs/ssl-tls-setup.md -2025-11-24T09:08:05.1245860Z ansible/roles-external/elasticsearch/docs/multi-instance.md -2025-11-24T09:08:05.1246066Z ansible/roles-external/elasticsearch/files/ -2025-11-24T09:08:05.1246298Z ansible/roles-external/elasticsearch/files/systemd/ -2025-11-24T09:08:05.1246631Z ansible/roles-external/elasticsearch/files/systemd/elasticsearch_override.conf -2025-11-24T09:08:05.1246845Z ansible/roles-external/elasticsearch/ansible.cfg -2025-11-24T09:08:05.1247047Z ansible/roles-external/elasticsearch/vars/ -2025-11-24T09:08:05.1247276Z ansible/roles-external/elasticsearch/vars/RedHat.yml -2025-11-24T09:08:05.1247500Z ansible/roles-external/elasticsearch/vars/Debian.yml -2025-11-24T09:08:05.1247718Z ansible/roles-external/elasticsearch/vars/main.yml -2025-11-24T09:08:05.1247924Z ansible/roles-external/elasticsearch/test/ -2025-11-24T09:08:05.1248164Z ansible/roles-external/elasticsearch/test/integration/ -2025-11-24T09:08:05.1248486Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade-trial -2025-11-24T09:08:05.1248738Z ansible/roles-external/elasticsearch/test/integration/xpack/ -2025-11-24T09:08:05.1249038Z ansible/roles-external/elasticsearch/test/integration/xpack/xpack.yml -2025-11-24T09:08:05.1249482Z ansible/roles-external/elasticsearch/test/integration/xpack/serverspec/ -2025-11-24T09:08:05.1249867Z ansible/roles-external/elasticsearch/test/integration/xpack/serverspec/default_spec.rb -2025-11-24T09:08:05.1250136Z ansible/roles-external/elasticsearch/test/integration/helpers/ -2025-11-24T09:08:05.1250456Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/ -2025-11-24T09:08:05.1250823Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/oss_spec.rb -2025-11-24T09:08:05.1251219Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/oss_upgrade_spec.rb -2025-11-24T09:08:05.1251694Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/issue_test_spec.rb -2025-11-24T09:08:05.1252071Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/spec_helper.rb -2025-11-24T09:08:05.1252405Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/Gemfile -2025-11-24T09:08:05.1252988Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/oss_to_xpack_upgrade_spec.rb -2025-11-24T09:08:05.1253398Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/xpack_upgrade_spec.rb -2025-11-24T09:08:05.1253770Z ansible/roles-external/elasticsearch/test/integration/helpers/serverspec/shared_spec.rb -2025-11-24T09:08:05.1254032Z ansible/roles-external/elasticsearch/test/integration/debug.yml -2025-11-24T09:08:05.1254341Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade.yml -2025-11-24T09:08:05.1254639Z ansible/roles-external/elasticsearch/test/integration/issue-test.yml -2025-11-24T09:08:05.1254893Z ansible/roles-external/elasticsearch/test/integration/oss/ -2025-11-24T09:08:05.1382438Z ansible/roles-external/elasticsearch/test/integration/oss/serverspec/ -2025-11-24T09:08:05.1383306Z ansible/roles-external/elasticsearch/test/integration/oss/serverspec/default_spec.rb -2025-11-24T09:08:05.1383875Z ansible/roles-external/elasticsearch/test/integration/oss/oss.yml -2025-11-24T09:08:05.1384520Z ansible/roles-external/elasticsearch/test/integration/issue-test/ -2025-11-24T09:08:05.1385149Z ansible/roles-external/elasticsearch/test/integration/issue-test/issue-test.yml -2025-11-24T09:08:05.1385766Z ansible/roles-external/elasticsearch/test/integration/issue-test/serverspec/ -2025-11-24T09:08:05.1386532Z ansible/roles-external/elasticsearch/test/integration/issue-test/serverspec/default_spec.rb -2025-11-24T09:08:05.1387426Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade-trial.yml -2025-11-24T09:08:05.1387953Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade/ -2025-11-24T09:08:05.1388612Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade/serverspec/ -2025-11-24T09:08:05.1389330Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade/serverspec/default_spec.rb -2025-11-24T09:08:05.1389979Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade/xpack-upgrade.yml -2025-11-24T09:08:05.1390628Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade.yml -2025-11-24T09:08:05.1391204Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade/ -2025-11-24T09:08:05.1391961Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade/oss-to-xpack-upgrade.yml -2025-11-24T09:08:05.1392845Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade/serverspec/ -2025-11-24T09:08:05.1393623Z ansible/roles-external/elasticsearch/test/integration/oss-to-xpack-upgrade/serverspec/default_spec.rb -2025-11-24T09:08:05.1394125Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade/ -2025-11-24T09:08:05.1394732Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade/oss-upgrade.yml -2025-11-24T09:08:05.1395304Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade/serverspec/ -2025-11-24T09:08:05.1396058Z ansible/roles-external/elasticsearch/test/integration/oss-upgrade/serverspec/default_spec.rb -2025-11-24T09:08:05.1396742Z ansible/roles-external/elasticsearch/test/integration/files/ -2025-11-24T09:08:05.1397286Z ansible/roles-external/elasticsearch/test/integration/files/custom_config/ -2025-11-24T09:08:05.1397963Z ansible/roles-external/elasticsearch/test/integration/files/custom_config/jvm.options -2025-11-24T09:08:05.1398596Z ansible/roles-external/elasticsearch/test/integration/files/custom_config/elasticsearch -2025-11-24T09:08:05.1399265Z ansible/roles-external/elasticsearch/test/integration/files/custom_config/log4j2.properties -2025-11-24T09:08:05.1399743Z ansible/roles-external/elasticsearch/test/integration/files/certs/ -2025-11-24T09:08:05.1400687Z ansible/roles-external/elasticsearch/test/integration/files/certs/shared-store-no-password-ca.p12 -2025-11-24T09:08:05.1401371Z ansible/roles-external/elasticsearch/test/integration/files/certs/keystore-password-ca.p12 -2025-11-24T09:08:05.1402057Z ansible/roles-external/elasticsearch/test/integration/files/certs/truststore-password-ca.p12 -2025-11-24T09:08:05.1402976Z ansible/roles-external/elasticsearch/test/integration/files/certs/keystore-password.p12 -2025-11-24T09:08:05.1403775Z ansible/roles-external/elasticsearch/test/integration/files/certs/truststore-password.p12 -2025-11-24T09:08:05.1404476Z ansible/roles-external/elasticsearch/test/integration/files/certs/shared-store-no-password.p12 -2025-11-24T09:08:05.1405022Z ansible/roles-external/elasticsearch/test/integration/files/templates-6.x/ -2025-11-24T09:08:05.1405703Z ansible/roles-external/elasticsearch/test/integration/files/templates-6.x/basic.json -2025-11-24T09:08:05.1406240Z ansible/roles-external/elasticsearch/test/integration/files/templates-7.x/ -2025-11-24T09:08:05.1406844Z ansible/roles-external/elasticsearch/test/integration/files/templates-7.x/basic.json -2025-11-24T09:08:05.1407539Z ansible/roles-external/elasticsearch/test/integration/xpack.yml -2025-11-24T09:08:05.1408170Z ansible/roles-external/elasticsearch/test/integration/xpack-upgrade.yml -2025-11-24T09:08:05.1408643Z ansible/roles-external/elasticsearch/test/integration/oss.yml -2025-11-24T09:08:05.1409069Z ansible/roles-external/elasticsearch/test/matrix.yml -2025-11-24T09:08:05.1409420Z ansible/roles-external/elasticsearch/.ci/ -2025-11-24T09:08:05.1409792Z ansible/roles-external/elasticsearch/.ci/jobs/ -2025-11-24T09:08:05.1410230Z ansible/roles-external/elasticsearch/.ci/jobs/defaults.yml -2025-11-24T09:08:05.1411042Z ansible/roles-external/elasticsearch/.ci/jobs/elastic+ansible-elasticsearch+pull-request.yml -2025-11-24T09:08:05.1412032Z ansible/roles-external/elasticsearch/.ci/jobs/elastic+ansible-elasticsearch+master.yml -2025-11-24T09:08:05.1412417Z ansible/roles-external/elasticsearch/templates/ -2025-11-24T09:08:05.1413116Z ansible/roles-external/elasticsearch/templates/elasticsearch.yml.j2 -2025-11-24T09:08:05.1413591Z ansible/roles-external/elasticsearch/templates/elasticsearch.j2 -2025-11-24T09:08:05.1414075Z ansible/roles-external/elasticsearch/templates/jvm.options.j2 -2025-11-24T09:08:05.1414537Z ansible/roles-external/elasticsearch/templates/override.conf.j2 -2025-11-24T09:08:05.1415099Z ansible/roles-external/elasticsearch/templates/elasticsearch.repo -2025-11-24T09:08:05.1415525Z ansible/roles-external/elasticsearch/templates/security/ -2025-11-24T09:08:05.1416053Z ansible/roles-external/elasticsearch/templates/security/users_roles.j2 -2025-11-24T09:08:05.1416613Z ansible/roles-external/elasticsearch/templates/security/roles.yml.j2 -2025-11-24T09:08:05.1417174Z ansible/roles-external/elasticsearch/templates/security/role_mapping.yml.j2 -2025-11-24T09:08:05.1417528Z ansible/roles-external/elasticsearch/Makefile -2025-11-24T09:08:05.1417840Z ansible/roles-external/sft/ -2025-11-24T09:08:05.1418162Z ansible/roles-external/sft/LICENSE -2025-11-24T09:08:05.1418477Z ansible/roles-external/sft/.git -2025-11-24T09:08:05.1418796Z ansible/roles-external/sft/roles/ -2025-11-24T09:08:05.1419161Z ansible/roles-external/sft/roles/sft-monitoring-certs/ -2025-11-24T09:08:05.1419607Z ansible/roles-external/sft/roles/sft-monitoring-certs/meta/ -2025-11-24T09:08:05.1420332Z ansible/roles-external/sft/roles/sft-monitoring-certs/meta/main.yml -2025-11-24T09:08:05.1420856Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/ -2025-11-24T09:08:05.1421450Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/ca-private-key.yml -2025-11-24T09:08:05.1422011Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/assert.yml -2025-11-24T09:08:05.1422480Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/client-cert.yml -2025-11-24T09:08:05.1423207Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/client-private-key.yml -2025-11-24T09:08:05.1423734Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/ca-cert.yml -2025-11-24T09:08:05.1424206Z ansible/roles-external/sft/roles/sft-monitoring-certs/tasks/main.yml -2025-11-24T09:08:05.1424647Z ansible/roles-external/sft/roles/sft-monitoring-certs/README.md -2025-11-24T09:08:05.1425011Z ansible/roles-external/sft/roles/srv-announcer/ -2025-11-24T09:08:05.1425412Z ansible/roles-external/sft/roles/srv-announcer/defaults/ -2025-11-24T09:08:05.1425708Z ansible/roles-external/sft/roles/srv-announcer/defaults/main.yml -2025-11-24T09:08:05.1425966Z ansible/roles-external/sft/roles/srv-announcer/meta/ -2025-11-24T09:08:05.1426228Z ansible/roles-external/sft/roles/srv-announcer/meta/main.yml -2025-11-24T09:08:05.1426471Z ansible/roles-external/sft/roles/srv-announcer/tasks/ -2025-11-24T09:08:05.1426991Z ansible/roles-external/sft/roles/srv-announcer/tasks/install.yml -2025-11-24T09:08:05.1427418Z ansible/roles-external/sft/roles/srv-announcer/tasks/test.yml -2025-11-24T09:08:05.1427770Z ansible/roles-external/sft/roles/srv-announcer/tasks/assert.yml -2025-11-24T09:08:05.1428271Z ansible/roles-external/sft/roles/srv-announcer/tasks/configure.yml -2025-11-24T09:08:05.1428707Z ansible/roles-external/sft/roles/srv-announcer/tasks/start.yml -2025-11-24T09:08:05.1429105Z ansible/roles-external/sft/roles/srv-announcer/tasks/main.yml -2025-11-24T09:08:05.1429344Z ansible/roles-external/sft/roles/srv-announcer/vars/ -2025-11-24T09:08:05.1429603Z ansible/roles-external/sft/roles/srv-announcer/vars/main.yml -2025-11-24T09:08:05.1429859Z ansible/roles-external/sft/roles/srv-announcer/templates/ -2025-11-24T09:08:05.1430190Z ansible/roles-external/sft/roles/srv-announcer/templates/discovery.slice.j2 -2025-11-24T09:08:05.1430541Z ansible/roles-external/sft/roles/srv-announcer/templates/srv-announcer.service.j2 -2025-11-24T09:08:05.1430862Z ansible/roles-external/sft/roles/srv-announcer/templates/srv-announcer.env.j2 -2025-11-24T09:08:05.1431175Z ansible/roles-external/sft/roles/sft-server/ -2025-11-24T09:08:05.1431418Z ansible/roles-external/sft/roles/sft-server/defaults/ -2025-11-24T09:08:05.1431694Z ansible/roles-external/sft/roles/sft-server/defaults/main.yml -2025-11-24T09:08:05.1431923Z ansible/roles-external/sft/roles/sft-server/meta/ -2025-11-24T09:08:05.1432168Z ansible/roles-external/sft/roles/sft-server/meta/main.yml -2025-11-24T09:08:05.1432393Z ansible/roles-external/sft/roles/sft-server/tasks/ -2025-11-24T09:08:05.1432846Z ansible/roles-external/sft/roles/sft-server/tasks/install.yml -2025-11-24T09:08:05.1433119Z ansible/roles-external/sft/roles/sft-server/tasks/test.yml -2025-11-24T09:08:05.1433379Z ansible/roles-external/sft/roles/sft-server/tasks/assert.yml -2025-11-24T09:08:05.1433649Z ansible/roles-external/sft/roles/sft-server/tasks/configure.yml -2025-11-24T09:08:05.1433902Z ansible/roles-external/sft/roles/sft-server/tasks/start.yml -2025-11-24T09:08:05.1434155Z ansible/roles-external/sft/roles/sft-server/tasks/traffic.yml -2025-11-24T09:08:05.1434399Z ansible/roles-external/sft/roles/sft-server/tasks/main.yml -2025-11-24T09:08:05.1434635Z ansible/roles-external/sft/roles/sft-server/handlers/ -2025-11-24T09:08:05.1434890Z ansible/roles-external/sft/roles/sft-server/handlers/main.yml -2025-11-24T09:08:05.1435113Z ansible/roles-external/sft/roles/sft-server/vars/ -2025-11-24T09:08:05.1435357Z ansible/roles-external/sft/roles/sft-server/vars/main.yml -2025-11-24T09:08:05.1435590Z ansible/roles-external/sft/roles/sft-server/molecule/ -2025-11-24T09:08:05.1436046Z ansible/roles-external/sft/roles/sft-server/molecule/requirements.yml -2025-11-24T09:08:05.1436309Z ansible/roles-external/sft/roles/sft-server/molecule/default/ -2025-11-24T09:08:05.1436620Z ansible/roles-external/sft/roles/sft-server/molecule/default/verify.yml -2025-11-24T09:08:05.1436937Z ansible/roles-external/sft/roles/sft-server/molecule/default/converge.yml -2025-11-24T09:08:05.1437247Z ansible/roles-external/sft/roles/sft-server/molecule/default/molecule.yml -2025-11-24T09:08:05.1437554Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/ -2025-11-24T09:08:05.1437886Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/verify.yml -2025-11-24T09:08:05.1438295Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/converge.yml -2025-11-24T09:08:05.1438627Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/molecule.yml -2025-11-24T09:08:05.1438960Z ansible/roles-external/sft/roles/sft-server/molecule/without-metrics/inventory.yml -2025-11-24T09:08:05.1439243Z ansible/roles-external/sft/roles/sft-server/molecule/cleanup.yml -2025-11-24T09:08:05.1439505Z ansible/roles-external/sft/roles/sft-server/molecule/inventory/ -2025-11-24T09:08:05.1439826Z ansible/roles-external/sft/roles/sft-server/molecule/inventory/group_vars/ -2025-11-24T09:08:05.1440154Z ansible/roles-external/sft/roles/sft-server/molecule/inventory/group_vars/all.yml -2025-11-24T09:08:05.1440395Z ansible/roles-external/sft/roles/sft-server/templates/ -2025-11-24T09:08:05.1440717Z ansible/roles-external/sft/roles/sft-server/templates/metrics.vhost.conf.j2 -2025-11-24T09:08:05.1441049Z ansible/roles-external/sft/roles/sft-server/templates/nginx.service.override.j2 -2025-11-24T09:08:05.1441353Z ansible/roles-external/sft/roles/sft-server/templates/sftd.service.j2 -2025-11-24T09:08:05.1441667Z ansible/roles-external/sft/roles/sft-server/templates/coredump.conf.j2 -2025-11-24T09:08:05.1441961Z ansible/roles-external/sft/roles/sft-server/templates/certbot.ini.j2 -2025-11-24T09:08:05.1442276Z ansible/roles-external/sft/roles/sft-server/templates/sftd.vhost.conf.j2 -2025-11-24T09:08:05.1442795Z ansible/roles-external/sft/roles/sft-server/templates/certbot-http-challenge.vhost.conf.j2 -2025-11-24T09:08:05.1443096Z ansible/roles-external/sft/roles/sft-server/templates/nginx.conf.j2 -2025-11-24T09:08:05.1443292Z ansible/roles-external/sft/meta/ -2025-11-24T09:08:05.1443493Z ansible/roles-external/sft/meta/main.yml -2025-11-24T09:08:05.1443762Z ansible/roles-external/sft/.github/ -2025-11-24T09:08:05.1443978Z ansible/roles-external/sft/.github/workflows/ -2025-11-24T09:08:05.1444225Z ansible/roles-external/sft/.github/workflows/molecule.yml -2025-11-24T09:08:05.1444433Z ansible/roles-external/sft/poetry.lock -2025-11-24T09:08:05.1444629Z ansible/roles-external/sft/README.md -2025-11-24T09:08:05.1444841Z ansible/roles-external/sft/pyproject.toml -2025-11-24T09:08:05.1445076Z ansible/roles-external/cloudalchemy.node-exporter/ -2025-11-24T09:08:05.1445358Z ansible/roles-external/cloudalchemy.node-exporter/CHANGELOG.md -2025-11-24T09:08:05.1445627Z ansible/roles-external/cloudalchemy.node-exporter/defaults/ -2025-11-24T09:08:05.1445922Z ansible/roles-external/cloudalchemy.node-exporter/defaults/main.yml -2025-11-24T09:08:05.1446172Z ansible/roles-external/cloudalchemy.node-exporter/LICENSE -2025-11-24T09:08:05.1446416Z ansible/roles-external/cloudalchemy.node-exporter/.git -2025-11-24T09:08:05.1446665Z ansible/roles-external/cloudalchemy.node-exporter/.yamllint -2025-11-24T09:08:05.1446951Z ansible/roles-external/cloudalchemy.node-exporter/CONTRIBUTING.md -2025-11-24T09:08:05.1447201Z ansible/roles-external/cloudalchemy.node-exporter/meta/ -2025-11-24T09:08:05.1447473Z ansible/roles-external/cloudalchemy.node-exporter/meta/main.yml -2025-11-24T09:08:05.1447725Z ansible/roles-external/cloudalchemy.node-exporter/.github/ -2025-11-24T09:08:05.1448017Z ansible/roles-external/cloudalchemy.node-exporter/.github/lock.yml -2025-11-24T09:08:05.1448318Z ansible/roles-external/cloudalchemy.node-exporter/.github/workflows/ -2025-11-24T09:08:05.1448782Z ansible/roles-external/cloudalchemy.node-exporter/.github/workflows/labeler.yml -2025-11-24T09:08:05.1449121Z ansible/roles-external/cloudalchemy.node-exporter/.github/workflows/labels.yml -2025-11-24T09:08:05.1449414Z ansible/roles-external/cloudalchemy.node-exporter/.github/stale.yml -2025-11-24T09:08:05.1449741Z ansible/roles-external/cloudalchemy.node-exporter/.github/labeler.yml -2025-11-24T09:08:05.1450067Z ansible/roles-external/cloudalchemy.node-exporter/.github/ISSUE_TEMPLATE/ -2025-11-24T09:08:05.1450419Z ansible/roles-external/cloudalchemy.node-exporter/.github/ISSUE_TEMPLATE/feature.md -2025-11-24T09:08:05.1450830Z ansible/roles-external/cloudalchemy.node-exporter/.github/ISSUE_TEMPLATE/support.md -2025-11-24T09:08:05.1451162Z ansible/roles-external/cloudalchemy.node-exporter/.github/ISSUE_TEMPLATE/bug.md -2025-11-24T09:08:05.1451460Z ansible/roles-external/cloudalchemy.node-exporter/.github/labels.yml -2025-11-24T09:08:05.1451780Z ansible/roles-external/cloudalchemy.node-exporter/test-requirements.txt -2025-11-24T09:08:05.1452038Z ansible/roles-external/cloudalchemy.node-exporter/tasks/ -2025-11-24T09:08:05.1452331Z ansible/roles-external/cloudalchemy.node-exporter/tasks/install.yml -2025-11-24T09:08:05.1452729Z ansible/roles-external/cloudalchemy.node-exporter/tasks/configure.yml -2025-11-24T09:08:05.1453017Z ansible/roles-external/cloudalchemy.node-exporter/tasks/main.yml -2025-11-24T09:08:05.1453305Z ansible/roles-external/cloudalchemy.node-exporter/tasks/selinux.yml -2025-11-24T09:08:05.1453613Z ansible/roles-external/cloudalchemy.node-exporter/tasks/preflight.yml -2025-11-24T09:08:05.1453872Z ansible/roles-external/cloudalchemy.node-exporter/handlers/ -2025-11-24T09:08:05.1454169Z ansible/roles-external/cloudalchemy.node-exporter/handlers/main.yml -2025-11-24T09:08:05.1454431Z ansible/roles-external/cloudalchemy.node-exporter/.gitignore -2025-11-24T09:08:05.1454684Z ansible/roles-external/cloudalchemy.node-exporter/.travis/ -2025-11-24T09:08:05.1454983Z ansible/roles-external/cloudalchemy.node-exporter/.travis/releaser.sh -2025-11-24T09:08:05.1455269Z ansible/roles-external/cloudalchemy.node-exporter/.travis/test.sh -2025-11-24T09:08:05.1455519Z ansible/roles-external/cloudalchemy.node-exporter/README.md -2025-11-24T09:08:05.1455768Z ansible/roles-external/cloudalchemy.node-exporter/tox.ini -2025-11-24T09:08:05.1456043Z ansible/roles-external/cloudalchemy.node-exporter/.travis.yml -2025-11-24T09:08:05.1456318Z ansible/roles-external/cloudalchemy.node-exporter/.ansible-lint -2025-11-24T09:08:05.1456639Z ansible/roles-external/cloudalchemy.node-exporter/vars/ -2025-11-24T09:08:05.1456903Z ansible/roles-external/cloudalchemy.node-exporter/vars/main.yml -2025-11-24T09:08:05.1457161Z ansible/roles-external/cloudalchemy.node-exporter/molecule/ -2025-11-24T09:08:05.1457451Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/ -2025-11-24T09:08:05.1457788Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/playbook.yml -2025-11-24T09:08:05.1458110Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/molecule.yml -2025-11-24T09:08:05.1458476Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/tests/ -2025-11-24T09:08:05.1458867Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/tests/test_default.py -2025-11-24T09:08:05.1459220Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/destroy.yml -2025-11-24T09:08:05.1459547Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/prepare.yml -2025-11-24T09:08:05.1459876Z ansible/roles-external/cloudalchemy.node-exporter/molecule/default/create.yml -2025-11-24T09:08:05.1460190Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/ -2025-11-24T09:08:05.1460563Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/playbook.yml -2025-11-24T09:08:05.1460915Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/molecule.yml -2025-11-24T09:08:05.1461263Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/tests/ -2025-11-24T09:08:05.1461819Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/tests/test_alternative.py -2025-11-24T09:08:05.1462169Z ansible/roles-external/cloudalchemy.node-exporter/molecule/alternative/prepare.yml -2025-11-24T09:08:05.1462470Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/ -2025-11-24T09:08:05.1462921Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/playbook.yml -2025-11-24T09:08:05.1463257Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/molecule.yml -2025-11-24T09:08:05.1463576Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/tests/ -2025-11-24T09:08:05.1464072Z ansible/roles-external/cloudalchemy.node-exporter/molecule/latest/tests/test_alternative.py -2025-11-24T09:08:05.1464346Z ansible/roles-external/cloudalchemy.node-exporter/.mergify.yml -2025-11-24T09:08:05.1464609Z ansible/roles-external/cloudalchemy.node-exporter/templates/ -2025-11-24T09:08:05.1464934Z ansible/roles-external/cloudalchemy.node-exporter/templates/config.yaml.j2 -2025-11-24T09:08:05.1465307Z ansible/roles-external/cloudalchemy.node-exporter/templates/node_exporter.service.j2 -2025-11-24T09:08:05.1469829Z ansible/roles-external/cloudalchemy.node-exporter/TROUBLESHOOTING.md -2025-11-24T09:08:05.1470167Z ansible/roles-external/ANXS.apt/ -2025-11-24T09:08:05.1470517Z ansible/roles-external/ANXS.apt/Vagrantfile -2025-11-24T09:08:05.1470747Z ansible/roles-external/ANXS.apt/defaults/ -2025-11-24T09:08:05.1471008Z ansible/roles-external/ANXS.apt/defaults/main.yml -2025-11-24T09:08:05.1471220Z ansible/roles-external/ANXS.apt/LICENSE -2025-11-24T09:08:05.1471431Z ansible/roles-external/ANXS.apt/test.yml -2025-11-24T09:08:05.1471637Z ansible/roles-external/ANXS.apt/.git -2025-11-24T09:08:05.1471838Z ansible/roles-external/ANXS.apt/meta/ -2025-11-24T09:08:05.1472060Z ansible/roles-external/ANXS.apt/meta/main.yml -2025-11-24T09:08:05.1472265Z ansible/roles-external/ANXS.apt/tasks/ -2025-11-24T09:08:05.1472481Z ansible/roles-external/ANXS.apt/tasks/main.yml -2025-11-24T09:08:05.1472939Z ansible/roles-external/ANXS.apt/.gitignore -2025-11-24T09:08:05.1473158Z ansible/roles-external/ANXS.apt/README.md -2025-11-24T09:08:05.1473390Z ansible/roles-external/ANXS.apt/vagrant-inventory -2025-11-24T09:08:05.1473596Z ansible/roles-external/ANXS.apt/.travis.yml -2025-11-24T09:08:05.1473799Z ansible/roles-external/ANXS.apt/templates/ -2025-11-24T09:08:05.1474128Z ansible/roles-external/ANXS.apt/templates/etc_apt_apt.conf.d_10general.j2 -2025-11-24T09:08:05.1474549Z ansible/roles-external/ANXS.apt/templates/etc_apt_sources.list.j2 -2025-11-24T09:08:05.1474747Z ansible/roles-external/ansible-tinc/ -2025-11-24T09:08:05.1474967Z ansible/roles-external/ansible-tinc/defaults/ -2025-11-24T09:08:05.1475205Z ansible/roles-external/ansible-tinc/defaults/main.yml -2025-11-24T09:08:05.1475412Z ansible/roles-external/ansible-tinc/.git -2025-11-24T09:08:05.1475619Z ansible/roles-external/ansible-tinc/meta/ -2025-11-24T09:08:05.1475845Z ansible/roles-external/ansible-tinc/meta/main.yml -2025-11-24T09:08:05.1476054Z ansible/roles-external/ansible-tinc/tasks/ -2025-11-24T09:08:05.1476287Z ansible/roles-external/ansible-tinc/tasks/main.yml -2025-11-24T09:08:05.1476512Z ansible/roles-external/ansible-tinc/handlers/ -2025-11-24T09:08:05.1476752Z ansible/roles-external/ansible-tinc/handlers/main.yml -2025-11-24T09:08:05.1476969Z ansible/roles-external/ansible-tinc/.gitignore -2025-11-24T09:08:05.1477180Z ansible/roles-external/ansible-tinc/README.md -2025-11-24T09:08:05.1477398Z ansible/roles-external/ansible-tinc/templates/ -2025-11-24T09:08:05.1477652Z ansible/roles-external/ansible-tinc/templates/nets.boot.j2 -2025-11-24T09:08:05.1496693Z ansible/roles-external/ansible-tinc/templates/tinc.service.j2 -2025-11-24T09:08:05.1497131Z ansible/roles-external/ansible-tinc/templates/tinc-up.j2 -2025-11-24T09:08:05.1497501Z ansible/roles-external/ansible-tinc/templates/tinc.conf.j2 -2025-11-24T09:08:05.1497763Z ansible/roles-external/ansible-tinc/templates/tinc-down.j2 -2025-11-24T09:08:05.1498019Z ansible/roles-external/andrewrothstein.unarchive-deps/ -2025-11-24T09:08:05.1498474Z ansible/roles-external/andrewrothstein.unarchive-deps/defaults/ -2025-11-24T09:08:05.1498816Z ansible/roles-external/andrewrothstein.unarchive-deps/defaults/main.yml -2025-11-24T09:08:05.1499114Z ansible/roles-external/andrewrothstein.unarchive-deps/LICENSE -2025-11-24T09:08:05.1499461Z ansible/roles-external/andrewrothstein.unarchive-deps/requirements.txt -2025-11-24T09:08:05.1499737Z ansible/roles-external/andrewrothstein.unarchive-deps/test.yml -2025-11-24T09:08:05.1499995Z ansible/roles-external/andrewrothstein.unarchive-deps/.git -2025-11-24T09:08:05.1500278Z ansible/roles-external/andrewrothstein.unarchive-deps/meta/ -2025-11-24T09:08:05.1500670Z ansible/roles-external/andrewrothstein.unarchive-deps/meta/main.yml -2025-11-24T09:08:05.1500961Z ansible/roles-external/andrewrothstein.unarchive-deps/tasks/ -2025-11-24T09:08:05.1501293Z ansible/roles-external/andrewrothstein.unarchive-deps/tasks/main.yml -2025-11-24T09:08:05.1501586Z ansible/roles-external/andrewrothstein.unarchive-deps/.gitignore -2025-11-24T09:08:05.1501864Z ansible/roles-external/andrewrothstein.unarchive-deps/README.md -2025-11-24T09:08:05.1502165Z ansible/roles-external/andrewrothstein.unarchive-deps/.travis.yml -2025-11-24T09:08:05.1502462Z ansible/roles-external/andrewrothstein.unarchive-deps/dcb-os.yml -2025-11-24T09:08:05.1502964Z ansible/roles-external/andrewrothstein.unarchive-deps/vars/ -2025-11-24T09:08:05.1503305Z ansible/roles-external/andrewrothstein.unarchive-deps/vars/Debian.yml -2025-11-24T09:08:05.1503618Z ansible/roles-external/andrewrothstein.unarchive-deps/vars/Darwin.yml -2025-11-24T09:08:05.1503840Z ansible/roles-external/admin_users/ -2025-11-24T09:08:05.1504058Z ansible/roles-external/admin_users/defaults/ -2025-11-24T09:08:05.1504305Z ansible/roles-external/admin_users/defaults/main.yml -2025-11-24T09:08:05.1504510Z ansible/roles-external/admin_users/LICENSE -2025-11-24T09:08:05.1504760Z ansible/roles-external/admin_users/requirements.txt -2025-11-24T09:08:05.1504978Z ansible/roles-external/admin_users/.git -2025-11-24T09:08:05.1505207Z ansible/roles-external/admin_users/.bumpversion.cfg -2025-11-24T09:08:05.1505424Z ansible/roles-external/admin_users/meta/ -2025-11-24T09:08:05.1505651Z ansible/roles-external/admin_users/meta/main.yml -2025-11-24T09:08:05.1505877Z ansible/roles-external/admin_users/filter_plugins/ -2025-11-24T09:08:05.1506135Z ansible/roles-external/admin_users/filter_plugins/main.py -2025-11-24T09:08:05.1506443Z ansible/roles-external/admin_users/tasks/ -2025-11-24T09:08:05.1506666Z ansible/roles-external/admin_users/tasks/main.yml -2025-11-24T09:08:05.1506881Z ansible/roles-external/admin_users/.gitignore -2025-11-24T09:08:05.1507093Z ansible/roles-external/admin_users/README.md -2025-11-24T09:08:05.1507297Z ansible/roles-external/admin_users/tox.ini -2025-11-24T09:08:05.1507510Z ansible/roles-external/admin_users/.travis.yml -2025-11-24T09:08:05.1507732Z ansible/roles-external/admin_users/requirements.in -2025-11-24T09:08:05.1507935Z ansible/roles-external/admin_users/vars/ -2025-11-24T09:08:05.1508178Z ansible/roles-external/admin_users/vars/RedHat.yml -2025-11-24T09:08:05.1508419Z ansible/roles-external/admin_users/vars/Debian.yml -2025-11-24T09:08:05.1508654Z ansible/roles-external/admin_users/vars/Archlinux.yml -2025-11-24T09:08:05.1508856Z ansible/roles-external/admin_users/tests/ -2025-11-24T09:08:05.1509076Z ansible/roles-external/admin_users/tests/test.yml -2025-11-24T09:08:05.1509309Z ansible/roles-external/admin_users/tests/roles/ -2025-11-24T09:08:05.1509580Z ansible/roles-external/admin_users/tests/roles/requirements.yml -2025-11-24T09:08:05.1800393Z ansible/roles-external/admin_users/tests/roles/cchurch.admin-users -2025-11-24T09:08:05.1800788Z ansible/roles-external/admin_users/tests/setup.yml -2025-11-24T09:08:05.1801053Z ansible/roles-external/admin_users/tests/cleanup.yml -2025-11-24T09:08:05.1801300Z ansible/roles-external/admin_users/tests/ansible.cfg -2025-11-24T09:08:05.1801531Z ansible/roles-external/admin_users/tests/inventory -2025-11-24T09:08:05.1801765Z ansible/roles-external/admin_users/tests/main.yml -2025-11-24T09:08:05.1802437Z ansible/roles-external/admin_users/templates/ -2025-11-24T09:08:05.1803082Z ansible/roles-external/admin_users/templates/sudo_nopasswd.j2 -2025-11-24T09:08:05.1803316Z ansible/roles-external/admin_users/Makefile -2025-11-24T09:08:05.1803525Z ansible/roles-external/logrotate/ -2025-11-24T09:08:05.1803744Z ansible/roles-external/logrotate/defaults/ -2025-11-24T09:08:05.1803981Z ansible/roles-external/logrotate/defaults/main.yml -2025-11-24T09:08:05.1804207Z ansible/roles-external/logrotate/LICENSE -2025-11-24T09:08:05.1804408Z ansible/roles-external/logrotate/.git -2025-11-24T09:08:05.1804718Z ansible/roles-external/logrotate/meta/ -2025-11-24T09:08:05.1804945Z ansible/roles-external/logrotate/meta/main.yml -2025-11-24T09:08:05.1805155Z ansible/roles-external/logrotate/tasks/ -2025-11-24T09:08:05.1805385Z ansible/roles-external/logrotate/tasks/main.yml -2025-11-24T09:08:05.1805604Z ansible/roles-external/logrotate/.gitignore -2025-11-24T09:08:05.1805823Z ansible/roles-external/logrotate/README.md -2025-11-24T09:08:05.1806052Z ansible/roles-external/logrotate/.travis.yml -2025-11-24T09:08:05.1806260Z ansible/roles-external/logrotate/tests/ -2025-11-24T09:08:05.1806497Z ansible/roles-external/logrotate/tests/Vagrantfile -2025-11-24T09:08:05.1806719Z ansible/roles-external/logrotate/tests/test.yml -2025-11-24T09:08:05.1806936Z ansible/roles-external/logrotate/tests/inventory -2025-11-24T09:08:05.1807144Z ansible/roles-external/logrotate/templates/ -2025-11-24T09:08:05.1807408Z ansible/roles-external/logrotate/templates/logrotate.d.j2 -2025-11-24T09:08:05.1807617Z ansible/roles-external/ansible-cassandra/ -2025-11-24T09:08:05.1807862Z ansible/roles-external/ansible-cassandra/CHANGELOG.md -2025-11-24T09:08:05.1808088Z ansible/roles-external/ansible-cassandra/defaults/ -2025-11-24T09:08:05.1808346Z ansible/roles-external/ansible-cassandra/defaults/RedHat.yml -2025-11-24T09:08:05.1808609Z ansible/roles-external/ansible-cassandra/defaults/Alpine.yml -2025-11-24T09:08:05.2056749Z ansible/roles-external/ansible-cassandra/defaults/Debian.yml -2025-11-24T09:08:05.2057229Z ansible/roles-external/ansible-cassandra/defaults/main.yml -2025-11-24T09:08:05.2057553Z ansible/roles-external/ansible-cassandra/defaults/Ubuntu-jammy.yml -2025-11-24T09:08:05.2057791Z ansible/roles-external/ansible-cassandra/LICENSE -2025-11-24T09:08:05.2058018Z ansible/roles-external/ansible-cassandra/.git -2025-11-24T09:08:05.2058259Z ansible/roles-external/ansible-cassandra/.yamllint -2025-11-24T09:08:05.2058806Z ansible/roles-external/ansible-cassandra/meta/ -2025-11-24T09:08:05.2059065Z ansible/roles-external/ansible-cassandra/meta/main.yml -2025-11-24T09:08:05.2059301Z ansible/roles-external/ansible-cassandra/tasks/ -2025-11-24T09:08:05.2059569Z ansible/roles-external/ansible-cassandra/tasks/setup.yml -2025-11-24T09:08:05.2059838Z ansible/roles-external/ansible-cassandra/tasks/systemd.yml -2025-11-24T09:08:05.2060106Z ansible/roles-external/ansible-cassandra/tasks/swapoff.yml -2025-11-24T09:08:05.2060380Z ansible/roles-external/ansible-cassandra/tasks/configure.yml -2025-11-24T09:08:05.2060696Z ansible/roles-external/ansible-cassandra/tasks/repairs_backups.yml -2025-11-24T09:08:05.2060953Z ansible/roles-external/ansible-cassandra/tasks/main.yml -2025-11-24T09:08:05.2061190Z ansible/roles-external/ansible-cassandra/.gitignore -2025-11-24T09:08:05.2061427Z ansible/roles-external/ansible-cassandra/README.md -2025-11-24T09:08:05.2061672Z ansible/roles-external/ansible-cassandra/.travis.yml -2025-11-24T09:08:05.2061901Z ansible/roles-external/ansible-cassandra/files/ -2025-11-24T09:08:05.2062205Z ansible/roles-external/ansible-cassandra/files/prometheus-jmx.yml -2025-11-24T09:08:05.2062490Z ansible/roles-external/ansible-cassandra/files/logback.xml -2025-11-24T09:08:05.2063048Z ansible/roles-external/ansible-cassandra/files/nodetool -2025-11-24T09:08:05.2063322Z ansible/roles-external/ansible-cassandra/lookup_plugins/ -2025-11-24T09:08:05.2063646Z ansible/roles-external/ansible-cassandra/lookup_plugins/zip_cycle.py -2025-11-24T09:08:05.2070408Z ansible/roles-external/ansible-cassandra/ansible.cfg -2025-11-24T09:08:05.2071010Z ansible/roles-external/ansible-cassandra/molecule/ -2025-11-24T09:08:05.2071308Z ansible/roles-external/ansible-cassandra/molecule/default/ -2025-11-24T09:08:05.2071656Z ansible/roles-external/ansible-cassandra/molecule/default/requirements.yml -2025-11-24T09:08:05.2071990Z ansible/roles-external/ansible-cassandra/molecule/default/playbook.yml -2025-11-24T09:08:05.2072317Z ansible/roles-external/ansible-cassandra/molecule/default/INSTALL.rst -2025-11-24T09:08:05.2170170Z ansible/roles-external/ansible-cassandra/molecule/default/Dockerfile.j2 -2025-11-24T09:08:05.2170914Z ansible/roles-external/ansible-cassandra/molecule/default/molecule.yml -2025-11-24T09:08:05.2171268Z ansible/roles-external/ansible-cassandra/molecule/default/disable_getty.yml -2025-11-24T09:08:05.2171521Z ansible/roles-external/ansible-cassandra/templates/ -2025-11-24T09:08:05.2171848Z ansible/roles-external/ansible-cassandra/templates/cassandra_backup.j2 -2025-11-24T09:08:05.2172182Z ansible/roles-external/ansible-cassandra/templates/cassandra_restore.j2 -2025-11-24T09:08:05.2172522Z ansible/roles-external/ansible-cassandra/templates/cassandra.service.j2 -2025-11-24T09:08:05.2173103Z ansible/roles-external/ansible-cassandra/templates/cassandra_incremental_backup.j2 -2025-11-24T09:08:05.2173414Z ansible/roles-external/ansible-cassandra/templates/cassandra.sh.j2 -2025-11-24T09:08:05.2173687Z ansible/roles-external/ansible-cassandra/templates/env.sh.j2 -2025-11-24T09:08:05.2173961Z ansible/roles-external/ansible-cassandra/templates/cqlsh.j2 -2025-11-24T09:08:05.2174274Z ansible/roles-external/ansible-cassandra/templates/cassandra.yaml.j2 -2025-11-24T09:08:05.2174599Z ansible/roles-external/ansible-cassandra/templates/cassandra_repair.j2 -2025-11-24T09:08:05.2174835Z ansible/roles-external/ansible-cassandra/Makefile -2025-11-24T09:08:05.2175021Z ansible/iptables.yml -2025-11-24T09:08:05.2175209Z ansible/tasks/ -2025-11-24T09:08:05.2175409Z ansible/tasks/helm_external.yml -2025-11-24T09:08:05.2175596Z ansible/sync_time.yml -2025-11-24T09:08:05.2175804Z ansible/postgresql-playbooks/ -2025-11-24T09:08:05.2176075Z ansible/postgresql-playbooks/postgresql-wire-setup.yml -2025-11-24T09:08:05.2176336Z ansible/postgresql-playbooks/postgresql-verify-HA.yml -2025-11-24T09:08:05.2176582Z ansible/postgresql-playbooks/postgresql-secrets.yml -2025-11-24T09:08:05.2176853Z ansible/postgresql-playbooks/postgresql-deploy-replica.yml -2025-11-24T09:08:05.2177224Z ansible/postgresql-playbooks/postgresql-monitoring.yml -2025-11-24T09:08:05.2177457Z ansible/postgresql-playbooks/postgresql-install.yml -2025-11-24T09:08:05.2177734Z ansible/postgresql-playbooks/clean_existing_setup.yml -2025-11-24T09:08:05.2178009Z ansible/postgresql-playbooks/postgresql-deploy-primary.yml -2025-11-24T09:08:05.2178204Z ansible/seed-offline-docker.yml -2025-11-24T09:08:05.2178402Z ansible/seed-offline-containerd.yml -2025-11-24T09:08:05.2178578Z ansible/.gitignore -2025-11-24T09:08:05.2178755Z ansible/README.md -2025-11-24T09:08:05.2178931Z ansible/cassandra.yml -2025-11-24T09:08:05.2179114Z ansible/db-operations/ -2025-11-24T09:08:05.2291689Z ansible/db-operations/cassandra_healthy.yml -2025-11-24T09:08:05.2292147Z ansible/db-operations/cassandra_pre_upgrade.yml -2025-11-24T09:08:05.2292525Z ansible/db-operations/cassandra_restart.yml -2025-11-24T09:08:05.2293132Z ansible/db-operations/tasks/ -2025-11-24T09:08:05.2293530Z ansible/db-operations/tasks/cassandra_down.yml -2025-11-24T09:08:05.2293981Z ansible/db-operations/tasks/cassandra_manual_repair.yml -2025-11-24T09:08:05.2294447Z ansible/db-operations/tasks/cassandra_wait_ongoing_repair.yml -2025-11-24T09:08:05.2294892Z ansible/db-operations/tasks/elasticsearch_cluster_healthy.yml -2025-11-24T09:08:05.2295263Z ansible/db-operations/tasks/cassandra_up.yml -2025-11-24T09:08:05.2295717Z ansible/db-operations/tasks/elasticsearch_shard_allocation.yml -2025-11-24T09:08:05.2296134Z ansible/db-operations/tasks/cassandra_cluster_healthy.yml -2025-11-24T09:08:05.2296695Z ansible/db-operations/tasks/cassandra_remove_repair_and_daily_backup_cron.yml -2025-11-24T09:08:05.2297421Z ansible/db-operations/tasks/elasticsearch_up.yml -2025-11-24T09:08:05.2297717Z ansible/db-operations/tasks/cassandra_remove_backup.yml -2025-11-24T09:08:05.2298050Z ansible/db-operations/tasks/elasticsearch_down.yml -2025-11-24T09:08:05.2298313Z ansible/db-operations/tasks/cassandra_remove_cron.yml -2025-11-24T09:08:05.2298612Z ansible/db-operations/cassandra_alter_keyspace_replication.yml -2025-11-24T09:08:05.2298831Z ansible/db-operations/README.md -2025-11-24T09:08:05.2299079Z ansible/db-operations/cassandra_post_upgrade.yml -2025-11-24T09:08:05.2299314Z ansible/db-operations/elasticsearch_joined.yml -2025-11-24T09:08:05.2299659Z ansible/db-operations/elasticsearch_restart.yml -2025-11-24T09:08:05.2299897Z ansible/db-operations/elasticsearch_stop.yml -2025-11-24T09:08:05.2300152Z ansible/db-operations/cassandra_rolling_repair.yml -2025-11-24T09:08:05.2300384Z ansible/db-operations/cassandra_cleanup.yml -2025-11-24T09:08:05.2300609Z ansible/kubernetes-renew-certs.yml -2025-11-24T09:08:05.2300822Z ansible/kubernetes_logging.yml -2025-11-24T09:08:05.2301046Z ansible/cassandra-verify-ntp.yml -2025-11-24T09:08:05.2301270Z ansible/kubernetes-fetch-kubeconfig.yml -2025-11-24T09:08:05.2301470Z ansible/get-logs.yml -2025-11-24T09:08:05.2301668Z ansible/files/ -2025-11-24T09:08:05.2301888Z ansible/files/hetzner_server_sshd_config -2025-11-24T09:08:05.2302093Z ansible/files/registry/ -2025-11-24T09:08:05.2302308Z ansible/files/registry/mk-certs -2025-11-24T09:08:05.2302522Z ansible/files/registry/images.sh -2025-11-24T09:08:05.2303019Z ansible/files/registry/registry-run.sh -2025-11-24T09:08:05.2303262Z ansible/files/registry/.gitignore -2025-11-24T09:08:05.2303489Z ansible/files/registry/upload_image.sh -2025-11-24T09:08:05.2303715Z ansible/files/registry/mk-sub-certificate -2025-11-24T09:08:05.2303961Z ansible/files/registry/list_of_docker_images.txt -2025-11-24T09:08:05.2304175Z ansible/files/registry/openssl.cnf -2025-11-24T09:08:05.2304408Z ansible/files/hetzner_server_nftables.conf.j2 -2025-11-24T09:08:05.2304666Z ansible/files/hetzner_server_libvirt_default_net.xml -2025-11-24T09:08:05.2304885Z ansible/files/serve-assets.service -2025-11-24T09:08:05.2305089Z ansible/bootstrap.yml -2025-11-24T09:08:05.2305283Z ansible/ansible.cfg -2025-11-24T09:08:05.2305481Z ansible/logging.yml -2025-11-24T09:08:05.2305698Z ansible/setup-offline-sources.yml -2025-11-24T09:08:05.2305896Z ansible/wiab-demo/ -2025-11-24T09:08:05.2306112Z ansible/wiab-demo/clean_cluster.yml -2025-11-24T09:08:05.2306423Z ansible/wiab-demo/verify_dns.yml -2025-11-24T09:08:05.2306670Z ansible/wiab-demo/wire_secrets.yml -2025-11-24T09:08:05.2306973Z ansible/wiab-demo/helm_install.yml -2025-11-24T09:08:05.2307272Z ansible/wiab-demo/iptables_rules.yml -2025-11-24T09:08:05.2307586Z ansible/wiab-demo/install_pkgs.yml -2025-11-24T09:08:05.2307889Z ansible/wiab-demo/verify_wire_ip.yml -2025-11-24T09:08:05.2308199Z ansible/wiab-demo/minikube_cluster.yml -2025-11-24T09:08:05.2308494Z ansible/wiab-demo/deploy_wiab.yml -2025-11-24T09:08:05.2308790Z ansible/wiab-demo/setup_ssh.yml -2025-11-24T09:08:05.2309106Z ansible/wiab-demo/download_artifact.yml -2025-11-24T09:08:05.2309393Z ansible/inventory/ -2025-11-24T09:08:05.2309685Z ansible/inventory/prod/ -2025-11-24T09:08:05.2310007Z ansible/inventory/prod/hosts.example.ini -2025-11-24T09:08:05.2310301Z ansible/inventory/offline/ -2025-11-24T09:08:05.2310614Z ansible/inventory/offline/99-static -2025-11-24T09:08:05.2310916Z ansible/inventory/offline/README.md -2025-11-24T09:08:05.2311250Z ansible/inventory/offline/group_vars/ -2025-11-24T09:08:05.2311633Z ansible/inventory/offline/group_vars/postgresql/ -2025-11-24T09:08:05.2312007Z ansible/inventory/offline/group_vars/postgresql/postgresql.yml -2025-11-24T09:08:05.2312237Z ansible/inventory/offline/group_vars/k8s-cluster/ -2025-11-24T09:08:05.2312798Z ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml -2025-11-24T09:08:05.2313153Z ansible/inventory/offline/group_vars/all/ -2025-11-24T09:08:05.2313397Z ansible/inventory/offline/group_vars/all/offline.yml -2025-11-24T09:08:05.2313689Z ansible/inventory/offline/group_vars/all/key.yml -2025-11-24T09:08:05.2314135Z ansible/inventory/offline/group_vars/demo/ -2025-11-24T09:08:05.2314396Z ansible/inventory/offline/group_vars/demo/offline.yml -2025-11-24T09:08:05.2314695Z ansible/inventory/demo/ -2025-11-24T09:08:05.2314889Z ansible/inventory/demo/host.yml -2025-11-24T09:08:05.2315082Z ansible/hetzner-single-deploy.yml -2025-11-24T09:08:05.2315300Z ansible/elasticsearch.yml -2025-11-24T09:08:05.2315550Z ansible/registry.yml -2025-11-24T09:08:05.2315727Z ansible/host_vars/ -2025-11-24T09:08:05.2315912Z ansible/host_vars/localhost/ -2025-11-24T09:08:05.2316161Z ansible/host_vars/localhost/python.yml -2025-11-24T09:08:05.2316472Z ansible/templates/ -2025-11-24T09:08:05.2316666Z ansible/templates/postgresql/ -2025-11-24T09:08:05.2316992Z ansible/templates/postgresql/detect-rogue-primary.timer.j2 -2025-11-24T09:08:05.2317318Z ansible/templates/postgresql/postgresql.conf.j2 -2025-11-24T09:08:05.2317578Z ansible/templates/postgresql/detect_rogue_primary.sh.j2 -2025-11-24T09:08:05.2317944Z ansible/templates/postgresql/detect-rogue-primary.service.j2 -2025-11-24T09:08:05.2318213Z ansible/templates/postgresql/failover_validation.sh.j2 -2025-11-24T09:08:05.2318431Z ansible/templates/postgresql/pgpass.j2 -2025-11-24T09:08:05.2318741Z ansible/templates/postgresql/repmgrd_service.j2 -2025-11-24T09:08:05.2318971Z ansible/templates/postgresql/repmgr.conf.j2 -2025-11-24T09:08:05.2319179Z ansible/templates/postgresql/pg_hba.conf.j2 -2025-11-24T09:08:05.2319416Z ansible/templates/postgresql/simple_fence.sh.j2 -2025-11-24T09:08:05.2319720Z ansible/templates/helm_external.yaml.j2 -2025-11-24T09:08:05.2319920Z ansible/templates/ntp.conf.j2 -2025-11-24T09:08:05.2320114Z ansible/templates/qradar.conf.j2 -2025-11-24T09:08:05.2320390Z ansible/templates/elasticsearch.conf.j2 -2025-11-24T09:08:05.2320598Z ansible/Makefile -2025-11-24T09:08:05.2320779Z ansible/minio.yml -2025-11-24T09:08:05.2320948Z bin/ -2025-11-24T09:08:05.2321188Z bin/offline-cluster.sh -2025-11-24T09:08:05.2321423Z bin/test-aws-s3-auth-v4.sh -2025-11-24T09:08:05.2321608Z bin/offline-deploy.sh -2025-11-24T09:08:05.2321787Z bin/shellcheck.sh -2025-11-24T09:08:05.2322028Z bin/offline-env.sh -2025-11-24T09:08:05.2322253Z bin/information-gathering.sh -2025-11-24T09:08:05.2322442Z bin/fix_default_router.sh -2025-11-24T09:08:05.2322831Z bin/offline-helm.sh -2025-11-24T09:08:05.2323095Z bin/sync-k8s-secret-to-wire-secrets.sh -2025-11-24T09:08:05.2323289Z bin/offline-vm-setup.sh -2025-11-24T09:08:05.2323610Z bin/generate-image-list.sh -2025-11-24T09:08:05.2323858Z bin/bootstrap/ -2025-11-24T09:08:05.2324048Z bin/bootstrap/init.sh -2025-11-24T09:08:05.2324231Z bin/bootstrap/README.md -2025-11-24T09:08:05.2324442Z bin/bootstrap/inside.sh -2025-11-24T09:08:05.2324689Z bin/autodeploy.sh -2025-11-24T09:08:05.2324868Z bin/logging.sh -2025-11-24T09:08:05.2325081Z bin/accept-invitation.sh -2025-11-24T09:08:05.2325307Z bin/debug_logs.sh -2025-11-24T09:08:05.2325550Z bin/secrets.sh -2025-11-24T09:08:05.2325733Z bin/prod-init.sh -2025-11-24T09:08:05.2325915Z bin/grafana-vm.sh -2025-11-24T09:08:05.2326145Z bin/demo-setup.sh -2025-11-24T09:08:05.2326396Z bin/install-grafana.sh -2025-11-24T09:08:05.2326577Z bin/wiab-demo/ -2025-11-24T09:08:05.2326776Z bin/wiab-demo/offline_deploy_k8s.sh -2025-11-24T09:08:05.2327065Z bin/wiab-demo/offline-env.sh -2025-11-24T09:08:05.2327260Z bin/deployment-info.sh -2025-11-24T09:08:05.2327434Z bin/prod-setup.sh -2025-11-24T09:08:05.2327618Z bin/offline-secrets.sh -2025-11-24T09:08:05.2327889Z versions/ -2025-11-24T09:08:05.2328090Z versions/debian-builds.json -2025-11-24T09:08:05.2328290Z versions/containers_system_images.json -2025-11-24T09:08:05.2328493Z versions/containers_adminhost_images.json -2025-11-24T09:08:05.2328825Z versions/containers_helm_images.json -2025-11-24T09:08:05.2329018Z versions/helm_image_tree.json -2025-11-24T09:08:05.2329200Z versions/wire-binaries.json -2025-11-24T09:08:05.2329409Z dashboards/ -2025-11-24T09:08:05.2329663Z dashboards/manual_upload/ -2025-11-24T09:08:05.2329873Z dashboards/manual_upload/k8s_node_view.json -2025-11-24T09:08:05.2330114Z dashboards/manual_upload/k8s _ system _ apiserver.json -2025-11-24T09:08:05.2330565Z dashboards/manual_upload/prometheus.json -2025-11-24T09:08:05.2330805Z dashboards/manual_upload/k8s_system_coredns.json -2025-11-24T09:08:05.2331052Z dashboards/manual_upload/k8s_global_view.json -2025-11-24T09:08:05.2331373Z dashboards/manual_upload/nginx_ingrerss_controller.json -2025-11-24T09:08:05.2331579Z dashboards/manual_upload/dashboard_full.json -2025-11-24T09:08:05.2331775Z dashboards/manual_upload/sft.json -2025-11-24T09:08:05.2332081Z dashboards/manual_upload/k8s_namespace_view.json -2025-11-24T09:08:05.2332287Z dashboards/manual_upload/k8s_pod_view.json -2025-11-24T09:08:05.2332580Z dashboards/manual_upload/cpu_and_memory.json -2025-11-24T09:08:05.2333027Z dashboards/manual_upload/coturn.json -2025-11-24T09:08:05.2333258Z dashboards/manual_upload/node_exporter_full.json -2025-11-24T09:08:05.2333464Z dashboards/manual_upload/wire_service.json -2025-11-24T09:08:05.2333734Z dashboards/api_upload/ -2025-11-24T09:08:05.2333985Z dashboards/api_upload/Kubernetes__System__CoreDNS.json -2025-11-24T09:08:05.2334241Z dashboards/api_upload/Kubernetes__System__API_Server.json -2025-11-24T09:08:05.2334516Z dashboards/api_upload/CPU_and_Memory.json -2025-11-24T09:08:05.2334781Z dashboards/api_upload/Kubernetes__Views__Nodes.json -2025-11-24T09:08:05.2335012Z dashboards/api_upload/Calling__TURN__coturn.json -2025-11-24T09:08:05.2335233Z dashboards/api_upload/SFT.json -2025-11-24T09:08:05.2335527Z dashboards/api_upload/Node_Exporter_Full.json -2025-11-24T09:08:05.2335782Z dashboards/api_upload/Kubernetes__Views__Namespaces.json -2025-11-24T09:08:05.2335978Z dashboards/api_upload/Wire_Services.json -2025-11-24T09:08:05.2336308Z dashboards/api_upload/Kubernetes__Views__Pods.json -2025-11-24T09:08:05.2336547Z dashboards/api_upload/Kubernetes__Views__Global.json -2025-11-24T09:08:05.2336775Z dashboards/api_upload/NGINX_Ingress_controller.json -2025-11-24T09:08:05.2337088Z dashboards/api_upload/Prometheus.json -2025-11-24T09:08:05.2337280Z dashboards/grafana_sync.sh -2025-11-24T09:08:12.2403444Z adminhost: -2025-11-24T09:08:12.2404209Z hosts: -2025-11-24T09:08:12.2404879Z adminhost: -2025-11-24T09:08:12.2405556Z ansible_host: 23.88.33.8 -2025-11-24T09:08:12.2406296Z adminhost_local: -2025-11-24T09:08:12.2406832Z hosts: -2025-11-24T09:08:12.2407286Z adminhost: -2025-11-24T09:08:12.2407724Z ansible_host: 10.1.1.10 -2025-11-24T09:08:12.2408196Z all: -2025-11-24T09:08:12.2408931Z vars: -2025-11-24T09:08:12.2409362Z adminhost_ip: 10.1.1.10 -2025-11-24T09:08:12.2410250Z ansible_ssh_common_args: -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -2025-11-24T09:08:12.2411333Z ansible_user: root -2025-11-24T09:08:12.2412034Z private_interface: enp7s0 -2025-11-24T09:08:12.2412982Z assethost: -2025-11-24T09:08:12.2413623Z hosts: -2025-11-24T09:08:12.2414230Z assethost: -2025-11-24T09:08:12.2414870Z ansible_host: 10.1.1.1 -2025-11-24T09:08:12.2415548Z cassandra: -2025-11-24T09:08:12.2416195Z hosts: -2025-11-24T09:08:12.2416634Z cassandra-improved-teal: -2025-11-24T09:08:12.2417256Z ansible_host: 10.1.1.14 -2025-11-24T09:08:12.2417837Z cassandra-noted-manatee: -2025-11-24T09:08:12.2418347Z ansible_host: 10.1.1.15 -2025-11-24T09:08:12.2418832Z cassandra-tops-fowl: -2025-11-24T09:08:12.2419290Z ansible_host: 10.1.1.5 -2025-11-24T09:08:12.2419724Z vars: -2025-11-24T09:08:12.2420109Z cassandra_network_interface: enp7s0 -2025-11-24T09:08:12.2420595Z cassandra_seed: -2025-11-24T09:08:12.2420994Z hosts: -2025-11-24T09:08:12.2421389Z cassandra-tops-fowl: {} -2025-11-24T09:08:12.2421823Z elasticsearch: -2025-11-24T09:08:12.2422208Z hosts: -2025-11-24T09:08:12.2422611Z elasticsearch-amusing-pup: -2025-11-24T09:08:12.2423273Z ansible_host: 10.1.1.3 -2025-11-24T09:08:12.2423912Z elasticsearch-renewing-bear: -2025-11-24T09:08:12.2424514Z ansible_host: 10.1.1.12 -2025-11-24T09:08:12.2424933Z vars: -2025-11-24T09:08:12.2425439Z elasticsearch_network_interface: enp7s0 -2025-11-24T09:08:12.2425997Z elasticsearch_master: -2025-11-24T09:08:12.2426668Z children: -2025-11-24T09:08:12.2427163Z elasticsearch: {} -2025-11-24T09:08:12.2427609Z etcd: -2025-11-24T09:08:12.2428017Z children: -2025-11-24T09:08:12.2428507Z kube-master: {} -2025-11-24T09:08:12.2428954Z k8s-cluster: -2025-11-24T09:08:12.2429449Z children: -2025-11-24T09:08:12.2429827Z kube-master: {} -2025-11-24T09:08:12.2430319Z kube-node: {} -2025-11-24T09:08:12.2430736Z vars: -2025-11-24T09:08:12.2431207Z calico_mtu: 1450 -2025-11-24T09:08:12.2431616Z calico_veth_mtu: 1430 -2025-11-24T09:08:12.2432147Z docker_dns_servers_strict: false -2025-11-24T09:08:12.2433067Z kube_proxy_strict_arp: true -2025-11-24T09:08:12.2433626Z kube_vip_address: 10.1.1.254 -2025-11-24T09:08:12.2434078Z kube_vip_arp_enabled: true -2025-11-24T09:08:12.2434664Z kube_vip_controlplane_enabled: true -2025-11-24T09:08:12.2435240Z kube_vip_enabled: true -2025-11-24T09:08:12.2435675Z kube_vip_interface: enp7s0 -2025-11-24T09:08:12.2436217Z kube_vip_services_enabled: false -2025-11-24T09:08:12.2436769Z upstream_dns_servers: -2025-11-24T09:08:12.2437199Z - 10.1.1.10 -2025-11-24T09:08:12.2437688Z kube-master: -2025-11-24T09:08:12.2438078Z children: -2025-11-24T09:08:12.2438555Z kube-node: {} -2025-11-24T09:08:12.2438946Z kube-node: -2025-11-24T09:08:12.2439417Z hosts: -2025-11-24T09:08:12.2439804Z kubenode-renewed-asp: -2025-11-24T09:08:12.2440336Z ansible_host: 10.1.1.4 -2025-11-24T09:08:12.2440881Z etcd_member_name: kubenode-renewed-asp -2025-11-24T09:08:12.2441369Z ip: 10.1.1.4 -2025-11-24T09:08:12.2441883Z kubenode-super-marlin: -2025-11-24T09:08:12.2442308Z ansible_host: 10.1.1.8 -2025-11-24T09:08:12.2443122Z etcd_member_name: kubenode-super-marlin -2025-11-24T09:08:12.2443657Z ip: 10.1.1.8 -2025-11-24T09:08:12.2444118Z kubenode-teaching-gobbler: -2025-11-24T09:08:12.2444653Z ansible_host: 10.1.1.9 -2025-11-24T09:08:12.2445107Z etcd_member_name: kubenode-teaching-gobbler -2025-11-24T09:08:12.2445688Z ip: 10.1.1.9 -2025-11-24T09:08:12.2446131Z minio: -2025-11-24T09:08:12.2446548Z hosts: -2025-11-24T09:08:12.2446994Z minio-aware-zebra: -2025-11-24T09:08:12.2447441Z ansible_host: 10.1.1.6 -2025-11-24T09:08:12.2447962Z minio-striking-malamute: -2025-11-24T09:08:12.2448386Z ansible_host: 10.1.1.7 -2025-11-24T09:08:12.2448895Z vars: -2025-11-24T09:08:12.2449478Z minio_network_interface: enp7s0 -2025-11-24T09:08:12.2449979Z postgresql: -2025-11-24T09:08:12.2450449Z hosts: -2025-11-24T09:08:12.2450826Z postgresql1: -2025-11-24T09:08:12.2451313Z ansible_host: 10.1.1.2 -2025-11-24T09:08:12.2451738Z postgresql2: -2025-11-24T09:08:12.2452237Z ansible_host: 10.1.1.11 -2025-11-24T09:08:12.2452828Z postgresql3: -2025-11-24T09:08:12.2453260Z ansible_host: 10.1.1.13 -2025-11-24T09:08:12.2453805Z vars: -2025-11-24T09:08:12.2454229Z postgresql_network_interface: enp7s0 -2025-11-24T09:08:12.2454823Z wire_dbname: wire-server -2025-11-24T09:08:12.2455356Z wire_pass: verysecurepassword -2025-11-24T09:08:12.2455822Z wire_user: wire-server -2025-11-24T09:08:12.2456331Z postgresql_ro: -2025-11-24T09:08:12.2456711Z hosts: -2025-11-24T09:08:12.2457190Z postgresql2: {} -2025-11-24T09:08:12.2457589Z postgresql3: {} -2025-11-24T09:08:12.2458091Z postgresql_rw: -2025-11-24T09:08:12.2458530Z hosts: -2025-11-24T09:08:12.2458957Z postgresql1: {} -2025-11-24T09:08:12.2459590Z Running ansible playbook setup_nodes.yml via adminhost (23.88.33.8)... -2025-11-24T09:08:13.0051532Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:08:13.0052844Z -vvvv to see details -2025-11-24T09:08:13.0057965Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:08:13.0058920Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:08:13.1426226Z -2025-11-24T09:08:13.1427105Z PLAY [Setup adminhost with dnsmasq and Docker] ********************************* -2025-11-24T09:08:13.1427845Z -2025-11-24T09:08:13.1428626Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:08:21.6111325Z ok: [adminhost] -2025-11-24T09:08:21.6111655Z -2025-11-24T09:08:21.6112018Z TASK [Check if private interface exists] *************************************** -2025-11-24T09:08:25.2188166Z changed: [adminhost] -2025-11-24T09:08:25.2188499Z -2025-11-24T09:08:25.2188815Z TASK [Get private IP address] ************************************************** -2025-11-24T09:08:28.7044724Z changed: [adminhost] -2025-11-24T09:08:28.7045060Z -2025-11-24T09:08:28.7045371Z TASK [Set private IP fact] ***************************************************** -2025-11-24T09:08:28.7193329Z ok: [adminhost] -2025-11-24T09:08:28.7193630Z -2025-11-24T09:08:28.7193976Z TASK [Disable systemd-resolved] ************************************************ -2025-11-24T09:08:33.0702612Z changed: [adminhost] -2025-11-24T09:08:33.0703174Z -2025-11-24T09:08:33.0703508Z TASK [Remove existing resolv.conf symlink] ************************************* -2025-11-24T09:08:36.5494595Z changed: [adminhost] -2025-11-24T09:08:36.5495088Z -2025-11-24T09:08:36.5495605Z TASK [Create new resolv.conf with Google DNS] ********************************** -2025-11-24T09:08:43.7376422Z changed: [adminhost] -2025-11-24T09:08:43.7376816Z -2025-11-24T09:08:43.7377150Z TASK [Update package cache] **************************************************** -2025-11-24T09:08:58.4128741Z changed: [adminhost] -2025-11-24T09:08:58.4129140Z -2025-11-24T09:08:58.4129456Z TASK [Install dnsmasq] ********************************************************* -2025-11-24T09:09:08.6401019Z changed: [adminhost] -2025-11-24T09:09:08.6401471Z -2025-11-24T09:09:08.6403137Z TASK [Configure dnsmasq] ******************************************************* -2025-11-24T09:09:15.9922031Z changed: [adminhost] -2025-11-24T09:09:15.9922514Z -2025-11-24T09:09:15.9923154Z TASK [Restart dnsmasq] ********************************************************* -2025-11-24T09:09:19.8214690Z changed: [adminhost] -2025-11-24T09:09:19.8215061Z -2025-11-24T09:09:19.8215455Z TASK [Add Docker GPG key] ****************************************************** -2025-11-24T09:09:23.7075163Z changed: [adminhost] -2025-11-24T09:09:23.7075643Z -2025-11-24T09:09:23.7076113Z TASK [Add Docker repository] *************************************************** -2025-11-24T09:09:33.4673655Z changed: [adminhost] -2025-11-24T09:09:33.4674432Z -2025-11-24T09:09:33.4674829Z TASK [Install Docker packages] ************************************************* -2025-11-24T09:09:55.3756210Z changed: [adminhost] -2025-11-24T09:09:55.3756533Z -2025-11-24T09:09:55.3756879Z TASK [Configure iptables for DNS] ********************************************** -2025-11-24T09:09:59.1481513Z changed: [adminhost] -2025-11-24T09:09:59.1481993Z -2025-11-24T09:09:59.1482533Z TASK [Configure iptables for DNS input from private network] ******************* -2025-11-24T09:10:02.6482603Z changed: [adminhost] -2025-11-24T09:10:02.6483189Z -2025-11-24T09:10:02.6483541Z TASK [Start and enable Docker] ************************************************* -2025-11-24T09:10:06.4093014Z ok: [adminhost] -2025-11-24T09:10:06.4093447Z -2025-11-24T09:10:06.4093960Z PLAY [Setup default routing for all k8s and datastore nodes] ******************* -2025-11-24T09:10:06.4094612Z -2025-11-24T09:10:06.4095020Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:10:16.1496131Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:10:16.2106940Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:10:16.3051732Z ok: [cassandra-tops-fowl] -2025-11-24T09:10:16.6400858Z ok: [cassandra-improved-teal] -2025-11-24T09:10:25.5211985Z ok: [cassandra-noted-manatee] -2025-11-24T09:10:25.7444993Z ok: [minio-striking-malamute] -2025-11-24T09:10:26.1743436Z ok: [postgresql1] -2025-11-24T09:10:34.8024267Z ok: [postgresql2] -2025-11-24T09:10:34.8024934Z ok: [postgresql3] -2025-11-24T09:10:34.8025537Z ok: [minio-aware-zebra] -2025-11-24T09:10:34.8026174Z ok: [kubenode-renewed-asp] -2025-11-24T09:10:34.8026802Z ok: [kubenode-super-marlin] -2025-11-24T09:10:34.8027863Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:10:34.8028305Z -2025-11-24T09:10:34.8028787Z TASK [Check if private interface exists] *************************************** -2025-11-24T09:10:38.4878094Z changed: [cassandra-noted-manatee] -2025-11-24T09:10:38.4987042Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:10:38.5072333Z changed: [cassandra-tops-fowl] -2025-11-24T09:10:38.5201628Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:10:42.2119548Z changed: [cassandra-improved-teal] -2025-11-24T09:10:42.2254968Z changed: [postgresql3] -2025-11-24T09:10:42.2382854Z changed: [postgresql1] -2025-11-24T09:10:45.8531515Z changed: [minio-aware-zebra] -2025-11-24T09:10:45.8532298Z changed: [postgresql2] -2025-11-24T09:10:45.8533187Z changed: [minio-striking-malamute] -2025-11-24T09:10:45.8533924Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:10:45.8534668Z changed: [kubenode-super-marlin] -2025-11-24T09:10:45.8535400Z changed: [kubenode-renewed-asp] -2025-11-24T09:10:45.8535794Z -2025-11-24T09:10:45.8536309Z TASK [Get existing gateway for private interface] ****************************** -2025-11-24T09:10:49.5356348Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:10:49.5455473Z ok: [cassandra-improved-teal] -2025-11-24T09:10:49.5578810Z ok: [cassandra-noted-manatee] -2025-11-24T09:10:49.5683819Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:10:53.2683417Z ok: [cassandra-tops-fowl] -2025-11-24T09:10:53.2784154Z ok: [postgresql2] -2025-11-24T09:10:53.2886374Z ok: [postgresql1] -2025-11-24T09:10:56.8843559Z ok: [minio-striking-malamute] -2025-11-24T09:10:56.8844284Z ok: [postgresql3] -2025-11-24T09:10:56.8844725Z ok: [minio-aware-zebra] -2025-11-24T09:10:56.8845182Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:10:56.8845650Z ok: [kubenode-super-marlin] -2025-11-24T09:10:56.8846120Z ok: [kubenode-renewed-asp] -2025-11-24T09:10:56.8846390Z -2025-11-24T09:10:56.8846718Z TASK [Check if default route already exists] *********************************** -2025-11-24T09:11:00.5583545Z ok: [cassandra-tops-fowl] -2025-11-24T09:11:00.5693036Z ok: [cassandra-improved-teal] -2025-11-24T09:11:00.5866785Z ok: [cassandra-noted-manatee] -2025-11-24T09:11:00.5988822Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:11:04.2361879Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:11:04.2799588Z ok: [minio-striking-malamute] -2025-11-24T09:11:04.2923416Z ok: [postgresql1] -2025-11-24T09:11:07.8774203Z ok: [postgresql3] -2025-11-24T09:11:07.8774738Z ok: [minio-aware-zebra] -2025-11-24T09:11:07.8775215Z ok: [postgresql2] -2025-11-24T09:11:07.8775683Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:11:07.8776217Z ok: [kubenode-super-marlin] -2025-11-24T09:11:07.8776696Z ok: [kubenode-renewed-asp] -2025-11-24T09:11:07.8776972Z -2025-11-24T09:11:07.8777321Z TASK [Add default route via existing gateway] ********************************** -2025-11-24T09:11:11.5900031Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:11:11.5995268Z changed: [cassandra-tops-fowl] -2025-11-24T09:11:11.6141808Z changed: [cassandra-noted-manatee] -2025-11-24T09:11:11.6243203Z changed: [cassandra-improved-teal] -2025-11-24T09:11:15.2990905Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:11:15.3254331Z changed: [postgresql3] -2025-11-24T09:11:15.3327666Z changed: [postgresql1] -2025-11-24T09:11:19.1415772Z changed: [minio-striking-malamute] -2025-11-24T09:11:19.1416396Z changed: [postgresql2] -2025-11-24T09:11:19.1416919Z changed: [minio-aware-zebra] -2025-11-24T09:11:19.1417456Z changed: [kubenode-renewed-asp] -2025-11-24T09:11:19.1417971Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:11:19.1418571Z changed: [kubenode-super-marlin] -2025-11-24T09:11:19.1418888Z -2025-11-24T09:11:19.1419233Z PLAY [Configure DNS for all k8s and datastore nodes] *************************** -2025-11-24T09:11:19.1419695Z -2025-11-24T09:11:19.1420012Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:11:24.1577565Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:11:24.2090765Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:11:24.2265423Z ok: [cassandra-improved-teal] -2025-11-24T09:11:24.3490042Z ok: [cassandra-tops-fowl] -2025-11-24T09:11:29.1795434Z ok: [cassandra-noted-manatee] -2025-11-24T09:11:29.2352034Z ok: [minio-aware-zebra] -2025-11-24T09:11:29.2431525Z ok: [postgresql2] -2025-11-24T09:11:34.1499912Z ok: [minio-striking-malamute] -2025-11-24T09:11:34.1500795Z ok: [postgresql1] -2025-11-24T09:11:34.1501317Z ok: [postgresql3] -2025-11-24T09:11:34.1501849Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:11:34.1502415Z ok: [kubenode-super-marlin] -2025-11-24T09:11:34.1503317Z ok: [kubenode-renewed-asp] -2025-11-24T09:11:34.1503965Z -2025-11-24T09:11:34.1504354Z TASK [Disable systemd-resolved] ************************************************ -2025-11-24T09:11:38.8551602Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:11:38.8715991Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:11:38.9506703Z changed: [cassandra-noted-manatee] -2025-11-24T09:11:38.9639058Z changed: [cassandra-tops-fowl] -2025-11-24T09:11:43.5854608Z changed: [cassandra-improved-teal] -2025-11-24T09:11:43.6434519Z changed: [postgresql1] -2025-11-24T09:11:43.6857225Z changed: [minio-striking-malamute] -2025-11-24T09:11:48.0544294Z changed: [minio-aware-zebra] -2025-11-24T09:11:48.0545116Z changed: [postgresql2] -2025-11-24T09:11:48.0545757Z changed: [postgresql3] -2025-11-24T09:11:48.0546421Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:11:48.0547200Z changed: [kubenode-renewed-asp] -2025-11-24T09:11:48.0547970Z changed: [kubenode-super-marlin] -2025-11-24T09:11:48.0548388Z -2025-11-24T09:11:48.0548883Z TASK [Remove existing resolv.conf symlink] ************************************* -2025-11-24T09:11:51.7320590Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:11:51.7577450Z changed: [cassandra-noted-manatee] -2025-11-24T09:11:51.7719222Z changed: [cassandra-improved-teal] -2025-11-24T09:11:51.7799387Z changed: [cassandra-tops-fowl] -2025-11-24T09:11:55.4583669Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:11:55.4782903Z changed: [postgresql3] -2025-11-24T09:11:55.4956670Z changed: [postgresql1] -2025-11-24T09:11:59.1251767Z changed: [minio-aware-zebra] -2025-11-24T09:11:59.1252548Z changed: [minio-striking-malamute] -2025-11-24T09:11:59.1253481Z changed: [postgresql2] -2025-11-24T09:11:59.1254141Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:11:59.1254882Z changed: [kubenode-renewed-asp] -2025-11-24T09:11:59.1255584Z changed: [kubenode-super-marlin] -2025-11-24T09:11:59.1256292Z -2025-11-24T09:11:59.1256771Z TASK [Create new resolv.conf with Adminhost dnsmasq service] ******************* -2025-11-24T09:12:06.7466326Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:12:06.7677173Z changed: [cassandra-tops-fowl] -2025-11-24T09:12:06.8086475Z changed: [cassandra-noted-manatee] -2025-11-24T09:12:06.8332472Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:12:14.4071398Z changed: [cassandra-improved-teal] -2025-11-24T09:12:14.4342898Z changed: [postgresql1] -2025-11-24T09:12:14.4507975Z changed: [minio-striking-malamute] -2025-11-24T09:12:22.0760148Z changed: [postgresql3] -2025-11-24T09:12:22.0760946Z changed: [minio-aware-zebra] -2025-11-24T09:12:22.0761460Z changed: [postgresql2] -2025-11-24T09:12:22.0761956Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:12:22.0762495Z changed: [kubenode-super-marlin] -2025-11-24T09:12:22.0763259Z changed: [kubenode-renewed-asp] -2025-11-24T09:12:22.0763549Z -2025-11-24T09:12:22.0763864Z PLAY [Add demo user on all nodes] ********************************************** -2025-11-24T09:12:22.0764301Z -2025-11-24T09:12:22.0764595Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:12:26.9820366Z ok: [cassandra-noted-manatee] -2025-11-24T09:12:27.0132300Z ok: [cassandra-improved-teal] -2025-11-24T09:12:29.5955994Z ok: [cassandra-tops-fowl] -2025-11-24T09:12:30.8706245Z ok: [adminhost] -2025-11-24T09:12:31.7978275Z ok: [assethost] -2025-11-24T09:12:31.9097142Z ok: [postgresql1] -2025-11-24T09:12:32.1156147Z ok: [minio-aware-zebra] -2025-11-24T09:12:34.6880902Z ok: [minio-striking-malamute] -2025-11-24T09:12:36.0951946Z ok: [postgresql2] -2025-11-24T09:12:40.8918706Z ok: [postgresql3] -2025-11-24T09:12:40.8919295Z ok: [kubenode-renewed-asp] -2025-11-24T09:12:40.8919775Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:12:40.8920252Z ok: [kubenode-super-marlin] -2025-11-24T09:12:40.8920715Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:12:40.8921187Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:12:40.8921477Z -2025-11-24T09:12:40.8921764Z TASK [Create demo user] ******************************************************** -2025-11-24T09:12:44.7531381Z changed: [assethost] -2025-11-24T09:12:44.8188882Z changed: [adminhost] -2025-11-24T09:12:44.8662841Z changed: [cassandra-tops-fowl] -2025-11-24T09:12:44.9806185Z changed: [cassandra-improved-teal] -2025-11-24T09:12:48.6297368Z changed: [cassandra-noted-manatee] -2025-11-24T09:12:48.6378345Z changed: [minio-aware-zebra] -2025-11-24T09:12:48.6680252Z changed: [postgresql1] -2025-11-24T09:12:48.7285622Z changed: [minio-striking-malamute] -2025-11-24T09:12:48.7889828Z changed: [postgresql2] -2025-11-24T09:12:52.7078378Z changed: [postgresql3] -2025-11-24T09:12:52.7078957Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:12:52.7079478Z changed: [kubenode-renewed-asp] -2025-11-24T09:12:52.7079954Z changed: [kubenode-super-marlin] -2025-11-24T09:12:52.7080431Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:12:52.7080944Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:12:52.7081261Z -2025-11-24T09:12:52.7081557Z TASK [Add demo user to sudo group] ********************************************* -2025-11-24T09:12:56.3707870Z changed: [adminhost] -2025-11-24T09:12:56.4751171Z changed: [assethost] -2025-11-24T09:12:56.5491853Z changed: [cassandra-tops-fowl] -2025-11-24T09:12:56.6371649Z changed: [cassandra-improved-teal] -2025-11-24T09:13:00.1843102Z changed: [cassandra-noted-manatee] -2025-11-24T09:13:00.2157820Z changed: [minio-striking-malamute] -2025-11-24T09:13:00.2936555Z changed: [minio-aware-zebra] -2025-11-24T09:13:00.4172968Z changed: [postgresql1] -2025-11-24T09:13:00.4302171Z changed: [postgresql3] -2025-11-24T09:13:04.2192577Z changed: [postgresql2] -2025-11-24T09:13:04.2193413Z changed: [kubenode-renewed-asp] -2025-11-24T09:13:04.2194162Z changed: [kubenode-super-marlin] -2025-11-24T09:13:04.2194682Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:13:04.2195189Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:13:04.2195701Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:13:04.2196345Z -2025-11-24T09:13:04.2196660Z TASK [Ensure .ssh directory exists for demo user] ****************************** -2025-11-24T09:13:07.8347106Z changed: [assethost] -2025-11-24T09:13:07.9505776Z changed: [adminhost] -2025-11-24T09:13:07.9643881Z changed: [cassandra-tops-fowl] -2025-11-24T09:13:07.9751593Z changed: [cassandra-improved-teal] -2025-11-24T09:13:11.5139768Z changed: [cassandra-noted-manatee] -2025-11-24T09:13:11.5535918Z changed: [minio-aware-zebra] -2025-11-24T09:13:11.6771063Z changed: [minio-striking-malamute] -2025-11-24T09:13:11.6944112Z changed: [postgresql1] -2025-11-24T09:13:11.7630281Z changed: [postgresql3] -2025-11-24T09:13:15.4249803Z changed: [postgresql2] -2025-11-24T09:13:15.4250933Z changed: [kubenode-super-marlin] -2025-11-24T09:13:15.4251604Z changed: [kubenode-renewed-asp] -2025-11-24T09:13:15.4253039Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:13:15.4253652Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:13:15.4254151Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:13:15.4254467Z -2025-11-24T09:13:15.4254771Z TASK [Copy root's authorized_keys to demo user] ******************************** -2025-11-24T09:13:19.0583492Z changed: [assethost] -2025-11-24T09:13:19.1372601Z changed: [adminhost] -2025-11-24T09:13:19.1483530Z changed: [cassandra-noted-manatee] -2025-11-24T09:13:19.1666259Z changed: [cassandra-tops-fowl] -2025-11-24T09:13:22.7262227Z changed: [cassandra-improved-teal] -2025-11-24T09:13:22.8069635Z changed: [minio-aware-zebra] -2025-11-24T09:13:22.8407386Z changed: [minio-striking-malamute] -2025-11-24T09:13:22.8546790Z changed: [postgresql1] -2025-11-24T09:13:22.9262464Z changed: [postgresql3] -2025-11-24T09:13:26.6028057Z changed: [postgresql2] -2025-11-24T09:13:26.6028655Z changed: [kubenode-super-marlin] -2025-11-24T09:13:26.6029187Z changed: [kubenode-renewed-asp] -2025-11-24T09:13:26.6029705Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:13:26.6030253Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:13:26.6030791Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:13:26.6031128Z -2025-11-24T09:13:26.6031474Z TASK [Allow demo user to run sudo without password] **************************** -2025-11-24T09:13:30.3595825Z changed: [adminhost] -2025-11-24T09:13:30.4188739Z changed: [assethost] -2025-11-24T09:13:30.4380154Z changed: [cassandra-noted-manatee] -2025-11-24T09:13:30.4583392Z changed: [cassandra-improved-teal] -2025-11-24T09:13:34.0694261Z changed: [cassandra-tops-fowl] -2025-11-24T09:13:34.1413409Z changed: [minio-striking-malamute] -2025-11-24T09:13:34.1487972Z changed: [postgresql3] -2025-11-24T09:13:34.1701206Z changed: [minio-aware-zebra] -2025-11-24T09:13:34.2100254Z changed: [postgresql1] -2025-11-24T09:13:38.0887844Z changed: [postgresql2] -2025-11-24T09:13:38.0888675Z changed: [kubenode-super-marlin] -2025-11-24T09:13:38.0889455Z changed: [kubenode-renewed-asp] -2025-11-24T09:13:38.0890208Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:13:38.0891022Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:13:38.0891836Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:13:38.0892304Z -2025-11-24T09:13:38.0892567Z PLAY RECAP ********************************************************************* -2025-11-24T09:13:38.0893599Z adminhost : ok=23 changed=19 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0894500Z assethost : ok=6 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0895418Z cassandra-improved-teal : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0896394Z cassandra-noted-manatee : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0897359Z cassandra-tops-fowl : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0898335Z elasticsearch-amusing-pup : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0899589Z elasticsearch-renewing-bear : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0900557Z kubenode-renewed-asp : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0901512Z kubenode-super-marlin : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0902432Z kubenode-teaching-gobbler : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0903525Z minio-aware-zebra : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0904392Z minio-striking-malamute : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0905252Z postgresql1 : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0906061Z postgresql2 : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0906858Z postgresql3 : ok=15 changed=10 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:13:38.0907309Z -2025-11-24T09:13:40.0078724Z Still deploying... -2025-11-24T09:13:40.0436730Z WARNING: This output is designed for human readability. For machine-readable output, please use --format. -2025-11-24T09:13:40.0470862Z Loading ZAUTH container... -2025-11-24T09:13:43.7017194Z WARNING: This output is designed for human readability. For machine-readable output, please use --format. -2025-11-24T09:13:43.7059225Z Loading WSD container... -2025-11-24T09:13:50.0091636Z Still deploying... -2025-11-24T09:14:00.0106608Z Still deploying... -2025-11-24T09:14:10.0115781Z Still deploying... -2025-11-24T09:14:20.0128012Z Still deploying... -2025-11-24T09:14:30.0138600Z Still deploying... -2025-11-24T09:14:40.0152862Z Still deploying... -2025-11-24T09:14:50.0168651Z Still deploying... -2025-11-24T09:15:00.0181961Z Still deploying... -2025-11-24T09:15:05.7403182Z Writing /root/values/wire-server/secrets.yaml -2025-11-24T09:15:05.7424152Z Writing /root/ansible/inventory/offline/group_vars/all/secrets.yaml -2025-11-24T09:15:05.7436816Z Writing /root/values/kube-prometheus-stack/secrets.yaml -2025-11-24T09:15:05.9485824Z + ls /wire-server-deploy/ansible/inventory/offline -2025-11-24T09:15:05.9555787Z 99-static -2025-11-24T09:15:05.9556517Z README.md -2025-11-24T09:15:05.9557029Z group_vars -2025-11-24T09:15:05.9557573Z inventory.yml -2025-11-24T09:15:05.9559535Z + '[' -f /wire-server-deploy/ansible/inventory/offline/hosts.ini ']' -2025-11-24T09:15:05.9560676Z + '[' -f /wire-server-deploy/ansible/inventory/offline/inventory.yml ']' -2025-11-24T09:15:05.9561603Z + INVENTORY_FILE=/wire-server-deploy/ansible/inventory/offline/inventory.yml -2025-11-24T09:15:05.9562476Z + '[' -f /wire-server-deploy/ansible/inventory/offline/hosts.ini ']' -2025-11-24T09:15:05.9563723Z + echo 'using ansible inventory: /wire-server-deploy/ansible/inventory/offline/inventory.yml' -2025-11-24T09:15:05.9565025Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/setup-offline-sources.yml -2025-11-24T09:15:05.9566282Z using ansible inventory: /wire-server-deploy/ansible/inventory/offline/inventory.yml -2025-11-24T09:15:06.6059572Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:15:06.6063773Z -vvvv to see details -2025-11-24T09:15:06.6064379Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:15:06.6065119Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:15:06.8141757Z -2025-11-24T09:15:06.8142832Z PLAY [Copy over binaries, debs and container images to the asset host and host them] *** -2025-11-24T09:15:06.8143442Z -2025-11-24T09:15:06.8143762Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:15:09.2633663Z ok: [assethost] -2025-11-24T09:15:09.2634215Z -2025-11-24T09:15:09.2634572Z TASK [file] ******************************************************************** -2025-11-24T09:15:09.6188818Z changed: [assethost] -2025-11-24T09:15:09.6189253Z -2025-11-24T09:15:09.6189551Z TASK [Copy debs jammy] ********************************************************* -2025-11-24T09:15:10.0193892Z Still deploying... -2025-11-24T09:15:20.0209065Z Still deploying... -2025-11-24T09:15:27.0173472Z changed: [assethost] -2025-11-24T09:15:27.0173821Z -2025-11-24T09:15:27.0174149Z TASK [Copy binaries] *********************************************************** -2025-11-24T09:15:30.0225527Z Still deploying... -2025-11-24T09:15:40.0239400Z Still deploying... -2025-11-24T09:15:50.0251685Z Still deploying... -2025-11-24T09:15:56.1094507Z changed: [assethost] -2025-11-24T09:15:56.1094950Z -2025-11-24T09:15:56.1095410Z TASK [Copy system containers] ************************************************** -2025-11-24T09:16:00.0263832Z Still deploying... -2025-11-24T09:16:10.0281094Z Still deploying... -2025-11-24T09:16:20.0296397Z Still deploying... -2025-11-24T09:16:30.0311868Z Still deploying... -2025-11-24T09:16:40.0325142Z Still deploying... -2025-11-24T09:16:50.0336919Z Still deploying... -2025-11-24T09:17:00.0350158Z Still deploying... -2025-11-24T09:17:10.0368321Z Still deploying... -2025-11-24T09:17:20.0383572Z Still deploying... -2025-11-24T09:17:30.0393656Z Still deploying... -2025-11-24T09:17:40.0407136Z Still deploying... -2025-11-24T09:17:46.3509615Z changed: [assethost] -2025-11-24T09:17:46.3509991Z -2025-11-24T09:17:46.3510851Z TASK [Copy helm containers] **************************************************** -2025-11-24T09:17:50.0420175Z Still deploying... -2025-11-24T09:18:00.0433326Z Still deploying... -2025-11-24T09:18:10.0454983Z Still deploying... -2025-11-24T09:18:20.0469044Z Still deploying... -2025-11-24T09:18:30.0484115Z Still deploying... -2025-11-24T09:18:40.0498377Z Still deploying... -2025-11-24T09:18:50.0515382Z Still deploying... -2025-11-24T09:19:00.0527007Z Still deploying... -2025-11-24T09:19:10.0539628Z Still deploying... -2025-11-24T09:19:20.0554861Z Still deploying... -2025-11-24T09:19:30.0567180Z Still deploying... -2025-11-24T09:19:40.0581683Z Still deploying... -2025-11-24T09:19:50.0623617Z Still deploying... -2025-11-24T09:20:00.0622900Z Still deploying... -2025-11-24T09:20:10.0637760Z Still deploying... -2025-11-24T09:20:20.0653568Z Still deploying... -2025-11-24T09:20:30.0668932Z Still deploying... -2025-11-24T09:20:40.0682438Z Still deploying... -2025-11-24T09:20:50.0698613Z Still deploying... -2025-11-24T09:21:00.0712074Z Still deploying... -2025-11-24T09:21:10.0723666Z Still deploying... -2025-11-24T09:21:20.0742809Z Still deploying... -2025-11-24T09:21:30.0728966Z Still deploying... -2025-11-24T09:21:40.0743439Z Still deploying... -2025-11-24T09:21:50.0837790Z Still deploying... -2025-11-24T09:22:00.0772480Z Still deploying... -2025-11-24T09:22:10.0784105Z Still deploying... -2025-11-24T09:22:20.0794880Z Still deploying... -2025-11-24T09:22:30.0813514Z Still deploying... -2025-11-24T09:22:40.0834855Z Still deploying... -2025-11-24T09:22:50.0867918Z Still deploying... -2025-11-24T09:23:00.0867671Z Still deploying... -2025-11-24T09:23:10.0881916Z Still deploying... -2025-11-24T09:23:20.0898839Z Still deploying... -2025-11-24T09:23:30.0910956Z Still deploying... -2025-11-24T09:23:40.0930171Z Still deploying... -2025-11-24T09:23:50.0951050Z Still deploying... -2025-11-24T09:24:00.0963363Z Still deploying... -2025-11-24T09:24:10.0980580Z Still deploying... -2025-11-24T09:24:20.0991939Z Still deploying... -2025-11-24T09:24:30.1006477Z Still deploying... -2025-11-24T09:24:40.1019254Z Still deploying... -2025-11-24T09:24:50.1031563Z Still deploying... -2025-11-24T09:25:00.1043138Z Still deploying... -2025-11-24T09:25:10.1058338Z Still deploying... -2025-11-24T09:25:20.1076989Z Still deploying... -2025-11-24T09:25:30.1089549Z Still deploying... -2025-11-24T09:25:40.1101874Z Still deploying... -2025-11-24T09:25:50.1115965Z Still deploying... -2025-11-24T09:26:00.1128630Z Still deploying... -2025-11-24T09:26:10.1140010Z Still deploying... -2025-11-24T09:26:20.1155403Z Still deploying... -2025-11-24T09:26:30.1166825Z Still deploying... -2025-11-24T09:26:40.1180182Z Still deploying... -2025-11-24T09:26:50.1197872Z Still deploying... -2025-11-24T09:27:00.1211141Z Still deploying... -2025-11-24T09:27:10.1229682Z Still deploying... -2025-11-24T09:27:20.1244806Z Still deploying... -2025-11-24T09:27:30.1258586Z Still deploying... -2025-11-24T09:27:40.1270771Z Still deploying... -2025-11-24T09:27:50.1284238Z Still deploying... -2025-11-24T09:28:00.1298461Z Still deploying... -2025-11-24T09:28:10.1321989Z Still deploying... -2025-11-24T09:28:20.1334628Z Still deploying... -2025-11-24T09:28:30.1348972Z Still deploying... -2025-11-24T09:28:40.1365153Z Still deploying... -2025-11-24T09:28:50.1379835Z Still deploying... -2025-11-24T09:29:00.1421629Z Still deploying... -2025-11-24T09:29:10.1436547Z Still deploying... -2025-11-24T09:29:20.1449234Z Still deploying... -2025-11-24T09:29:30.1464637Z Still deploying... -2025-11-24T09:29:40.1478210Z Still deploying... -2025-11-24T09:29:50.1493736Z Still deploying... -2025-11-24T09:30:00.1511178Z Still deploying... -2025-11-24T09:30:10.1521345Z Still deploying... -2025-11-24T09:30:20.1534050Z Still deploying... -2025-11-24T09:30:30.1546017Z Still deploying... -2025-11-24T09:30:40.1560468Z Still deploying... -2025-11-24T09:30:50.1575708Z Still deploying... -2025-11-24T09:31:00.1600052Z Still deploying... -2025-11-24T09:31:10.1600917Z Still deploying... -2025-11-24T09:31:20.1615559Z Still deploying... -2025-11-24T09:31:30.1627812Z Still deploying... -2025-11-24T09:31:40.1643134Z Still deploying... -2025-11-24T09:31:50.1651916Z Still deploying... -2025-11-24T09:32:00.1665252Z Still deploying... -2025-11-24T09:32:10.1677673Z Still deploying... -2025-11-24T09:32:20.1689940Z Still deploying... -2025-11-24T09:32:30.1713420Z Still deploying... -2025-11-24T09:32:40.1719686Z Still deploying... -2025-11-24T09:32:50.1731987Z Still deploying... -2025-11-24T09:33:00.1744089Z Still deploying... -2025-11-24T09:33:10.1759498Z Still deploying... -2025-11-24T09:33:20.1772265Z Still deploying... -2025-11-24T09:33:30.1789287Z Still deploying... -2025-11-24T09:33:40.1806232Z Still deploying... -2025-11-24T09:33:50.1819632Z Still deploying... -2025-11-24T09:34:00.1833810Z Still deploying... -2025-11-24T09:34:10.1847378Z Still deploying... -2025-11-24T09:34:20.1859174Z Still deploying... -2025-11-24T09:34:30.1873403Z Still deploying... -2025-11-24T09:34:40.1885093Z Still deploying... -2025-11-24T09:34:50.1898725Z Still deploying... -2025-11-24T09:35:00.1914659Z Still deploying... -2025-11-24T09:35:05.0286302Z changed: [assethost] -2025-11-24T09:35:05.0287935Z -2025-11-24T09:35:05.0288540Z TASK [Copy serve-assets.service file] ****************************************** -2025-11-24T09:35:05.6600468Z changed: [assethost] -2025-11-24T09:35:05.6600850Z -2025-11-24T09:35:05.6601258Z TASK [Running serve-assets systemd service] ************************************ -2025-11-24T09:35:06.5913463Z [WARNING]: Could not match supplied host pattern, ignoring: rmq-cluster -2025-11-24T09:35:06.6026384Z changed: [assethost] -2025-11-24T09:35:06.6026736Z -2025-11-24T09:35:06.6027134Z PLAY [Set up offline repositories and remove online ones] ********************** -2025-11-24T09:35:06.6027650Z -2025-11-24T09:35:06.6027961Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:35:08.7462578Z ok: [kubenode-super-marlin] -2025-11-24T09:35:08.9102929Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:09.4810675Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:09.6313838Z ok: [cassandra-improved-teal] -2025-11-24T09:35:10.1927692Z Still deploying... -2025-11-24T09:35:11.4411036Z ok: [cassandra-noted-manatee] -2025-11-24T09:35:11.5239898Z ok: [cassandra-tops-fowl] -2025-11-24T09:35:11.6207698Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:35:14.7709716Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:35:14.7710430Z ok: [minio-aware-zebra] -2025-11-24T09:35:14.7710942Z ok: [minio-striking-malamute] -2025-11-24T09:35:14.7711436Z ok: [postgresql1] -2025-11-24T09:35:14.7712295Z ok: [postgresql3] -2025-11-24T09:35:14.7712950Z ok: [postgresql2] -2025-11-24T09:35:14.7713203Z -2025-11-24T09:35:14.7713545Z TASK [Bail if GPG is not installed or installable.] **************************** -2025-11-24T09:35:15.3305383Z ok: [kubenode-super-marlin] -2025-11-24T09:35:15.3777961Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:15.5635752Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:15.6550253Z ok: [cassandra-noted-manatee] -2025-11-24T09:35:15.8400364Z ok: [cassandra-improved-teal] -2025-11-24T09:35:15.9233460Z ok: [cassandra-tops-fowl] -2025-11-24T09:35:15.9581102Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:35:16.6055215Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:35:16.6055968Z ok: [minio-aware-zebra] -2025-11-24T09:35:16.6056481Z ok: [minio-striking-malamute] -2025-11-24T09:35:16.6056980Z ok: [postgresql1] -2025-11-24T09:35:16.6057432Z ok: [postgresql2] -2025-11-24T09:35:16.6057886Z ok: [postgresql3] -2025-11-24T09:35:16.6058160Z -2025-11-24T09:35:16.6058547Z TASK [Remove /etc/apt/sources.list to remove all online debian package repos] *** -2025-11-24T09:35:16.8766604Z changed: [kubenode-super-marlin] -2025-11-24T09:35:16.8893497Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:16.9873000Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:17.0067636Z changed: [cassandra-noted-manatee] -2025-11-24T09:35:17.1550777Z changed: [cassandra-improved-teal] -2025-11-24T09:35:17.1889824Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:35:17.2080306Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:35:17.5918080Z changed: [cassandra-tops-fowl] -2025-11-24T09:35:17.5918926Z changed: [minio-aware-zebra] -2025-11-24T09:35:17.5920006Z changed: [minio-striking-malamute] -2025-11-24T09:35:17.5920687Z changed: [postgresql1] -2025-11-24T09:35:17.5921263Z changed: [postgresql3] -2025-11-24T09:35:17.5921795Z changed: [postgresql2] -2025-11-24T09:35:17.5922055Z -2025-11-24T09:35:17.5922470Z TASK [Remove /etc/apt/sources.list.d/ to remove all online debian package repos] *** -2025-11-24T09:35:17.8468724Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:17.8767090Z changed: [kubenode-super-marlin] -2025-11-24T09:35:17.9926362Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:18.0515803Z changed: [cassandra-noted-manatee] -2025-11-24T09:35:18.2150605Z changed: [cassandra-improved-teal] -2025-11-24T09:35:18.2348686Z changed: [cassandra-tops-fowl] -2025-11-24T09:35:18.2696186Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:35:18.6064920Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:35:18.6065663Z changed: [minio-aware-zebra] -2025-11-24T09:35:18.6066154Z changed: [minio-striking-malamute] -2025-11-24T09:35:18.6066647Z changed: [postgresql1] -2025-11-24T09:35:18.6067096Z changed: [postgresql2] -2025-11-24T09:35:18.6067526Z changed: [postgresql3] -2025-11-24T09:35:18.6067764Z -2025-11-24T09:35:18.6068072Z TASK [Register offline repo key] *********************************************** -2025-11-24T09:35:19.6433160Z changed: [kubenode-super-marlin] -2025-11-24T09:35:19.6774431Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:19.9103303Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:20.1938448Z Still deploying... -2025-11-24T09:35:20.3035219Z changed: [cassandra-improved-teal] -2025-11-24T09:35:20.6207594Z changed: [cassandra-noted-manatee] -2025-11-24T09:35:20.6321235Z changed: [cassandra-tops-fowl] -2025-11-24T09:35:20.7473387Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:35:22.1779418Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:35:22.1780173Z changed: [minio-aware-zebra] -2025-11-24T09:35:22.1780646Z changed: [minio-striking-malamute] -2025-11-24T09:35:22.1781124Z changed: [postgresql1] -2025-11-24T09:35:22.1781557Z changed: [postgresql2] -2025-11-24T09:35:22.1781980Z changed: [postgresql3] -2025-11-24T09:35:22.1782211Z -2025-11-24T09:35:22.1782505Z TASK [Register offline repo] *************************************************** -2025-11-24T09:35:23.8523095Z changed: [kubenode-super-marlin] -2025-11-24T09:35:23.9935943Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:24.7322285Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:24.8331129Z changed: [cassandra-noted-manatee] -2025-11-24T09:35:25.9987648Z changed: [cassandra-improved-teal] -2025-11-24T09:35:26.2032378Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:35:26.2230106Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:35:28.9627505Z changed: [cassandra-tops-fowl] -2025-11-24T09:35:28.9628223Z changed: [minio-striking-malamute] -2025-11-24T09:35:28.9628728Z changed: [minio-aware-zebra] -2025-11-24T09:35:28.9629195Z changed: [postgresql1] -2025-11-24T09:35:28.9629624Z changed: [postgresql3] -2025-11-24T09:35:28.9630054Z changed: [postgresql2] -2025-11-24T09:35:28.9630298Z -2025-11-24T09:35:28.9630593Z TASK [Apt update] ************************************************************** -2025-11-24T09:35:29.5832480Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:29.7412349Z changed: [kubenode-super-marlin] -2025-11-24T09:35:29.9750758Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:29.9885080Z changed: [cassandra-noted-manatee] -2025-11-24T09:35:30.1954060Z Still deploying... -2025-11-24T09:35:30.4040211Z changed: [cassandra-improved-teal] -2025-11-24T09:35:30.4696362Z changed: [cassandra-tops-fowl] -2025-11-24T09:35:30.4998601Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:35:31.8193649Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:35:31.8194600Z changed: [minio-striking-malamute] -2025-11-24T09:35:31.8195250Z changed: [minio-aware-zebra] -2025-11-24T09:35:31.8195846Z changed: [postgresql3] -2025-11-24T09:35:31.8196403Z changed: [postgresql1] -2025-11-24T09:35:31.8196938Z changed: [postgresql2] -2025-11-24T09:35:31.8197241Z -2025-11-24T09:35:31.8198098Z PLAY RECAP ********************************************************************* -2025-11-24T09:35:31.8199071Z assethost : ok=8 changed=7 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8200020Z cassandra-improved-teal : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8201004Z cassandra-noted-manatee : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8201959Z cassandra-tops-fowl : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8203171Z elasticsearch-amusing-pup : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8204165Z elasticsearch-renewing-bear : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8205138Z kubenode-renewed-asp : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8206077Z kubenode-super-marlin : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8207041Z kubenode-teaching-gobbler : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8207988Z minio-aware-zebra : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8208932Z minio-striking-malamute : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8209828Z postgresql1 : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8210626Z postgresql2 : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8211493Z postgresql3 : ok=7 changed=5 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:35:31.8211949Z -2025-11-24T09:35:31.9311957Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/kubernetes.yml --tags bastion,bootstrap-os,preinstall,container-engine -2025-11-24T09:35:32.7178450Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:35:32.7179523Z -vvvv to see details -2025-11-24T09:35:32.7183831Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:35:32.7184557Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:35:33.0497880Z [WARNING]: While constructing a mapping from /wire-server-deploy/ansible/roles- -2025-11-24T09:35:33.0498755Z external/kubespray/roles/bootstrap-os/tasks/main.yml, line 29, column 7, found -2025-11-24T09:35:33.0499485Z a duplicate dict key (paths). Using last defined value only. -2025-11-24T09:35:34.9295354Z -2025-11-24T09:35:34.9302421Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:35:34.9303394Z -2025-11-24T09:35:34.9303758Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:35:36.4444218Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:36.4444838Z ok: [kubenode-super-marlin] -2025-11-24T09:35:36.4445347Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:36.4445651Z -2025-11-24T09:35:36.4445970Z PLAY [Check Ansible version] *************************************************** -2025-11-24T09:35:36.4446397Z -2025-11-24T09:35:36.4446720Z TASK [Check 2.16.4 <= Ansible version < 2.17.0] ******************************** -2025-11-24T09:35:36.4964510Z ok: [adminhost] => { -2025-11-24T09:35:36.4965059Z "changed": false, -2025-11-24T09:35:36.4965522Z "msg": "All assertions passed" -2025-11-24T09:35:36.4966015Z } -2025-11-24T09:35:36.4966228Z -2025-11-24T09:35:36.4966564Z TASK [Check that python netaddr is installed] ********************************** -2025-11-24T09:35:36.6495629Z ok: [adminhost] => { -2025-11-24T09:35:36.6496262Z "changed": false, -2025-11-24T09:35:36.6496814Z "msg": "All assertions passed" -2025-11-24T09:35:36.6497401Z } -2025-11-24T09:35:36.6497651Z -2025-11-24T09:35:36.6498033Z TASK [Check that jinja is not too old (install via pip)] *********************** -2025-11-24T09:35:36.8053366Z ok: [adminhost] => { -2025-11-24T09:35:36.8054004Z "changed": false, -2025-11-24T09:35:36.8054557Z "msg": "All assertions passed" -2025-11-24T09:35:36.8055124Z } -2025-11-24T09:35:36.8055368Z -2025-11-24T09:35:36.8056130Z PLAY [Add kube-master nodes to kube_control_plane] ***************************** -2025-11-24T09:35:36.8056650Z -2025-11-24T09:35:36.8057018Z TASK [Add nodes to kube_control_plane group] *********************************** -2025-11-24T09:35:36.9303642Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:36.9304434Z changed: [kubenode-super-marlin] -2025-11-24T09:35:36.9305102Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:36.9305441Z -2025-11-24T09:35:36.9305791Z PLAY [Add kube-node nodes to kube_node] **************************************** -2025-11-24T09:35:36.9306229Z -2025-11-24T09:35:36.9306531Z TASK [Add nodes to kube_node group] ******************************************** -2025-11-24T09:35:37.0454174Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:37.0454893Z changed: [kubenode-super-marlin] -2025-11-24T09:35:37.0455435Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:37.0455756Z -2025-11-24T09:35:37.0456093Z PLAY [Add k8s-cluster nodes to k8s_cluster] ************************************ -2025-11-24T09:35:37.0456536Z -2025-11-24T09:35:37.0456848Z TASK [Add nodes to k8s_cluster group] ****************************************** -2025-11-24T09:35:37.1422003Z [WARNING]: Could not match supplied host pattern, ignoring: calico-rr -2025-11-24T09:35:37.1424791Z [WARNING]: Could not match supplied host pattern, ignoring: no-floating -2025-11-24T09:35:37.1433186Z [WARNING]: Could not match supplied host pattern, ignoring: bastion -2025-11-24T09:35:37.1465793Z [WARNING]: Could not match supplied host pattern, ignoring: calico_rr -2025-11-24T09:35:37.1806725Z changed: [kubenode-super-marlin] -2025-11-24T09:35:37.1807475Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:37.1808092Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:37.1808484Z -2025-11-24T09:35:37.1808887Z PLAY [Add calico-rr nodes to calico_rr] **************************************** -2025-11-24T09:35:37.1810008Z skipping: no hosts matched -2025-11-24T09:35:37.1810278Z -2025-11-24T09:35:37.1810596Z PLAY [Add no-floating nodes to no_floating] ************************************ -2025-11-24T09:35:37.1811236Z skipping: no hosts matched -2025-11-24T09:35:37.1811499Z -2025-11-24T09:35:37.1811808Z PLAY [Install bastion ssh config] ********************************************** -2025-11-24T09:35:37.1812425Z skipping: no hosts matched -2025-11-24T09:35:37.1812944Z -2025-11-24T09:35:37.1813262Z PLAY [Bootstrap hosts for Ansible] ********************************************* -2025-11-24T09:35:37.1813678Z -2025-11-24T09:35:37.1814029Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:35:37.2578494Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:35:37.2579437Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:35:37.2580339Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:35:37.2581149Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:37.2581452Z -2025-11-24T09:35:37.2581796Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:35:37.2956726Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:37.2957232Z -2025-11-24T09:35:37.2957666Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:35:37.3612144Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:37.3613180Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:37.3613782Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:37.3614121Z -2025-11-24T09:35:37.3614910Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:35:37.3994522Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:37.3994975Z -2025-11-24T09:35:37.3995400Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:35:37.4704123Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:37.4704884Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:37.4705508Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:37.4705831Z -2025-11-24T09:35:37.4706631Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:35:37.5401641Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:37.5402385Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:37.5403388Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:37.5403791Z -2025-11-24T09:35:37.5404208Z TASK [bootstrap-os : Fetch /etc/os-release] ************************************ -2025-11-24T09:35:37.6010851Z [WARNING]: raw module does not support the environment keyword -2025-11-24T09:35:37.6628305Z ok: [kubenode-super-marlin] -2025-11-24T09:35:37.6628949Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:37.6629433Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:37.6629712Z -2025-11-24T09:35:37.6630041Z TASK [bootstrap-os : Include vars] ********************************************* -2025-11-24T09:35:37.7834711Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:37.7835317Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:37.7835844Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:37.7836195Z -2025-11-24T09:35:37.7836529Z TASK [bootstrap-os : Include tasks] ******************************************** -2025-11-24T09:35:37.9427046Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/bootstrap-os/tasks/ubuntu.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/bootstrap-os/tasks/ubuntu.yml) -2025-11-24T09:35:37.9428468Z -2025-11-24T09:35:37.9428832Z TASK [bootstrap-os : Check if bootstrap is needed] ***************************** -2025-11-24T09:35:38.1546888Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:38.1547552Z ok: [kubenode-super-marlin] -2025-11-24T09:35:38.1548182Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:38.1548529Z -2025-11-24T09:35:38.1549314Z TASK [bootstrap-os : Check http::proxy in apt configuration files] ************* -2025-11-24T09:35:38.2820958Z ok: [kubenode-super-marlin] -2025-11-24T09:35:38.2821518Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:38.2822014Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:38.2822295Z -2025-11-24T09:35:38.2822898Z TASK [bootstrap-os : Add http_proxy to /etc/apt/apt.conf if http_proxy is defined] *** -2025-11-24T09:35:38.3438779Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:38.3439509Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:38.3440196Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:38.3440592Z -2025-11-24T09:35:38.3441471Z TASK [bootstrap-os : Check https::proxy in apt configuration files] ************ -2025-11-24T09:35:38.4443114Z ok: [kubenode-super-marlin] -2025-11-24T09:35:38.4443701Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:38.4444233Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:38.4444502Z -2025-11-24T09:35:38.4444893Z TASK [bootstrap-os : Add https_proxy to /etc/apt/apt.conf if https_proxy is defined] *** -2025-11-24T09:35:38.4965079Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:38.4965689Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:38.4966191Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:38.4966528Z -2025-11-24T09:35:38.4966854Z TASK [bootstrap-os : Install python3] ****************************************** -2025-11-24T09:35:38.6475474Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:38.6476178Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:38.6476775Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:38.6477161Z -2025-11-24T09:35:38.6477930Z TASK [bootstrap-os : Update Apt cache] ***************************************** -2025-11-24T09:35:38.7569010Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:38.7569675Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:38.7570276Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:38.7570695Z -2025-11-24T09:35:38.7571105Z TASK [bootstrap-os : Create remote_tmp for it is used by another module] ******* -2025-11-24T09:35:39.2288818Z ok: [kubenode-super-marlin] -2025-11-24T09:35:39.2289839Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:39.2290602Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:39.2291261Z -2025-11-24T09:35:39.2291636Z TASK [bootstrap-os : Gather facts] ********************************************* -2025-11-24T09:35:39.8730145Z ok: [kubenode-super-marlin] -2025-11-24T09:35:39.8730917Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:39.8731476Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:39.8731792Z -2025-11-24T09:35:39.8732457Z TASK [bootstrap-os : Assign inventory name to unconfigured hostnames (non-CoreOS, non-Flatcar, Suse and ClearLinux, non-Fedora)] *** -2025-11-24T09:35:40.1972920Z Still deploying... -2025-11-24T09:35:40.9123872Z ok: [kubenode-super-marlin] -2025-11-24T09:35:40.9124745Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:40.9125319Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:40.9125632Z -2025-11-24T09:35:40.9126032Z TASK [bootstrap-os : Install ceph-commmon package] ***************************** -2025-11-24T09:35:40.9877842Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:40.9878678Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:40.9879279Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:40.9879675Z -2025-11-24T09:35:40.9880071Z TASK [bootstrap-os : Ensure bash_completion.d folder exists] ******************* -2025-11-24T09:35:41.4250564Z ok: [kubenode-super-marlin] -2025-11-24T09:35:41.4251404Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:41.4251981Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:41.4252314Z -2025-11-24T09:35:41.4252978Z PLAY [Gather facts] ************************************************************ -2025-11-24T09:35:41.4253481Z -2025-11-24T09:35:41.4253848Z TASK [Gather minimal facts] **************************************************** -2025-11-24T09:35:41.9129413Z ok: [kubenode-super-marlin] -2025-11-24T09:35:41.9130260Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:41.9130869Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:41.9131578Z -2025-11-24T09:35:41.9131957Z TASK [Gather necessary facts (network)] **************************************** -2025-11-24T09:35:42.4004711Z ok: [kubenode-super-marlin] -2025-11-24T09:35:42.4005544Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:42.4006139Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:42.4006449Z -2025-11-24T09:35:42.4006830Z TASK [Gather necessary facts (hardware)] *************************************** -2025-11-24T09:35:43.5234554Z ok: [kubenode-super-marlin] -2025-11-24T09:35:43.5235365Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:43.5235926Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:43.5236243Z -2025-11-24T09:35:43.5236636Z PLAY [Prepare for etcd install] ************************************************ -2025-11-24T09:35:43.5237122Z -2025-11-24T09:35:43.5237527Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:35:43.6702147Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:35:43.6703301Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:35:43.6704060Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:35:43.6704695Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:43.6704998Z -2025-11-24T09:35:43.6705340Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:35:43.7712495Z ok: [kubenode-super-marlin -> localhost] -2025-11-24T09:35:43.7713491Z -2025-11-24T09:35:43.7713913Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:35:43.9229820Z ok: [kubenode-super-marlin] -2025-11-24T09:35:43.9230557Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:43.9231498Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:43.9231845Z -2025-11-24T09:35:43.9232296Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:35:43.9751706Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:43.9752315Z -2025-11-24T09:35:43.9753013Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:35:44.0723048Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:44.0723883Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:44.0724870Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:44.0725212Z -2025-11-24T09:35:44.0725736Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:35:44.1106027Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:44.1698589Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:44.1699292Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:44.1699684Z -2025-11-24T09:35:44.1700073Z TASK [adduser : User | Create User Group] ************************************** -2025-11-24T09:35:44.6825870Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:44.6826467Z changed: [kubenode-super-marlin] -2025-11-24T09:35:44.6826975Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:44.6827255Z -2025-11-24T09:35:44.6827557Z TASK [adduser : User | Create User] ******************************************** -2025-11-24T09:35:45.3258997Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:45.3259618Z changed: [kubenode-super-marlin] -2025-11-24T09:35:45.3260161Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:45.3260452Z -2025-11-24T09:35:45.3260820Z TASK [kubernetes/preinstall : Check if /etc/fstab exists] ********************** -2025-11-24T09:35:45.8138591Z ok: [kubenode-super-marlin] -2025-11-24T09:35:45.8139274Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:45.8139843Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:45.8140160Z -2025-11-24T09:35:45.8140607Z TASK [kubernetes/preinstall : Remove swapfile from /etc/fstab] ***************** -2025-11-24T09:35:46.4991050Z ok: [kubenode-super-marlin] => (item=swap) -2025-11-24T09:35:46.4991830Z ok: [kubenode-teaching-gobbler] => (item=swap) -2025-11-24T09:35:46.4992495Z ok: [kubenode-renewed-asp] => (item=swap) -2025-11-24T09:35:46.4993484Z ok: [kubenode-teaching-gobbler] => (item=none) -2025-11-24T09:35:46.4994140Z ok: [kubenode-super-marlin] => (item=none) -2025-11-24T09:35:46.4995162Z ok: [kubenode-renewed-asp] => (item=none) -2025-11-24T09:35:46.4995470Z -2025-11-24T09:35:46.4995820Z TASK [kubernetes/preinstall : Mask swap.target (persist swapoff)] ************** -2025-11-24T09:35:47.6895022Z changed: [kubenode-super-marlin] -2025-11-24T09:35:47.6895705Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:47.6896332Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:47.6896664Z -2025-11-24T09:35:47.6897078Z TASK [kubernetes/preinstall : Disable swap] ************************************ -2025-11-24T09:35:48.2110390Z changed: [kubenode-super-marlin] -2025-11-24T09:35:48.2111104Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:48.2111693Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:48.2112074Z -2025-11-24T09:35:48.2112583Z TASK [kubernetes/preinstall : Set os_family fact for other redhat-based operating systems] *** -2025-11-24T09:35:48.2494038Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:48.2735905Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:48.2736632Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:48.2737032Z -2025-11-24T09:35:48.2737438Z TASK [kubernetes/preinstall : Check resolvconf] ******************************** -2025-11-24T09:35:48.5543960Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:48.5544627Z ok: [kubenode-super-marlin] -2025-11-24T09:35:48.5545195Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:48.5545532Z -2025-11-24T09:35:48.5545981Z TASK [kubernetes/preinstall : Check existence of /etc/resolvconf/resolv.conf.d] *** -2025-11-24T09:35:48.8112564Z ok: [kubenode-super-marlin] -2025-11-24T09:35:48.8113394Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:48.8114289Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:48.8114586Z -2025-11-24T09:35:48.8114948Z TASK [kubernetes/preinstall : Check status of /etc/resolv.conf] **************** -2025-11-24T09:35:49.1147560Z ok: [kubenode-super-marlin] -2025-11-24T09:35:49.1148220Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:49.1148785Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:49.1149131Z -2025-11-24T09:35:49.1149544Z TASK [kubernetes/preinstall : Get content of /etc/resolv.conf] ***************** -2025-11-24T09:35:49.6151572Z ok: [kubenode-super-marlin] -2025-11-24T09:35:49.6152493Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:49.6153276Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:49.6153563Z -2025-11-24T09:35:49.6153940Z TASK [kubernetes/preinstall : Get currently configured nameservers] ************ -2025-11-24T09:35:49.7506930Z ok: [kubenode-super-marlin] -2025-11-24T09:35:49.7507595Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:49.7508159Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:49.7508510Z -2025-11-24T09:35:49.7509006Z TASK [kubernetes/preinstall : Stop if /etc/resolv.conf not configured nameservers] *** -2025-11-24T09:35:49.8208448Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:49.8209125Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:49.8209717Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:49.8210095Z -2025-11-24T09:35:49.8210578Z TASK [kubernetes/preinstall : NetworkManager | Check if host has NetworkManager] *** -2025-11-24T09:35:50.0836554Z ok: [kubenode-super-marlin] -2025-11-24T09:35:50.0837196Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:50.0837781Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:50.0838103Z -2025-11-24T09:35:50.0838515Z TASK [kubernetes/preinstall : Check systemd-resolved] ************************** -2025-11-24T09:35:50.1987722Z Still deploying... -2025-11-24T09:35:50.3776438Z ok: [kubenode-super-marlin] -2025-11-24T09:35:50.3777100Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:50.3777697Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:50.3777977Z -2025-11-24T09:35:50.3778414Z TASK [kubernetes/preinstall : Set default dns if remove_default_searchdomains is false] *** -2025-11-24T09:35:50.5076771Z ok: [kubenode-super-marlin] -2025-11-24T09:35:50.5077450Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:50.5078042Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:50.5078404Z -2025-11-24T09:35:50.5078832Z TASK [kubernetes/preinstall : Set dns facts] *********************************** -2025-11-24T09:35:50.6275242Z ok: [kubenode-super-marlin] -2025-11-24T09:35:50.6275802Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:50.6276306Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:50.6276593Z -2025-11-24T09:35:50.6276942Z TASK [kubernetes/preinstall : Check if kubelet is configured] ****************** -2025-11-24T09:35:50.8851829Z ok: [kubenode-super-marlin] -2025-11-24T09:35:50.8852482Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:50.8853365Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:50.8853709Z -2025-11-24T09:35:50.8854160Z TASK [kubernetes/preinstall : Check if early DNS configuration stage] ********** -2025-11-24T09:35:50.9675076Z ok: [kubenode-super-marlin] -2025-11-24T09:35:50.9675738Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:50.9676371Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:50.9676699Z -2025-11-24T09:35:50.9677106Z TASK [kubernetes/preinstall : Target resolv.conf files] ************************ -2025-11-24T09:35:51.0521409Z ok: [kubenode-super-marlin] -2025-11-24T09:35:51.0522009Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:51.0522499Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:51.0523052Z -2025-11-24T09:35:51.0523662Z TASK [kubernetes/preinstall : Target temporary resolvconf cloud init file (Flatcar Container Linux by Kinvolk / Fedora CoreOS)] *** -2025-11-24T09:35:51.0782500Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:51.0997750Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:51.0998447Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:51.0998840Z -2025-11-24T09:35:51.0999664Z TASK [kubernetes/preinstall : Check if /etc/dhclient.conf exists] ************** -2025-11-24T09:35:51.3480888Z ok: [kubenode-super-marlin] -2025-11-24T09:35:51.3481579Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:51.3482196Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:51.3482542Z -2025-11-24T09:35:51.3483367Z TASK [kubernetes/preinstall : Target dhclient conf file for /etc/dhclient.conf] *** -2025-11-24T09:35:51.3936315Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:51.4110290Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:51.4111038Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:51.4111815Z -2025-11-24T09:35:51.4112273Z TASK [kubernetes/preinstall : Check if /etc/dhcp/dhclient.conf exists] ********* -2025-11-24T09:35:51.6735873Z ok: [kubenode-super-marlin] -2025-11-24T09:35:51.6736429Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:51.6736906Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:51.6737177Z -2025-11-24T09:35:51.6737578Z TASK [kubernetes/preinstall : Target dhclient conf file for /etc/dhcp/dhclient.conf] *** -2025-11-24T09:35:51.7640609Z ok: [kubenode-super-marlin] -2025-11-24T09:35:51.7641292Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:51.7641895Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:51.7642244Z -2025-11-24T09:35:51.7642970Z TASK [kubernetes/preinstall : Target dhclient hook file for Red Hat family] **** -2025-11-24T09:35:51.8014998Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:51.8231569Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:51.8232164Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:51.8232493Z -2025-11-24T09:35:51.8233014Z TASK [kubernetes/preinstall : Target dhclient hook file for Debian family] ***** -2025-11-24T09:35:51.9458112Z ok: [kubenode-super-marlin] -2025-11-24T09:35:51.9458689Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:51.9459161Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:51.9459434Z -2025-11-24T09:35:51.9459789Z TASK [kubernetes/preinstall : Generate search domains to resolvconf] *********** -2025-11-24T09:35:52.0484748Z ok: [kubenode-super-marlin] -2025-11-24T09:35:52.0485417Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:52.0485973Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:52.0486308Z -2025-11-24T09:35:52.0486738Z TASK [kubernetes/preinstall : Pick coredns cluster IP or default resolver] ***** -2025-11-24T09:35:52.1814733Z ok: [kubenode-super-marlin] -2025-11-24T09:35:52.1815397Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:52.1816356Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:52.1816724Z -2025-11-24T09:35:52.1817236Z TASK [kubernetes/preinstall : Generate nameservers for resolvconf, including cluster DNS] *** -2025-11-24T09:35:52.2114907Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:52.2334969Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:52.2335671Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:52.2336067Z -2025-11-24T09:35:52.2336586Z TASK [kubernetes/preinstall : Generate nameservers for resolvconf, not including cluster DNS] *** -2025-11-24T09:35:52.3327769Z ok: [kubenode-super-marlin] -2025-11-24T09:35:52.3328396Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:52.3329010Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:52.3329339Z -2025-11-24T09:35:52.3329745Z TASK [kubernetes/preinstall : Set etcd vars if using kubeadm mode] ************* -2025-11-24T09:35:52.3638095Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:52.3878238Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:52.3878887Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:52.3879345Z -2025-11-24T09:35:52.3879748Z TASK [kubernetes/preinstall : Check /usr readonly] ***************************** -2025-11-24T09:35:52.6504472Z ok: [kubenode-super-marlin] -2025-11-24T09:35:52.6505044Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:52.6505544Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:52.6505809Z -2025-11-24T09:35:52.6506158Z TASK [kubernetes/preinstall : Set alternate flexvolume path] ******************* -2025-11-24T09:35:52.6971137Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:52.7274270Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:52.7274868Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:52.7275654Z -2025-11-24T09:35:52.7276112Z TASK [kubernetes/preinstall : Stop if either kube_control_plane or kube_node group is empty] *** -2025-11-24T09:35:52.8008055Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:52.8008604Z "changed": false, -2025-11-24T09:35:52.8009057Z "msg": "All assertions passed" -2025-11-24T09:35:52.8009571Z } -2025-11-24T09:35:52.8009787Z -2025-11-24T09:35:52.8010164Z TASK [kubernetes/preinstall : Stop if etcd group is empty in external etcd mode] *** -2025-11-24T09:35:52.8577694Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:52.8578708Z "changed": false, -2025-11-24T09:35:52.8579265Z "msg": "All assertions passed" -2025-11-24T09:35:52.8579815Z } -2025-11-24T09:35:52.8580054Z -2025-11-24T09:35:52.8580459Z TASK [kubernetes/preinstall : Stop if non systemd OS type] ********************* -2025-11-24T09:35:52.9731354Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:52.9732010Z "changed": false, -2025-11-24T09:35:52.9732464Z "msg": "All assertions passed" -2025-11-24T09:35:52.9733187Z } -2025-11-24T09:35:52.9733603Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:52.9734097Z "changed": false, -2025-11-24T09:35:52.9734530Z "msg": "All assertions passed" -2025-11-24T09:35:52.9735002Z } -2025-11-24T09:35:52.9735404Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:52.9735854Z "changed": false, -2025-11-24T09:35:52.9736299Z "msg": "All assertions passed" -2025-11-24T09:35:52.9736749Z } -2025-11-24T09:35:52.9736948Z -2025-11-24T09:35:52.9737286Z TASK [kubernetes/preinstall : Stop if the os does not support] ***************** -2025-11-24T09:35:53.0770778Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:53.0771424Z "changed": false, -2025-11-24T09:35:53.0771985Z "msg": "All assertions passed" -2025-11-24T09:35:53.0772543Z } -2025-11-24T09:35:53.0773236Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:53.0773789Z "changed": false, -2025-11-24T09:35:53.0774289Z "msg": "All assertions passed" -2025-11-24T09:35:53.0774819Z } -2025-11-24T09:35:53.0775311Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:53.0775881Z "changed": false, -2025-11-24T09:35:53.0776389Z "msg": "All assertions passed" -2025-11-24T09:35:53.0776914Z } -2025-11-24T09:35:53.0777149Z -2025-11-24T09:35:53.0777554Z TASK [kubernetes/preinstall : Stop if unknown network plugin] ****************** -2025-11-24T09:35:53.1671910Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:53.1673217Z "changed": false, -2025-11-24T09:35:53.1673824Z "msg": "All assertions passed" -2025-11-24T09:35:53.1674387Z } -2025-11-24T09:35:53.1674881Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:53.1675431Z "changed": false, -2025-11-24T09:35:53.1675942Z "msg": "All assertions passed" -2025-11-24T09:35:53.1676482Z } -2025-11-24T09:35:53.1676956Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:53.1677539Z "changed": false, -2025-11-24T09:35:53.1678048Z "msg": "All assertions passed" -2025-11-24T09:35:53.1678588Z } -2025-11-24T09:35:53.1678824Z -2025-11-24T09:35:53.1679244Z TASK [kubernetes/preinstall : Stop if unsupported version of Kubernetes] ******* -2025-11-24T09:35:53.3778280Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:53.3778942Z "changed": false, -2025-11-24T09:35:53.3779492Z "msg": "All assertions passed" -2025-11-24T09:35:53.3780074Z } -2025-11-24T09:35:53.3780577Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:53.3781162Z "changed": false, -2025-11-24T09:35:53.3781701Z "msg": "All assertions passed" -2025-11-24T09:35:53.3782261Z } -2025-11-24T09:35:53.3783062Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:53.3783675Z "changed": false, -2025-11-24T09:35:53.3784196Z "msg": "All assertions passed" -2025-11-24T09:35:53.3784709Z } -2025-11-24T09:35:53.3784909Z -2025-11-24T09:35:53.3785413Z TASK [kubernetes/preinstall : Stop if known booleans are set as strings (Use JSON format on CLI: -e "{'key': true }")] *** -2025-11-24T09:35:53.6114817Z ok: [kubenode-super-marlin] => (item={'name': 'download_run_once', 'value': False}) => { -2025-11-24T09:35:53.6115905Z "ansible_loop_var": "item", -2025-11-24T09:35:53.6116362Z "changed": false, -2025-11-24T09:35:53.6116811Z "item": { -2025-11-24T09:35:53.6117210Z "name": "download_run_once", -2025-11-24T09:35:53.6117664Z "value": false -2025-11-24T09:35:53.6118056Z }, -2025-11-24T09:35:53.6118442Z "msg": "All assertions passed" -2025-11-24T09:35:53.6118892Z } -2025-11-24T09:35:53.6119429Z ok: [kubenode-super-marlin] => (item={'name': 'deploy_netchecker', 'value': False}) => { -2025-11-24T09:35:53.6120060Z "ansible_loop_var": "item", -2025-11-24T09:35:53.6120623Z "changed": false, -2025-11-24T09:35:53.6121019Z "item": { -2025-11-24T09:35:53.6121412Z "name": "deploy_netchecker", -2025-11-24T09:35:53.6121875Z "value": false -2025-11-24T09:35:53.6122265Z }, -2025-11-24T09:35:53.6122816Z "msg": "All assertions passed" -2025-11-24T09:35:53.6123264Z } -2025-11-24T09:35:53.6123812Z ok: [kubenode-super-marlin] => (item={'name': 'download_always_pull', 'value': False}) => { -2025-11-24T09:35:53.6124433Z "ansible_loop_var": "item", -2025-11-24T09:35:53.6124858Z "changed": false, -2025-11-24T09:35:53.6125258Z "item": { -2025-11-24T09:35:53.6125651Z "name": "download_always_pull", -2025-11-24T09:35:53.6126105Z "value": false -2025-11-24T09:35:53.6126498Z }, -2025-11-24T09:35:53.6126881Z "msg": "All assertions passed" -2025-11-24T09:35:53.6127317Z } -2025-11-24T09:35:53.6127820Z ok: [kubenode-super-marlin] => (item={'name': 'helm_enabled', 'value': False}) => { -2025-11-24T09:35:53.6128428Z "ansible_loop_var": "item", -2025-11-24T09:35:53.6128858Z "changed": false, -2025-11-24T09:35:53.6129264Z "item": { -2025-11-24T09:35:53.6129649Z "name": "helm_enabled", -2025-11-24T09:35:53.6130063Z "value": false -2025-11-24T09:35:53.6130448Z }, -2025-11-24T09:35:53.6130821Z "msg": "All assertions passed" -2025-11-24T09:35:53.6131255Z } -2025-11-24T09:35:53.6131799Z ok: [kubenode-super-marlin] => (item={'name': 'openstack_lbaas_enabled', 'value': False}) => { -2025-11-24T09:35:53.6132414Z "ansible_loop_var": "item", -2025-11-24T09:35:53.6132942Z "changed": false, -2025-11-24T09:35:53.6133337Z "item": { -2025-11-24T09:35:53.6133737Z "name": "openstack_lbaas_enabled", -2025-11-24T09:35:53.6134203Z "value": false -2025-11-24T09:35:53.6134598Z }, -2025-11-24T09:35:53.6135074Z "msg": "All assertions passed" -2025-11-24T09:35:53.6135510Z } -2025-11-24T09:35:53.6135694Z -2025-11-24T09:35:53.6136018Z TASK [kubernetes/preinstall : Stop if even number of etcd hosts] *************** -2025-11-24T09:35:53.9228344Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:53.9229002Z "changed": false, -2025-11-24T09:35:53.9229542Z "msg": "All assertions passed" -2025-11-24T09:35:53.9230093Z } -2025-11-24T09:35:53.9230568Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:53.9231147Z "changed": false, -2025-11-24T09:35:53.9231667Z "msg": "All assertions passed" -2025-11-24T09:35:53.9232221Z } -2025-11-24T09:35:53.9232986Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:53.9233537Z "changed": false, -2025-11-24T09:35:53.9234050Z "msg": "All assertions passed" -2025-11-24T09:35:53.9234600Z } -2025-11-24T09:35:53.9234809Z -2025-11-24T09:35:53.9235140Z TASK [kubernetes/preinstall : Stop if memory is too small for masters] ********* -2025-11-24T09:35:54.0419292Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:54.0420049Z "changed": false, -2025-11-24T09:35:54.0420574Z "msg": "All assertions passed" -2025-11-24T09:35:54.0421126Z } -2025-11-24T09:35:54.0421609Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:54.0422146Z "changed": false, -2025-11-24T09:35:54.0422933Z "msg": "All assertions passed" -2025-11-24T09:35:54.0423518Z } -2025-11-24T09:35:54.0423994Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:54.0424591Z "changed": false, -2025-11-24T09:35:54.0425104Z "msg": "All assertions passed" -2025-11-24T09:35:54.0425645Z } -2025-11-24T09:35:54.0425880Z -2025-11-24T09:35:54.0426708Z TASK [kubernetes/preinstall : Stop if memory is too small for nodes] *********** -2025-11-24T09:35:54.1216562Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:54.1217221Z "changed": false, -2025-11-24T09:35:54.1217744Z "msg": "All assertions passed" -2025-11-24T09:35:54.1218300Z } -2025-11-24T09:35:54.1218698Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:54.1219175Z "changed": false, -2025-11-24T09:35:54.1219602Z "msg": "All assertions passed" -2025-11-24T09:35:54.1220060Z } -2025-11-24T09:35:54.1220467Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:54.1221275Z "changed": false, -2025-11-24T09:35:54.1221703Z "msg": "All assertions passed" -2025-11-24T09:35:54.1222159Z } -2025-11-24T09:35:54.1222362Z -2025-11-24T09:35:54.1222969Z TASK [kubernetes/preinstall : Stop if cgroups are not enabled on nodes] ******** -2025-11-24T09:35:54.3849123Z ok: [kubenode-super-marlin] -2025-11-24T09:35:54.3849769Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:54.3850357Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:54.3850719Z -2025-11-24T09:35:54.3851269Z TASK [kubernetes/preinstall : Guarantee that enough network address space is available for all pods] *** -2025-11-24T09:35:54.4730053Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:54.4730643Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:54.4731142Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:54.4731472Z -2025-11-24T09:35:54.4731821Z TASK [kubernetes/preinstall : Stop if ip var does not match local ips] ********* -2025-11-24T09:35:54.5720897Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:54.5721561Z "changed": false, -2025-11-24T09:35:54.5722110Z "msg": "All assertions passed" -2025-11-24T09:35:54.5722966Z } -2025-11-24T09:35:54.5723465Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:54.5724048Z "changed": false, -2025-11-24T09:35:54.5724600Z "msg": "All assertions passed" -2025-11-24T09:35:54.5725178Z } -2025-11-24T09:35:54.5725674Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:54.5726273Z "changed": false, -2025-11-24T09:35:54.5726803Z "msg": "All assertions passed" -2025-11-24T09:35:54.5727265Z } -2025-11-24T09:35:54.5727459Z -2025-11-24T09:35:54.5727793Z TASK [kubernetes/preinstall : Ensure ping package] ***************************** -2025-11-24T09:35:54.6269836Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:54.6270541Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:54.6271498Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:54.6271881Z -2025-11-24T09:35:54.6272309Z TASK [kubernetes/preinstall : Stop if access_ip is not pingable] *************** -2025-11-24T09:35:54.6835067Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:54.6835764Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:54.6836365Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:54.6836737Z -2025-11-24T09:35:54.6837202Z TASK [kubernetes/preinstall : Stop if RBAC is not enabled when dashboard is enabled] *** -2025-11-24T09:35:54.7325496Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:54.7326205Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:54.7326846Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:54.7327234Z -2025-11-24T09:35:54.7327760Z TASK [kubernetes/preinstall : Stop if RBAC is not enabled when OCI cloud controller is enabled] *** -2025-11-24T09:35:54.7915387Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:54.7916082Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:54.7916699Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:54.7917084Z -2025-11-24T09:35:54.7917490Z TASK [kubernetes/preinstall : Stop if kernel version is too low] *************** -2025-11-24T09:35:54.8697069Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:54.8697666Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:54.8698191Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:54.8698473Z -2025-11-24T09:35:54.8698814Z TASK [kubernetes/preinstall : Stop if bad hostname] **************************** -2025-11-24T09:35:54.9698849Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:54.9699501Z "changed": false, -2025-11-24T09:35:54.9700580Z "msg": "All assertions passed" -2025-11-24T09:35:54.9701151Z } -2025-11-24T09:35:54.9701632Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:54.9702166Z "changed": false, -2025-11-24T09:35:54.9708793Z "msg": "All assertions passed" -2025-11-24T09:35:54.9709385Z } -2025-11-24T09:35:54.9709794Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:54.9710299Z "changed": false, -2025-11-24T09:35:54.9710739Z "msg": "All assertions passed" -2025-11-24T09:35:54.9711200Z } -2025-11-24T09:35:54.9711399Z -2025-11-24T09:35:54.9711732Z TASK [kubernetes/preinstall : Check cloud_provider value] ********************** -2025-11-24T09:35:55.0360809Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:55.0361424Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:55.0361960Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:55.0362321Z -2025-11-24T09:35:55.0362993Z TASK [kubernetes/preinstall : Check that kube_service_addresses is a network range] *** -2025-11-24T09:35:55.1551802Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.1552521Z "changed": false, -2025-11-24T09:35:55.1553355Z "msg": "All assertions passed" -2025-11-24T09:35:55.1553926Z } -2025-11-24T09:35:55.1554169Z -2025-11-24T09:35:55.1554585Z TASK [kubernetes/preinstall : Check that kube_pods_subnet is a network range] *** -2025-11-24T09:35:55.2503357Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.2504043Z "changed": false, -2025-11-24T09:35:55.2504575Z "msg": "All assertions passed" -2025-11-24T09:35:55.2505151Z } -2025-11-24T09:35:55.2505390Z -2025-11-24T09:35:55.2505933Z TASK [kubernetes/preinstall : Check that kube_pods_subnet does not collide with kube_service_addresses] *** -2025-11-24T09:35:55.3563178Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.3563918Z "changed": false, -2025-11-24T09:35:55.3564475Z "msg": "All assertions passed" -2025-11-24T09:35:55.3565064Z } -2025-11-24T09:35:55.3565315Z -2025-11-24T09:35:55.3565762Z TASK [kubernetes/preinstall : Check that IP range is enough for the nodes] ***** -2025-11-24T09:35:55.3844634Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:55.3845085Z -2025-11-24T09:35:55.3845519Z TASK [kubernetes/preinstall : Stop if unknown dns mode] ************************ -2025-11-24T09:35:55.4613259Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.4613938Z "changed": false, -2025-11-24T09:35:55.4614488Z "msg": "All assertions passed" -2025-11-24T09:35:55.4615407Z } -2025-11-24T09:35:55.4615656Z -2025-11-24T09:35:55.4616083Z TASK [kubernetes/preinstall : Stop if unknown kube proxy mode] ***************** -2025-11-24T09:35:55.5175785Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.5176442Z "changed": false, -2025-11-24T09:35:55.5176969Z "msg": "All assertions passed" -2025-11-24T09:35:55.5177523Z } -2025-11-24T09:35:55.5177764Z -2025-11-24T09:35:55.5178167Z TASK [kubernetes/preinstall : Stop if unknown cert_management] ***************** -2025-11-24T09:35:55.5789128Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.5789801Z "changed": false, -2025-11-24T09:35:55.5790361Z "msg": "All assertions passed" -2025-11-24T09:35:55.5790908Z } -2025-11-24T09:35:55.5791150Z -2025-11-24T09:35:55.5791559Z TASK [kubernetes/preinstall : Stop if unknown resolvconf_mode] ***************** -2025-11-24T09:35:55.6435039Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.6435660Z "changed": false, -2025-11-24T09:35:55.6436114Z "msg": "All assertions passed" -2025-11-24T09:35:55.6436600Z } -2025-11-24T09:35:55.6436801Z -2025-11-24T09:35:55.6437219Z TASK [kubernetes/preinstall : Stop if etcd deployment type is not host, docker or kubeadm] *** -2025-11-24T09:35:55.7355451Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.7356117Z "changed": false, -2025-11-24T09:35:55.7356647Z "msg": "All assertions passed" -2025-11-24T09:35:55.7357205Z } -2025-11-24T09:35:55.7357675Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:55.7358218Z "changed": false, -2025-11-24T09:35:55.7358712Z "msg": "All assertions passed" -2025-11-24T09:35:55.7359168Z } -2025-11-24T09:35:55.7359939Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:55.7360437Z "changed": false, -2025-11-24T09:35:55.7360867Z "msg": "All assertions passed" -2025-11-24T09:35:55.7361319Z } -2025-11-24T09:35:55.7361514Z -2025-11-24T09:35:55.7361925Z TASK [kubernetes/preinstall : Stop if container manager is not docker, crio or containerd] *** -2025-11-24T09:35:55.7946080Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.7946774Z "changed": false, -2025-11-24T09:35:55.7947328Z "msg": "All assertions passed" -2025-11-24T09:35:55.7947923Z } -2025-11-24T09:35:55.7948520Z -2025-11-24T09:35:55.7949139Z TASK [kubernetes/preinstall : Stop if etcd deployment type is not host or kubeadm when container_manager != docker] *** -2025-11-24T09:35:55.9230722Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:55.9231381Z "changed": false, -2025-11-24T09:35:55.9231933Z "msg": "All assertions passed" -2025-11-24T09:35:55.9232425Z } -2025-11-24T09:35:55.9233065Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:55.9233546Z "changed": false, -2025-11-24T09:35:55.9233974Z "msg": "All assertions passed" -2025-11-24T09:35:55.9234426Z } -2025-11-24T09:35:55.9234827Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:55.9235305Z "changed": false, -2025-11-24T09:35:55.9235734Z "msg": "All assertions passed" -2025-11-24T09:35:55.9236187Z } -2025-11-24T09:35:55.9236387Z -2025-11-24T09:35:55.9236799Z TASK [kubernetes/preinstall : Warn the user if they are still using `etcd_kubeadm_enabled`] *** -2025-11-24T09:35:55.9656324Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:55.9656785Z -2025-11-24T09:35:55.9657458Z TASK [kubernetes/preinstall : Stop if `etcd_kubeadm_enabled` is defined and `etcd_deployment_type` is not `kubeadm` or `host`] *** -2025-11-24T09:35:56.0127066Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:56.0127491Z -2025-11-24T09:35:56.0128017Z TASK [kubernetes/preinstall : Stop if download_localhost is enabled but download_run_once is not] *** -2025-11-24T09:35:56.0648562Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:56.0649395Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:56.0650057Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:56.0650475Z -2025-11-24T09:35:56.0651105Z TASK [kubernetes/preinstall : Stop if kata_containers_enabled is enabled when container_manager is docker] *** -2025-11-24T09:35:56.0912199Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:56.1194254Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:56.1194955Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:56.1195343Z -2025-11-24T09:35:56.1195881Z TASK [kubernetes/preinstall : Stop if gvisor_enabled is enabled when container_manager is not containerd] *** -2025-11-24T09:35:56.1506883Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:56.1737382Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:56.1738161Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:56.1738561Z -2025-11-24T09:35:56.1739076Z TASK [kubernetes/preinstall : Stop if download_localhost is enabled for Flatcar Container Linux] *** -2025-11-24T09:35:56.2230123Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:56.2230726Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:56.2231255Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:56.2231592Z -2025-11-24T09:35:56.2231961Z TASK [kubernetes/preinstall : Ensure minimum containerd version] *************** -2025-11-24T09:35:56.3086341Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:56.3086954Z "changed": false, -2025-11-24T09:35:56.3087406Z "msg": "All assertions passed" -2025-11-24T09:35:56.3087873Z } -2025-11-24T09:35:56.3088074Z -2025-11-24T09:35:56.3088462Z TASK [kubernetes/preinstall : Stop if using deprecated containerd_config variable] *** -2025-11-24T09:35:56.3725502Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:56.3726191Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:56.3726816Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:56.3727189Z -2025-11-24T09:35:56.3728316Z TASK [kubernetes/preinstall : Stop if auto_renew_certificates is enabled when certificates are managed externally (kube_external_ca_mode is true)] *** -2025-11-24T09:35:56.4038841Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:56.4393143Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:56.4393965Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:56.4394311Z -2025-11-24T09:35:56.4394799Z TASK [kubernetes/preinstall : Stop if using deprecated comma separated list for admission plugins] *** -2025-11-24T09:35:56.4997193Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:56.4997894Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:56.4998518Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:56.4999240Z -2025-11-24T09:35:56.4999677Z TASK [kubernetes/preinstall : Verify that the packages list structure is valid] *** -2025-11-24T09:35:56.6814518Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:56.6815195Z ok: [kubenode-super-marlin] -2025-11-24T09:35:56.6815855Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:56.6816205Z -2025-11-24T09:35:56.6816581Z TASK [kubernetes/preinstall : Verify that the packages list is sorted] ********* -2025-11-24T09:35:56.8252457Z ok: [kubenode-super-marlin] => { -2025-11-24T09:35:56.8253391Z "changed": false, -2025-11-24T09:35:56.8253983Z "msg": "All assertions passed" -2025-11-24T09:35:56.8254557Z } -2025-11-24T09:35:56.8255047Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:35:56.8255601Z "changed": false, -2025-11-24T09:35:56.8256154Z "msg": "All assertions passed" -2025-11-24T09:35:56.8256713Z } -2025-11-24T09:35:56.8257225Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:35:56.8257819Z "changed": false, -2025-11-24T09:35:56.8258362Z "msg": "All assertions passed" -2025-11-24T09:35:56.8258929Z } -2025-11-24T09:35:56.8259148Z -2025-11-24T09:35:56.8259491Z TASK [kubernetes/preinstall : Create kubernetes directories] ******************* -2025-11-24T09:35:57.7247693Z changed: [kubenode-super-marlin] => (item=/etc/kubernetes) -2025-11-24T09:35:57.7248617Z changed: [kubenode-renewed-asp] => (item=/etc/kubernetes) -2025-11-24T09:35:57.7249436Z changed: [kubenode-teaching-gobbler] => (item=/etc/kubernetes) -2025-11-24T09:35:57.7250294Z changed: [kubenode-super-marlin] => (item=/etc/kubernetes/manifests) -2025-11-24T09:35:57.7251159Z changed: [kubenode-renewed-asp] => (item=/etc/kubernetes/manifests) -2025-11-24T09:35:57.7252055Z changed: [kubenode-teaching-gobbler] => (item=/etc/kubernetes/manifests) -2025-11-24T09:35:57.7253683Z changed: [kubenode-super-marlin] => (item=/usr/local/bin/kubernetes-scripts) -2025-11-24T09:35:57.7254615Z changed: [kubenode-renewed-asp] => (item=/usr/local/bin/kubernetes-scripts) -2025-11-24T09:35:57.7255561Z changed: [kubenode-teaching-gobbler] => (item=/usr/local/bin/kubernetes-scripts) -2025-11-24T09:35:57.7256496Z changed: [kubenode-super-marlin] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) -2025-11-24T09:35:57.7257378Z changed: [kubenode-renewed-asp] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) -2025-11-24T09:35:57.7258275Z changed: [kubenode-teaching-gobbler] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) -2025-11-24T09:35:57.7258802Z -2025-11-24T09:35:57.7259151Z TASK [kubernetes/preinstall : Create other directories of root owner] ********** -2025-11-24T09:35:58.2198113Z changed: [kubenode-super-marlin] => (item=/etc/kubernetes/ssl) -2025-11-24T09:35:58.2199037Z changed: [kubenode-teaching-gobbler] => (item=/etc/kubernetes/ssl) -2025-11-24T09:35:58.2199885Z changed: [kubenode-renewed-asp] => (item=/etc/kubernetes/ssl) -2025-11-24T09:35:58.2200653Z ok: [kubenode-super-marlin] => (item=/usr/local/bin) -2025-11-24T09:35:58.2201417Z ok: [kubenode-teaching-gobbler] => (item=/usr/local/bin) -2025-11-24T09:35:58.2202153Z ok: [kubenode-renewed-asp] => (item=/usr/local/bin) -2025-11-24T09:35:58.2202564Z -2025-11-24T09:35:58.2203334Z TASK [kubernetes/preinstall : Check if kubernetes kubeadm compat cert dir exists] *** -2025-11-24T09:35:58.4465106Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:35:58.4465771Z ok: [kubenode-super-marlin] -2025-11-24T09:35:58.4466334Z ok: [kubenode-renewed-asp] -2025-11-24T09:35:58.4466642Z -2025-11-24T09:35:58.4467613Z TASK [kubernetes/preinstall : Create kubernetes kubeadm compat cert dir (kubernetes/kubeadm issue 1498)] *** -2025-11-24T09:35:58.7082391Z changed: [kubenode-renewed-asp] -2025-11-24T09:35:58.7083161Z changed: [kubenode-super-marlin] -2025-11-24T09:35:58.7083657Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:35:58.7083964Z -2025-11-24T09:35:58.7084315Z TASK [kubernetes/preinstall : Create cni directories] ************************** -2025-11-24T09:35:59.1490102Z changed: [kubenode-super-marlin] => (item=/etc/cni/net.d) -2025-11-24T09:35:59.1491322Z changed: [kubenode-teaching-gobbler] => (item=/etc/cni/net.d) -2025-11-24T09:35:59.1492121Z changed: [kubenode-renewed-asp] => (item=/etc/cni/net.d) -2025-11-24T09:35:59.1493145Z changed: [kubenode-super-marlin] => (item=/opt/cni/bin) -2025-11-24T09:35:59.1493777Z changed: [kubenode-teaching-gobbler] => (item=/opt/cni/bin) -2025-11-24T09:35:59.1494392Z changed: [kubenode-renewed-asp] => (item=/opt/cni/bin) -2025-11-24T09:35:59.1494742Z -2025-11-24T09:35:59.1495098Z TASK [kubernetes/preinstall : Create calico cni directories] ******************* -2025-11-24T09:35:59.4556172Z changed: [kubenode-super-marlin] => (item=/var/lib/calico) -2025-11-24T09:35:59.4557031Z changed: [kubenode-renewed-asp] => (item=/var/lib/calico) -2025-11-24T09:35:59.4557824Z changed: [kubenode-teaching-gobbler] => (item=/var/lib/calico) -2025-11-24T09:35:59.4558328Z -2025-11-24T09:35:59.4558771Z TASK [kubernetes/preinstall : Create local volume provisioner directories] ***** -2025-11-24T09:35:59.5579108Z skipping: [kubenode-super-marlin] => (item=local-storage) -2025-11-24T09:35:59.5580006Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:59.5580680Z skipping: [kubenode-renewed-asp] => (item=local-storage) -2025-11-24T09:35:59.5581319Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:59.5581909Z skipping: [kubenode-teaching-gobbler] => (item=local-storage) -2025-11-24T09:35:59.5582546Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:59.5583211Z -2025-11-24T09:35:59.5583599Z TASK [kubernetes/preinstall : Create temporary resolveconf cloud init file] **** -2025-11-24T09:35:59.6114999Z skipping: [kubenode-super-marlin] -2025-11-24T09:35:59.6115588Z skipping: [kubenode-renewed-asp] -2025-11-24T09:35:59.6116125Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:35:59.6116458Z -2025-11-24T09:35:59.6116854Z TASK [kubernetes/preinstall : Add domain/search/nameservers/options to resolv.conf] *** -2025-11-24T09:36:00.1202338Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:00.1203308Z changed: [kubenode-super-marlin] -2025-11-24T09:36:00.1203999Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:00.1204320Z -2025-11-24T09:36:00.1204799Z TASK [kubernetes/preinstall : Remove search/domain/nameserver options before block] *** -2025-11-24T09:36:00.1998171Z Still deploying... -2025-11-24T09:36:01.2355795Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:36:01.2356700Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:36:01.2357501Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:36:01.2358235Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:36:01.2358994Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:36:01.2359742Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:36:01.2360534Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:36:01.2361252Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:36:01.2361963Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:36:01.2362863Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:36:01.2363631Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:36:01.2364350Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:36:01.2365110Z -2025-11-24T09:36:01.2365502Z TASK [kubernetes/preinstall : Remove search/domain/nameserver options after block] *** -2025-11-24T09:36:02.1265384Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:36:02.1266338Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:36:02.1267225Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:36:02.1268144Z changed: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:36:02.1269359Z changed: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:36:02.1270108Z changed: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:36:02.1270793Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:36:02.1271478Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:36:02.1272176Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:36:02.1273075Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:36:02.1273772Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:36:02.1274449Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:36:02.1274838Z -2025-11-24T09:36:02.1275196Z TASK [kubernetes/preinstall : Get temporary resolveconf cloud init file content] *** -2025-11-24T09:36:02.2003476Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.2004179Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.2004760Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.2005139Z -2025-11-24T09:36:02.2005551Z TASK [kubernetes/preinstall : Persist resolvconf cloud init file] ************** -2025-11-24T09:36:02.2501439Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.2502034Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.2502566Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.2503128Z -2025-11-24T09:36:02.2503486Z TASK [kubernetes/preinstall : Create systemd-resolved drop-in directory] ******* -2025-11-24T09:36:02.2975669Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.2976394Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.2977073Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.2977857Z -2025-11-24T09:36:02.2978350Z TASK [kubernetes/preinstall : Write Kubespray DNS settings to systemd-resolved] *** -2025-11-24T09:36:02.3436522Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.3437234Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.3437822Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.3438199Z -2025-11-24T09:36:02.3438650Z TASK [kubernetes/preinstall : NetworkManager | Ensure NetworkManager conf.d dir] *** -2025-11-24T09:36:02.3741851Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.4012210Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.4013216Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.4013635Z -2025-11-24T09:36:02.4014269Z TASK [kubernetes/preinstall : NetworkManager | Prevent NetworkManager from managing Calico interfaces (cali*/tunl*/vxlan.calico)] *** -2025-11-24T09:36:02.4527492Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.4528185Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.4528781Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.4529179Z -2025-11-24T09:36:02.4529825Z TASK [kubernetes/preinstall : NetworkManager | Prevent NetworkManager from managing K8S interfaces (kube-ipvs0/nodelocaldns)] *** -2025-11-24T09:36:02.5003841Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.5004855Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.5005628Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.5006142Z -2025-11-24T09:36:02.5006751Z TASK [kubernetes/preinstall : NetworkManager | Add nameservers to NM configuration] *** -2025-11-24T09:36:02.5486009Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.5487133Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.5487725Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.5488100Z -2025-11-24T09:36:02.5488571Z TASK [kubernetes/preinstall : Set default dns if remove_default_searchdomains is false] *** -2025-11-24T09:36:02.6039500Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.6040221Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.6040832Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.6041193Z -2025-11-24T09:36:02.6041647Z TASK [kubernetes/preinstall : NetworkManager | Add DNS search to NM configuration] *** -2025-11-24T09:36:02.6615561Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.6616318Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.6616928Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.6617345Z -2025-11-24T09:36:02.6623758Z TASK [kubernetes/preinstall : NetworkManager | Add DNS options to NM configuration] *** -2025-11-24T09:36:02.7159258Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.7159944Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.7160562Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.7160952Z -2025-11-24T09:36:02.7161399Z TASK [kubernetes/preinstall : Update package management cache (zypper) - SUSE] *** -2025-11-24T09:36:02.7735833Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.7736450Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.7736999Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.7737337Z -2025-11-24T09:36:02.7737707Z TASK [kubernetes/preinstall : Add Debian Backports apt repo] ******************* -2025-11-24T09:36:02.8328556Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.8329260Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.8329860Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.8330226Z -2025-11-24T09:36:02.8330747Z TASK [kubernetes/preinstall : Set libseccomp2 pin priority to apt_preferences on Debian buster] *** -2025-11-24T09:36:02.8826849Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:02.8827458Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:02.8828008Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:02.8828340Z -2025-11-24T09:36:02.8828715Z TASK [kubernetes/preinstall : Update package management cache (APT)] *********** -2025-11-24T09:36:03.4827163Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:03.4827802Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:03.4828352Z ok: [kubenode-super-marlin] -2025-11-24T09:36:03.4828972Z -2025-11-24T09:36:03.4829408Z TASK [kubernetes/preinstall : Remove legacy docker repo file] ****************** -2025-11-24T09:36:03.5266847Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:03.5554402Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:03.5554995Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:03.5555316Z -2025-11-24T09:36:03.5555654Z TASK [kubernetes/preinstall : Install epel-release on RHEL derivatives] ******** -2025-11-24T09:36:03.6186972Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:03.6187599Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:03.6188104Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:03.6188410Z -2025-11-24T09:36:03.6188747Z TASK [kubernetes/preinstall : Install packages requirements] ******************* -2025-11-24T09:36:08.7159599Z changed: [kubenode-super-marlin] -2025-11-24T09:36:08.7160306Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:08.7160905Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:08.7161229Z -2025-11-24T09:36:08.7161710Z TASK [kubernetes/preinstall : Confirm selinux deployed] ************************ -2025-11-24T09:36:08.7583949Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:08.7886998Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:08.7887719Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:08.7888062Z -2025-11-24T09:36:08.7888426Z TASK [kubernetes/preinstall : Set selinux policy] ****************************** -2025-11-24T09:36:08.8502979Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:08.8503704Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:08.8504228Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:08.8505031Z -2025-11-24T09:36:08.8505388Z TASK [kubernetes/preinstall : Disable IPv6 DNS lookup] ************************* -2025-11-24T09:36:08.9094850Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:08.9095559Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:08.9096054Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:08.9096357Z -2025-11-24T09:36:08.9096718Z TASK [kubernetes/preinstall : Clean previously used sysctl file locations] ***** -2025-11-24T09:36:09.4043260Z ok: [kubenode-super-marlin] => (item=ipv4-ip_forward.conf) -2025-11-24T09:36:09.4044483Z ok: [kubenode-teaching-gobbler] => (item=ipv4-ip_forward.conf) -2025-11-24T09:36:09.4045171Z ok: [kubenode-renewed-asp] => (item=ipv4-ip_forward.conf) -2025-11-24T09:36:09.4045887Z ok: [kubenode-super-marlin] => (item=bridge-nf-call.conf) -2025-11-24T09:36:09.4046565Z ok: [kubenode-teaching-gobbler] => (item=bridge-nf-call.conf) -2025-11-24T09:36:09.4047234Z ok: [kubenode-renewed-asp] => (item=bridge-nf-call.conf) -2025-11-24T09:36:09.4047624Z -2025-11-24T09:36:09.4048007Z TASK [kubernetes/preinstall : Stat sysctl file configuration] ****************** -2025-11-24T09:36:09.6810009Z ok: [kubenode-super-marlin] -2025-11-24T09:36:09.6810703Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:09.6811218Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:09.6811507Z -2025-11-24T09:36:09.6812016Z TASK [kubernetes/preinstall : Change sysctl file path to link source if linked] *** -2025-11-24T09:36:09.8020537Z ok: [kubenode-super-marlin] -2025-11-24T09:36:09.8021253Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:09.8021782Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:09.8022078Z -2025-11-24T09:36:09.8022459Z TASK [kubernetes/preinstall : Make sure sysctl file path folder exists] ******** -2025-11-24T09:36:10.1002009Z ok: [kubenode-super-marlin] -2025-11-24T09:36:10.1003152Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:10.1003925Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:10.1004259Z -2025-11-24T09:36:10.1004642Z TASK [kubernetes/preinstall : Enable ip forwarding] **************************** -2025-11-24T09:36:10.2010073Z Still deploying... -2025-11-24T09:36:10.5811034Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:10.5811821Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:10.5812380Z changed: [kubenode-super-marlin] -2025-11-24T09:36:10.5813010Z -2025-11-24T09:36:10.5813415Z TASK [kubernetes/preinstall : Enable ipv6 forwarding] ************************** -2025-11-24T09:36:10.6586223Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:10.6586947Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:10.6587457Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:10.6587758Z -2025-11-24T09:36:10.6588092Z TASK [kubernetes/preinstall : Check if we need to set fs.may_detach_mounts] **** -2025-11-24T09:36:10.9228470Z ok: [kubenode-super-marlin] -2025-11-24T09:36:10.9229137Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:10.9229619Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:10.9229897Z -2025-11-24T09:36:10.9230268Z TASK [kubernetes/preinstall : Set fs.may_detach_mounts if needed] ************** -2025-11-24T09:36:11.0076014Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:11.0076755Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:11.0077270Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:11.0077591Z -2025-11-24T09:36:11.0077944Z TASK [kubernetes/preinstall : Ensure kubelet expected parameters are set] ****** -2025-11-24T09:36:13.1613609Z changed: [kubenode-renewed-asp] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) -2025-11-24T09:36:13.1614923Z changed: [kubenode-super-marlin] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) -2025-11-24T09:36:13.1616089Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) -2025-11-24T09:36:13.1617078Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) -2025-11-24T09:36:13.1618029Z changed: [kubenode-super-marlin] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) -2025-11-24T09:36:13.1619366Z changed: [kubenode-renewed-asp] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) -2025-11-24T09:36:13.1620276Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kernel.panic', 'value': 10}) -2025-11-24T09:36:13.1621129Z changed: [kubenode-super-marlin] => (item={'name': 'kernel.panic', 'value': 10}) -2025-11-24T09:36:13.1621965Z changed: [kubenode-renewed-asp] => (item={'name': 'kernel.panic', 'value': 10}) -2025-11-24T09:36:13.1623046Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) -2025-11-24T09:36:13.1624085Z changed: [kubenode-renewed-asp] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) -2025-11-24T09:36:13.1624971Z changed: [kubenode-teaching-gobbler] => (item={'name': 'vm.overcommit_memory', 'value': 1}) -2025-11-24T09:36:13.1625856Z changed: [kubenode-renewed-asp] => (item={'name': 'vm.overcommit_memory', 'value': 1}) -2025-11-24T09:36:13.1626725Z changed: [kubenode-teaching-gobbler] => (item={'name': 'vm.panic_on_oom', 'value': 0}) -2025-11-24T09:36:13.1627498Z changed: [kubenode-renewed-asp] => (item={'name': 'vm.panic_on_oom', 'value': 0}) -2025-11-24T09:36:13.1628248Z changed: [kubenode-super-marlin] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) -2025-11-24T09:36:13.1628997Z changed: [kubenode-super-marlin] => (item={'name': 'vm.overcommit_memory', 'value': 1}) -2025-11-24T09:36:13.1629733Z changed: [kubenode-super-marlin] => (item={'name': 'vm.panic_on_oom', 'value': 0}) -2025-11-24T09:36:13.1630152Z -2025-11-24T09:36:13.1630460Z TASK [kubernetes/preinstall : Check dummy module] ****************************** -2025-11-24T09:36:13.6710000Z changed: [kubenode-super-marlin] -2025-11-24T09:36:13.7190732Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:13.7191599Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:13.7191985Z -2025-11-24T09:36:13.7192409Z TASK [kubernetes/preinstall : Set additional sysctl variables] ***************** -2025-11-24T09:36:13.7193491Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:13.7194106Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:13.7194689Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:13.7195056Z -2025-11-24T09:36:13.7195448Z TASK [kubernetes/preinstall : Disable fapolicyd service] *********************** -2025-11-24T09:36:14.5781727Z ok: [kubenode-super-marlin] -2025-11-24T09:36:14.5782483Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:14.5783790Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:14.5784116Z -2025-11-24T09:36:14.5784528Z TASK [kubernetes/preinstall : Ensure NTP package] ****************************** -2025-11-24T09:36:14.6329584Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:14.6330384Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:14.6330893Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:14.6331208Z -2025-11-24T09:36:14.6331556Z TASK [kubernetes/preinstall : Disable systemd-timesyncd] *********************** -2025-11-24T09:36:14.6646542Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:14.7004112Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:14.7004875Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:14.7005287Z -2025-11-24T09:36:14.7005724Z TASK [kubernetes/preinstall : Set fact NTP settings] *************************** -2025-11-24T09:36:14.7514127Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:14.7514878Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:14.7515442Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:14.7515828Z -2025-11-24T09:36:14.7516209Z TASK [kubernetes/preinstall : Generate NTP configuration file.] **************** -2025-11-24T09:36:14.8113419Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:14.8114346Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:14.8114951Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:14.8115323Z -2025-11-24T09:36:14.8115742Z TASK [kubernetes/preinstall : Stop the NTP Deamon For Sync Immediately] ******** -2025-11-24T09:36:14.8621220Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:14.8621949Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:14.8623129Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:14.8623496Z -2025-11-24T09:36:14.8623867Z TASK [kubernetes/preinstall : Force Sync NTP Immediately] ********************** -2025-11-24T09:36:14.9178055Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:14.9178816Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:14.9179433Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:14.9179836Z -2025-11-24T09:36:14.9180249Z TASK [kubernetes/preinstall : Ensure NTP service is started and enabled] ******* -2025-11-24T09:36:14.9677260Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:14.9678433Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:14.9679013Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:14.9679386Z -2025-11-24T09:36:14.9679815Z TASK [kubernetes/preinstall : Ensure tzdata package] *************************** -2025-11-24T09:36:14.9979129Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:15.0302394Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:15.0303533Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:15.0303945Z -2025-11-24T09:36:15.0304343Z TASK [kubernetes/preinstall : Set timezone] ************************************ -2025-11-24T09:36:15.0637646Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:15.0907188Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:15.0907931Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:15.0908286Z -2025-11-24T09:36:15.0908656Z TASK [kubernetes/preinstall : Hosts | create hosts list from inventory] ******** -2025-11-24T09:36:15.3522545Z ok: [kubenode-super-marlin -> localhost] -2025-11-24T09:36:15.3523358Z -2025-11-24T09:36:15.3523754Z TASK [kubernetes/preinstall : Hosts | populate inventory into hosts file] ****** -2025-11-24T09:36:15.7475273Z changed: [kubenode-super-marlin] -2025-11-24T09:36:15.7475999Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:15.7476535Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:15.7476866Z -2025-11-24T09:36:15.7477327Z TASK [kubernetes/preinstall : Hosts | populate kubernetes loadbalancer address into hosts file] *** -2025-11-24T09:36:15.8199162Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:15.8199878Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:15.8200418Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:15.8200750Z -2025-11-24T09:36:15.8201119Z TASK [kubernetes/preinstall : Hosts | Retrieve hosts file content] ************* -2025-11-24T09:36:16.1922873Z ok: [kubenode-super-marlin] -2025-11-24T09:36:16.1923622Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:16.1924140Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:16.1924426Z -2025-11-24T09:36:16.1924901Z TASK [kubernetes/preinstall : Hosts | Extract existing entries for localhost from hosts file] *** -2025-11-24T09:36:16.4488603Z skipping: [kubenode-super-marlin] => (item=# Your system has configured 'manage_etc_hosts' as True.) -2025-11-24T09:36:16.4489950Z skipping: [kubenode-super-marlin] => (item=# As a result, if you wish for changes to this file to persist) -2025-11-24T09:36:16.4491002Z skipping: [kubenode-super-marlin] => (item=# then you will need to either) -2025-11-24T09:36:16.4492062Z skipping: [kubenode-super-marlin] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) -2025-11-24T09:36:16.4493554Z skipping: [kubenode-super-marlin] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) -2025-11-24T09:36:16.4494594Z skipping: [kubenode-renewed-asp] => (item=# Your system has configured 'manage_etc_hosts' as True.) -2025-11-24T09:36:16.4495627Z skipping: [kubenode-super-marlin] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) -2025-11-24T09:36:16.4496677Z skipping: [kubenode-renewed-asp] => (item=# As a result, if you wish for changes to this file to persist) -2025-11-24T09:36:16.4497754Z skipping: [kubenode-teaching-gobbler] => (item=# Your system has configured 'manage_etc_hosts' as True.) -2025-11-24T09:36:16.4498488Z skipping: [kubenode-super-marlin] => (item=#) -2025-11-24T09:36:16.4499094Z skipping: [kubenode-renewed-asp] => (item=# then you will need to either) -2025-11-24T09:36:16.4500295Z skipping: [kubenode-teaching-gobbler] => (item=# As a result, if you wish for changes to this file to persist) -2025-11-24T09:36:16.4501199Z skipping: [kubenode-super-marlin] => (item=127.0.1.1 kubenode-super-marlin kubenode-super-marlin) -2025-11-24T09:36:16.4502122Z skipping: [kubenode-renewed-asp] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) -2025-11-24T09:36:16.4503087Z skipping: [kubenode-teaching-gobbler] => (item=# then you will need to either) -2025-11-24T09:36:16.4503890Z skipping: [kubenode-renewed-asp] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) -2025-11-24T09:36:16.4504937Z skipping: [kubenode-teaching-gobbler] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) -2025-11-24T09:36:16.4505880Z skipping: [kubenode-teaching-gobbler] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) -2025-11-24T09:36:16.4506606Z ok: [kubenode-super-marlin] => (item=127.0.0.1 localhost) -2025-11-24T09:36:16.4507332Z skipping: [kubenode-renewed-asp] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) -2025-11-24T09:36:16.4508230Z skipping: [kubenode-teaching-gobbler] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) -2025-11-24T09:36:16.4508931Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:36:16.4509450Z skipping: [kubenode-renewed-asp] => (item=#) -2025-11-24T09:36:16.4510134Z skipping: [kubenode-super-marlin] => (item=# The following lines are desirable for IPv6 capable hosts) -2025-11-24T09:36:16.4510831Z skipping: [kubenode-teaching-gobbler] => (item=#) -2025-11-24T09:36:16.4511520Z skipping: [kubenode-renewed-asp] => (item=127.0.1.1 kubenode-renewed-asp kubenode-renewed-asp) -2025-11-24T09:36:16.4512384Z skipping: [kubenode-teaching-gobbler] => (item=127.0.1.1 kubenode-teaching-gobbler kubenode-teaching-gobbler) -2025-11-24T09:36:16.4513319Z ok: [kubenode-super-marlin] => (item=::1 localhost ip6-localhost ip6-loopback) -2025-11-24T09:36:16.4514008Z skipping: [kubenode-super-marlin] => (item=ff02::1 ip6-allnodes) -2025-11-24T09:36:16.4514667Z skipping: [kubenode-super-marlin] => (item=ff02::2 ip6-allrouters) -2025-11-24T09:36:16.4515248Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:36:16.4515768Z ok: [kubenode-renewed-asp] => (item=127.0.0.1 localhost) -2025-11-24T09:36:16.4516514Z skipping: [kubenode-super-marlin] => (item=# Ansible inventory hosts BEGIN) -2025-11-24T09:36:16.4517121Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:36:16.4517837Z skipping: [kubenode-super-marlin] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) -2025-11-24T09:36:16.4518734Z skipping: [kubenode-renewed-asp] => (item=# The following lines are desirable for IPv6 capable hosts) -2025-11-24T09:36:16.4519609Z skipping: [kubenode-super-marlin] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) -2025-11-24T09:36:16.4520362Z ok: [kubenode-teaching-gobbler] => (item=127.0.0.1 localhost) -2025-11-24T09:36:16.4521176Z skipping: [kubenode-super-marlin] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) -2025-11-24T09:36:16.4522027Z skipping: [kubenode-super-marlin] => (item=# Ansible inventory hosts END) -2025-11-24T09:36:16.4522802Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:36:16.4523427Z ok: [kubenode-renewed-asp] => (item=::1 localhost ip6-localhost ip6-loopback) -2025-11-24T09:36:16.4524211Z skipping: [kubenode-teaching-gobbler] => (item=# The following lines are desirable for IPv6 capable hosts) -2025-11-24T09:36:16.4524971Z skipping: [kubenode-renewed-asp] => (item=ff02::1 ip6-allnodes) -2025-11-24T09:36:16.4525607Z skipping: [kubenode-renewed-asp] => (item=ff02::2 ip6-allrouters) -2025-11-24T09:36:16.4526184Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:36:16.4526796Z ok: [kubenode-teaching-gobbler] => (item=::1 localhost ip6-localhost ip6-loopback) -2025-11-24T09:36:16.4527659Z skipping: [kubenode-renewed-asp] => (item=# Ansible inventory hosts BEGIN) -2025-11-24T09:36:16.4528468Z skipping: [kubenode-renewed-asp] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) -2025-11-24T09:36:16.4529266Z skipping: [kubenode-teaching-gobbler] => (item=ff02::1 ip6-allnodes) -2025-11-24T09:36:16.4530049Z skipping: [kubenode-renewed-asp] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) -2025-11-24T09:36:16.4530837Z skipping: [kubenode-teaching-gobbler] => (item=ff02::2 ip6-allrouters) -2025-11-24T09:36:16.4531671Z skipping: [kubenode-renewed-asp] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) -2025-11-24T09:36:16.4532510Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:36:16.4533294Z skipping: [kubenode-renewed-asp] => (item=# Ansible inventory hosts END) -2025-11-24T09:36:16.4533996Z skipping: [kubenode-teaching-gobbler] => (item=# Ansible inventory hosts BEGIN) -2025-11-24T09:36:16.4534853Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) -2025-11-24T09:36:16.4535802Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) -2025-11-24T09:36:16.4536783Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) -2025-11-24T09:36:16.4537651Z skipping: [kubenode-teaching-gobbler] => (item=# Ansible inventory hosts END) -2025-11-24T09:36:16.4538069Z -2025-11-24T09:36:16.4538465Z TASK [kubernetes/preinstall : Hosts | Update target hosts file entries dict with required entries] *** -2025-11-24T09:36:16.5633293Z ok: [kubenode-super-marlin] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:36:16.5634971Z ok: [kubenode-super-marlin] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:36:16.5636502Z ok: [kubenode-renewed-asp] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:36:16.5637772Z ok: [kubenode-teaching-gobbler] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:36:16.5639270Z ok: [kubenode-renewed-asp] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:36:16.5641090Z ok: [kubenode-teaching-gobbler] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:36:16.5641862Z -2025-11-24T09:36:16.5642228Z TASK [kubernetes/preinstall : Hosts | Update (if necessary) hosts file] ******** -2025-11-24T09:36:17.1272251Z changed: [kubenode-super-marlin] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) -2025-11-24T09:36:17.1273690Z changed: [kubenode-teaching-gobbler] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) -2025-11-24T09:36:17.1274714Z changed: [kubenode-renewed-asp] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) -2025-11-24T09:36:17.1275850Z changed: [kubenode-teaching-gobbler] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) -2025-11-24T09:36:17.1277043Z changed: [kubenode-super-marlin] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) -2025-11-24T09:36:17.1278200Z changed: [kubenode-renewed-asp] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) -2025-11-24T09:36:17.1278852Z -2025-11-24T09:36:17.1279213Z TASK [kubernetes/preinstall : Update facts] ************************************ -2025-11-24T09:36:17.5920290Z ok: [kubenode-super-marlin] -2025-11-24T09:36:17.5921146Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:17.5922135Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:17.5922463Z -2025-11-24T09:36:17.5923273Z TASK [kubernetes/preinstall : Configure dhclient to supersede search/domain/nameservers] *** -2025-11-24T09:36:17.8880289Z changed: [kubenode-super-marlin] -2025-11-24T09:36:17.8881030Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:17.8881594Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:17.8881911Z -2025-11-24T09:36:17.8882294Z TASK [kubernetes/preinstall : Configure dhclient hooks for resolv.conf (non-RH)] *** -2025-11-24T09:36:18.5451241Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:18.5452355Z changed: [kubenode-super-marlin] -2025-11-24T09:36:18.5453199Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:18.5453518Z -2025-11-24T09:36:18.5453939Z TASK [kubernetes/preinstall : Configure dhclient hooks for resolv.conf (RH-only)] *** -2025-11-24T09:36:18.6256321Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:18.6257038Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:18.6257582Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:18.6257905Z -2025-11-24T09:36:18.6258313Z TASK [kubernetes/preinstall : Remove kubespray specific config from dhclient config] *** -2025-11-24T09:36:18.6868078Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:18.6868810Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:18.6869320Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:18.6869666Z -2025-11-24T09:36:18.6870048Z TASK [kubernetes/preinstall : Remove kubespray specific dhclient hook] ********* -2025-11-24T09:36:18.7181666Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:18.7827178Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:18.7827911Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:18.7828241Z -2025-11-24T09:36:18.7828583Z TASK [kubernetes/preinstall : Flush handlers] ********************************** -2025-11-24T09:36:18.7829034Z -2025-11-24T09:36:18.7829359Z TASK [kubernetes/preinstall : Flush handlers] ********************************** -2025-11-24T09:36:18.7829795Z -2025-11-24T09:36:18.7830142Z TASK [kubernetes/preinstall : Flush handlers] ********************************** -2025-11-24T09:36:18.7830571Z -2025-11-24T09:36:18.7830916Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | reload kubelet] ********** -2025-11-24T09:36:18.8480636Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:18.8481474Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:18.8482414Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:18.8483041Z -2025-11-24T09:36:18.8483434Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | kube-apiserver configured] *** -2025-11-24T09:36:19.0992876Z ok: [kubenode-super-marlin] -2025-11-24T09:36:19.0993555Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:19.0994032Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:19.0994284Z -2025-11-24T09:36:19.0994669Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | kube-controller configured] *** -2025-11-24T09:36:19.4041631Z ok: [kubenode-super-marlin] -2025-11-24T09:36:19.4042283Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:19.4043024Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:19.4043313Z -2025-11-24T09:36:19.4043741Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | restart kube-controller-manager docker] *** -2025-11-24T09:36:19.4740132Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:19.4740927Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:19.4741502Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:19.4741882Z -2025-11-24T09:36:19.4742473Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | restart kube-controller-manager crio/containerd] *** -2025-11-24T09:36:19.5423476Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:19.5424236Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:19.5424778Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:19.5425107Z -2025-11-24T09:36:19.5425545Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | restart kube-apiserver docker] *** -2025-11-24T09:36:19.5839244Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:19.6106952Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:19.6108101Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:19.6108452Z -2025-11-24T09:36:19.6108904Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | restart kube-apiserver crio/containerd] *** -2025-11-24T09:36:19.6711544Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:19.6712255Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:19.6713032Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:19.6713377Z -2025-11-24T09:36:19.6713829Z RUNNING HANDLER [kubernetes/preinstall : Preinstall | wait for the apiserver to be running] *** -2025-11-24T09:36:19.7058077Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:19.7255249Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:19.7256034Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:19.7256416Z -2025-11-24T09:36:19.7256819Z TASK [kubernetes/preinstall : Check if we are running inside a Azure VM] ******* -2025-11-24T09:36:19.9906218Z ok: [kubenode-super-marlin] -2025-11-24T09:36:19.9907050Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:19.9907595Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:19.9907893Z -2025-11-24T09:36:19.9908249Z TASK [kubernetes/preinstall : Install growpart] ******************************** -2025-11-24T09:36:20.0711292Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:20.0711960Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:20.0712497Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:20.0713190Z -2025-11-24T09:36:20.0713561Z TASK [kubernetes/preinstall : Gather mounts facts] ***************************** -2025-11-24T09:36:20.1116481Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:20.1415455Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:20.1416394Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:20.1416903Z -2025-11-24T09:36:20.1417395Z TASK [kubernetes/preinstall : Search root filesystem device] ******************* -2025-11-24T09:36:20.1982048Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:20.1983171Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:20.1983810Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:20.1984191Z -2025-11-24T09:36:20.1984600Z TASK [kubernetes/preinstall : Check if growpart needs to be run] *************** -2025-11-24T09:36:20.2020112Z Still deploying... -2025-11-24T09:36:20.2598877Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:20.2599696Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:20.2600636Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:20.2601021Z -2025-11-24T09:36:20.2601423Z TASK [kubernetes/preinstall : Check fs type] *********************************** -2025-11-24T09:36:20.3128982Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:20.3129796Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:20.3130396Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:20.3130768Z -2025-11-24T09:36:20.3131160Z TASK [kubernetes/preinstall : Run growpart] ************************************ -2025-11-24T09:36:20.3377372Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:20.3639536Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:20.3640268Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:20.3640623Z -2025-11-24T09:36:20.3640982Z TASK [kubernetes/preinstall : Run xfs_growfs] ********************************** -2025-11-24T09:36:20.3945435Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:20.4170816Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:20.4171515Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:20.4171854Z -2025-11-24T09:36:20.4172135Z TASK [Run calico checks] ******************************************************* -2025-11-24T09:36:20.7521121Z -2025-11-24T09:36:20.7522231Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (ipip)] *** -2025-11-24T09:36:20.8453658Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { -2025-11-24T09:36:20.8454356Z "changed": false, -2025-11-24T09:36:20.8454798Z "msg": "All assertions passed" -2025-11-24T09:36:20.8455251Z } -2025-11-24T09:36:20.8455447Z -2025-11-24T09:36:20.8456269Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (ipip_mode)] *** -2025-11-24T09:36:20.9176762Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { -2025-11-24T09:36:20.9177537Z "changed": false, -2025-11-24T09:36:20.9177995Z "msg": "All assertions passed" -2025-11-24T09:36:20.9178464Z } -2025-11-24T09:36:20.9178669Z -2025-11-24T09:36:20.9179177Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (calcio_ipam_autoallocateblocks)] *** -2025-11-24T09:36:20.9930384Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { -2025-11-24T09:36:20.9931482Z "changed": false, -2025-11-24T09:36:20.9931954Z "msg": "All assertions passed" -2025-11-24T09:36:20.9932489Z } -2025-11-24T09:36:20.9932980Z -2025-11-24T09:36:20.9933461Z TASK [network_plugin/calico : Stop if incompatible network plugin and cloudprovider] *** -2025-11-24T09:36:21.0221188Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:21.0221691Z -2025-11-24T09:36:21.0222068Z TASK [network_plugin/calico : Stop if supported Calico versions] *************** -2025-11-24T09:36:21.0903492Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { -2025-11-24T09:36:21.0904332Z "changed": false, -2025-11-24T09:36:21.0904848Z "msg": "All assertions passed" -2025-11-24T09:36:21.0905386Z } -2025-11-24T09:36:21.0905613Z -2025-11-24T09:36:21.0906003Z TASK [network_plugin/calico : Check if calicoctl.sh exists] ******************** -2025-11-24T09:36:21.3391066Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] -2025-11-24T09:36:21.3391618Z -2025-11-24T09:36:21.3391996Z TASK [network_plugin/calico : Check if calico ready] *************************** -2025-11-24T09:36:21.3896071Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:21.3896576Z -2025-11-24T09:36:21.3896912Z TASK [network_plugin/calico : Get current calico version] ********************** -2025-11-24T09:36:21.4345597Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:21.4346098Z -2025-11-24T09:36:21.4346569Z TASK [network_plugin/calico : Assert that current calico version is enough for upgrade] *** -2025-11-24T09:36:21.4780835Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:21.4781347Z -2025-11-24T09:36:21.4781847Z TASK [network_plugin/calico : Check that cluster_id is set and a valid IPv4 address if calico_rr enabled] *** -2025-11-24T09:36:21.5604801Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:21.5605600Z -2025-11-24T09:36:21.5605976Z TASK [network_plugin/calico : Check that calico_rr nodes are in k8s_cluster group] *** -2025-11-24T09:36:21.5869916Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:21.5870435Z -2025-11-24T09:36:21.5870792Z TASK [network_plugin/calico : Check vars defined correctly] ******************** -2025-11-24T09:36:21.6668293Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { -2025-11-24T09:36:21.6669007Z "changed": false, -2025-11-24T09:36:21.6669451Z "msg": "All assertions passed" -2025-11-24T09:36:21.6669906Z } -2025-11-24T09:36:21.6670099Z -2025-11-24T09:36:21.6670458Z TASK [network_plugin/calico : Check calico network backend defined correctly] *** -2025-11-24T09:36:21.7310104Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { -2025-11-24T09:36:21.7310995Z "changed": false, -2025-11-24T09:36:21.7311487Z "msg": "All assertions passed" -2025-11-24T09:36:21.7311986Z } -2025-11-24T09:36:21.7312206Z -2025-11-24T09:36:21.7312572Z TASK [network_plugin/calico : Check ipip and vxlan mode defined correctly] ***** -2025-11-24T09:36:21.7933685Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { -2025-11-24T09:36:21.7934448Z "changed": false, -2025-11-24T09:36:21.7934923Z "msg": "All assertions passed" -2025-11-24T09:36:21.7935391Z } -2025-11-24T09:36:21.7935593Z -2025-11-24T09:36:21.7935964Z TASK [network_plugin/calico : Check ipip and vxlan mode if simultaneously enabled] *** -2025-11-24T09:36:21.8259307Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:21.8259801Z -2025-11-24T09:36:21.8260209Z TASK [network_plugin/calico : Check ipip and vxlan mode if simultaneously enabled] *** -2025-11-24T09:36:21.8953257Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => { -2025-11-24T09:36:21.8954081Z "changed": false, -2025-11-24T09:36:21.8954593Z "msg": "All assertions passed" -2025-11-24T09:36:21.8955127Z } -2025-11-24T09:36:21.8955355Z -2025-11-24T09:36:21.8955746Z TASK [network_plugin/calico : Get Calico default-pool configuration] *********** -2025-11-24T09:36:22.1503322Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] -2025-11-24T09:36:22.1503944Z -2025-11-24T09:36:22.1504335Z TASK [network_plugin/calico : Set calico_pool_conf] **************************** -2025-11-24T09:36:22.1935329Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:22.1935945Z -2025-11-24T09:36:22.1936448Z TASK [network_plugin/calico : Check if inventory match current cluster configuration] *** -2025-11-24T09:36:22.2510408Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:22.2510948Z -2025-11-24T09:36:22.2511461Z TASK [network_plugin/calico : Check kdd calico_datastore if calico_apiserver_enabled] *** -2025-11-24T09:36:22.2877546Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:22.2878073Z -2025-11-24T09:36:22.2878454Z TASK [network_plugin/calico : Check kdd calico_datastore if typha_enabled] ***** -2025-11-24T09:36:22.3241101Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:22.3241657Z -2025-11-24T09:36:22.3242209Z TASK [network_plugin/calico : Check ipip mode is Never for calico ipv6] ******** -2025-11-24T09:36:22.3885351Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:22.3885841Z -2025-11-24T09:36:22.3886350Z TASK [container-engine/validate-container-engine : Validate-container-engine | check if fedora coreos] *** -2025-11-24T09:36:22.6557067Z ok: [kubenode-super-marlin] -2025-11-24T09:36:22.6557733Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:22.6558240Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:22.6558533Z -2025-11-24T09:36:22.6559030Z TASK [container-engine/validate-container-engine : Validate-container-engine | set is_ostree] *** -2025-11-24T09:36:22.7803163Z ok: [kubenode-super-marlin] -2025-11-24T09:36:22.7803905Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:22.7804414Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:22.7804708Z -2025-11-24T09:36:22.7805173Z TASK [container-engine/validate-container-engine : Ensure kubelet systemd unit exists] *** -2025-11-24T09:36:23.0725413Z ok: [kubenode-super-marlin] -2025-11-24T09:36:23.0726392Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:23.0726851Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:23.0727118Z -2025-11-24T09:36:23.0727478Z TASK [container-engine/validate-container-engine : Populate service facts] ***** -2025-11-24T09:36:26.5926729Z ok: [kubenode-super-marlin] -2025-11-24T09:36:26.5927381Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:26.5927858Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:26.5928123Z -2025-11-24T09:36:26.5928547Z TASK [container-engine/validate-container-engine : Check if containerd is installed] *** -2025-11-24T09:36:27.1049933Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:27.1050577Z ok: [kubenode-super-marlin] -2025-11-24T09:36:27.1051072Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:27.1051344Z -2025-11-24T09:36:27.1051731Z TASK [container-engine/validate-container-engine : Check if docker is installed] *** -2025-11-24T09:36:27.5394649Z ok: [kubenode-super-marlin] -2025-11-24T09:36:27.5395328Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:27.5395834Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:27.5396159Z -2025-11-24T09:36:27.5396561Z TASK [container-engine/validate-container-engine : Check if crio is installed] *** -2025-11-24T09:36:27.8175342Z ok: [kubenode-super-marlin] -2025-11-24T09:36:27.8176274Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:27.8176843Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:27.8177176Z -2025-11-24T09:36:27.8177510Z TASK [Drain node] ************************************************************** -2025-11-24T09:36:27.8710373Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:27.9134980Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:27.9135709Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:27.9136486Z -2025-11-24T09:36:27.9136888Z TASK [container-engine/validate-container-engine : Stop kubelet] *************** -2025-11-24T09:36:27.9601264Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:27.9905694Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:27.9906535Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:27.9906885Z -2025-11-24T09:36:27.9907305Z TASK [container-engine/containerd-common : Containerd-common | check if fedora coreos] *** -2025-11-24T09:36:28.0319086Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.0698542Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.0699294Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.0699614Z -2025-11-24T09:36:28.0699963Z TASK [container-engine/containerd-common : Containerd-common | set is_ostree] *** -2025-11-24T09:36:28.1463717Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.1464423Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.1464908Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.1465232Z -2025-11-24T09:36:28.1465637Z TASK [container-engine/containerd-common : Containerd-common | gather os specific variables] *** -2025-11-24T09:36:28.3473611Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) -2025-11-24T09:36:28.3474868Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.3476008Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) -2025-11-24T09:36:28.3477122Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.3478215Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) -2025-11-24T09:36:28.3479327Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.3479693Z -2025-11-24T09:36:28.3480082Z TASK [container-engine/runc : Runc | check if fedora coreos] ******************* -2025-11-24T09:36:28.3887608Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.4256860Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.4257611Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.4257940Z -2025-11-24T09:36:28.4258280Z TASK [container-engine/runc : Runc | set is_ostree] **************************** -2025-11-24T09:36:28.4949989Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.4950943Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.4951587Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.4952005Z -2025-11-24T09:36:28.4952494Z TASK [container-engine/runc : Runc | Uninstall runc package managed by package manager] *** -2025-11-24T09:36:28.5673763Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.5674465Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.5674976Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.5675286Z -2025-11-24T09:36:28.5675620Z TASK [container-engine/runc : Runc | Download runc binary] ********************* -2025-11-24T09:36:28.6398475Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.6399401Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.6399961Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.6400300Z -2025-11-24T09:36:28.6401233Z TASK [container-engine/runc : Copy runc binary from download dir] ************** -2025-11-24T09:36:28.7230458Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.7231080Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.7231617Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.7231957Z -2025-11-24T09:36:28.7232324Z TASK [container-engine/runc : Runc | Remove orphaned binary] ******************* -2025-11-24T09:36:28.8314651Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.8315247Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.8315754Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.8316069Z -2025-11-24T09:36:28.8316407Z TASK [container-engine/crictl : Install crictl] ******************************** -2025-11-24T09:36:28.9268163Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:28.9268802Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:28.9269342Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:28.9269675Z -2025-11-24T09:36:28.9270039Z TASK [container-engine/nerdctl : Nerdctl | Download nerdctl] ******************* -2025-11-24T09:36:29.0017175Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.0017800Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.0018311Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.0018622Z -2025-11-24T09:36:29.0018999Z TASK [container-engine/nerdctl : Nerdctl | Copy nerdctl binary from download dir] *** -2025-11-24T09:36:29.0423805Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.0726804Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.0727434Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.0727781Z -2025-11-24T09:36:29.0728164Z TASK [container-engine/nerdctl : Nerdctl | Create configuration dir] *********** -2025-11-24T09:36:29.1371727Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.1372343Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.1373043Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.1373354Z -2025-11-24T09:36:29.1373695Z TASK [container-engine/nerdctl : Nerdctl | Install nerdctl configuration] ****** -2025-11-24T09:36:29.1759747Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.2417148Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.2417815Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.2418202Z -2025-11-24T09:36:29.2418736Z TASK [container-engine/containerd : Containerd | Remove containerd repository for RedHat os family] *** -2025-11-24T09:36:29.2814688Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.3093528Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.3094123Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.3094448Z -2025-11-24T09:36:29.3095435Z TASK [container-engine/containerd : Containerd | Remove containerd repository for Debian os family] *** -2025-11-24T09:36:29.3846182Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:36:29.3846932Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.3847562Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:36:29.3848186Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.3848796Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:36:29.3849435Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.3850148Z -2025-11-24T09:36:29.3850576Z TASK [container-engine/containerd : Containerd | Stop containerd service] ****** -2025-11-24T09:36:29.4539754Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.4540364Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.4540879Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.4541194Z -2025-11-24T09:36:29.4541554Z TASK [container-engine/containerd : Containerd | Remove configuration files] *** -2025-11-24T09:36:29.4936439Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service) -2025-11-24T09:36:29.4937350Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:36:29.4938070Z skipping: [kubenode-super-marlin] => (item=/etc/containerd) -2025-11-24T09:36:29.7135340Z skipping: [kubenode-super-marlin] => (item=/var/lib/containerd) -2025-11-24T09:36:29.7136113Z skipping: [kubenode-super-marlin] => (item=/run/containerd) -2025-11-24T09:36:29.7136866Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service) -2025-11-24T09:36:29.7137729Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:36:29.7138439Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.7139003Z skipping: [kubenode-renewed-asp] => (item=/etc/containerd) -2025-11-24T09:36:29.7139769Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service) -2025-11-24T09:36:29.7140640Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:36:29.7141767Z skipping: [kubenode-renewed-asp] => (item=/var/lib/containerd) -2025-11-24T09:36:29.7142458Z skipping: [kubenode-teaching-gobbler] => (item=/etc/containerd) -2025-11-24T09:36:29.7143359Z skipping: [kubenode-renewed-asp] => (item=/run/containerd) -2025-11-24T09:36:29.7143942Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.7144527Z skipping: [kubenode-teaching-gobbler] => (item=/var/lib/containerd) -2025-11-24T09:36:29.7145223Z skipping: [kubenode-teaching-gobbler] => (item=/run/containerd) -2025-11-24T09:36:29.7145819Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.7146127Z -2025-11-24T09:36:29.7146525Z TASK [Drain node] ************************************************************** -2025-11-24T09:36:29.7499848Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.7815367Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.7816037Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.7816422Z -2025-11-24T09:36:29.7816850Z TASK [container-engine/validate-container-engine : Stop kubelet] *************** -2025-11-24T09:36:29.8597282Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.8597979Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.8598591Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.8598972Z -2025-11-24T09:36:29.8599467Z TASK [container-engine/containerd-common : Containerd-common | check if fedora coreos] *** -2025-11-24T09:36:29.9024322Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:29.9382400Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:29.9383381Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:29.9383790Z -2025-11-24T09:36:29.9384244Z TASK [container-engine/containerd-common : Containerd-common | set is_ostree] *** -2025-11-24T09:36:29.9917356Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.0127013Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.0127676Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.0128059Z -2025-11-24T09:36:30.0128568Z TASK [container-engine/containerd-common : Containerd-common | gather os specific variables] *** -2025-11-24T09:36:30.1553432Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:36:30.1554590Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.1555669Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:36:30.1556931Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.1557859Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:36:30.1558819Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.1559122Z -2025-11-24T09:36:30.1559519Z TASK [container-engine/docker-storage : Docker-storage-setup | install git and make] *** -2025-11-24T09:36:30.1910636Z skipping: [kubenode-super-marlin] => (item=git) -2025-11-24T09:36:30.1911416Z skipping: [kubenode-super-marlin] => (item=make) -2025-11-24T09:36:30.2035489Z Still deploying... -2025-11-24T09:36:30.2261011Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.2261697Z skipping: [kubenode-renewed-asp] => (item=git) -2025-11-24T09:36:30.2262372Z skipping: [kubenode-renewed-asp] => (item=make) -2025-11-24T09:36:30.2263205Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.2263847Z skipping: [kubenode-teaching-gobbler] => (item=git) -2025-11-24T09:36:30.2264573Z skipping: [kubenode-teaching-gobbler] => (item=make) -2025-11-24T09:36:30.2265233Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.2265607Z -2025-11-24T09:36:30.2266149Z TASK [container-engine/docker-storage : Docker-storage-setup | docker-storage-setup sysconfig template] *** -2025-11-24T09:36:30.2942909Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.2943613Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.2944241Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.2944633Z -2025-11-24T09:36:30.2945700Z TASK [container-engine/docker-storage : Docker-storage-override-directory | docker service storage-setup override dir] *** -2025-11-24T09:36:30.3314005Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.3582595Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.3583469Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.3583868Z -2025-11-24T09:36:30.3584493Z TASK [container-engine/docker-storage : Docker-storage-override | docker service storage-setup override file] *** -2025-11-24T09:36:30.4000020Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.4405556Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.4406487Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.4406809Z -2025-11-24T09:36:30.4407165Z TASK [container-engine/docker-storage : Docker-storage-setup | install lvm2] *** -2025-11-24T09:36:30.4986275Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.4986863Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.4987367Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.4987736Z -2025-11-24T09:36:30.4988243Z TASK [container-engine/docker-storage : Docker-storage-setup | install and run container-storage-setup] *** -2025-11-24T09:36:30.5388595Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.6033138Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.6033729Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.6034135Z -2025-11-24T09:36:30.6034578Z TASK [container-engine/docker : Docker | Get package facts] ******************** -2025-11-24T09:36:30.6801140Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.6801720Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.6802248Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.6802599Z -2025-11-24T09:36:30.6803241Z TASK [container-engine/docker : Docker | Find docker packages] ***************** -2025-11-24T09:36:30.7521350Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.7522045Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.7522876Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.7523268Z -2025-11-24T09:36:30.7523722Z TASK [container-engine/docker : Docker | Stop all running container] *********** -2025-11-24T09:36:30.7925186Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.8257163Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.8257865Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.8258249Z -2025-11-24T09:36:30.8258590Z TASK [container-engine/docker : Reset | remove all containers] ***************** -2025-11-24T09:36:30.8956292Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:30.8956999Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:30.8957603Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:30.8958034Z -2025-11-24T09:36:30.8958438Z TASK [container-engine/docker : Docker | Stop docker service] ****************** -2025-11-24T09:36:30.9359644Z skipping: [kubenode-super-marlin] => (item=docker) -2025-11-24T09:36:31.0049777Z skipping: [kubenode-super-marlin] => (item=docker.socket) -2025-11-24T09:36:31.0050481Z skipping: [kubenode-renewed-asp] => (item=docker) -2025-11-24T09:36:31.0051087Z skipping: [kubenode-super-marlin] => (item=containerd) -2025-11-24T09:36:31.0051669Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.0052211Z skipping: [kubenode-renewed-asp] => (item=docker.socket) -2025-11-24T09:36:31.0053160Z skipping: [kubenode-renewed-asp] => (item=containerd) -2025-11-24T09:36:31.0053743Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.0054281Z skipping: [kubenode-teaching-gobbler] => (item=docker) -2025-11-24T09:36:31.0054902Z skipping: [kubenode-teaching-gobbler] => (item=docker.socket) -2025-11-24T09:36:31.0055552Z skipping: [kubenode-teaching-gobbler] => (item=containerd) -2025-11-24T09:36:31.0056145Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.0056450Z -2025-11-24T09:36:31.0056784Z TASK [container-engine/docker : Docker | Remove dpkg hold] ********************* -2025-11-24T09:36:31.0785740Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.0786477Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.0787109Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.0787507Z -2025-11-24T09:36:31.0788414Z TASK [container-engine/docker : Docker | Remove docker package] **************** -2025-11-24T09:36:31.1226441Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.1660836Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.1661527Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.1661926Z -2025-11-24T09:36:31.1662396Z TASK [container-engine/docker : Docker | ensure docker-ce repository is removed] *** -2025-11-24T09:36:31.2030664Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:36:31.2423070Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.2424035Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:36:31.2424618Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.2425178Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:36:31.2425725Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.2426039Z -2025-11-24T09:36:31.2426381Z TASK [container-engine/docker : Docker | Remove docker repository on Fedora] *** -2025-11-24T09:36:31.3217299Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.3217992Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.3218586Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.3218965Z -2025-11-24T09:36:31.3219517Z TASK [container-engine/docker : Docker | Remove docker repository on RedHat/CentOS/Oracle/AlmaLinux Linux] *** -2025-11-24T09:36:31.3942033Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.3942944Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.3943546Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.3943948Z -2025-11-24T09:36:31.3944372Z TASK [container-engine/docker : Docker | Remove docker configuration files] **** -2025-11-24T09:36:31.5865232Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/docker.service.d/) -2025-11-24T09:36:31.5866501Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/docker.socket) -2025-11-24T09:36:31.5867429Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/docker.service.d/) -2025-11-24T09:36:31.5868367Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/docker.service) -2025-11-24T09:36:31.5869258Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/docker.socket) -2025-11-24T09:36:31.5870165Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service) -2025-11-24T09:36:31.5871125Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:36:31.5872317Z skipping: [kubenode-super-marlin] => (item=/var/lib/docker) -2025-11-24T09:36:31.5873197Z skipping: [kubenode-super-marlin] => (item=/etc/docker) -2025-11-24T09:36:31.5873888Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/docker.service) -2025-11-24T09:36:31.6920814Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.6921543Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service) -2025-11-24T09:36:31.6922347Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:36:31.6923321Z skipping: [kubenode-renewed-asp] => (item=/var/lib/docker) -2025-11-24T09:36:31.6923907Z skipping: [kubenode-renewed-asp] => (item=/etc/docker) -2025-11-24T09:36:31.6924447Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.6925072Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/docker.service.d/) -2025-11-24T09:36:31.6925855Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/docker.socket) -2025-11-24T09:36:31.6926618Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/docker.service) -2025-11-24T09:36:31.6927409Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service) -2025-11-24T09:36:31.6928257Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:36:31.6928985Z skipping: [kubenode-teaching-gobbler] => (item=/var/lib/docker) -2025-11-24T09:36:31.6929600Z skipping: [kubenode-teaching-gobbler] => (item=/etc/docker) -2025-11-24T09:36:31.6930546Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.6930878Z -2025-11-24T09:36:31.6931210Z TASK [container-engine/docker : Docker | systemctl daemon-reload] ************** -2025-11-24T09:36:31.8019398Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.8019975Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.8020520Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.8020849Z -2025-11-24T09:36:31.8021109Z TASK [Drain node] ************************************************************** -2025-11-24T09:36:31.8855105Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.8856001Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.8856501Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.8856820Z -2025-11-24T09:36:31.8857183Z TASK [container-engine/validate-container-engine : Stop kubelet] *************** -2025-11-24T09:36:31.9571570Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:31.9572185Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:31.9572877Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:31.9573228Z -2025-11-24T09:36:31.9573577Z TASK [container-engine/runc : Runc | check if fedora coreos] ******************* -2025-11-24T09:36:32.0413067Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.0413767Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.0414364Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.0414741Z -2025-11-24T09:36:32.0415152Z TASK [container-engine/runc : Runc | set is_ostree] **************************** -2025-11-24T09:36:32.0797411Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.1099326Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.1099912Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.1100221Z -2025-11-24T09:36:32.1100611Z TASK [container-engine/runc : Runc | Uninstall runc package managed by package manager] *** -2025-11-24T09:36:32.1478146Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.1813148Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.1813841Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.1814235Z -2025-11-24T09:36:32.1814654Z TASK [container-engine/runc : Runc | Download runc binary] ********************* -2025-11-24T09:36:32.2520711Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.2521394Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.2522005Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.2522376Z -2025-11-24T09:36:32.2523406Z TASK [container-engine/runc : Copy runc binary from download dir] ************** -2025-11-24T09:36:32.2905739Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.3263906Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.3264488Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.3264810Z -2025-11-24T09:36:32.3265156Z TASK [container-engine/runc : Runc | Remove orphaned binary] ******************* -2025-11-24T09:36:32.4313558Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.4314127Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.4314610Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.4314909Z -2025-11-24T09:36:32.4315257Z TASK [container-engine/crictl : Install crictl] ******************************** -2025-11-24T09:36:32.5291140Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.5291834Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.5292434Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.5293069Z -2025-11-24T09:36:32.5293498Z TASK [container-engine/skopeo : Skopeo | check if fedora coreos] *************** -2025-11-24T09:36:32.6085097Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.6085680Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.6086191Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.6086552Z -2025-11-24T09:36:32.6086885Z TASK [container-engine/skopeo : Skopeo | set is_ostree] ************************ -2025-11-24T09:36:32.6427220Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.6719733Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.6720397Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.6720782Z -2025-11-24T09:36:32.6721771Z TASK [container-engine/skopeo : Skopeo | Uninstall skopeo package managed by package manager] *** -2025-11-24T09:36:32.7116697Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.7565136Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.7565838Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.7566243Z -2025-11-24T09:36:32.7566655Z TASK [container-engine/skopeo : Skopeo | Download skopeo binary] *************** -2025-11-24T09:36:32.8414554Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.8415148Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.8416013Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.8416330Z -2025-11-24T09:36:32.8416680Z TASK [container-engine/skopeo : Copy skopeo binary from download dir] ********** -2025-11-24T09:36:32.9407713Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:32.9408446Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:32.9409069Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:32.9409456Z -2025-11-24T09:36:32.9409902Z TASK [container-engine/cri-o : Cri-o | include vars/v1.28.yml] ***************** -2025-11-24T09:36:33.0101710Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.0102391Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.0103269Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.0103648Z -2025-11-24T09:36:33.0104054Z TASK [container-engine/cri-o : Cri-o | include vars/v1.29.yml] ***************** -2025-11-24T09:36:33.0458351Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.0750810Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.0751555Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.0752010Z -2025-11-24T09:36:33.0752467Z TASK [container-engine/cri-o : CRI-O | Kubic repo name for debian os family] *** -2025-11-24T09:36:33.1138765Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.1519406Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.1520367Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.1520905Z -2025-11-24T09:36:33.1521480Z TASK [container-engine/cri-o : CRI-O | Remove kubic apt repo] ****************** -2025-11-24T09:36:33.2283944Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.2284669Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.2285295Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.2285722Z -2025-11-24T09:36:33.2286144Z TASK [container-engine/cri-o : CRI-O | Remove cri-o apt repo] ****************** -2025-11-24T09:36:33.3071264Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.3071948Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.3072556Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.3073246Z -2025-11-24T09:36:33.3073659Z TASK [container-engine/cri-o : CRI-O | Remove CRI-O kubic yum repo] ************ -2025-11-24T09:36:33.3835684Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.3836371Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.3836904Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.3837219Z -2025-11-24T09:36:33.3837580Z TASK [container-engine/cri-o : CRI-O | Remove CRI-O kubic yum repo] ************ -2025-11-24T09:36:33.5941837Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.5942603Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.5943504Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.5943894Z -2025-11-24T09:36:33.5944320Z TASK [container-engine/cri-o : CRI-O | Run yum-clean-metadata] ***************** -2025-11-24T09:36:33.6752044Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.6753144Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.6753705Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.6754058Z -2025-11-24T09:36:33.6754428Z TASK [container-engine/cri-o : CRI-O | Remove crictl] ************************** -2025-11-24T09:36:33.7331106Z skipping: [kubenode-super-marlin] => (item=/etc/crictl.yaml) -2025-11-24T09:36:33.7332026Z skipping: [kubenode-super-marlin] => (item=/usr/local/bin/crictl) -2025-11-24T09:36:33.7333077Z skipping: [kubenode-renewed-asp] => (item=/etc/crictl.yaml) -2025-11-24T09:36:33.7945091Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.7946382Z skipping: [kubenode-renewed-asp] => (item=/usr/local/bin/crictl) -2025-11-24T09:36:33.7947177Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.7947897Z skipping: [kubenode-teaching-gobbler] => (item=/etc/crictl.yaml) -2025-11-24T09:36:33.7948793Z skipping: [kubenode-teaching-gobbler] => (item=/usr/local/bin/crictl) -2025-11-24T09:36:33.7949583Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.7949981Z -2025-11-24T09:36:33.7950399Z TASK [container-engine/cri-o : CRI-O | Stop crio service] ********************** -2025-11-24T09:36:33.8631129Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.8631714Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.8632202Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.8632514Z -2025-11-24T09:36:33.8633163Z TASK [container-engine/cri-o : CRI-O | Remove CRI-O configuration files] ******* -2025-11-24T09:36:33.9139080Z skipping: [kubenode-super-marlin] => (item=/etc/crio) -2025-11-24T09:36:33.9139997Z skipping: [kubenode-super-marlin] => (item=/etc/containers) -2025-11-24T09:36:33.9140806Z skipping: [kubenode-renewed-asp] => (item=/etc/crio) -2025-11-24T09:36:33.9141673Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/crio.service.d) -2025-11-24T09:36:33.9142562Z skipping: [kubenode-renewed-asp] => (item=/etc/containers) -2025-11-24T09:36:33.9627760Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:33.9628657Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/crio.service.d) -2025-11-24T09:36:33.9629488Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:33.9630158Z skipping: [kubenode-teaching-gobbler] => (item=/etc/crio) -2025-11-24T09:36:33.9630987Z skipping: [kubenode-teaching-gobbler] => (item=/etc/containers) -2025-11-24T09:36:33.9631912Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/crio.service.d) -2025-11-24T09:36:33.9633029Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:33.9633433Z -2025-11-24T09:36:33.9633844Z TASK [container-engine/cri-o : CRI-O | Remove CRI-O binaries] ****************** -2025-11-24T09:36:34.1068184Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.1068816Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.1069350Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.1069686Z -2025-11-24T09:36:34.1070097Z TASK [container-engine/kata-containers : Kata-containers | Download kata binary] *** -2025-11-24T09:36:34.1883162Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.1883883Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.1884488Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.1884885Z -2025-11-24T09:36:34.1885377Z TASK [container-engine/kata-containers : Kata-containers | Copy kata-containers binary] *** -2025-11-24T09:36:34.2593430Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.2594121Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.2594718Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.2595100Z -2025-11-24T09:36:34.2595573Z TASK [container-engine/kata-containers : Kata-containers | Create config directory] *** -2025-11-24T09:36:34.3395579Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.3396283Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.3396879Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.3397264Z -2025-11-24T09:36:34.3397692Z TASK [container-engine/kata-containers : Kata-containers | Set configuration] *** -2025-11-24T09:36:34.3986533Z skipping: [kubenode-renewed-asp] => (item=configuration-qemu.toml) -2025-11-24T09:36:34.3987362Z skipping: [kubenode-super-marlin] => (item=configuration-qemu.toml) -2025-11-24T09:36:34.3987999Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.3988506Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.3989122Z skipping: [kubenode-teaching-gobbler] => (item=configuration-qemu.toml) -2025-11-24T09:36:34.3989827Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.3990140Z -2025-11-24T09:36:34.3990500Z TASK [container-engine/kata-containers : Kata-containers | Set containerd bin] *** -2025-11-24T09:36:34.4174256Z skipping: [kubenode-super-marlin] => (item=qemu) -2025-11-24T09:36:34.4405966Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.4406598Z skipping: [kubenode-renewed-asp] => (item=qemu) -2025-11-24T09:36:34.4844107Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.4844857Z skipping: [kubenode-teaching-gobbler] => (item=qemu) -2025-11-24T09:36:34.4845582Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.4845998Z -2025-11-24T09:36:34.4846506Z TASK [container-engine/kata-containers : Kata-containers | Load vhost kernel modules] *** -2025-11-24T09:36:34.5208224Z skipping: [kubenode-super-marlin] => (item=vhost_vsock) -2025-11-24T09:36:34.5650763Z skipping: [kubenode-super-marlin] => (item=vhost_net) -2025-11-24T09:36:34.5651639Z skipping: [kubenode-renewed-asp] => (item=vhost_vsock) -2025-11-24T09:36:34.5652422Z skipping: [kubenode-renewed-asp] => (item=vhost_net) -2025-11-24T09:36:34.5653448Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.5654069Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.5654779Z skipping: [kubenode-teaching-gobbler] => (item=vhost_vsock) -2025-11-24T09:36:34.5655579Z skipping: [kubenode-teaching-gobbler] => (item=vhost_net) -2025-11-24T09:36:34.5656303Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.5656685Z -2025-11-24T09:36:34.5657196Z TASK [container-engine/kata-containers : Kata-containers | Persist vhost kernel modules] *** -2025-11-24T09:36:34.6045997Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.6697046Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.6697629Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.6697965Z -2025-11-24T09:36:34.6698309Z TASK [container-engine/gvisor : GVisor | Download runsc binary] **************** -2025-11-24T09:36:34.7422422Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.7423457Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.7424091Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.7424489Z -2025-11-24T09:36:34.7424968Z TASK [container-engine/gvisor : GVisor | Download containerd-shim-runsc-v1 binary] *** -2025-11-24T09:36:34.8137764Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:34.8138474Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:34.8139104Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:34.8139492Z -2025-11-24T09:36:34.8139911Z TASK [container-engine/gvisor : GVisor | Copy binaries] ************************ -2025-11-24T09:36:35.6688471Z skipping: [kubenode-renewed-asp] => (item={'src': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'dest': 'runsc'}) -2025-11-24T09:36:35.6689878Z skipping: [kubenode-renewed-asp] => (item={'src': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'dest': 'containerd-shim-runsc-v1'}) -2025-11-24T09:36:35.6690832Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:35.6691594Z skipping: [kubenode-teaching-gobbler] => (item={'src': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'dest': 'runsc'}) -2025-11-24T09:36:35.6693082Z skipping: [kubenode-teaching-gobbler] => (item={'src': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'dest': 'containerd-shim-runsc-v1'}) -2025-11-24T09:36:35.6694037Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:35.6694795Z skipping: [kubenode-super-marlin] => (item={'src': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'dest': 'runsc'}) -2025-11-24T09:36:35.6695944Z skipping: [kubenode-super-marlin] => (item={'src': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'dest': 'containerd-shim-runsc-v1'}) -2025-11-24T09:36:35.6696851Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:35.6697144Z -2025-11-24T09:36:35.6697473Z TASK [container-engine/crun : Crun | Download crun binary] ********************* -2025-11-24T09:36:35.7123662Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:35.7454006Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:35.7454679Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:35.7455073Z -2025-11-24T09:36:35.7455485Z TASK [container-engine/crun : Copy crun binary from download dir] ************** -2025-11-24T09:36:35.7854622Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:35.8532587Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:35.8533589Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:35.8533937Z -2025-11-24T09:36:35.8534293Z TASK [container-engine/youki : Youki | Download youki] ************************* -2025-11-24T09:36:35.9212293Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:35.9213321Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:35.9213989Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:35.9214323Z -2025-11-24T09:36:35.9214697Z TASK [container-engine/youki : Youki | Copy youki binary from download dir] **** -2025-11-24T09:36:36.1394400Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.1395147Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.1395808Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.1396233Z -2025-11-24T09:36:36.1396683Z TASK [container-engine/runc : Runc | check if fedora coreos] ******************* -2025-11-24T09:36:36.2140254Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.2140970Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.2141587Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.2141956Z -2025-11-24T09:36:36.2142348Z TASK [container-engine/runc : Runc | set is_ostree] **************************** -2025-11-24T09:36:36.2815443Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.2816143Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.2816818Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.2817238Z -2025-11-24T09:36:36.2817737Z TASK [container-engine/runc : Runc | Uninstall runc package managed by package manager] *** -2025-11-24T09:36:36.3735776Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.3736497Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.3737133Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.3737521Z -2025-11-24T09:36:36.3737944Z TASK [container-engine/runc : Runc | Download runc binary] ********************* -2025-11-24T09:36:36.4097120Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.4486684Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.4487434Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.4487847Z -2025-11-24T09:36:36.4488282Z TASK [container-engine/runc : Copy runc binary from download dir] ************** -2025-11-24T09:36:36.5141918Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.5142928Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.5143982Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.5144372Z -2025-11-24T09:36:36.5144789Z TASK [container-engine/runc : Runc | Remove orphaned binary] ******************* -2025-11-24T09:36:36.5502904Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.6218785Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.6219498Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.6219936Z -2025-11-24T09:36:36.6220364Z TASK [container-engine/crictl : Install crictl] ******************************** -2025-11-24T09:36:36.6699748Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.7431070Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.7431775Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.7432198Z -2025-11-24T09:36:36.7432866Z TASK [container-engine/skopeo : Skopeo | check if fedora coreos] *************** -2025-11-24T09:36:36.8176173Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.8176917Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.8177585Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.8178017Z -2025-11-24T09:36:36.8178463Z TASK [container-engine/skopeo : Skopeo | set is_ostree] ************************ -2025-11-24T09:36:36.8537690Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.8858734Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.8859330Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.8859652Z -2025-11-24T09:36:36.8860086Z TASK [container-engine/skopeo : Skopeo | Uninstall skopeo package managed by package manager] *** -2025-11-24T09:36:36.9464524Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:36.9465218Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:36.9466251Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:36.9466655Z -2025-11-24T09:36:36.9467087Z TASK [container-engine/skopeo : Skopeo | Download skopeo binary] *************** -2025-11-24T09:36:37.0082845Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.0083437Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.0083941Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.0084277Z -2025-11-24T09:36:37.0084715Z TASK [container-engine/skopeo : Copy skopeo binary from download dir] ********** -2025-11-24T09:36:37.1030724Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.1031770Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.1032366Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.1033056Z -2025-11-24T09:36:37.1033480Z TASK [container-engine/cri-o : Cri-o | include vars/v1.28.yml] ***************** -2025-11-24T09:36:37.1809314Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.1810232Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.1810882Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.1811268Z -2025-11-24T09:36:37.1811692Z TASK [container-engine/cri-o : Cri-o | include vars/v1.29.yml] ***************** -2025-11-24T09:36:37.2681523Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.2682166Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.2682888Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.2683228Z -2025-11-24T09:36:37.2683554Z TASK [container-engine/cri-o : Cri-o | check if fedora coreos] ***************** -2025-11-24T09:36:37.3043635Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.3396658Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.3397614Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.3398013Z -2025-11-24T09:36:37.3398426Z TASK [container-engine/cri-o : Cri-o | set is_ostree] ************************** -2025-11-24T09:36:37.3767174Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.4119236Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.4119892Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.4120239Z -2025-11-24T09:36:37.4120566Z TASK [container-engine/cri-o : Cri-o | get ostree version] ********************* -2025-11-24T09:36:37.4896501Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.4897596Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.4898112Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.4898703Z -2025-11-24T09:36:37.4899649Z TASK [container-engine/cri-o : Cri-o | Download cri-o] ************************* -2025-11-24T09:36:37.5658926Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.5659624Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.5660138Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.5660492Z -2025-11-24T09:36:37.5660831Z TASK [container-engine/cri-o : Check that amzn2-extras.repo exists] ************ -2025-11-24T09:36:37.6364398Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.6365208Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.6365816Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.6366206Z -2025-11-24T09:36:37.7003475Z TASK [container-engine/cri-o : Find docker repo in amzn2-extras.repo file] ***** -2025-11-24T09:36:37.7004334Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.7004835Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.7005329Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.7005642Z -2025-11-24T09:36:37.7005977Z TASK [container-engine/cri-o : Remove docker repository] *********************** -2025-11-24T09:36:37.7343549Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.7645962Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.7646854Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.7647240Z -2025-11-24T09:36:37.7647758Z TASK [container-engine/cri-o : Cri-o | build a list of crio runtimes with Katacontainers runtimes] *** -2025-11-24T09:36:37.7991571Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:37.9522855Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:37.9523752Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:37.9524158Z -2025-11-24T09:36:37.9525071Z TASK [container-engine/cri-o : Cri-o | build a list of crio runtimes with crun runtime] *** -2025-11-24T09:36:38.0154647Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.0155327Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.0155915Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.0156284Z -2025-11-24T09:36:38.0156972Z TASK [container-engine/cri-o : Cri-o | build a list of crio runtimes with youki runtime] *** -2025-11-24T09:36:38.0495422Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.0832268Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.0833590Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.0833971Z -2025-11-24T09:36:38.0834449Z TASK [container-engine/cri-o : Cri-o | make sure needed folders exist in the system] *** -2025-11-24T09:36:38.1010864Z skipping: [kubenode-super-marlin] => (item=/etc/crio) -2025-11-24T09:36:38.1230522Z skipping: [kubenode-super-marlin] => (item=/etc/containers) -2025-11-24T09:36:38.1231331Z skipping: [kubenode-super-marlin] => (item=/etc/systemd/system/crio.service.d) -2025-11-24T09:36:38.1232030Z skipping: [kubenode-renewed-asp] => (item=/etc/crio) -2025-11-24T09:36:38.1646525Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.1647280Z skipping: [kubenode-renewed-asp] => (item=/etc/containers) -2025-11-24T09:36:38.1648151Z skipping: [kubenode-renewed-asp] => (item=/etc/systemd/system/crio.service.d) -2025-11-24T09:36:38.1648949Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.1649603Z skipping: [kubenode-teaching-gobbler] => (item=/etc/crio) -2025-11-24T09:36:38.1650419Z skipping: [kubenode-teaching-gobbler] => (item=/etc/containers) -2025-11-24T09:36:38.1651312Z skipping: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/crio.service.d) -2025-11-24T09:36:38.1652106Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.1652476Z -2025-11-24T09:36:38.1653118Z TASK [container-engine/cri-o : Cri-o | install cri-o config] ******************* -2025-11-24T09:36:38.1975826Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.2250430Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.2251087Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.2251477Z -2025-11-24T09:36:38.2251881Z TASK [container-engine/cri-o : Cri-o | install config.json] ******************** -2025-11-24T09:36:38.2616022Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.2896301Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.2896878Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.2897194Z -2025-11-24T09:36:38.3534089Z TASK [container-engine/cri-o : Cri-o | copy binaries] ************************** -2025-11-24T09:36:38.3534930Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.3535543Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.3536129Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.3536499Z -2025-11-24T09:36:38.3536892Z TASK [container-engine/cri-o : Cri-o | copy service file] ********************** -2025-11-24T09:36:38.3936168Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.4156422Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.4157020Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.4157345Z -2025-11-24T09:36:38.4157733Z TASK [container-engine/cri-o : Cri-o | configure crio to use kube reserved cgroups] *** -2025-11-24T09:36:38.4974123Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.4974701Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.4975209Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.4975592Z -2025-11-24T09:36:38.4975961Z TASK [container-engine/cri-o : Cri-o | update the bin dir for crio.service file] *** -2025-11-24T09:36:38.5469762Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.5763969Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.5764689Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.5765073Z -2025-11-24T09:36:38.5765481Z TASK [container-engine/cri-o : Cri-o | copy default policy] ******************** -2025-11-24T09:36:38.6386957Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.6388074Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.6388687Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.6389067Z -2025-11-24T09:36:38.6389473Z TASK [container-engine/cri-o : Cri-o | copy mounts.conf] *********************** -2025-11-24T09:36:38.7126633Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.7127342Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.7127958Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.7128331Z -2025-11-24T09:36:38.7128793Z TASK [container-engine/cri-o : Cri-o | create directory for oci hooks] ********* -2025-11-24T09:36:38.7483983Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.7862110Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.7862942Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.7863284Z -2025-11-24T09:36:38.7863627Z TASK [container-engine/cri-o : Cri-o | set overlay driver] ********************* -2025-11-24T09:36:38.8255993Z skipping: [kubenode-super-marlin] => (item={'option': 'driver', 'value': '"overlay"'}) -2025-11-24T09:36:38.8256999Z skipping: [kubenode-super-marlin] => (item={'option': 'graphroot', 'value': '"/var/lib/containers/storage"'}) -2025-11-24T09:36:38.8650650Z skipping: [kubenode-renewed-asp] => (item={'option': 'driver', 'value': '"overlay"'}) -2025-11-24T09:36:38.8651652Z skipping: [kubenode-super-marlin] => (item={'option': 'runroot', 'value': '"/var/run/containers/storage"'}) -2025-11-24T09:36:38.8652930Z skipping: [kubenode-renewed-asp] => (item={'option': 'graphroot', 'value': '"/var/lib/containers/storage"'}) -2025-11-24T09:36:38.8653934Z skipping: [kubenode-renewed-asp] => (item={'option': 'runroot', 'value': '"/var/run/containers/storage"'}) -2025-11-24T09:36:38.8654684Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.8655187Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.8655859Z skipping: [kubenode-teaching-gobbler] => (item={'option': 'driver', 'value': '"overlay"'}) -2025-11-24T09:36:38.8656811Z skipping: [kubenode-teaching-gobbler] => (item={'option': 'graphroot', 'value': '"/var/lib/containers/storage"'}) -2025-11-24T09:36:38.8657800Z skipping: [kubenode-teaching-gobbler] => (item={'option': 'runroot', 'value': '"/var/run/containers/storage"'}) -2025-11-24T09:36:38.8658549Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.8658864Z -2025-11-24T09:36:38.8659245Z TASK [container-engine/cri-o : Cri-o | set metacopy mount options correctly] *** -2025-11-24T09:36:38.9450052Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:38.9450738Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:38.9451240Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:38.9451581Z -2025-11-24T09:36:38.9451933Z TASK [container-engine/cri-o : Cri-o | create directory registries configs] **** -2025-11-24T09:36:39.0135523Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:39.0136129Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:39.0136650Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.0136964Z -2025-11-24T09:36:39.0137317Z TASK [container-engine/cri-o : Cri-o | write registries configs] *************** -2025-11-24T09:36:39.0534811Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:39.0855760Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:39.0856415Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.0856798Z -2025-11-24T09:36:39.0857228Z TASK [container-engine/cri-o : Cri-o | configure unqualified registry settings] *** -2025-11-24T09:36:39.1564796Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:39.1565515Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:39.1566113Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.1566517Z -2025-11-24T09:36:39.1566932Z TASK [container-engine/cri-o : Cri-o | write cri-o proxy drop-in] ************** -2025-11-24T09:36:39.2289042Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:39.2289882Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:39.2290392Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.2290704Z -2025-11-24T09:36:39.2291103Z TASK [container-engine/cri-o : Cri-o | configure the uid/gid space for user namespaces] *** -2025-11-24T09:36:39.2699835Z skipping: [kubenode-super-marlin] => (item=/etc/subuid) -2025-11-24T09:36:39.2700574Z skipping: [kubenode-super-marlin] => (item=/etc/subgid) -2025-11-24T09:36:39.3035877Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:39.3036715Z skipping: [kubenode-renewed-asp] => (item=/etc/subuid) -2025-11-24T09:36:39.3037334Z skipping: [kubenode-renewed-asp] => (item=/etc/subgid) -2025-11-24T09:36:39.3037911Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:39.3038455Z skipping: [kubenode-teaching-gobbler] => (item=/etc/subuid) -2025-11-24T09:36:39.3039410Z skipping: [kubenode-teaching-gobbler] => (item=/etc/subgid) -2025-11-24T09:36:39.3039997Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.3040304Z -2025-11-24T09:36:39.3040668Z TASK [container-engine/cri-o : Cri-o | ensure crio service is started and enabled] *** -2025-11-24T09:36:39.3682226Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:39.3683450Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:39.3684079Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.3684450Z -2025-11-24T09:36:39.3684898Z TASK [container-engine/cri-o : Cri-o | trigger service restart only when needed] *** -2025-11-24T09:36:39.4054737Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:39.4335069Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:39.4335724Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.4336053Z -2025-11-24T09:36:39.4336390Z TASK [container-engine/cri-o : Cri-o | verify that crio is running] ************ -2025-11-24T09:36:39.5246932Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:39.5247604Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:39.5248112Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.5248424Z -2025-11-24T09:36:39.5248853Z TASK [container-engine/containerd-common : Containerd-common | check if fedora coreos] *** -2025-11-24T09:36:39.9699521Z ok: [kubenode-super-marlin] -2025-11-24T09:36:39.9700218Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:39.9700698Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:39.9701022Z -2025-11-24T09:36:39.9701391Z TASK [container-engine/containerd-common : Containerd-common | set is_ostree] *** -2025-11-24T09:36:40.2046162Z Still deploying... -2025-11-24T09:36:40.2187826Z ok: [kubenode-super-marlin] -2025-11-24T09:36:40.2188700Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:40.2189266Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:40.2189944Z -2025-11-24T09:36:40.2190469Z TASK [container-engine/containerd-common : Containerd-common | gather os specific variables] *** -2025-11-24T09:36:40.3990391Z ok: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) -2025-11-24T09:36:40.6912613Z ok: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) -2025-11-24T09:36:40.6914549Z ok: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/vars/../vars/ubuntu.yml) -2025-11-24T09:36:40.6915348Z -2025-11-24T09:36:40.6915707Z TASK [container-engine/runc : Runc | check if fedora coreos] ******************* -2025-11-24T09:36:40.6916388Z ok: [kubenode-super-marlin] -2025-11-24T09:36:40.6916874Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:40.6917360Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:40.6917654Z -2025-11-24T09:36:40.6917998Z TASK [container-engine/runc : Runc | set is_ostree] **************************** -2025-11-24T09:36:40.8100888Z ok: [kubenode-super-marlin] -2025-11-24T09:36:40.8101877Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:40.8102469Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:40.8103101Z -2025-11-24T09:36:40.8103599Z TASK [container-engine/runc : Runc | Uninstall runc package managed by package manager] *** -2025-11-24T09:36:41.1744989Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:41.1745806Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:41.1746368Z ok: [kubenode-super-marlin] -2025-11-24T09:36:41.1746683Z -2025-11-24T09:36:41.1747537Z TASK [container-engine/runc : Runc | Download runc binary] ********************* -2025-11-24T09:36:41.2858025Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/runc/tasks/../../../download/tasks/download_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:36:41.2859142Z -2025-11-24T09:36:41.2859499Z TASK [container-engine/runc : Prep_download | Set a few facts] ***************** -2025-11-24T09:36:41.7831391Z ok: [kubenode-super-marlin] -2025-11-24T09:36:41.7832235Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:41.7833490Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:41.7833847Z -2025-11-24T09:36:41.7834208Z TASK [container-engine/runc : Download_file | Show url of file to dowload] ***** -2025-11-24T09:36:42.6851534Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:36:42.6852493Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" -2025-11-24T09:36:42.6853714Z } -2025-11-24T09:36:42.6854201Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:36:42.6854874Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" -2025-11-24T09:36:42.6855489Z } -2025-11-24T09:36:42.6855962Z ok: [kubenode-super-marlin] => { -2025-11-24T09:36:42.6856577Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" -2025-11-24T09:36:42.6857175Z } -2025-11-24T09:36:42.6857409Z -2025-11-24T09:36:42.6857821Z TASK [container-engine/runc : Download_file | Set pathname of cached file] ***** -2025-11-24T09:36:43.4913789Z ok: [kubenode-super-marlin] -2025-11-24T09:36:43.4914636Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:43.4915284Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:43.4915611Z -2025-11-24T09:36:43.4916016Z TASK [container-engine/runc : Download_file | Create dest directory on node] *** -2025-11-24T09:36:44.8858256Z changed: [kubenode-super-marlin] -2025-11-24T09:36:44.8859165Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:44.8859808Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:44.8860181Z -2025-11-24T09:36:44.8860621Z TASK [container-engine/runc : Download_file | Create local cache directory] **** -2025-11-24T09:36:44.9528311Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:44.9528924Z -2025-11-24T09:36:44.9529449Z TASK [container-engine/runc : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:36:45.0246319Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:45.0247282Z -2025-11-24T09:36:45.0247713Z TASK [container-engine/runc : Download_file | Download item] ******************* -2025-11-24T09:36:49.2367462Z changed: [kubenode-super-marlin] -2025-11-24T09:36:49.2368143Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:49.2368669Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:49.2368963Z -2025-11-24T09:36:49.2369355Z TASK [container-engine/runc : Download_file | Copy file back to ansible host file cache] *** -2025-11-24T09:36:49.3358538Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:49.3359194Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:49.3359679Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:49.3360064Z -2025-11-24T09:36:49.3360506Z TASK [container-engine/runc : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:36:49.4113827Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:49.4114609Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:49.4115210Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:49.4115609Z -2025-11-24T09:36:49.4116016Z TASK [container-engine/runc : Download_file | Set mode and owner] ************** -2025-11-24T09:36:49.4835590Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:49.4836469Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:49.4837082Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:49.4837454Z -2025-11-24T09:36:49.4837875Z TASK [container-engine/runc : Download_file | Extract file archives] *********** -2025-11-24T09:36:49.6171526Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:36:49.6173374Z -2025-11-24T09:36:49.6173843Z TASK [container-engine/runc : Extract_file | Unpacking archive] **************** -2025-11-24T09:36:50.1053500Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:50.1054333Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:50.1054932Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:50.1055307Z -2025-11-24T09:36:50.1055741Z TASK [container-engine/runc : Copy runc binary from download dir] ************** -2025-11-24T09:36:50.2072461Z Still deploying... -2025-11-24T09:36:50.8521011Z changed: [kubenode-super-marlin] -2025-11-24T09:36:50.8522182Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:50.8523044Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:50.8523426Z -2025-11-24T09:36:50.8523839Z TASK [container-engine/runc : Runc | Remove orphaned binary] ******************* -2025-11-24T09:36:51.2318234Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:51.2319005Z ok: [kubenode-super-marlin] -2025-11-24T09:36:51.2319484Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:51.2319778Z -2025-11-24T09:36:51.2320118Z TASK [container-engine/crictl : Install crictl] ******************************** -2025-11-24T09:36:51.3554602Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/crictl.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:36:51.3555652Z -2025-11-24T09:36:51.3556001Z TASK [container-engine/crictl : Crictl | Download crictl] ********************** -2025-11-24T09:36:51.6103862Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/crictl/tasks/../../../download/tasks/download_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:36:51.6105208Z -2025-11-24T09:36:51.6105644Z TASK [container-engine/crictl : Prep_download | Set a few facts] *************** -2025-11-24T09:36:52.0914570Z ok: [kubenode-super-marlin] -2025-11-24T09:36:52.0915398Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:52.0915993Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:52.0916317Z -2025-11-24T09:36:52.0916738Z TASK [container-engine/crictl : Download_file | Show url of file to dowload] *** -2025-11-24T09:36:52.9315247Z ok: [kubenode-super-marlin] => { -2025-11-24T09:36:52.9316396Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" -2025-11-24T09:36:52.9317121Z } -2025-11-24T09:36:52.9317987Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:36:52.9318683Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" -2025-11-24T09:36:52.9319359Z } -2025-11-24T09:36:52.9319843Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:36:52.9320544Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" -2025-11-24T09:36:52.9321195Z } -2025-11-24T09:36:52.9321435Z -2025-11-24T09:36:52.9321846Z TASK [container-engine/crictl : Download_file | Set pathname of cached file] *** -2025-11-24T09:36:53.7882157Z ok: [kubenode-super-marlin] -2025-11-24T09:36:53.7883239Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:53.7883820Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:53.7884145Z -2025-11-24T09:36:53.7884573Z TASK [container-engine/crictl : Download_file | Create dest directory on node] *** -2025-11-24T09:36:55.1678242Z ok: [kubenode-super-marlin] -2025-11-24T09:36:55.1678883Z ok: [kubenode-renewed-asp] -2025-11-24T09:36:55.1679437Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:36:55.1679787Z -2025-11-24T09:36:55.1680219Z TASK [container-engine/crictl : Download_file | Create local cache directory] *** -2025-11-24T09:36:55.2161346Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:55.2161805Z -2025-11-24T09:36:55.2162331Z TASK [container-engine/crictl : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:36:55.2910283Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:55.2910722Z -2025-11-24T09:36:55.2911137Z TASK [container-engine/crictl : Download_file | Download item] ***************** -2025-11-24T09:36:59.2650971Z changed: [kubenode-super-marlin] -2025-11-24T09:36:59.2651985Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:36:59.2652524Z changed: [kubenode-renewed-asp] -2025-11-24T09:36:59.2653064Z -2025-11-24T09:36:59.2653477Z TASK [container-engine/crictl : Download_file | Copy file back to ansible host file cache] *** -2025-11-24T09:36:59.3704251Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:59.3704854Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:59.3705379Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:59.3705735Z -2025-11-24T09:36:59.3706179Z TASK [container-engine/crictl : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:36:59.4514254Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:59.4514970Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:59.4515628Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:59.4516080Z -2025-11-24T09:36:59.4516449Z TASK [container-engine/crictl : Download_file | Set mode and owner] ************ -2025-11-24T09:36:59.5315609Z skipping: [kubenode-super-marlin] -2025-11-24T09:36:59.5316319Z skipping: [kubenode-renewed-asp] -2025-11-24T09:36:59.5316977Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:36:59.5317333Z -2025-11-24T09:36:59.5317677Z TASK [container-engine/crictl : Download_file | Extract file archives] ********* -2025-11-24T09:36:59.6477481Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:36:59.6478419Z -2025-11-24T09:36:59.6478779Z TASK [container-engine/crictl : Extract_file | Unpacking archive] ************** -2025-11-24T09:37:00.2074057Z Still deploying... -2025-11-24T09:37:04.7331464Z changed: [kubenode-super-marlin] -2025-11-24T09:37:04.7332118Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:04.7333020Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:04.7333328Z -2025-11-24T09:37:04.7333702Z TASK [container-engine/crictl : Install crictl config] ************************* -2025-11-24T09:37:05.3071494Z changed: [kubenode-super-marlin] -2025-11-24T09:37:05.3072121Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:05.3072908Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:05.3073195Z -2025-11-24T09:37:05.3073536Z TASK [container-engine/crictl : Copy crictl binary from download dir] ********** -2025-11-24T09:37:05.9418786Z changed: [kubenode-super-marlin] -2025-11-24T09:37:05.9419790Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:05.9420289Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:05.9420565Z -2025-11-24T09:37:05.9420903Z TASK [container-engine/nerdctl : Nerdctl | Download nerdctl] ******************* -2025-11-24T09:37:06.0765705Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/nerdctl/tasks/../../../download/tasks/download_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:37:06.0766872Z -2025-11-24T09:37:06.0767251Z TASK [container-engine/nerdctl : Prep_download | Set a few facts] ************** -2025-11-24T09:37:06.5723861Z ok: [kubenode-super-marlin] -2025-11-24T09:37:06.5724460Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:06.5724941Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:06.5725356Z -2025-11-24T09:37:06.5725929Z TASK [container-engine/nerdctl : Download_file | Show url of file to dowload] *** -2025-11-24T09:37:07.5970205Z ok: [kubenode-super-marlin] => { -2025-11-24T09:37:07.5970923Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" -2025-11-24T09:37:07.5971538Z } -2025-11-24T09:37:07.5971946Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:37:07.5972557Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" -2025-11-24T09:37:07.5973406Z } -2025-11-24T09:37:07.5973816Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:37:07.5974379Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" -2025-11-24T09:37:07.5974947Z } -2025-11-24T09:37:07.5975143Z -2025-11-24T09:37:07.5975505Z TASK [container-engine/nerdctl : Download_file | Set pathname of cached file] *** -2025-11-24T09:37:08.6000078Z ok: [kubenode-super-marlin] -2025-11-24T09:37:08.6000680Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:08.6001150Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:08.6001413Z -2025-11-24T09:37:08.6001767Z TASK [container-engine/nerdctl : Download_file | Create dest directory on node] *** -2025-11-24T09:37:10.1243210Z ok: [kubenode-super-marlin] -2025-11-24T09:37:10.1243926Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:10.1244528Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:10.1244855Z -2025-11-24T09:37:10.1245290Z TASK [container-engine/nerdctl : Download_file | Create local cache directory] *** -2025-11-24T09:37:10.1637315Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:10.1637711Z -2025-11-24T09:37:10.1638204Z TASK [container-engine/nerdctl : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:37:10.2082451Z Still deploying... -2025-11-24T09:37:10.2083483Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:10.2083830Z -2025-11-24T09:37:10.2084221Z TASK [container-engine/nerdctl : Download_file | Download item] **************** -2025-11-24T09:37:14.2080769Z changed: [kubenode-super-marlin] -2025-11-24T09:37:14.2081375Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:14.2081881Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:14.2082184Z -2025-11-24T09:37:14.2082606Z TASK [container-engine/nerdctl : Download_file | Copy file back to ansible host file cache] *** -2025-11-24T09:37:14.2782236Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:14.2783291Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:14.2790370Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:14.2790827Z -2025-11-24T09:37:14.2791317Z TASK [container-engine/nerdctl : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:37:14.3199658Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:14.3502071Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:14.3502967Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:14.3503334Z -2025-11-24T09:37:14.3503750Z TASK [container-engine/nerdctl : Download_file | Set mode and owner] *********** -2025-11-24T09:37:14.4167635Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:14.4168268Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:14.4168821Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:14.4169163Z -2025-11-24T09:37:14.4169546Z TASK [container-engine/nerdctl : Download_file | Extract file archives] ******** -2025-11-24T09:37:14.5360814Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:37:14.5361812Z -2025-11-24T09:37:14.5362172Z TASK [container-engine/nerdctl : Extract_file | Unpacking archive] ************* -2025-11-24T09:37:17.9238751Z changed: [kubenode-super-marlin] -2025-11-24T09:37:17.9239362Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:17.9239932Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:17.9240218Z -2025-11-24T09:37:17.9240628Z TASK [container-engine/nerdctl : Nerdctl | Copy nerdctl binary from download dir] *** -2025-11-24T09:37:18.3432615Z changed: [kubenode-super-marlin] -2025-11-24T09:37:18.3433463Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:18.3433993Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:18.3434337Z -2025-11-24T09:37:18.3434712Z TASK [container-engine/nerdctl : Nerdctl | Create configuration dir] *********** -2025-11-24T09:37:18.6520152Z changed: [kubenode-super-marlin] -2025-11-24T09:37:18.6520812Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:18.6521380Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:18.6521706Z -2025-11-24T09:37:18.6522093Z TASK [container-engine/nerdctl : Nerdctl | Install nerdctl configuration] ****** -2025-11-24T09:37:19.2931176Z changed: [kubenode-super-marlin] -2025-11-24T09:37:19.2931812Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:19.2932337Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:19.2932608Z -2025-11-24T09:37:19.2933923Z TASK [container-engine/containerd : Fail containerd setup if distribution is not supported] *** -2025-11-24T09:37:19.4335920Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:19.4336540Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:19.4337056Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:19.4337372Z -2025-11-24T09:37:19.4337856Z TASK [container-engine/containerd : Containerd | Remove any package manager controlled containerd package] *** -2025-11-24T09:37:19.8606841Z ok: [kubenode-super-marlin] -2025-11-24T09:37:19.8607420Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:19.8607932Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:19.8608561Z -2025-11-24T09:37:19.8608958Z TASK [container-engine/containerd : Containerd | Remove containerd repository] *** -2025-11-24T09:37:19.9544175Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:19.9544865Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:19.9545472Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:19.9545851Z -2025-11-24T09:37:19.9546316Z TASK [container-engine/containerd : Containerd | Remove containerd repository] *** -2025-11-24T09:37:20.2097303Z Still deploying... -2025-11-24T09:37:20.7081799Z ok: [kubenode-super-marlin] => (item=deb https://download.docker.com/linux/ubuntu jammy stable -2025-11-24T09:37:20.7082908Z ) -2025-11-24T09:37:20.7083653Z ok: [kubenode-teaching-gobbler] => (item=deb https://download.docker.com/linux/ubuntu jammy stable -2025-11-24T09:37:20.7084433Z ) -2025-11-24T09:37:20.7085082Z ok: [kubenode-renewed-asp] => (item=deb https://download.docker.com/linux/ubuntu jammy stable -2025-11-24T09:37:20.7085786Z ) -2025-11-24T09:37:20.7086007Z -2025-11-24T09:37:20.7086379Z TASK [container-engine/containerd : Containerd | Download containerd] ********** -2025-11-24T09:37:20.8274486Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/containerd/tasks/../../../download/tasks/download_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:37:20.8275738Z -2025-11-24T09:37:20.8276208Z TASK [container-engine/containerd : Prep_download | Set a few facts] *********** -2025-11-24T09:37:21.3841210Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:21.3841778Z ok: [kubenode-super-marlin] -2025-11-24T09:37:21.3842254Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:21.3842563Z -2025-11-24T09:37:21.3843300Z TASK [container-engine/containerd : Download_file | Show url of file to dowload] *** -2025-11-24T09:37:22.1906877Z ok: [kubenode-super-marlin] => { -2025-11-24T09:37:22.1907638Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" -2025-11-24T09:37:22.1908328Z } -2025-11-24T09:37:22.1908760Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:37:22.1909384Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" -2025-11-24T09:37:22.1910010Z } -2025-11-24T09:37:22.1910453Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:37:22.1911094Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" -2025-11-24T09:37:22.1911724Z } -2025-11-24T09:37:22.1911936Z -2025-11-24T09:37:22.1912355Z TASK [container-engine/containerd : Download_file | Set pathname of cached file] *** -2025-11-24T09:37:22.9957605Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:22.9958181Z ok: [kubenode-super-marlin] -2025-11-24T09:37:22.9958665Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:22.9958938Z -2025-11-24T09:37:22.9959325Z TASK [container-engine/containerd : Download_file | Create dest directory on node] *** -2025-11-24T09:37:24.4987765Z ok: [kubenode-super-marlin] -2025-11-24T09:37:24.4988318Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:24.4988794Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:24.4989074Z -2025-11-24T09:37:24.4989453Z TASK [container-engine/containerd : Download_file | Create local cache directory] *** -2025-11-24T09:37:24.5367092Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:24.5367596Z -2025-11-24T09:37:24.5368172Z TASK [container-engine/containerd : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:37:24.6050865Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:24.6051301Z -2025-11-24T09:37:24.6051654Z TASK [container-engine/containerd : Download_file | Download item] ************* -2025-11-24T09:37:28.7680418Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:28.7681144Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:28.7681731Z changed: [kubenode-super-marlin] -2025-11-24T09:37:28.7682088Z -2025-11-24T09:37:28.7682589Z TASK [container-engine/containerd : Download_file | Copy file back to ansible host file cache] *** -2025-11-24T09:37:28.8201327Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:28.8681322Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:28.8682083Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:28.8682484Z -2025-11-24T09:37:28.8683332Z TASK [container-engine/containerd : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:37:28.9463225Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:28.9463945Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:28.9464588Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:28.9465014Z -2025-11-24T09:37:28.9465433Z TASK [container-engine/containerd : Download_file | Set mode and owner] ******** -2025-11-24T09:37:29.0227080Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:29.0227672Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:29.0228159Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:29.0228491Z -2025-11-24T09:37:29.0228838Z TASK [container-engine/containerd : Download_file | Extract file archives] ***** -2025-11-24T09:37:29.1315017Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:37:29.1315994Z -2025-11-24T09:37:29.1316359Z TASK [container-engine/containerd : Extract_file | Unpacking archive] ********** -2025-11-24T09:37:29.6114265Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:29.6114837Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:29.6115322Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:29.6115644Z -2025-11-24T09:37:29.6115988Z TASK [container-engine/containerd : Containerd | Unpack containerd archive] **** -2025-11-24T09:37:30.2105898Z Still deploying... -2025-11-24T09:37:33.5007400Z changed: [kubenode-super-marlin] -2025-11-24T09:37:33.5008244Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:33.5008871Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:33.5009609Z -2025-11-24T09:37:33.5010027Z TASK [container-engine/containerd : Containerd | Remove orphaned binary] ******* -2025-11-24T09:37:34.7070909Z ok: [kubenode-super-marlin] => (item=containerd) -2025-11-24T09:37:34.7071665Z ok: [kubenode-renewed-asp] => (item=containerd) -2025-11-24T09:37:34.7072248Z ok: [kubenode-teaching-gobbler] => (item=containerd) -2025-11-24T09:37:34.7073079Z ok: [kubenode-super-marlin] => (item=containerd-shim) -2025-11-24T09:37:34.7073688Z ok: [kubenode-teaching-gobbler] => (item=containerd-shim) -2025-11-24T09:37:34.7074302Z ok: [kubenode-renewed-asp] => (item=containerd-shim) -2025-11-24T09:37:34.7074937Z ok: [kubenode-super-marlin] => (item=containerd-shim-runc-v1) -2025-11-24T09:37:34.7075610Z ok: [kubenode-teaching-gobbler] => (item=containerd-shim-runc-v1) -2025-11-24T09:37:34.7076270Z ok: [kubenode-renewed-asp] => (item=containerd-shim-runc-v1) -2025-11-24T09:37:34.7076913Z ok: [kubenode-super-marlin] => (item=containerd-shim-runc-v2) -2025-11-24T09:37:34.7077557Z ok: [kubenode-renewed-asp] => (item=containerd-shim-runc-v2) -2025-11-24T09:37:34.7078211Z ok: [kubenode-teaching-gobbler] => (item=containerd-shim-runc-v2) -2025-11-24T09:37:34.7078817Z ok: [kubenode-super-marlin] => (item=ctr) -2025-11-24T09:37:34.7079357Z ok: [kubenode-teaching-gobbler] => (item=ctr) -2025-11-24T09:37:34.7079880Z ok: [kubenode-renewed-asp] => (item=ctr) -2025-11-24T09:37:34.7080185Z -2025-11-24T09:37:34.7080589Z TASK [container-engine/containerd : Containerd | Generate systemd service for containerd] *** -2025-11-24T09:37:35.2961181Z changed: [kubenode-super-marlin] -2025-11-24T09:37:35.2962551Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:35.2963447Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:35.2963783Z -2025-11-24T09:37:35.2964276Z TASK [container-engine/containerd : Containerd | Ensure containerd directories exist] *** -2025-11-24T09:37:36.2433870Z changed: [kubenode-super-marlin] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:37:36.2435198Z changed: [kubenode-teaching-gobbler] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:37:36.2436196Z changed: [kubenode-renewed-asp] => (item=/etc/systemd/system/containerd.service.d) -2025-11-24T09:37:36.2437349Z changed: [kubenode-super-marlin] => (item=/etc/containerd) -2025-11-24T09:37:36.2437965Z changed: [kubenode-teaching-gobbler] => (item=/etc/containerd) -2025-11-24T09:37:36.2438578Z changed: [kubenode-renewed-asp] => (item=/etc/containerd) -2025-11-24T09:37:36.2439187Z changed: [kubenode-super-marlin] => (item=/var/lib/containerd) -2025-11-24T09:37:36.2439834Z changed: [kubenode-teaching-gobbler] => (item=/var/lib/containerd) -2025-11-24T09:37:36.2440468Z changed: [kubenode-renewed-asp] => (item=/var/lib/containerd) -2025-11-24T09:37:36.2441072Z changed: [kubenode-super-marlin] => (item=/run/containerd) -2025-11-24T09:37:36.2441671Z changed: [kubenode-teaching-gobbler] => (item=/run/containerd) -2025-11-24T09:37:36.2442267Z changed: [kubenode-renewed-asp] => (item=/run/containerd) -2025-11-24T09:37:36.2442789Z -2025-11-24T09:37:36.2443190Z TASK [container-engine/containerd : Containerd | Write containerd proxy drop-in] *** -2025-11-24T09:37:36.3524913Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:36.3525647Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:36.3526151Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:36.3526465Z -2025-11-24T09:37:36.3526855Z TASK [container-engine/containerd : Containerd | Generate default base_runtime_spec] *** -2025-11-24T09:37:36.6674596Z ok: [kubenode-super-marlin] -2025-11-24T09:37:36.6675437Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:36.6676022Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:36.6676386Z -2025-11-24T09:37:36.6676894Z TASK [container-engine/containerd : Containerd | Store generated default base_runtime_spec] *** -2025-11-24T09:37:36.7885837Z ok: [kubenode-super-marlin] -2025-11-24T09:37:36.7886670Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:36.7887245Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:36.7887522Z -2025-11-24T09:37:36.7888208Z TASK [container-engine/containerd : Containerd | Write base_runtime_specs] ***** -2025-11-24T09:37:37.3285650Z changed: [kubenode-teaching-gobbler] => (item={'key': 'cri-base.json', 'value': {'ociVersion': '1.1.0', 'process': {'user': {'uid': 0, 'gid': 0}, 'cwd': '/', 'capabilities': {'bounding': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'effective': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'permitted': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE']}, 'rlimits': [{'type': 'RLIMIT_NOFILE', 'hard': 65535, 'soft': 65535}], 'noNewPrivileges': True}, 'root': {'path': 'rootfs'}, 'mounts': [{'destination': '/proc', 'type': 'proc', 'source': 'proc', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/dev', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}, {'destination': '/dev/pts', 'type': 'devpts', 'source': 'devpts', 'options': ['nosuid', 'noexec', 'newinstance', 'ptmxmode=0666', 'mode=0620', 'gid=5']}, {'destination': '/dev/shm', 'type': 'tmpfs', 'source': 'shm', 'options': ['nosuid', 'noexec', 'nodev', 'mode=1777', 'size=65536k']}, {'destination': '/dev/mqueue', 'type': 'mqueue', 'source': 'mqueue', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/sys', 'type': 'sysfs', 'source': 'sysfs', 'options': ['nosuid', 'noexec', 'nodev', 'ro']}, {'destination': '/run', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}], 'linux': {'resources': {'devices': [{'allow': False, 'access': 'rwm'}]}, 'cgroupsPath': '/default', 'namespaces': [{'type': 'pid'}, {'type': 'ipc'}, {'type': 'uts'}, {'type': 'mount'}, {'type': 'network'}], 'maskedPaths': ['/proc/acpi', '/proc/asound', '/proc/kcore', '/proc/keys', '/proc/latency_stats', '/proc/timer_list', '/proc/timer_stats', '/proc/sched_debug', '/sys/firmware', '/sys/devices/virtual/powercap', '/proc/scsi'], 'readonlyPaths': ['/proc/bus', '/proc/fs', '/proc/irq', '/proc/sys', '/proc/sysrq-trigger']}}}) -2025-11-24T09:37:37.3298693Z changed: [kubenode-super-marlin] => (item={'key': 'cri-base.json', 'value': {'ociVersion': '1.1.0', 'process': {'user': {'uid': 0, 'gid': 0}, 'cwd': '/', 'capabilities': {'bounding': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'effective': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'permitted': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE']}, 'rlimits': [{'type': 'RLIMIT_NOFILE', 'hard': 65535, 'soft': 65535}], 'noNewPrivileges': True}, 'root': {'path': 'rootfs'}, 'mounts': [{'destination': '/proc', 'type': 'proc', 'source': 'proc', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/dev', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}, {'destination': '/dev/pts', 'type': 'devpts', 'source': 'devpts', 'options': ['nosuid', 'noexec', 'newinstance', 'ptmxmode=0666', 'mode=0620', 'gid=5']}, {'destination': '/dev/shm', 'type': 'tmpfs', 'source': 'shm', 'options': ['nosuid', 'noexec', 'nodev', 'mode=1777', 'size=65536k']}, {'destination': '/dev/mqueue', 'type': 'mqueue', 'source': 'mqueue', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/sys', 'type': 'sysfs', 'source': 'sysfs', 'options': ['nosuid', 'noexec', 'nodev', 'ro']}, {'destination': '/run', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}], 'linux': {'resources': {'devices': [{'allow': False, 'access': 'rwm'}]}, 'cgroupsPath': '/default', 'namespaces': [{'type': 'pid'}, {'type': 'ipc'}, {'type': 'uts'}, {'type': 'mount'}, {'type': 'network'}], 'maskedPaths': ['/proc/acpi', '/proc/asound', '/proc/kcore', '/proc/keys', '/proc/latency_stats', '/proc/timer_list', '/proc/timer_stats', '/proc/sched_debug', '/sys/firmware', '/sys/devices/virtual/powercap', '/proc/scsi'], 'readonlyPaths': ['/proc/bus', '/proc/fs', '/proc/irq', '/proc/sys', '/proc/sysrq-trigger']}}}) -2025-11-24T09:37:37.3311425Z changed: [kubenode-renewed-asp] => (item={'key': 'cri-base.json', 'value': {'ociVersion': '1.1.0', 'process': {'user': {'uid': 0, 'gid': 0}, 'cwd': '/', 'capabilities': {'bounding': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'effective': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE'], 'permitted': ['CAP_CHOWN', 'CAP_DAC_OVERRIDE', 'CAP_FSETID', 'CAP_FOWNER', 'CAP_MKNOD', 'CAP_NET_RAW', 'CAP_SETGID', 'CAP_SETUID', 'CAP_SETFCAP', 'CAP_SETPCAP', 'CAP_NET_BIND_SERVICE', 'CAP_SYS_CHROOT', 'CAP_KILL', 'CAP_AUDIT_WRITE']}, 'rlimits': [{'type': 'RLIMIT_NOFILE', 'hard': 65535, 'soft': 65535}], 'noNewPrivileges': True}, 'root': {'path': 'rootfs'}, 'mounts': [{'destination': '/proc', 'type': 'proc', 'source': 'proc', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/dev', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}, {'destination': '/dev/pts', 'type': 'devpts', 'source': 'devpts', 'options': ['nosuid', 'noexec', 'newinstance', 'ptmxmode=0666', 'mode=0620', 'gid=5']}, {'destination': '/dev/shm', 'type': 'tmpfs', 'source': 'shm', 'options': ['nosuid', 'noexec', 'nodev', 'mode=1777', 'size=65536k']}, {'destination': '/dev/mqueue', 'type': 'mqueue', 'source': 'mqueue', 'options': ['nosuid', 'noexec', 'nodev']}, {'destination': '/sys', 'type': 'sysfs', 'source': 'sysfs', 'options': ['nosuid', 'noexec', 'nodev', 'ro']}, {'destination': '/run', 'type': 'tmpfs', 'source': 'tmpfs', 'options': ['nosuid', 'strictatime', 'mode=755', 'size=65536k']}], 'linux': {'resources': {'devices': [{'allow': False, 'access': 'rwm'}]}, 'cgroupsPath': '/default', 'namespaces': [{'type': 'pid'}, {'type': 'ipc'}, {'type': 'uts'}, {'type': 'mount'}, {'type': 'network'}], 'maskedPaths': ['/proc/acpi', '/proc/asound', '/proc/kcore', '/proc/keys', '/proc/latency_stats', '/proc/timer_list', '/proc/timer_stats', '/proc/sched_debug', '/sys/firmware', '/sys/devices/virtual/powercap', '/proc/scsi'], 'readonlyPaths': ['/proc/bus', '/proc/fs', '/proc/irq', '/proc/sys', '/proc/sysrq-trigger']}}}) -2025-11-24T09:37:37.3317920Z -2025-11-24T09:37:37.3318276Z TASK [container-engine/containerd : Containerd | Copy containerd config file] *** -2025-11-24T09:37:37.9130387Z changed: [kubenode-super-marlin] -2025-11-24T09:37:37.9131127Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:37.9131620Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:37.9131928Z -2025-11-24T09:37:37.9132317Z TASK [container-engine/containerd : Containerd | Create registry directories] *** -2025-11-24T09:37:38.2475944Z changed: [kubenode-super-marlin] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) -2025-11-24T09:37:38.2477645Z changed: [kubenode-teaching-gobbler] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) -2025-11-24T09:37:38.2479607Z changed: [kubenode-renewed-asp] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) -2025-11-24T09:37:38.2480465Z -2025-11-24T09:37:38.2480877Z TASK [container-engine/containerd : Containerd | Write hosts.toml file] ******** -2025-11-24T09:37:38.9610185Z changed: [kubenode-super-marlin] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) -2025-11-24T09:37:38.9611913Z changed: [kubenode-teaching-gobbler] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) -2025-11-24T09:37:38.9613756Z changed: [kubenode-renewed-asp] => (item={'prefix': 'docker.io', 'mirrors': [{'host': 'https://registry-1.docker.io', 'capabilities': ['pull', 'resolve'], 'skip_verify': False}]}) -2025-11-24T09:37:38.9614603Z -2025-11-24T09:37:38.9615014Z TASK [container-engine/containerd : Containerd | Flush handlers] *************** -2025-11-24T09:37:38.9615550Z -2025-11-24T09:37:38.9615938Z TASK [container-engine/containerd : Containerd | Flush handlers] *************** -2025-11-24T09:37:38.9616448Z -2025-11-24T09:37:38.9616835Z TASK [container-engine/containerd : Containerd | Flush handlers] *************** -2025-11-24T09:37:38.9617339Z -2025-11-24T09:37:38.9617765Z RUNNING HANDLER [container-engine/containerd : Containerd | restart containerd] *** -2025-11-24T09:37:40.2121638Z Still deploying... -2025-11-24T09:37:40.2371227Z changed: [kubenode-super-marlin] -2025-11-24T09:37:40.2371947Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:40.2372583Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:40.2373181Z -2025-11-24T09:37:40.2373666Z RUNNING HANDLER [container-engine/containerd : Containerd | wait for containerd] *** -2025-11-24T09:37:40.7623866Z changed: [kubenode-renewed-asp] -2025-11-24T09:37:40.7624532Z changed: [kubenode-super-marlin] -2025-11-24T09:37:40.7625139Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:37:40.7625506Z -2025-11-24T09:37:40.7626270Z RUNNING HANDLER [container-engine/nerdctl : Get nerdctl completion] ************ -2025-11-24T09:37:40.9451534Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:40.9724315Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:40.9725002Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:40.9725319Z -2025-11-24T09:37:40.9725669Z RUNNING HANDLER [container-engine/nerdctl : Install nerdctl completion] ******** -2025-11-24T09:37:41.0130741Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:41.0409373Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:41.0410264Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:41.0410666Z -2025-11-24T09:37:41.0411071Z RUNNING HANDLER [container-engine/crictl : Get crictl completion] ************** -2025-11-24T09:37:41.0767115Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:41.1095731Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:41.1096613Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:41.1097006Z -2025-11-24T09:37:41.1097428Z RUNNING HANDLER [container-engine/crictl : Install crictl completion] ********** -2025-11-24T09:37:41.1793068Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:41.1793979Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:41.1794673Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:41.1795050Z -2025-11-24T09:37:41.1795547Z TASK [container-engine/containerd : Containerd | Ensure containerd is started and enabled] *** -2025-11-24T09:37:42.0204231Z ok: [kubenode-super-marlin] -2025-11-24T09:37:42.0204887Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.0205369Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:42.0205709Z -2025-11-24T09:37:42.0206232Z TASK [container-engine/containerd-common : Containerd-common | check if fedora coreos] *** -2025-11-24T09:37:42.0541345Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.0939187Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.0939918Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.0940279Z -2025-11-24T09:37:42.0940677Z TASK [container-engine/containerd-common : Containerd-common | set is_ostree] *** -2025-11-24T09:37:42.1610092Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.1610828Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.1611319Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.1611618Z -2025-11-24T09:37:42.1612039Z TASK [container-engine/containerd-common : Containerd-common | gather os specific variables] *** -2025-11-24T09:37:42.3040618Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:37:42.3041828Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.3043189Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:37:42.3044301Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.3045419Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:37:42.3046555Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.3046927Z -2025-11-24T09:37:42.3047399Z TASK [container-engine/docker-storage : Docker-storage-setup | install git and make] *** -2025-11-24T09:37:42.3475447Z skipping: [kubenode-super-marlin] => (item=git) -2025-11-24T09:37:42.3476409Z skipping: [kubenode-super-marlin] => (item=make) -2025-11-24T09:37:42.3874008Z skipping: [kubenode-renewed-asp] => (item=git) -2025-11-24T09:37:42.3874767Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.3875458Z skipping: [kubenode-renewed-asp] => (item=make) -2025-11-24T09:37:42.3876107Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.3876740Z skipping: [kubenode-teaching-gobbler] => (item=git) -2025-11-24T09:37:42.3877466Z skipping: [kubenode-teaching-gobbler] => (item=make) -2025-11-24T09:37:42.3878145Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.3878518Z -2025-11-24T09:37:42.3879069Z TASK [container-engine/docker-storage : Docker-storage-setup | docker-storage-setup sysconfig template] *** -2025-11-24T09:37:42.4590864Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.4591732Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.4592326Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.4592915Z -2025-11-24T09:37:42.4593559Z TASK [container-engine/docker-storage : Docker-storage-override-directory | docker service storage-setup override dir] *** -2025-11-24T09:37:42.5257571Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.5258286Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.5258802Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.5259129Z -2025-11-24T09:37:42.5259640Z TASK [container-engine/docker-storage : Docker-storage-override | docker service storage-setup override file] *** -2025-11-24T09:37:42.5648165Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.5987292Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.5988012Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.5988354Z -2025-11-24T09:37:42.5988699Z TASK [container-engine/docker-storage : Docker-storage-setup | install lvm2] *** -2025-11-24T09:37:42.6730091Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.6730786Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.6731281Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.6731584Z -2025-11-24T09:37:42.6732067Z TASK [container-engine/docker-storage : Docker-storage-setup | install and run container-storage-setup] *** -2025-11-24T09:37:42.7672130Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.7673232Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.7673845Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.7674232Z -2025-11-24T09:37:42.7674639Z TASK [container-engine/docker : Check if fedora coreos] ************************ -2025-11-24T09:37:42.8325152Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.8325855Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.8326373Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.8326714Z -2025-11-24T09:37:42.8327045Z TASK [container-engine/docker : Set is_ostree] ********************************* -2025-11-24T09:37:42.9003547Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:42.9004220Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:42.9004790Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:42.9005087Z -2025-11-24T09:37:42.9005421Z TASK [container-engine/docker : Gather os specific variables] ****************** -2025-11-24T09:37:43.0411779Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:37:43.0413281Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.0414414Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:37:43.0415436Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.0416380Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/container-engine/docker/vars/../vars/ubuntu.yml) -2025-11-24T09:37:43.0417352Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.0417661Z -2025-11-24T09:37:43.0418003Z TASK [container-engine/docker : Warn about Docker version on SUSE] ************* -2025-11-24T09:37:43.1168639Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.1169347Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.1170273Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.1170602Z -2025-11-24T09:37:43.1170939Z TASK [container-engine/docker : Gather DNS facts] ****************************** -2025-11-24T09:37:43.1906582Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.1907530Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.1908149Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.1908552Z -2025-11-24T09:37:43.1908960Z TASK [container-engine/docker : Remove legacy docker repo file] **************** -2025-11-24T09:37:43.2290936Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.2631661Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.2632584Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.2633191Z -2025-11-24T09:37:43.2633686Z TASK [container-engine/docker : Ensure old versions of Docker are not installed. | Debian] *** -2025-11-24T09:37:43.3382315Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.3383431Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.3384089Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.3384486Z -2025-11-24T09:37:43.3384921Z TASK [container-engine/docker : Ensure podman not installed. | RedHat] ********* -2025-11-24T09:37:43.4967337Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.5347779Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.5348535Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.5348864Z -2025-11-24T09:37:43.5349284Z TASK [container-engine/docker : Ensure old versions of Docker are not installed. | RedHat] *** -2025-11-24T09:37:43.6099576Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.6100465Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.6101059Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.6101432Z -2025-11-24T09:37:43.6101910Z TASK [container-engine/docker : Ensure docker-ce repository public key is installed] *** -2025-11-24T09:37:43.6566249Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:37:43.6567209Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:37:43.6965090Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.6966010Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.6966654Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:37:43.6967237Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.6967537Z -2025-11-24T09:37:43.6967866Z TASK [container-engine/docker : Remove the archived debian apt repository] ***** -2025-11-24T09:37:43.7681862Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.7682999Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.7683595Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.7683992Z -2025-11-24T09:37:43.7684414Z TASK [container-engine/docker : Ensure docker-ce repository is enabled] ******** -2025-11-24T09:37:43.8098204Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:37:43.8625294Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.8626041Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:37:43.8626575Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.8627119Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:37:43.8627668Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.8627975Z -2025-11-24T09:37:43.8628318Z TASK [container-engine/docker : Configure docker repository on Fedora] ********* -2025-11-24T09:37:43.9136455Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:43.9397124Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:43.9398021Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:43.9398421Z -2025-11-24T09:37:43.9399035Z TASK [container-engine/docker : Configure docker repository on RedHat/CentOS/OracleLinux/AlmaLinux/KylinLinux] *** -2025-11-24T09:37:44.0090488Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.0091351Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.0091965Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.0092341Z -2025-11-24T09:37:44.0092945Z TASK [container-engine/docker : Remove dpkg hold] ****************************** -2025-11-24T09:37:44.0255698Z skipping: [kubenode-super-marlin] => (item=containerd.io) -2025-11-24T09:37:44.0470011Z skipping: [kubenode-super-marlin] => (item=docker-ce) -2025-11-24T09:37:44.0471122Z skipping: [kubenode-super-marlin] => (item=docker-ce-cli) -2025-11-24T09:37:44.0935445Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.0936385Z skipping: [kubenode-renewed-asp] => (item=containerd.io) -2025-11-24T09:37:44.0937177Z skipping: [kubenode-renewed-asp] => (item=docker-ce) -2025-11-24T09:37:44.0937931Z skipping: [kubenode-teaching-gobbler] => (item=containerd.io) -2025-11-24T09:37:44.0938692Z skipping: [kubenode-renewed-asp] => (item=docker-ce-cli) -2025-11-24T09:37:44.0939727Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.0940365Z skipping: [kubenode-teaching-gobbler] => (item=docker-ce) -2025-11-24T09:37:44.0941118Z skipping: [kubenode-teaching-gobbler] => (item=docker-ce-cli) -2025-11-24T09:37:44.0941820Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.0942188Z -2025-11-24T09:37:44.0942603Z TASK [container-engine/docker : Ensure docker packages are installed] ********** -2025-11-24T09:37:44.1364965Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.1795009Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.1795707Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.1796042Z -2025-11-24T09:37:44.1796493Z TASK [container-engine/docker : Tell Debian hosts not to change the docker version with apt upgrade] *** -2025-11-24T09:37:44.2077897Z skipping: [kubenode-super-marlin] => (item=containerd.io) -2025-11-24T09:37:44.2332122Z skipping: [kubenode-super-marlin] => (item=docker-ce) -2025-11-24T09:37:44.2333145Z skipping: [kubenode-super-marlin] => (item=docker-ce-cli) -2025-11-24T09:37:44.2786885Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.2787987Z skipping: [kubenode-renewed-asp] => (item=containerd.io) -2025-11-24T09:37:44.2788775Z skipping: [kubenode-renewed-asp] => (item=docker-ce) -2025-11-24T09:37:44.2789525Z skipping: [kubenode-renewed-asp] => (item=docker-ce-cli) -2025-11-24T09:37:44.2790349Z skipping: [kubenode-teaching-gobbler] => (item=containerd.io) -2025-11-24T09:37:44.2791080Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.2791744Z skipping: [kubenode-teaching-gobbler] => (item=docker-ce) -2025-11-24T09:37:44.2792509Z skipping: [kubenode-teaching-gobbler] => (item=docker-ce-cli) -2025-11-24T09:37:44.2793441Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.2794116Z -2025-11-24T09:37:44.2794633Z TASK [container-engine/docker : Ensure service is started if docker packages are already present] *** -2025-11-24T09:37:44.3163982Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.4220026Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.4220923Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.4221316Z -2025-11-24T09:37:44.4221798Z TASK [container-engine/docker : Flush handlers so we can wait for docker to come up] *** -2025-11-24T09:37:44.4222826Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.4223186Z -2025-11-24T09:37:44.4223666Z TASK [container-engine/docker : Flush handlers so we can wait for docker to come up] *** -2025-11-24T09:37:44.4224482Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.4224821Z -2025-11-24T09:37:44.4225271Z TASK [container-engine/docker : Flush handlers so we can wait for docker to come up] *** -2025-11-24T09:37:44.4226077Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.4226445Z -2025-11-24T09:37:44.4226851Z TASK [container-engine/docker : Install docker plugin] ************************* -2025-11-24T09:37:44.4554802Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.4773274Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.4774004Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.4774318Z -2025-11-24T09:37:44.4774719Z TASK [container-engine/docker : Create docker service systemd directory if it doesn't exist] *** -2025-11-24T09:37:44.5144983Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.5394683Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.5395396Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.5395712Z -2025-11-24T09:37:44.5396452Z TASK [container-engine/docker : Write docker proxy drop-in] ******************** -2025-11-24T09:37:44.5991090Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.5992026Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.5992839Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.5993229Z -2025-11-24T09:37:44.5993645Z TASK [container-engine/docker : Get systemd version] *************************** -2025-11-24T09:37:44.6366809Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.6652209Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.6653645Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.6654046Z -2025-11-24T09:37:44.6654460Z TASK [container-engine/docker : Write docker.service systemd file] ************* -2025-11-24T09:37:44.7409327Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.7410034Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.7410535Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.7410841Z -2025-11-24T09:37:44.7411213Z TASK [container-engine/docker : Write docker options systemd drop-in] ********** -2025-11-24T09:37:44.8127737Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.8128574Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.8129167Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.8129561Z -2025-11-24T09:37:44.8129968Z TASK [container-engine/docker : Write docker dns systemd drop-in] ************** -2025-11-24T09:37:44.8771854Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.8772531Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.8773207Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.8773546Z -2025-11-24T09:37:44.8773911Z TASK [container-engine/docker : Copy docker orphan clean up script to the node] *** -2025-11-24T09:37:44.9488591Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:44.9489421Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:44.9490011Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:44.9490401Z -2025-11-24T09:37:44.9490797Z TASK [container-engine/docker : Write docker orphan clean up systemd drop-in] *** -2025-11-24T09:37:45.0820724Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:45.0821626Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:45.0822217Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:45.0822598Z -2025-11-24T09:37:45.0823190Z TASK [container-engine/docker : Flush handlers] ******************************** -2025-11-24T09:37:45.0824189Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:45.0824478Z -2025-11-24T09:37:45.0824800Z TASK [container-engine/docker : Flush handlers] ******************************** -2025-11-24T09:37:45.0825437Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:45.0825722Z -2025-11-24T09:37:45.0826044Z TASK [container-engine/docker : Flush handlers] ******************************** -2025-11-24T09:37:45.0826691Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:45.0826998Z -2025-11-24T09:37:45.0827339Z TASK [container-engine/docker : Ensure docker service is started and enabled] *** -2025-11-24T09:37:45.1242377Z skipping: [kubenode-super-marlin] => (item=docker) -2025-11-24T09:37:45.1799001Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:45.1799758Z skipping: [kubenode-renewed-asp] => (item=docker) -2025-11-24T09:37:45.1800358Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:45.1800897Z skipping: [kubenode-teaching-gobbler] => (item=docker) -2025-11-24T09:37:45.1801503Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:45.1801814Z -2025-11-24T09:37:45.1802155Z TASK [container-engine/cri-dockerd : Runc | Download cri-dockerd binary] ******* -2025-11-24T09:37:45.2193015Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:45.2561764Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:45.2562514Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:45.2563055Z -2025-11-24T09:37:45.2563433Z TASK [container-engine/cri-dockerd : Copy cri-dockerd binary from download dir] *** -2025-11-24T09:37:45.3194824Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:45.3195744Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:45.3196800Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:45.3197193Z -2025-11-24T09:37:45.3197577Z TASK [container-engine/cri-dockerd : Generate cri-dockerd systemd unit files] *** -2025-11-24T09:37:45.4701258Z skipping: [kubenode-super-marlin] => (item=cri-dockerd.service) -2025-11-24T09:37:45.4702354Z skipping: [kubenode-super-marlin] => (item=cri-dockerd.socket) -2025-11-24T09:37:45.4874237Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:45.8327196Z skipping: [kubenode-renewed-asp] => (item=cri-dockerd.service) -2025-11-24T09:37:45.8328360Z skipping: [kubenode-renewed-asp] => (item=cri-dockerd.socket) -2025-11-24T09:37:45.8328952Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:45.8329524Z skipping: [kubenode-teaching-gobbler] => (item=cri-dockerd.service) -2025-11-24T09:37:45.8330226Z skipping: [kubenode-teaching-gobbler] => (item=cri-dockerd.socket) -2025-11-24T09:37:45.8330823Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:45.8331121Z -2025-11-24T09:37:45.8331554Z TASK [container-engine/cri-dockerd : Flush handlers] *************************** -2025-11-24T09:37:45.8332163Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:45.8332439Z -2025-11-24T09:37:45.8332939Z TASK [container-engine/cri-dockerd : Flush handlers] *************************** -2025-11-24T09:37:45.8333598Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:45.8333876Z -2025-11-24T09:37:45.8334194Z TASK [container-engine/cri-dockerd : Flush handlers] *************************** -2025-11-24T09:37:45.8334810Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:45.8335108Z -2025-11-24T09:37:45.8335408Z PLAY [Add worker nodes to the etcd play if needed] ***************************** -2025-11-24T09:37:45.8335806Z -2025-11-24T09:37:45.8336133Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:37:45.9781211Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:37:45.9781994Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:37:45.9782960Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:37:45.9783574Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:45.9783853Z -2025-11-24T09:37:45.9784173Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:37:46.0739861Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.0740797Z -2025-11-24T09:37:46.0741218Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:37:46.1937627Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.1938544Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:46.1939152Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:46.1939522Z -2025-11-24T09:37:46.1939960Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:37:46.2603784Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.2604300Z -2025-11-24T09:37:46.2604692Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:37:46.3606810Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.3607591Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:46.3608118Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:46.3608415Z -2025-11-24T09:37:46.3608860Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:37:46.5248705Z [WARNING]: Could not match supplied host pattern, ignoring: -2025-11-24T09:37:46.5249712Z _kubespray_needs_etcd -2025-11-24T09:37:46.5948069Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.5949013Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:46.5949620Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:46.5950004Z -2025-11-24T09:37:46.5950338Z PLAY [Install etcd] ************************************************************ -2025-11-24T09:37:46.5950787Z -2025-11-24T09:37:46.5951210Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:37:46.7133887Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:37:46.7134703Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:37:46.7135436Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:37:46.7136057Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.7136343Z -2025-11-24T09:37:46.7136679Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:37:46.7703992Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.7704597Z -2025-11-24T09:37:46.7705008Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:37:46.8728549Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.8729386Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:46.8730004Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:46.8730391Z -2025-11-24T09:37:46.8730830Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:37:46.9259979Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:46.9260440Z -2025-11-24T09:37:46.9260779Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:37:47.0396328Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:47.0397201Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:47.0397821Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:47.0398190Z -2025-11-24T09:37:47.0398716Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:37:47.5339971Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:47.5340903Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:47.5341515Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:47.5341882Z -2025-11-24T09:37:47.5342265Z PLAY [Install Kubernetes nodes] ************************************************ -2025-11-24T09:37:47.5343025Z -2025-11-24T09:37:47.5343439Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:37:47.6706974Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:37:47.6708009Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:37:47.6708902Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:37:47.6709670Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:47.6710025Z -2025-11-24T09:37:47.6710805Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:37:47.7247450Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:47.7248068Z -2025-11-24T09:37:47.7248523Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:37:47.8257743Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:47.8258631Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:47.8259256Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:47.8259594Z -2025-11-24T09:37:47.8260037Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:37:47.8774471Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:47.8775066Z -2025-11-24T09:37:47.9767743Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:37:47.9768724Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:47.9769332Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:47.9769927Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:47.9770323Z -2025-11-24T09:37:47.9770839Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:37:48.2780164Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:48.2780868Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:48.2781385Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:48.2781701Z -2025-11-24T09:37:48.2782011Z PLAY [Install the control plane] *********************************************** -2025-11-24T09:37:48.2782425Z -2025-11-24T09:37:48.2787706Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:37:48.4001608Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:37:48.4002553Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:37:48.4003665Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:37:48.4004421Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:48.4004763Z -2025-11-24T09:37:48.4005184Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:37:48.4623266Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:48.4624006Z -2025-11-24T09:37:48.4624344Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:37:48.5632293Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:48.5633380Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:48.5634031Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:48.5634379Z -2025-11-24T09:37:48.5634825Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:37:48.6117538Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:48.6118138Z -2025-11-24T09:37:48.6118570Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:37:48.7505320Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:48.7506196Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:48.7506811Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:48.7507199Z -2025-11-24T09:37:48.7507738Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:37:49.1764288Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:49.1765012Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:49.1765620Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:49.1765951Z -2025-11-24T09:37:49.1766278Z PLAY [Invoke kubeadm and install a CNI] **************************************** -2025-11-24T09:37:49.1766709Z -2025-11-24T09:37:49.1767052Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:37:49.4412486Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:37:49.4413752Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:37:49.4414680Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:37:49.4415347Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:49.4415953Z -2025-11-24T09:37:49.4416295Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:37:49.7754694Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:49.7755187Z -2025-11-24T09:37:49.8770478Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:37:49.8771394Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:49.8771988Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:49.8772566Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:49.8773238Z -2025-11-24T09:37:49.8773610Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:37:49.9482210Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:49.9482849Z -2025-11-24T09:37:49.9483229Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:37:50.0830359Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:50.0831029Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:50.0831553Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:50.0831869Z -2025-11-24T09:37:50.0832318Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:37:50.1346570Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:50.2138545Z Still deploying... -2025-11-24T09:37:50.6722513Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:50.6723515Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:50.6723866Z -2025-11-24T09:37:50.6724340Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** -2025-11-24T09:37:50.7187837Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:50.9191689Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:50.9192359Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:50.9192930Z -2025-11-24T09:37:50.9193359Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** -2025-11-24T09:37:51.2891113Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:51.2892065Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:51.2895031Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:51.2895495Z -2025-11-24T09:37:51.2895895Z PLAY [Install Calico Route Reflector] ****************************************** -2025-11-24T09:37:51.2897832Z skipping: no hosts matched -2025-11-24T09:37:51.2898937Z -2025-11-24T09:37:51.2899371Z PLAY [Patch Kubernetes for Windows] ******************************************** -2025-11-24T09:37:51.2900666Z -2025-11-24T09:37:51.2901152Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:37:51.4224988Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:37:51.4226229Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:37:51.4227418Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:37:51.4228437Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:51.4228895Z -2025-11-24T09:37:51.4229430Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:37:51.5034635Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:51.5035168Z -2025-11-24T09:37:51.5035562Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:37:51.5540729Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:51.5541338Z -2025-11-24T09:37:51.5541832Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:37:51.6149046Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:51.6149680Z -2025-11-24T09:37:51.6150137Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:37:51.7048946Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:51.7049433Z -2025-11-24T09:37:51.7049874Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:37:51.9489417Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:51.9489953Z -2025-11-24T09:37:51.9490630Z PLAY [Install Kubernetes apps] ************************************************* -2025-11-24T09:37:51.9491070Z -2025-11-24T09:37:51.9491457Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:37:52.0806300Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:37:52.0807195Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:37:52.0807928Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:37:52.0808556Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:52.0808843Z -2025-11-24T09:37:52.0809204Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:37:52.1476781Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:52.1477244Z -2025-11-24T09:37:52.1477592Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:37:52.2629850Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:52.2630571Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:52.2631107Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:52.2631391Z -2025-11-24T09:37:52.2631763Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:37:52.3317013Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:52.3317528Z -2025-11-24T09:37:52.3317892Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:37:52.4507305Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:54.6359316Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:54.6360189Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:54.6360579Z -2025-11-24T09:37:54.6361548Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:37:54.6362435Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:54.6363135Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:54.6363616Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:54.6363913Z -2025-11-24T09:37:54.6364237Z PLAY [Apply resolv.conf changes now that cluster DNS is up] ******************** -2025-11-24T09:37:54.6364641Z -2025-11-24T09:37:54.6364962Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:37:54.7648311Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:37:54.7649182Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:37:54.7649912Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:37:54.7650539Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:54.7650829Z -2025-11-24T09:37:54.7651181Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:37:54.8387585Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:54.8388233Z -2025-11-24T09:37:54.8388649Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:37:54.9528406Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:54.9529121Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:54.9529644Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:54.9529932Z -2025-11-24T09:37:54.9530308Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:37:55.0040520Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:55.0041142Z -2025-11-24T09:37:55.0041567Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:37:55.3775751Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:55.3776607Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:55.3777230Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:55.3777608Z -2025-11-24T09:37:55.3778153Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:37:55.5110426Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:55.5111099Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:55.5111593Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:55.5112275Z -2025-11-24T09:37:55.5112819Z TASK [kubernetes/preinstall : Create kubernetes directories] ******************* -2025-11-24T09:37:55.5436009Z skipping: [kubenode-super-marlin] => (item=/etc/kubernetes) -2025-11-24T09:37:55.5437123Z skipping: [kubenode-super-marlin] => (item=/etc/kubernetes/manifests) -2025-11-24T09:37:55.5941128Z skipping: [kubenode-super-marlin] => (item=/usr/local/bin/kubernetes-scripts) -2025-11-24T09:37:55.5942183Z skipping: [kubenode-super-marlin] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) -2025-11-24T09:37:55.5943195Z skipping: [kubenode-renewed-asp] => (item=/etc/kubernetes) -2025-11-24T09:37:55.5943821Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:55.5944447Z skipping: [kubenode-renewed-asp] => (item=/etc/kubernetes/manifests) -2025-11-24T09:37:55.5945197Z skipping: [kubenode-renewed-asp] => (item=/usr/local/bin/kubernetes-scripts) -2025-11-24T09:37:55.5945916Z skipping: [kubenode-teaching-gobbler] => (item=/etc/kubernetes) -2025-11-24T09:37:55.5946708Z skipping: [kubenode-renewed-asp] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) -2025-11-24T09:37:55.5947413Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:55.5948017Z skipping: [kubenode-teaching-gobbler] => (item=/etc/kubernetes/manifests) -2025-11-24T09:37:55.5948801Z skipping: [kubenode-teaching-gobbler] => (item=/usr/local/bin/kubernetes-scripts) -2025-11-24T09:37:55.5949682Z skipping: [kubenode-teaching-gobbler] => (item=/usr/libexec/kubernetes/kubelet-plugins/volume/exec) -2025-11-24T09:37:55.5950411Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:55.5950721Z -2025-11-24T09:37:55.5951433Z TASK [kubernetes/preinstall : Create other directories of root owner] ********** -2025-11-24T09:37:55.6358962Z skipping: [kubenode-super-marlin] => (item=/etc/kubernetes/ssl) -2025-11-24T09:37:55.6360034Z skipping: [kubenode-super-marlin] => (item=/usr/local/bin) -2025-11-24T09:37:55.6786998Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:55.6788055Z skipping: [kubenode-renewed-asp] => (item=/etc/kubernetes/ssl) -2025-11-24T09:37:55.6788921Z skipping: [kubenode-renewed-asp] => (item=/usr/local/bin) -2025-11-24T09:37:55.6789647Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:55.6790720Z skipping: [kubenode-teaching-gobbler] => (item=/etc/kubernetes/ssl) -2025-11-24T09:37:55.6791571Z skipping: [kubenode-teaching-gobbler] => (item=/usr/local/bin) -2025-11-24T09:37:55.6792255Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:55.6792562Z -2025-11-24T09:37:55.6793127Z TASK [kubernetes/preinstall : Create cni directories] ************************** -2025-11-24T09:37:55.6990278Z skipping: [kubenode-super-marlin] => (item=/etc/cni/net.d) -2025-11-24T09:37:55.7164261Z skipping: [kubenode-super-marlin] => (item=/opt/cni/bin) -2025-11-24T09:37:55.7534700Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:55.7535701Z skipping: [kubenode-renewed-asp] => (item=/etc/cni/net.d) -2025-11-24T09:37:55.7536505Z skipping: [kubenode-renewed-asp] => (item=/opt/cni/bin) -2025-11-24T09:37:55.7537222Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:55.7537924Z skipping: [kubenode-teaching-gobbler] => (item=/etc/cni/net.d) -2025-11-24T09:37:55.7538742Z skipping: [kubenode-teaching-gobbler] => (item=/opt/cni/bin) -2025-11-24T09:37:55.7539486Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:55.7539870Z -2025-11-24T09:37:55.7540291Z TASK [kubernetes/preinstall : Create calico cni directories] ******************* -2025-11-24T09:37:55.7881121Z skipping: [kubenode-super-marlin] => (item=/var/lib/calico) -2025-11-24T09:37:55.8140230Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:55.8141226Z skipping: [kubenode-renewed-asp] => (item=/var/lib/calico) -2025-11-24T09:37:55.8141966Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:55.8142855Z skipping: [kubenode-teaching-gobbler] => (item=/var/lib/calico) -2025-11-24T09:37:55.8143574Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:55.8143946Z -2025-11-24T09:37:55.8144392Z TASK [kubernetes/preinstall : Create temporary resolveconf cloud init file] **** -2025-11-24T09:37:55.8923945Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:55.8924834Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:55.8925433Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:55.8925832Z -2025-11-24T09:37:55.8926221Z TASK [kubernetes/preinstall : Add domain/search/nameservers/options to resolv.conf] *** -2025-11-24T09:37:56.2118097Z ok: [kubenode-super-marlin] -2025-11-24T09:37:56.2118731Z ok: [kubenode-renewed-asp] -2025-11-24T09:37:56.2119201Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:37:56.2119481Z -2025-11-24T09:37:56.2119877Z TASK [kubernetes/preinstall : Remove search/domain/nameserver options before block] *** -2025-11-24T09:37:57.0962408Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:37:57.0963631Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:37:57.0964399Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:37:57.0965146Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:37:57.0965926Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:37:57.0966682Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:37:57.0967405Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:37:57.0968116Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:37:57.0968832Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:37:57.0969532Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:37:57.0970626Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:37:57.0971353Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:37:57.0971762Z -2025-11-24T09:37:57.0972144Z TASK [kubernetes/preinstall : Remove search/domain/nameserver options after block] *** -2025-11-24T09:37:58.0233728Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:37:58.0234905Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:37:58.0236171Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'search\\s']) -2025-11-24T09:37:58.0236959Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:37:58.0237718Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:37:58.0238479Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'nameserver\\s']) -2025-11-24T09:37:58.0239196Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:37:58.0239913Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:37:58.0240618Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'domain\\s']) -2025-11-24T09:37:58.0241316Z ok: [kubenode-super-marlin] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:37:58.0242040Z ok: [kubenode-teaching-gobbler] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:37:58.0242896Z ok: [kubenode-renewed-asp] => (item=['/etc/resolv.conf', 'options\\s']) -2025-11-24T09:37:58.0243310Z -2025-11-24T09:37:58.0243690Z TASK [kubernetes/preinstall : Get temporary resolveconf cloud init file content] *** -2025-11-24T09:37:58.1352483Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.1353615Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.1354231Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.1354622Z -2025-11-24T09:37:58.1355077Z TASK [kubernetes/preinstall : Persist resolvconf cloud init file] ************** -2025-11-24T09:37:58.2253071Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.2253924Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.2254544Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.2254940Z -2025-11-24T09:37:58.2255382Z TASK [kubernetes/preinstall : Create systemd-resolved drop-in directory] ******* -2025-11-24T09:37:58.3202840Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.3203754Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.3204358Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.3204756Z -2025-11-24T09:37:58.3205192Z TASK [kubernetes/preinstall : Write Kubespray DNS settings to systemd-resolved] *** -2025-11-24T09:37:58.3653032Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.4055111Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.4055667Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.4055989Z -2025-11-24T09:37:58.4056374Z TASK [kubernetes/preinstall : NetworkManager | Ensure NetworkManager conf.d dir] *** -2025-11-24T09:37:58.4897641Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.4898220Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.4898714Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.4899030Z -2025-11-24T09:37:58.4899616Z TASK [kubernetes/preinstall : NetworkManager | Prevent NetworkManager from managing Calico interfaces (cali*/tunl*/vxlan.calico)] *** -2025-11-24T09:37:58.5300854Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.5601159Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.5601776Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.5602139Z -2025-11-24T09:37:58.5602976Z TASK [kubernetes/preinstall : NetworkManager | Prevent NetworkManager from managing K8S interfaces (kube-ipvs0/nodelocaldns)] *** -2025-11-24T09:37:58.6427115Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.6427797Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.6428301Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.6428611Z -2025-11-24T09:37:58.6429428Z TASK [kubernetes/preinstall : NetworkManager | Add nameservers to NM configuration] *** -2025-11-24T09:37:58.7241672Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.7242283Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.7243028Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.7243369Z -2025-11-24T09:37:58.7243798Z TASK [kubernetes/preinstall : Set default dns if remove_default_searchdomains is false] *** -2025-11-24T09:37:58.7638281Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.7949333Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.7950352Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.7950753Z -2025-11-24T09:37:58.7951236Z TASK [kubernetes/preinstall : NetworkManager | Add DNS search to NM configuration] *** -2025-11-24T09:37:58.8290222Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:58.8595754Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:58.8596351Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:58.8596687Z -2025-11-24T09:37:58.8597108Z TASK [kubernetes/preinstall : NetworkManager | Add DNS options to NM configuration] *** -2025-11-24T09:37:59.0467846Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.0468532Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.0469130Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.0469495Z -2025-11-24T09:37:59.0469933Z TASK [kubernetes/preinstall : Update package management cache (zypper) - SUSE] *** -2025-11-24T09:37:59.0814733Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.1063536Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.1064212Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.1064556Z -2025-11-24T09:37:59.1064918Z TASK [kubernetes/preinstall : Add Debian Backports apt repo] ******************* -2025-11-24T09:37:59.1807181Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.1807813Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.1808411Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.1808790Z -2025-11-24T09:37:59.1809323Z TASK [kubernetes/preinstall : Set libseccomp2 pin priority to apt_preferences on Debian buster] *** -2025-11-24T09:37:59.2173281Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.2440698Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.2441468Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.2441913Z -2025-11-24T09:37:59.2442383Z TASK [kubernetes/preinstall : Update package management cache (APT)] *********** -2025-11-24T09:37:59.3096830Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.3097539Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.3098147Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.3098550Z -2025-11-24T09:37:59.3098968Z TASK [kubernetes/preinstall : Remove legacy docker repo file] ****************** -2025-11-24T09:37:59.3464548Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.3715506Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.3716184Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.3716579Z -2025-11-24T09:37:59.3717022Z TASK [kubernetes/preinstall : Install epel-release on RHEL derivatives] ******** -2025-11-24T09:37:59.4068149Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.4425962Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.4426653Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.4427041Z -2025-11-24T09:37:59.4427459Z TASK [kubernetes/preinstall : Install packages requirements] ******************* -2025-11-24T09:37:59.4793048Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.5046506Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.5047192Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.5047607Z -2025-11-24T09:37:59.5048024Z TASK [kubernetes/preinstall : Confirm selinux deployed] ************************ -2025-11-24T09:37:59.5380551Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.5678674Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.5679341Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.5679736Z -2025-11-24T09:37:59.5680154Z TASK [kubernetes/preinstall : Set selinux policy] ****************************** -2025-11-24T09:37:59.6018906Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.6363823Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.6364488Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.6364881Z -2025-11-24T09:37:59.6365284Z TASK [kubernetes/preinstall : Disable IPv6 DNS lookup] ************************* -2025-11-24T09:37:59.6701958Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.7115910Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.7116494Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.7117160Z -2025-11-24T09:37:59.7117517Z TASK [kubernetes/preinstall : Clean previously used sysctl file locations] ***** -2025-11-24T09:37:59.7501869Z skipping: [kubenode-super-marlin] => (item=ipv4-ip_forward.conf) -2025-11-24T09:37:59.7503071Z skipping: [kubenode-super-marlin] => (item=bridge-nf-call.conf) -2025-11-24T09:37:59.7503923Z skipping: [kubenode-renewed-asp] => (item=ipv4-ip_forward.conf) -2025-11-24T09:37:59.7504785Z skipping: [kubenode-renewed-asp] => (item=bridge-nf-call.conf) -2025-11-24T09:37:59.7898570Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.7899264Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.7899885Z skipping: [kubenode-teaching-gobbler] => (item=ipv4-ip_forward.conf) -2025-11-24T09:37:59.7900633Z skipping: [kubenode-teaching-gobbler] => (item=bridge-nf-call.conf) -2025-11-24T09:37:59.7901277Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.7901593Z -2025-11-24T09:37:59.7901937Z TASK [kubernetes/preinstall : Stat sysctl file configuration] ****************** -2025-11-24T09:37:59.8243332Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.8618037Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.8618604Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.8618931Z -2025-11-24T09:37:59.8619303Z TASK [kubernetes/preinstall : Change sysctl file path to link source if linked] *** -2025-11-24T09:37:59.9332276Z skipping: [kubenode-super-marlin] -2025-11-24T09:37:59.9333108Z skipping: [kubenode-renewed-asp] -2025-11-24T09:37:59.9333646Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:37:59.9333967Z -2025-11-24T09:37:59.9334319Z TASK [kubernetes/preinstall : Make sure sysctl file path folder exists] ******** -2025-11-24T09:38:00.0028857Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.0029539Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.0030134Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.0030864Z -2025-11-24T09:38:00.0031275Z TASK [kubernetes/preinstall : Enable ip forwarding] **************************** -2025-11-24T09:38:00.0653882Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.0654621Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.0655154Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.0655478Z -2025-11-24T09:38:00.0655844Z TASK [kubernetes/preinstall : Enable ipv6 forwarding] ************************** -2025-11-24T09:38:00.0977605Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.1240333Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.1241014Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.1241410Z -2025-11-24T09:38:00.1241865Z TASK [kubernetes/preinstall : Check if we need to set fs.may_detach_mounts] **** -2025-11-24T09:38:00.1594457Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.1842970Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.1843649Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.1844020Z -2025-11-24T09:38:00.1844390Z TASK [kubernetes/preinstall : Set fs.may_detach_mounts if needed] ************** -2025-11-24T09:38:00.2155783Z Still deploying... -2025-11-24T09:38:00.2498567Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.2499164Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.2499671Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.2499987Z -2025-11-24T09:38:00.2500344Z TASK [kubernetes/preinstall : Ensure kubelet expected parameters are set] ****** -2025-11-24T09:38:00.2879681Z skipping: [kubenode-super-marlin] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) -2025-11-24T09:38:00.2881244Z skipping: [kubenode-super-marlin] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) -2025-11-24T09:38:00.2882311Z skipping: [kubenode-super-marlin] => (item={'name': 'kernel.panic', 'value': 10}) -2025-11-24T09:38:00.2883660Z skipping: [kubenode-super-marlin] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) -2025-11-24T09:38:00.2884714Z skipping: [kubenode-super-marlin] => (item={'name': 'vm.overcommit_memory', 'value': 1}) -2025-11-24T09:38:00.3435699Z skipping: [kubenode-super-marlin] => (item={'name': 'vm.panic_on_oom', 'value': 0}) -2025-11-24T09:38:00.3437095Z skipping: [kubenode-renewed-asp] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) -2025-11-24T09:38:00.3437922Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.3438721Z skipping: [kubenode-renewed-asp] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) -2025-11-24T09:38:00.3439771Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kernel.keys.root_maxbytes', 'value': 25000000}) -2025-11-24T09:38:00.3440634Z skipping: [kubenode-renewed-asp] => (item={'name': 'kernel.panic', 'value': 10}) -2025-11-24T09:38:00.3441489Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kernel.keys.root_maxkeys', 'value': 1000000}) -2025-11-24T09:38:00.3442357Z skipping: [kubenode-renewed-asp] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) -2025-11-24T09:38:00.3443424Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kernel.panic', 'value': 10}) -2025-11-24T09:38:00.3444250Z skipping: [kubenode-renewed-asp] => (item={'name': 'vm.overcommit_memory', 'value': 1}) -2025-11-24T09:38:00.3445094Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kernel.panic_on_oops', 'value': 1}) -2025-11-24T09:38:00.3445954Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'vm.overcommit_memory', 'value': 1}) -2025-11-24T09:38:00.3446766Z skipping: [kubenode-renewed-asp] => (item={'name': 'vm.panic_on_oom', 'value': 0}) -2025-11-24T09:38:00.3447426Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.3448090Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'vm.panic_on_oom', 'value': 0}) -2025-11-24T09:38:00.3448786Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.3449092Z -2025-11-24T09:38:00.3449423Z TASK [kubernetes/preinstall : Check dummy module] ****************************** -2025-11-24T09:38:00.3863470Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.4294221Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.4294919Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.4295263Z -2025-11-24T09:38:00.4295660Z TASK [kubernetes/preinstall : Set additional sysctl variables] ***************** -2025-11-24T09:38:00.4715892Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.5001241Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.5002155Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.5002541Z -2025-11-24T09:38:00.5003314Z TASK [kubernetes/preinstall : Disable fapolicyd service] *********************** -2025-11-24T09:38:00.5358249Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.5656614Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.5657389Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.5657765Z -2025-11-24T09:38:00.5658171Z TASK [kubernetes/preinstall : Ensure NTP package] ****************************** -2025-11-24T09:38:00.5971534Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.6284408Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.6285281Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.6285711Z -2025-11-24T09:38:00.6286163Z TASK [kubernetes/preinstall : Disable systemd-timesyncd] *********************** -2025-11-24T09:38:00.6909402Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.6910235Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.6910838Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.6911224Z -2025-11-24T09:38:00.6911637Z TASK [kubernetes/preinstall : Set fact NTP settings] *************************** -2025-11-24T09:38:00.7597913Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.7599013Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.7599558Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.7599893Z -2025-11-24T09:38:00.7600264Z TASK [kubernetes/preinstall : Generate NTP configuration file.] **************** -2025-11-24T09:38:00.7940907Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:00.9480258Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:00.9481140Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:00.9481537Z -2025-11-24T09:38:00.9481969Z TASK [kubernetes/preinstall : Stop the NTP Deamon For Sync Immediately] ******** -2025-11-24T09:38:01.0226896Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:01.0227722Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:01.0228322Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:01.0228697Z -2025-11-24T09:38:01.0229103Z TASK [kubernetes/preinstall : Force Sync NTP Immediately] ********************** -2025-11-24T09:38:01.0910799Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:01.0911532Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:01.0912073Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:01.0912433Z -2025-11-24T09:38:01.0913106Z TASK [kubernetes/preinstall : Ensure NTP service is started and enabled] ******* -2025-11-24T09:38:01.1577475Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:01.1578244Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:01.1578811Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:01.1579144Z -2025-11-24T09:38:01.1579528Z TASK [kubernetes/preinstall : Ensure tzdata package] *************************** -2025-11-24T09:38:01.2309639Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:01.2310364Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:01.2310917Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:01.2311235Z -2025-11-24T09:38:01.2311570Z TASK [kubernetes/preinstall : Set timezone] ************************************ -2025-11-24T09:38:01.2599340Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:01.2912007Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:01.2913156Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:01.2913583Z -2025-11-24T09:38:01.2914085Z TASK [kubernetes/preinstall : Hosts | create hosts list from inventory] ******** -2025-11-24T09:38:01.5008076Z ok: [kubenode-super-marlin -> localhost] -2025-11-24T09:38:01.5008618Z -2025-11-24T09:38:01.5009005Z TASK [kubernetes/preinstall : Hosts | populate inventory into hosts file] ****** -2025-11-24T09:38:01.8050991Z ok: [kubenode-super-marlin] -2025-11-24T09:38:01.8051857Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:38:01.8052456Z ok: [kubenode-renewed-asp] -2025-11-24T09:38:01.8053013Z -2025-11-24T09:38:01.8053540Z TASK [kubernetes/preinstall : Hosts | populate kubernetes loadbalancer address into hosts file] *** -2025-11-24T09:38:01.9204151Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:01.9204876Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:01.9205387Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:01.9205701Z -2025-11-24T09:38:01.9206074Z TASK [kubernetes/preinstall : Hosts | Retrieve hosts file content] ************* -2025-11-24T09:38:02.2135910Z ok: [kubenode-super-marlin] -2025-11-24T09:38:02.2136559Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:38:02.2137041Z ok: [kubenode-renewed-asp] -2025-11-24T09:38:02.2137311Z -2025-11-24T09:38:02.2137914Z TASK [kubernetes/preinstall : Hosts | Extract existing entries for localhost from hosts file] *** -2025-11-24T09:38:02.5218974Z skipping: [kubenode-super-marlin] => (item=# Your system has configured 'manage_etc_hosts' as True.) -2025-11-24T09:38:02.5220161Z skipping: [kubenode-super-marlin] => (item=# As a result, if you wish for changes to this file to persist) -2025-11-24T09:38:02.5221107Z skipping: [kubenode-renewed-asp] => (item=# Your system has configured 'manage_etc_hosts' as True.) -2025-11-24T09:38:02.5222021Z skipping: [kubenode-renewed-asp] => (item=# As a result, if you wish for changes to this file to persist) -2025-11-24T09:38:02.5223522Z skipping: [kubenode-super-marlin] => (item=# then you will need to either) -2025-11-24T09:38:02.5224334Z skipping: [kubenode-renewed-asp] => (item=# then you will need to either) -2025-11-24T09:38:02.5225236Z skipping: [kubenode-super-marlin] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) -2025-11-24T09:38:02.5226312Z skipping: [kubenode-renewed-asp] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) -2025-11-24T09:38:02.5227316Z skipping: [kubenode-super-marlin] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) -2025-11-24T09:38:02.5228363Z skipping: [kubenode-renewed-asp] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) -2025-11-24T09:38:02.5229286Z skipping: [kubenode-teaching-gobbler] => (item=# Your system has configured 'manage_etc_hosts' as True.) -2025-11-24T09:38:02.5230203Z skipping: [kubenode-renewed-asp] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) -2025-11-24T09:38:02.5231100Z skipping: [kubenode-super-marlin] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) -2025-11-24T09:38:02.5231971Z skipping: [kubenode-teaching-gobbler] => (item=# As a result, if you wish for changes to this file to persist) -2025-11-24T09:38:02.5232809Z skipping: [kubenode-renewed-asp] => (item=#) -2025-11-24T09:38:02.5233330Z skipping: [kubenode-super-marlin] => (item=#) -2025-11-24T09:38:02.5234020Z skipping: [kubenode-renewed-asp] => (item=127.0.1.1 kubenode-renewed-asp kubenode-renewed-asp) -2025-11-24T09:38:02.5234802Z skipping: [kubenode-teaching-gobbler] => (item=# then you will need to either) -2025-11-24T09:38:02.5235599Z skipping: [kubenode-super-marlin] => (item=127.0.1.1 kubenode-super-marlin kubenode-super-marlin) -2025-11-24T09:38:02.5236515Z skipping: [kubenode-teaching-gobbler] => (item=# a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl) -2025-11-24T09:38:02.5237347Z ok: [kubenode-renewed-asp] => (item=127.0.0.1 localhost localhost.localdomain) -2025-11-24T09:38:02.5237977Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:38:02.5238669Z skipping: [kubenode-teaching-gobbler] => (item=# b.) change or remove the value of 'manage_etc_hosts' in) -2025-11-24T09:38:02.5239528Z skipping: [kubenode-renewed-asp] => (item=# The following lines are desirable for IPv6 capable hosts) -2025-11-24T09:38:02.5240297Z ok: [kubenode-super-marlin] => (item=127.0.0.1 localhost localhost.localdomain) -2025-11-24T09:38:02.5241214Z skipping: [kubenode-teaching-gobbler] => (item=# /etc/cloud/cloud.cfg or cloud-config from user-data) -2025-11-24T09:38:02.5241903Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:38:02.5242431Z skipping: [kubenode-teaching-gobbler] => (item=#) -2025-11-24T09:38:02.5243271Z skipping: [kubenode-super-marlin] => (item=# The following lines are desirable for IPv6 capable hosts) -2025-11-24T09:38:02.5244153Z skipping: [kubenode-teaching-gobbler] => (item=127.0.1.1 kubenode-teaching-gobbler kubenode-teaching-gobbler) -2025-11-24T09:38:02.5245081Z ok: [kubenode-renewed-asp] => (item=::1 ip6-localhost ip6-loopback localhost6 localhost6.localdomain) -2025-11-24T09:38:02.5245811Z skipping: [kubenode-renewed-asp] => (item=ff02::1 ip6-allnodes) -2025-11-24T09:38:02.5246450Z skipping: [kubenode-renewed-asp] => (item=ff02::2 ip6-allrouters) -2025-11-24T09:38:02.5247200Z ok: [kubenode-super-marlin] => (item=::1 ip6-localhost ip6-loopback localhost6 localhost6.localdomain) -2025-11-24T09:38:02.5247997Z ok: [kubenode-teaching-gobbler] => (item=127.0.0.1 localhost localhost.localdomain) -2025-11-24T09:38:02.5248628Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:38:02.5249206Z skipping: [kubenode-super-marlin] => (item=ff02::1 ip6-allnodes) -2025-11-24T09:38:02.5249790Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:38:02.5250416Z skipping: [kubenode-renewed-asp] => (item=# Ansible inventory hosts BEGIN) -2025-11-24T09:38:02.5251098Z skipping: [kubenode-super-marlin] => (item=ff02::2 ip6-allrouters) -2025-11-24T09:38:02.5252077Z skipping: [kubenode-teaching-gobbler] => (item=# The following lines are desirable for IPv6 capable hosts) -2025-11-24T09:38:02.5253107Z skipping: [kubenode-renewed-asp] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) -2025-11-24T09:38:02.5253827Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:38:02.5254538Z skipping: [kubenode-renewed-asp] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) -2025-11-24T09:38:02.5255342Z skipping: [kubenode-super-marlin] => (item=# Ansible inventory hosts BEGIN) -2025-11-24T09:38:02.5256295Z skipping: [kubenode-renewed-asp] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) -2025-11-24T09:38:02.5257246Z skipping: [kubenode-super-marlin] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) -2025-11-24T09:38:02.5258146Z ok: [kubenode-teaching-gobbler] => (item=::1 ip6-localhost ip6-loopback localhost6 localhost6.localdomain) -2025-11-24T09:38:02.5258931Z skipping: [kubenode-renewed-asp] => (item=# Ansible inventory hosts END) -2025-11-24T09:38:02.5259727Z skipping: [kubenode-super-marlin] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) -2025-11-24T09:38:02.5260523Z skipping: [kubenode-teaching-gobbler] => (item=ff02::1 ip6-allnodes) -2025-11-24T09:38:02.5261365Z skipping: [kubenode-super-marlin] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) -2025-11-24T09:38:02.5262211Z skipping: [kubenode-teaching-gobbler] => (item=ff02::2 ip6-allrouters) -2025-11-24T09:38:02.5263007Z skipping: [kubenode-super-marlin] => (item=# Ansible inventory hosts END) -2025-11-24T09:38:02.5263619Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:38:02.5264247Z skipping: [kubenode-teaching-gobbler] => (item=# Ansible inventory hosts BEGIN) -2025-11-24T09:38:02.5265094Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.8 kubenode-super-marlin.cluster.local kubenode-super-marlin ) -2025-11-24T09:38:02.5266056Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.4 kubenode-renewed-asp.cluster.local kubenode-renewed-asp ) -2025-11-24T09:38:02.5267038Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.9 kubenode-teaching-gobbler.cluster.local kubenode-teaching-gobbler ) -2025-11-24T09:38:02.5267905Z skipping: [kubenode-teaching-gobbler] => (item=# Ansible inventory hosts END) -2025-11-24T09:38:02.5268408Z -2025-11-24T09:38:02.5268805Z TASK [kubernetes/preinstall : Hosts | Update target hosts file entries dict with required entries] *** -2025-11-24T09:38:02.6605784Z ok: [kubenode-super-marlin] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:38:02.6607147Z ok: [kubenode-super-marlin] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:38:02.6608292Z ok: [kubenode-renewed-asp] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:38:02.6609412Z ok: [kubenode-renewed-asp] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:38:02.6610550Z ok: [kubenode-teaching-gobbler] => (item={'key': '127.0.0.1', 'value': {'expected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:38:02.6611694Z ok: [kubenode-teaching-gobbler] => (item={'key': '::1', 'value': {'expected': ['localhost6', 'localhost6.localdomain'], 'unexpected': ['localhost', 'localhost.localdomain']}}) -2025-11-24T09:38:02.6612402Z -2025-11-24T09:38:02.6612948Z TASK [kubernetes/preinstall : Hosts | Update (if necessary) hosts file] ******** -2025-11-24T09:38:03.1911352Z ok: [kubenode-super-marlin] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) -2025-11-24T09:38:03.1912390Z ok: [kubenode-renewed-asp] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) -2025-11-24T09:38:03.1914037Z ok: [kubenode-teaching-gobbler] => (item={'key': '127.0.0.1', 'value': ['localhost', 'localhost.localdomain']}) -2025-11-24T09:38:03.1917064Z ok: [kubenode-super-marlin] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) -2025-11-24T09:38:03.1918257Z ok: [kubenode-teaching-gobbler] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) -2025-11-24T09:38:03.1919405Z ok: [kubenode-renewed-asp] => (item={'key': '::1', 'value': ['ip6-localhost', 'ip6-loopback', 'localhost6', 'localhost6.localdomain']}) -2025-11-24T09:38:03.1920164Z -2025-11-24T09:38:03.1920550Z TASK [kubernetes/preinstall : Update facts] ************************************ -2025-11-24T09:38:03.2473313Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:03.2880089Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:03.2880783Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:03.2881146Z -2025-11-24T09:38:03.2881578Z TASK [kubernetes/preinstall : Configure dhclient to supersede search/domain/nameservers] *** -2025-11-24T09:38:03.5993415Z ok: [kubenode-super-marlin] -2025-11-24T09:38:03.5994085Z ok: [kubenode-renewed-asp] -2025-11-24T09:38:03.5994557Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:38:03.5994840Z -2025-11-24T09:38:03.5995282Z TASK [kubernetes/preinstall : Configure dhclient hooks for resolv.conf (non-RH)] *** -2025-11-24T09:38:04.1252483Z ok: [kubenode-super-marlin] -2025-11-24T09:38:04.1253499Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.1254016Z ok: [kubenode-renewed-asp] -2025-11-24T09:38:04.1254326Z -2025-11-24T09:38:04.1254745Z TASK [kubernetes/preinstall : Configure dhclient hooks for resolv.conf (RH-only)] *** -2025-11-24T09:38:04.2229804Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.2230547Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.2231142Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.2231474Z -2025-11-24T09:38:04.2231910Z TASK [kubernetes/preinstall : Remove kubespray specific config from dhclient config] *** -2025-11-24T09:38:04.2685167Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.3048205Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.3048934Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.3049277Z -2025-11-24T09:38:04.3049659Z TASK [kubernetes/preinstall : Remove kubespray specific dhclient hook] ********* -2025-11-24T09:38:04.3728466Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.3729205Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.3729749Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.3730088Z -2025-11-24T09:38:04.3730490Z TASK [kubernetes/preinstall : Check if we are running inside a Azure VM] ******* -2025-11-24T09:38:04.4202883Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.4446430Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.4454175Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.4454613Z -2025-11-24T09:38:04.4455078Z TASK [kubernetes/preinstall : Install growpart] ******************************** -2025-11-24T09:38:04.5035727Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.5036738Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.5037399Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.5037786Z -2025-11-24T09:38:04.5038155Z TASK [kubernetes/preinstall : Gather mounts facts] ***************************** -2025-11-24T09:38:04.5413761Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.5670751Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.5671473Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.5671789Z -2025-11-24T09:38:04.5672128Z TASK [kubernetes/preinstall : Search root filesystem device] ******************* -2025-11-24T09:38:04.6238791Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.6239767Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.6240361Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.6240719Z -2025-11-24T09:38:04.6241113Z TASK [kubernetes/preinstall : Check if growpart needs to be run] *************** -2025-11-24T09:38:04.6867122Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.6868314Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.6868878Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.6869216Z -2025-11-24T09:38:04.6869573Z TASK [kubernetes/preinstall : Check fs type] *********************************** -2025-11-24T09:38:04.7468276Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.7469047Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.7469595Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.7469938Z -2025-11-24T09:38:04.7470304Z TASK [kubernetes/preinstall : Run growpart] ************************************ -2025-11-24T09:38:04.9341455Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:04.9342273Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:04.9343216Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:04.9343595Z -2025-11-24T09:38:05.8602617Z TASK [kubernetes/preinstall : Run xfs_growfs] ********************************** -2025-11-24T09:38:05.8603704Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:05.8604266Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:05.8604804Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:05.8605137Z -2025-11-24T09:38:05.8605432Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:38:05.8605842Z -2025-11-24T09:38:05.8606123Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:38:05.8606526Z -2025-11-24T09:38:05.8606856Z PLAY [Bringing kubeconfig in place] ******************************************** -2025-11-24T09:38:05.8607297Z -2025-11-24T09:38:05.8607583Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:38:05.8607984Z -2025-11-24T09:38:05.8608265Z PLAY [etcd] ******************************************************************** -2025-11-24T09:38:05.8608639Z -2025-11-24T09:38:05.8608902Z PLAY RECAP ********************************************************************* -2025-11-24T09:38:05.8609698Z adminhost : ok=3 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:38:05.8610689Z kubenode-renewed-asp : ok=164 changed=44 unreachable=0 failed=0 skipped=372 rescued=0 ignored=0 -2025-11-24T09:38:05.8611707Z kubenode-super-marlin : ok=189 changed=44 unreachable=0 failed=0 skipped=391 rescued=0 ignored=0 -2025-11-24T09:38:05.8613360Z kubenode-teaching-gobbler : ok=164 changed=44 unreachable=0 failed=0 skipped=354 rescued=0 ignored=0 -2025-11-24T09:38:05.8613943Z -2025-11-24T09:38:06.1602019Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/seed-offline-containerd.yml -2025-11-24T09:38:06.6584279Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:38:06.6585116Z -vvvv to see details -2025-11-24T09:38:06.6587768Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:38:06.6588706Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:38:06.7871440Z -2025-11-24T09:38:06.7872343Z PLAY [Fix containerd socker permission] **************************************** -2025-11-24T09:38:06.7873084Z -2025-11-24T09:38:06.7873395Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:38:08.1707847Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:38:08.1708594Z ok: [kubenode-super-marlin] -2025-11-24T09:38:08.1709070Z ok: [kubenode-renewed-asp] -2025-11-24T09:38:08.1709322Z -2025-11-24T09:38:08.1709661Z TASK [Ensure containerd socket has correct permissions for docker user] ******** -2025-11-24T09:38:08.3372198Z skipping: [kubenode-renewed-asp] -2025-11-24T09:38:08.3373073Z skipping: [kubenode-super-marlin] -2025-11-24T09:38:08.3373582Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:38:08.3373898Z -2025-11-24T09:38:08.3374202Z PLAY [Seed system containers] ************************************************** -2025-11-24T09:38:08.3374595Z -2025-11-24T09:38:08.3375276Z TASK [load containers] ********************************************************* -2025-11-24T09:38:08.9926610Z changed: [kubenode-super-marlin] -2025-11-24T09:38:08.9927413Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:38:08.9927935Z changed: [kubenode-renewed-asp] -2025-11-24T09:38:08.9928253Z -2025-11-24T09:38:08.9928560Z TASK [Waiting on async task load_containers] *********************************** -2025-11-24T09:38:10.2170163Z Still deploying... -2025-11-24T09:38:20.2186277Z Still deploying... -2025-11-24T09:38:30.2206040Z Still deploying... -2025-11-24T09:38:40.2227329Z Still deploying... -2025-11-24T09:38:50.2244769Z Still deploying... -2025-11-24T09:39:00.2265507Z Still deploying... -2025-11-24T09:39:10.2281238Z Still deploying... -2025-11-24T09:39:10.7332376Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_containers (60 retries left). -2025-11-24T09:39:10.7333796Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_containers (60 retries left). -2025-11-24T09:39:10.7334845Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_containers (60 retries left). -2025-11-24T09:39:10.7335628Z changed: [kubenode-super-marlin] -2025-11-24T09:39:10.7336155Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:39:10.7336693Z changed: [kubenode-renewed-asp] -2025-11-24T09:39:10.7336983Z -2025-11-24T09:39:10.7337311Z PLAY [Download helm containers] ************************************************ -2025-11-24T09:39:10.7337768Z -2025-11-24T09:39:10.7338075Z TASK [load helm containers] **************************************************** -2025-11-24T09:39:11.1002154Z changed: [kubenode-super-marlin] -2025-11-24T09:39:11.1003096Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:39:11.1003725Z changed: [kubenode-renewed-asp] -2025-11-24T09:39:11.1004053Z -2025-11-24T09:39:11.1004428Z TASK [Waiting on async task load_helm_containers] ****************************** -2025-11-24T09:39:20.2295643Z Still deploying... -2025-11-24T09:39:30.2312295Z Still deploying... -2025-11-24T09:39:40.2330556Z Still deploying... -2025-11-24T09:39:50.2341803Z Still deploying... -2025-11-24T09:40:00.2355112Z Still deploying... -2025-11-24T09:40:10.2367872Z Still deploying... -2025-11-24T09:40:20.2383562Z Still deploying... -2025-11-24T09:40:30.2399945Z Still deploying... -2025-11-24T09:40:40.2418918Z Still deploying... -2025-11-24T09:40:50.2438481Z Still deploying... -2025-11-24T09:41:00.2453712Z Still deploying... -2025-11-24T09:41:10.2473179Z Still deploying... -2025-11-24T09:41:20.2488400Z Still deploying... -2025-11-24T09:41:30.2508481Z Still deploying... -2025-11-24T09:41:40.2527746Z Still deploying... -2025-11-24T09:41:50.2547631Z Still deploying... -2025-11-24T09:42:00.2561971Z Still deploying... -2025-11-24T09:42:10.2576107Z Still deploying... -2025-11-24T09:42:20.2613639Z Still deploying... -2025-11-24T09:42:30.2613869Z Still deploying... -2025-11-24T09:42:40.2626526Z Still deploying... -2025-11-24T09:42:50.2641915Z Still deploying... -2025-11-24T09:43:00.2661723Z Still deploying... -2025-11-24T09:43:10.2675249Z Still deploying... -2025-11-24T09:43:20.2693672Z Still deploying... -2025-11-24T09:43:30.2708590Z Still deploying... -2025-11-24T09:43:40.2727401Z Still deploying... -2025-11-24T09:43:50.2745466Z Still deploying... -2025-11-24T09:44:00.2765606Z Still deploying... -2025-11-24T09:44:10.2781857Z Still deploying... -2025-11-24T09:44:19.3340926Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_helm_containers (60 retries left). -2025-11-24T09:44:19.3342059Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_helm_containers (60 retries left). -2025-11-24T09:44:19.3343370Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (60 retries left). -2025-11-24T09:44:19.3344365Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_helm_containers (59 retries left). -2025-11-24T09:44:19.3345351Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_helm_containers (59 retries left). -2025-11-24T09:44:19.3346816Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (59 retries left). -2025-11-24T09:44:19.3347774Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_helm_containers (58 retries left). -2025-11-24T09:44:19.3348712Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (58 retries left). -2025-11-24T09:44:19.3349680Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_helm_containers (58 retries left). -2025-11-24T09:44:19.3350653Z FAILED - RETRYING: [kubenode-super-marlin]: Waiting on async task load_helm_containers (57 retries left). -2025-11-24T09:44:19.3351761Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Waiting on async task load_helm_containers (57 retries left). -2025-11-24T09:44:19.3352863Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (57 retries left). -2025-11-24T09:44:19.3353558Z changed: [kubenode-super-marlin] -2025-11-24T09:44:19.3354026Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:44:19.3354728Z FAILED - RETRYING: [kubenode-renewed-asp]: Waiting on async task load_helm_containers (56 retries left). -2025-11-24T09:44:19.3355418Z changed: [kubenode-renewed-asp] -2025-11-24T09:44:19.3355682Z -2025-11-24T09:44:19.3355922Z PLAY RECAP ********************************************************************* -2025-11-24T09:44:19.3356692Z kubenode-renewed-asp : ok=5 changed=4 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0 -2025-11-24T09:44:19.3357569Z kubenode-super-marlin : ok=5 changed=4 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0 -2025-11-24T09:44:19.3358460Z kubenode-teaching-gobbler : ok=5 changed=4 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0 -2025-11-24T09:44:19.3358956Z -2025-11-24T09:44:19.4253819Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/sync_time.yml -v -2025-11-24T09:44:19.9167203Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:44:19.9168810Z -vvvv to see details -2025-11-24T09:44:19.9169462Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:44:19.9170148Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:44:20.0437406Z Using /wire-server-deploy/ansible/ansible.cfg as config file -2025-11-24T09:44:20.0438418Z -2025-11-24T09:44:20.0438836Z PLAY [Configure NTP on Cassandra nodes] **************************************** -2025-11-24T09:44:20.0439368Z -2025-11-24T09:44:20.0439721Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:44:20.2800630Z Still deploying... -2025-11-24T09:44:23.2052069Z ok: [cassandra-tops-fowl] -2025-11-24T09:44:23.2052857Z ok: [cassandra-improved-teal] -2025-11-24T09:44:23.2053380Z ok: [cassandra-noted-manatee] -2025-11-24T09:44:23.2053660Z -2025-11-24T09:44:23.2053959Z TASK [Install NTP package] ***************************************************** -2025-11-24T09:44:30.2821716Z Still deploying... -2025-11-24T09:44:33.1853131Z changed: [cassandra-tops-fowl] => {"cache_update_time": 1763976929, "cache_updated": false, "changed": true, "stderr": "", "stderr_lines": [], "stdout": "Reading package lists...\nBuilding dependency tree...\nReading state information...\nThe following additional packages will be installed:\n libopts25\nSuggested packages:\n ntp-doc\nRecommended packages:\n sntp\nThe following packages will be REMOVED:\n systemd-timesyncd\nThe following NEW packages will be installed:\n libopts25 ntp\n0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.\nNeed to get 780 kB of archives.\nAfter this operation, 2017 kB of additional disk space will be used.\nGet:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]\nGet:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]\nFetched 780 kB in 0s (27.1 MB/s)\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34820 files and directories currently installed.)\r\nRemoving systemd-timesyncd (249.11-0ubuntu3.16) ...\r\nSelecting previously unselected package libopts25:amd64.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34806 files and directories currently installed.)\r\nPreparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...\r\nUnpacking libopts25:amd64 (1:5.18.16-4) ...\r\nSelecting previously unselected package ntp.\r\nPreparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...\r\nUnpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nSetting up libopts25:amd64 (1:5.18.16-4) ...\r\nSetting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nCreated symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.\r\nCreated symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.\r\nntp-systemd-netif.service is a disabled or a static unit, not starting it.\r\nProcessing triggers for libc-bin (2.35-0ubuntu3.10) ...\r\nProcessing triggers for man-db (2.10.2-1) ...\r\nProcessing triggers for dbus (1.12.20-2ubuntu4.1) ...\r\n", "stdout_lines": ["Reading package lists...", "Building dependency tree...", "Reading state information...", "The following additional packages will be installed:", " libopts25", "Suggested packages:", " ntp-doc", "Recommended packages:", " sntp", "The following packages will be REMOVED:", " systemd-timesyncd", "The following NEW packages will be installed:", " libopts25 ntp", "0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.", "Need to get 780 kB of archives.", "After this operation, 2017 kB of additional disk space will be used.", "Get:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]", "Get:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]", "Fetched 780 kB in 0s (27.1 MB/s)", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34820 files and directories currently installed.)", "Removing systemd-timesyncd (249.11-0ubuntu3.16) ...", "Selecting previously unselected package libopts25:amd64.", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34806 files and directories currently installed.)", "Preparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...", "Unpacking libopts25:amd64 (1:5.18.16-4) ...", "Selecting previously unselected package ntp.", "Preparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...", "Unpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Setting up libopts25:amd64 (1:5.18.16-4) ...", "Setting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Created symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.", "Created symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.", "ntp-systemd-netif.service is a disabled or a static unit, not starting it.", "Processing triggers for libc-bin (2.35-0ubuntu3.10) ...", "Processing triggers for man-db (2.10.2-1) ...", "Processing triggers for dbus (1.12.20-2ubuntu4.1) ..."]} -2025-11-24T09:44:33.1899284Z changed: [cassandra-improved-teal] => {"cache_update_time": 1763976929, "cache_updated": false, "changed": true, "stderr": "", "stderr_lines": [], "stdout": "Reading package lists...\nBuilding dependency tree...\nReading state information...\nThe following additional packages will be installed:\n libopts25\nSuggested packages:\n ntp-doc\nRecommended packages:\n sntp\nThe following packages will be REMOVED:\n systemd-timesyncd\nThe following NEW packages will be installed:\n libopts25 ntp\n0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.\nNeed to get 780 kB of archives.\nAfter this operation, 2017 kB of additional disk space will be used.\nGet:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]\nGet:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]\nFetched 780 kB in 0s (21.5 MB/s)\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34820 files and directories currently installed.)\r\nRemoving systemd-timesyncd (249.11-0ubuntu3.16) ...\r\nSelecting previously unselected package libopts25:amd64.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34806 files and directories currently installed.)\r\nPreparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...\r\nUnpacking libopts25:amd64 (1:5.18.16-4) ...\r\nSelecting previously unselected package ntp.\r\nPreparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...\r\nUnpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nSetting up libopts25:amd64 (1:5.18.16-4) ...\r\nSetting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nCreated symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.\r\nCreated symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.\r\nntp-systemd-netif.service is a disabled or a static unit, not starting it.\r\nProcessing triggers for libc-bin (2.35-0ubuntu3.10) ...\r\nProcessing triggers for man-db (2.10.2-1) ...\r\nProcessing triggers for dbus (1.12.20-2ubuntu4.1) ...\r\n", "stdout_lines": ["Reading package lists...", "Building dependency tree...", "Reading state information...", "The following additional packages will be installed:", " libopts25", "Suggested packages:", " ntp-doc", "Recommended packages:", " sntp", "The following packages will be REMOVED:", " systemd-timesyncd", "The following NEW packages will be installed:", " libopts25 ntp", "0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.", "Need to get 780 kB of archives.", "After this operation, 2017 kB of additional disk space will be used.", "Get:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]", "Get:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]", "Fetched 780 kB in 0s (21.5 MB/s)", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34820 files and directories currently installed.)", "Removing systemd-timesyncd (249.11-0ubuntu3.16) ...", "Selecting previously unselected package libopts25:amd64.", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34806 files and directories currently installed.)", "Preparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...", "Unpacking libopts25:amd64 (1:5.18.16-4) ...", "Selecting previously unselected package ntp.", "Preparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...", "Unpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Setting up libopts25:amd64 (1:5.18.16-4) ...", "Setting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Created symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.", "Created symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.", "ntp-systemd-netif.service is a disabled or a static unit, not starting it.", "Processing triggers for libc-bin (2.35-0ubuntu3.10) ...", "Processing triggers for man-db (2.10.2-1) ...", "Processing triggers for dbus (1.12.20-2ubuntu4.1) ..."]} -2025-11-24T09:44:34.6534530Z changed: [cassandra-noted-manatee] => {"cache_update_time": 1763976929, "cache_updated": false, "changed": true, "stderr": "", "stderr_lines": [], "stdout": "Reading package lists...\nBuilding dependency tree...\nReading state information...\nThe following additional packages will be installed:\n libopts25\nSuggested packages:\n ntp-doc\nRecommended packages:\n sntp\nThe following packages will be REMOVED:\n systemd-timesyncd\nThe following NEW packages will be installed:\n libopts25 ntp\n0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.\nNeed to get 780 kB of archives.\nAfter this operation, 2017 kB of additional disk space will be used.\nGet:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]\nGet:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]\nFetched 780 kB in 0s (23.8 MB/s)\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34820 files and directories currently installed.)\r\nRemoving systemd-timesyncd (249.11-0ubuntu3.16) ...\r\nSelecting previously unselected package libopts25:amd64.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 34806 files and directories currently installed.)\r\nPreparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...\r\nUnpacking libopts25:amd64 (1:5.18.16-4) ...\r\nSelecting previously unselected package ntp.\r\nPreparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...\r\nUnpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nSetting up libopts25:amd64 (1:5.18.16-4) ...\r\nSetting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...\r\nCreated symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.\r\nCreated symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.\r\nntp-systemd-netif.service is a disabled or a static unit, not starting it.\r\nProcessing triggers for libc-bin (2.35-0ubuntu3.10) ...\r\nProcessing triggers for man-db (2.10.2-1) ...\r\nProcessing triggers for dbus (1.12.20-2ubuntu4.1) ...\r\n", "stdout_lines": ["Reading package lists...", "Building dependency tree...", "Reading state information...", "The following additional packages will be installed:", " libopts25", "Suggested packages:", " ntp-doc", "Recommended packages:", " sntp", "The following packages will be REMOVED:", " systemd-timesyncd", "The following NEW packages will be installed:", " libopts25 ntp", "0 upgraded, 2 newly installed, 1 to remove and 23 not upgraded.", "Need to get 780 kB of archives.", "After this operation, 2017 kB of additional disk space will be used.", "Get:1 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 libopts25 amd64 1:5.18.16-4 [59.5 kB]", "Get:2 http://10.1.1.1:8080/debs-jammy/public jammy/main amd64 ntp amd64 1:4.2.8p15+dfsg-1ubuntu2 [721 kB]", "Fetched 780 kB in 0s (23.8 MB/s)", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34820 files and directories currently installed.)", "Removing systemd-timesyncd (249.11-0ubuntu3.16) ...", "Selecting previously unselected package libopts25:amd64.", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 34806 files and directories currently installed.)", "Preparing to unpack .../libopts25_1%3a5.18.16-4_amd64.deb ...", "Unpacking libopts25:amd64 (1:5.18.16-4) ...", "Selecting previously unselected package ntp.", "Preparing to unpack .../ntp_1%3a4.2.8p15+dfsg-1ubuntu2_amd64.deb ...", "Unpacking ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Setting up libopts25:amd64 (1:5.18.16-4) ...", "Setting up ntp (1:4.2.8p15+dfsg-1ubuntu2) ...", "Created symlink /etc/systemd/system/network-pre.target.wants/ntp-systemd-netif.path → /lib/systemd/system/ntp-systemd-netif.path.", "Created symlink /etc/systemd/system/multi-user.target.wants/ntp.service → /lib/systemd/system/ntp.service.", "ntp-systemd-netif.service is a disabled or a static unit, not starting it.", "Processing triggers for libc-bin (2.35-0ubuntu3.10) ...", "Processing triggers for man-db (2.10.2-1) ...", "Processing triggers for dbus (1.12.20-2ubuntu4.1) ..."]} -2025-11-24T09:44:34.6552500Z -2025-11-24T09:44:34.6552890Z TASK [Configure NTP servers] *************************************************** -2025-11-24T09:44:35.1320896Z skipping: [cassandra-improved-teal] => {"changed": false, "false_condition": "inventory_hostname != authoritative_node", "skip_reason": "Conditional result was False"} -2025-11-24T09:44:35.1322337Z changed: [cassandra-tops-fowl] => {"backup": "", "changed": true, "msg": "line added"} -2025-11-24T09:44:35.1323585Z changed: [cassandra-noted-manatee] => {"backup": "", "changed": true, "msg": "line added"} -2025-11-24T09:44:35.1324130Z -2025-11-24T09:44:35.1324486Z TASK [Restart NTP service] ***************************************************** -2025-11-24T09:44:36.0842026Z changed: [cassandra-tops-fowl] => {"changed": true, "name": "ntp", "state": "started", "status": {"ActiveEnterTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ActiveEnterTimestampMonotonic": "2862609688", "ActiveExitTimestamp": "n/a", "ActiveExitTimestampMonotonic": "0", "ActiveState": "active", "After": "-.mount systemd-journald.socket systemd-tmpfiles-setup.service sysinit.target tmp.mount basic.target network.target system.slice", "AllowIsolate": "no", "AssertResult": "yes", "AssertTimestamp": "Mon 2025-11-24 09:44:28 UTC", "AssertTimestampMonotonic": "2862583901", "Before": "shutdown.target multi-user.target", "BlockIOAccounting": "no", "BlockIOWeight": "[not set]", "CPUAccounting": "yes", "CPUAffinityFromNUMA": "no", "CPUQuotaPerSecUSec": "infinity", "CPUQuotaPeriodUSec": "infinity", "CPUSchedulingPolicy": "0", "CPUSchedulingPriority": "0", "CPUSchedulingResetOnFork": "no", "CPUShares": "[not set]", "CPUUsageNSec": "31754000", "CPUWeight": "[not set]", "CacheDirectoryMode": "0755", "CanFreeze": "yes", "CanIsolate": "no", "CanReload": "no", "CanStart": "yes", "CanStop": "yes", "CapabilityBoundingSet": "cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap_ipc_owner cap_sys_module cap_sys_rawio cap_sys_chroot cap_sys_ptrace cap_sys_pacct cap_sys_admin cap_sys_boot cap_sys_nice cap_sys_resource cap_sys_time cap_sys_tty_config cap_mknod cap_lease cap_audit_write cap_audit_control cap_setfcap cap_mac_override cap_mac_admin cap_syslog cap_wake_alarm cap_block_suspend cap_audit_read cap_perfmon cap_bpf cap_checkpoint_restore", "CleanResult": "success", "CollectMode": "inactive", "ConditionResult": "yes", "ConditionTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ConditionTimestampMonotonic": "2862583899", "ConfigurationDirectoryMode": "0755", "Conflicts": "shutdown.target systemd-timesyncd.service", "ControlGroup": "/system.slice/ntp.service", "ControlPID": "0", "CoredumpFilter": "0x33", "DefaultDependencies": "yes", "DefaultMemoryLow": "0", "DefaultMemoryMin": "0", "Delegate": "no", "Description": "Network Time Service", "DevicePolicy": "auto", "Documentation": "\"man:ntpd(8)\"", "DynamicUser": "no", "ExecMainCode": "0", "ExecMainExitTimestamp": "n/a", "ExecMainExitTimestampMonotonic": "0", "ExecMainPID": "2856", "ExecMainStartTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ExecMainStartTimestampMonotonic": "2862609659", "ExecMainStatus": "0", "ExecStart": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; ignore_errors=no ; start_time=[Mon 2025-11-24 09:44:28 UTC] ; stop_time=[Mon 2025-11-24 09:44:28 UTC] ; pid=2850 ; code=exited ; status=0 }", "ExecStartEx": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; flags= ; start_time=[Mon 2025-11-24 09:44:28 UTC] ; stop_time=[Mon 2025-11-24 09:44:28 UTC] ; pid=2850 ; code=exited ; status=0 }", "FailureAction": "none", "FileDescriptorStoreMax": "0", "FinalKillSignal": "9", "FragmentPath": "/lib/systemd/system/ntp.service", "FreezerState": "running", "GID": "[not set]", "GuessMainPID": "yes", "IOAccounting": "no", "IOReadBytes": "18446744073709551615", "IOReadOperations": "18446744073709551615", "IOSchedulingClass": "2", "IOSchedulingPriority": "4", "IOWeight": "[not set]", "IOWriteBytes": "18446744073709551615", "IOWriteOperations": "18446744073709551615", "IPAccounting": "no", "IPEgressBytes": "[no data]", "IPEgressPackets": "[no data]", "IPIngressBytes": "[no data]", "IPIngressPackets": "[no data]", "Id": "ntp.service", "IgnoreOnIsolate": "no", "IgnoreSIGPIPE": "yes", "InactiveEnterTimestamp": "n/a", "InactiveEnterTimestampMonotonic": "0", "InactiveExitTimestamp": "Mon 2025-11-24 09:44:28 UTC", "InactiveExitTimestampMonotonic": "2862586088", "InvocationID": "d8b84695a4524a19a2b36099674a2473", "JobRunningTimeoutUSec": "infinity", "JobTimeoutAction": "none", "JobTimeoutUSec": "infinity", "KeyringMode": "private", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "infinity", "LimitASSoft": "infinity", "LimitCORE": "infinity", "LimitCORESoft": "0", "LimitCPU": "infinity", "LimitCPUSoft": "infinity", "LimitDATA": "infinity", "LimitDATASoft": "infinity", "LimitFSIZE": "infinity", "LimitFSIZESoft": "infinity", "LimitLOCKS": "infinity", "LimitLOCKSSoft": "infinity", "LimitMEMLOCK": "65536", "LimitMEMLOCKSoft": "65536", "LimitMSGQUEUE": "819200", "LimitMSGQUEUESoft": "819200", "LimitNICE": "0", "LimitNICESoft": "0", "LimitNOFILE": "524288", "LimitNOFILESoft": "1024", "LimitNPROC": "15108", "LimitNPROCSoft": "15108", "LimitRSS": "infinity", "LimitRSSSoft": "infinity", "LimitRTPRIO": "0", "LimitRTPRIOSoft": "0", "LimitRTTIME": "infinity", "LimitRTTIMESoft": "infinity", "LimitSIGPENDING": "15108", "LimitSIGPENDINGSoft": "15108", "LimitSTACK": "infinity", "LimitSTACKSoft": "8388608", "LoadState": "loaded", "LockPersonality": "no", "LogLevelMax": "-1", "LogRateLimitBurst": "0", "LogRateLimitIntervalUSec": "0", "LogsDirectoryMode": "0755", "MainPID": "2856", "ManagedOOMMemoryPressure": "auto", "ManagedOOMMemoryPressureLimit": "0", "ManagedOOMPreference": "none", "ManagedOOMSwap": "auto", "MemoryAccounting": "yes", "MemoryAvailable": "infinity", "MemoryCurrent": "1478656", "MemoryDenyWriteExecute": "no", "MemoryHigh": "infinity", "MemoryLimit": "infinity", "MemoryLow": "0", "MemoryMax": "infinity", "MemoryMin": "0", "MemorySwapMax": "infinity", "MountAPIVFS": "no", "NFileDescriptorStore": "0", "NRestarts": "0", "NUMAPolicy": "n/a", "Names": "ntp.service", "NeedDaemonReload": "no", "Nice": "0", "NoNewPrivileges": "no", "NonBlocking": "no", "NotifyAccess": "none", "OOMPolicy": "stop", "OOMScoreAdjust": "0", "OnFailureJobMode": "replace", "OnSuccessJobMode": "fail", "Perpetual": "no", "PrivateDevices": "no", "PrivateIPC": "no", "PrivateMounts": "no", "PrivateNetwork": "no", "PrivateTmp": "yes", "PrivateUsers": "no", "ProcSubset": "all", "ProtectClock": "no", "ProtectControlGroups": "no", "ProtectHome": "no", "ProtectHostname": "no", "ProtectKernelLogs": "no", "ProtectKernelModules": "no", "ProtectKernelTunables": "no", "ProtectProc": "default", "ProtectSystem": "no", "RefuseManualStart": "no", "RefuseManualStop": "no", "ReloadResult": "success", "RemainAfterExit": "no", "RemoveIPC": "no", "Requires": "sysinit.target -.mount system.slice", "RequiresMountsFor": "/var/tmp", "Restart": "no", "RestartKillSignal": "15", "RestartUSec": "100ms", "RestrictNamespaces": "no", "RestrictRealtime": "no", "RestrictSUIDSGID": "no", "Result": "success", "RootDirectoryStartOnly": "no", "RuntimeDirectoryMode": "0755", "RuntimeDirectoryPreserve": "no", "RuntimeMaxUSec": "infinity", "SameProcessGroup": "no", "SecureBits": "0", "SendSIGHUP": "no", "SendSIGKILL": "yes", "Slice": "system.slice", "StandardError": "inherit", "StandardInput": "null", "StandardOutput": "journal", "StartLimitAction": "none", "StartLimitBurst": "5", "StartLimitIntervalUSec": "10s", "StartupBlockIOWeight": "[not set]", "StartupCPUShares": "[not set]", "StartupCPUWeight": "[not set]", "StartupIOWeight": "[not set]", "StateChangeTimestamp": "Mon 2025-11-24 09:44:28 UTC", "StateChangeTimestampMonotonic": "2862609688", "StateDirectoryMode": "0755", "StatusErrno": "0", "StopWhenUnneeded": "no", "SubState": "running", "SuccessAction": "none", "SyslogFacility": "3", "SyslogLevel": "6", "SyslogLevelPrefix": "yes", "SyslogPriority": "30", "SystemCallErrorNumber": "2147483646", "TTYReset": "no", "TTYVHangup": "no", "TTYVTDisallocate": "no", "TasksAccounting": "yes", "TasksCurrent": "2", "TasksMax": "4532", "TimeoutAbortUSec": "1min 30s", "TimeoutCleanUSec": "infinity", "TimeoutStartFailureMode": "terminate", "TimeoutStartUSec": "1min 30s", "TimeoutStopFailureMode": "terminate", "TimeoutStopUSec": "1min 30s", "TimerSlackNSec": "50000", "Transient": "no", "Type": "forking", "UID": "[not set]", "UMask": "0022", "UnitFilePreset": "enabled", "UnitFileState": "enabled", "UtmpMode": "init", "WantedBy": "multi-user.target", "Wants": "tmp.mount", "WatchdogSignal": "6", "WatchdogTimestamp": "n/a", "WatchdogTimestampMonotonic": "0", "WatchdogUSec": "0"}} -2025-11-24T09:44:36.0892392Z changed: [cassandra-noted-manatee] => {"changed": true, "name": "ntp", "state": "started", "status": {"ActiveEnterTimestamp": "Mon 2025-11-24 09:44:29 UTC", "ActiveEnterTimestampMonotonic": "2800333131", "ActiveExitTimestamp": "n/a", "ActiveExitTimestampMonotonic": "0", "ActiveState": "active", "After": "systemd-journald.socket systemd-tmpfiles-setup.service network.target -.mount basic.target system.slice tmp.mount sysinit.target", "AllowIsolate": "no", "AssertResult": "yes", "AssertTimestamp": "Mon 2025-11-24 09:44:29 UTC", "AssertTimestampMonotonic": "2800286650", "Before": "shutdown.target multi-user.target", "BlockIOAccounting": "no", "BlockIOWeight": "[not set]", "CPUAccounting": "yes", "CPUAffinityFromNUMA": "no", "CPUQuotaPerSecUSec": "infinity", "CPUQuotaPeriodUSec": "infinity", "CPUSchedulingPolicy": "0", "CPUSchedulingPriority": "0", "CPUSchedulingResetOnFork": "no", "CPUShares": "[not set]", "CPUUsageNSec": "50887000", "CPUWeight": "[not set]", "CacheDirectoryMode": "0755", "CanFreeze": "yes", "CanIsolate": "no", "CanReload": "no", "CanStart": "yes", "CanStop": "yes", "CapabilityBoundingSet": "cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap_ipc_owner cap_sys_module cap_sys_rawio cap_sys_chroot cap_sys_ptrace cap_sys_pacct cap_sys_admin cap_sys_boot cap_sys_nice cap_sys_resource cap_sys_time cap_sys_tty_config cap_mknod cap_lease cap_audit_write cap_audit_control cap_setfcap cap_mac_override cap_mac_admin cap_syslog cap_wake_alarm cap_block_suspend cap_audit_read cap_perfmon cap_bpf cap_checkpoint_restore", "CleanResult": "success", "CollectMode": "inactive", "ConditionResult": "yes", "ConditionTimestamp": "Mon 2025-11-24 09:44:29 UTC", "ConditionTimestampMonotonic": "2800286630", "ConfigurationDirectoryMode": "0755", "Conflicts": "systemd-timesyncd.service shutdown.target", "ControlGroup": "/system.slice/ntp.service", "ControlPID": "0", "CoredumpFilter": "0x33", "DefaultDependencies": "yes", "DefaultMemoryLow": "0", "DefaultMemoryMin": "0", "Delegate": "no", "Description": "Network Time Service", "DevicePolicy": "auto", "Documentation": "\"man:ntpd(8)\"", "DynamicUser": "no", "ExecMainCode": "0", "ExecMainExitTimestamp": "n/a", "ExecMainExitTimestampMonotonic": "0", "ExecMainPID": "2882", "ExecMainStartTimestamp": "Mon 2025-11-24 09:44:29 UTC", "ExecMainStartTimestampMonotonic": "2800333099", "ExecMainStatus": "0", "ExecStart": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; ignore_errors=no ; start_time=[Mon 2025-11-24 09:44:29 UTC] ; stop_time=[Mon 2025-11-24 09:44:29 UTC] ; pid=2876 ; code=exited ; status=0 }", "ExecStartEx": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; flags= ; start_time=[Mon 2025-11-24 09:44:29 UTC] ; stop_time=[Mon 2025-11-24 09:44:29 UTC] ; pid=2876 ; code=exited ; status=0 }", "FailureAction": "none", "FileDescriptorStoreMax": "0", "FinalKillSignal": "9", "FragmentPath": "/lib/systemd/system/ntp.service", "FreezerState": "running", "GID": "[not set]", "GuessMainPID": "yes", "IOAccounting": "no", "IOReadBytes": "18446744073709551615", "IOReadOperations": "18446744073709551615", "IOSchedulingClass": "2", "IOSchedulingPriority": "4", "IOWeight": "[not set]", "IOWriteBytes": "18446744073709551615", "IOWriteOperations": "18446744073709551615", "IPAccounting": "no", "IPEgressBytes": "[no data]", "IPEgressPackets": "[no data]", "IPIngressBytes": "[no data]", "IPIngressPackets": "[no data]", "Id": "ntp.service", "IgnoreOnIsolate": "no", "IgnoreSIGPIPE": "yes", "InactiveEnterTimestamp": "n/a", "InactiveEnterTimestampMonotonic": "0", "InactiveExitTimestamp": "Mon 2025-11-24 09:44:29 UTC", "InactiveExitTimestampMonotonic": "2800291287", "InvocationID": "43da90e38b014162b1a38f4859fb9b92", "JobRunningTimeoutUSec": "infinity", "JobTimeoutAction": "none", "JobTimeoutUSec": "infinity", "KeyringMode": "private", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "infinity", "LimitASSoft": "infinity", "LimitCORE": "infinity", "LimitCORESoft": "0", "LimitCPU": "infinity", "LimitCPUSoft": "infinity", "LimitDATA": "infinity", "LimitDATASoft": "infinity", "LimitFSIZE": "infinity", "LimitFSIZESoft": "infinity", "LimitLOCKS": "infinity", "LimitLOCKSSoft": "infinity", "LimitMEMLOCK": "65536", "LimitMEMLOCKSoft": "65536", "LimitMSGQUEUE": "819200", "LimitMSGQUEUESoft": "819200", "LimitNICE": "0", "LimitNICESoft": "0", "LimitNOFILE": "524288", "LimitNOFILESoft": "1024", "LimitNPROC": "15108", "LimitNPROCSoft": "15108", "LimitRSS": "infinity", "LimitRSSSoft": "infinity", "LimitRTPRIO": "0", "LimitRTPRIOSoft": "0", "LimitRTTIME": "infinity", "LimitRTTIMESoft": "infinity", "LimitSIGPENDING": "15108", "LimitSIGPENDINGSoft": "15108", "LimitSTACK": "infinity", "LimitSTACKSoft": "8388608", "LoadState": "loaded", "LockPersonality": "no", "LogLevelMax": "-1", "LogRateLimitBurst": "0", "LogRateLimitIntervalUSec": "0", "LogsDirectoryMode": "0755", "MainPID": "2882", "ManagedOOMMemoryPressure": "auto", "ManagedOOMMemoryPressureLimit": "0", "ManagedOOMPreference": "none", "ManagedOOMSwap": "auto", "MemoryAccounting": "yes", "MemoryAvailable": "infinity", "MemoryCurrent": "1474560", "MemoryDenyWriteExecute": "no", "MemoryHigh": "infinity", "MemoryLimit": "infinity", "MemoryLow": "0", "MemoryMax": "infinity", "MemoryMin": "0", "MemorySwapMax": "infinity", "MountAPIVFS": "no", "NFileDescriptorStore": "0", "NRestarts": "0", "NUMAPolicy": "n/a", "Names": "ntp.service", "NeedDaemonReload": "no", "Nice": "0", "NoNewPrivileges": "no", "NonBlocking": "no", "NotifyAccess": "none", "OOMPolicy": "stop", "OOMScoreAdjust": "0", "OnFailureJobMode": "replace", "OnSuccessJobMode": "fail", "Perpetual": "no", "PrivateDevices": "no", "PrivateIPC": "no", "PrivateMounts": "no", "PrivateNetwork": "no", "PrivateTmp": "yes", "PrivateUsers": "no", "ProcSubset": "all", "ProtectClock": "no", "ProtectControlGroups": "no", "ProtectHome": "no", "ProtectHostname": "no", "ProtectKernelLogs": "no", "ProtectKernelModules": "no", "ProtectKernelTunables": "no", "ProtectProc": "default", "ProtectSystem": "no", "RefuseManualStart": "no", "RefuseManualStop": "no", "ReloadResult": "success", "RemainAfterExit": "no", "RemoveIPC": "no", "Requires": "system.slice -.mount sysinit.target", "RequiresMountsFor": "/var/tmp", "Restart": "no", "RestartKillSignal": "15", "RestartUSec": "100ms", "RestrictNamespaces": "no", "RestrictRealtime": "no", "RestrictSUIDSGID": "no", "Result": "success", "RootDirectoryStartOnly": "no", "RuntimeDirectoryMode": "0755", "RuntimeDirectoryPreserve": "no", "RuntimeMaxUSec": "infinity", "SameProcessGroup": "no", "SecureBits": "0", "SendSIGHUP": "no", "SendSIGKILL": "yes", "Slice": "system.slice", "StandardError": "inherit", "StandardInput": "null", "StandardOutput": "journal", "StartLimitAction": "none", "StartLimitBurst": "5", "StartLimitIntervalUSec": "10s", "StartupBlockIOWeight": "[not set]", "StartupCPUShares": "[not set]", "StartupCPUWeight": "[not set]", "StartupIOWeight": "[not set]", "StateChangeTimestamp": "Mon 2025-11-24 09:44:29 UTC", "StateChangeTimestampMonotonic": "2800333131", "StateDirectoryMode": "0755", "StatusErrno": "0", "StopWhenUnneeded": "no", "SubState": "running", "SuccessAction": "none", "SyslogFacility": "3", "SyslogLevel": "6", "SyslogLevelPrefix": "yes", "SyslogPriority": "30", "SystemCallErrorNumber": "2147483646", "TTYReset": "no", "TTYVHangup": "no", "TTYVTDisallocate": "no", "TasksAccounting": "yes", "TasksCurrent": "2", "TasksMax": "4532", "TimeoutAbortUSec": "1min 30s", "TimeoutCleanUSec": "infinity", "TimeoutStartFailureMode": "terminate", "TimeoutStartUSec": "1min 30s", "TimeoutStopFailureMode": "terminate", "TimeoutStopUSec": "1min 30s", "TimerSlackNSec": "50000", "Transient": "no", "Type": "forking", "UID": "[not set]", "UMask": "0022", "UnitFilePreset": "enabled", "UnitFileState": "enabled", "UtmpMode": "init", "WantedBy": "multi-user.target", "Wants": "tmp.mount", "WatchdogSignal": "6", "WatchdogTimestamp": "n/a", "WatchdogTimestampMonotonic": "0", "WatchdogUSec": "0"}} -2025-11-24T09:44:36.0939536Z changed: [cassandra-improved-teal] => {"changed": true, "name": "ntp", "state": "started", "status": {"ActiveEnterTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ActiveEnterTimestampMonotonic": "2815674768", "ActiveExitTimestamp": "n/a", "ActiveExitTimestampMonotonic": "0", "ActiveState": "active", "After": "network.target systemd-tmpfiles-setup.service systemd-journald.socket basic.target -.mount tmp.mount system.slice sysinit.target", "AllowIsolate": "no", "AssertResult": "yes", "AssertTimestamp": "Mon 2025-11-24 09:44:28 UTC", "AssertTimestampMonotonic": "2815643360", "Before": "multi-user.target shutdown.target", "BlockIOAccounting": "no", "BlockIOWeight": "[not set]", "CPUAccounting": "yes", "CPUAffinityFromNUMA": "no", "CPUQuotaPerSecUSec": "infinity", "CPUQuotaPeriodUSec": "infinity", "CPUSchedulingPolicy": "0", "CPUSchedulingPriority": "0", "CPUSchedulingResetOnFork": "no", "CPUShares": "[not set]", "CPUUsageNSec": "29871000", "CPUWeight": "[not set]", "CacheDirectoryMode": "0755", "CanFreeze": "yes", "CanIsolate": "no", "CanReload": "no", "CanStart": "yes", "CanStop": "yes", "CapabilityBoundingSet": "cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap_ipc_owner cap_sys_module cap_sys_rawio cap_sys_chroot cap_sys_ptrace cap_sys_pacct cap_sys_admin cap_sys_boot cap_sys_nice cap_sys_resource cap_sys_time cap_sys_tty_config cap_mknod cap_lease cap_audit_write cap_audit_control cap_setfcap cap_mac_override cap_mac_admin cap_syslog cap_wake_alarm cap_block_suspend cap_audit_read cap_perfmon cap_bpf cap_checkpoint_restore", "CleanResult": "success", "CollectMode": "inactive", "ConditionResult": "yes", "ConditionTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ConditionTimestampMonotonic": "2815643355", "ConfigurationDirectoryMode": "0755", "Conflicts": "shutdown.target systemd-timesyncd.service", "ControlGroup": "/system.slice/ntp.service", "ControlPID": "0", "CoredumpFilter": "0x33", "DefaultDependencies": "yes", "DefaultMemoryLow": "0", "DefaultMemoryMin": "0", "Delegate": "no", "Description": "Network Time Service", "DevicePolicy": "auto", "Documentation": "\"man:ntpd(8)\"", "DynamicUser": "no", "ExecMainCode": "0", "ExecMainExitTimestamp": "n/a", "ExecMainExitTimestampMonotonic": "0", "ExecMainPID": "2878", "ExecMainStartTimestamp": "Mon 2025-11-24 09:44:28 UTC", "ExecMainStartTimestampMonotonic": "2815674738", "ExecMainStatus": "0", "ExecStart": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; ignore_errors=no ; start_time=[Mon 2025-11-24 09:44:28 UTC] ; stop_time=[Mon 2025-11-24 09:44:28 UTC] ; pid=2872 ; code=exited ; status=0 }", "ExecStartEx": "{ path=/usr/lib/ntp/ntp-systemd-wrapper ; argv[]=/usr/lib/ntp/ntp-systemd-wrapper ; flags= ; start_time=[Mon 2025-11-24 09:44:28 UTC] ; stop_time=[Mon 2025-11-24 09:44:28 UTC] ; pid=2872 ; code=exited ; status=0 }", "FailureAction": "none", "FileDescriptorStoreMax": "0", "FinalKillSignal": "9", "FragmentPath": "/lib/systemd/system/ntp.service", "FreezerState": "running", "GID": "[not set]", "GuessMainPID": "yes", "IOAccounting": "no", "IOReadBytes": "18446744073709551615", "IOReadOperations": "18446744073709551615", "IOSchedulingClass": "2", "IOSchedulingPriority": "4", "IOWeight": "[not set]", "IOWriteBytes": "18446744073709551615", "IOWriteOperations": "18446744073709551615", "IPAccounting": "no", "IPEgressBytes": "[no data]", "IPEgressPackets": "[no data]", "IPIngressBytes": "[no data]", "IPIngressPackets": "[no data]", "Id": "ntp.service", "IgnoreOnIsolate": "no", "IgnoreSIGPIPE": "yes", "InactiveEnterTimestamp": "n/a", "InactiveEnterTimestampMonotonic": "0", "InactiveExitTimestamp": "Mon 2025-11-24 09:44:28 UTC", "InactiveExitTimestampMonotonic": "2815645941", "InvocationID": "8b4272561fdd44e3a16e0a442fb56b25", "JobRunningTimeoutUSec": "infinity", "JobTimeoutAction": "none", "JobTimeoutUSec": "infinity", "KeyringMode": "private", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "infinity", "LimitASSoft": "infinity", "LimitCORE": "infinity", "LimitCORESoft": "0", "LimitCPU": "infinity", "LimitCPUSoft": "infinity", "LimitDATA": "infinity", "LimitDATASoft": "infinity", "LimitFSIZE": "infinity", "LimitFSIZESoft": "infinity", "LimitLOCKS": "infinity", "LimitLOCKSSoft": "infinity", "LimitMEMLOCK": "65536", "LimitMEMLOCKSoft": "65536", "LimitMSGQUEUE": "819200", "LimitMSGQUEUESoft": "819200", "LimitNICE": "0", "LimitNICESoft": "0", "LimitNOFILE": "524288", "LimitNOFILESoft": "1024", "LimitNPROC": "15108", "LimitNPROCSoft": "15108", "LimitRSS": "infinity", "LimitRSSSoft": "infinity", "LimitRTPRIO": "0", "LimitRTPRIOSoft": "0", "LimitRTTIME": "infinity", "LimitRTTIMESoft": "infinity", "LimitSIGPENDING": "15108", "LimitSIGPENDINGSoft": "15108", "LimitSTACK": "infinity", "LimitSTACKSoft": "8388608", "LoadState": "loaded", "LockPersonality": "no", "LogLevelMax": "-1", "LogRateLimitBurst": "0", "LogRateLimitIntervalUSec": "0", "LogsDirectoryMode": "0755", "MainPID": "2878", "ManagedOOMMemoryPressure": "auto", "ManagedOOMMemoryPressureLimit": "0", "ManagedOOMPreference": "none", "ManagedOOMSwap": "auto", "MemoryAccounting": "yes", "MemoryAvailable": "infinity", "MemoryCurrent": "1466368", "MemoryDenyWriteExecute": "no", "MemoryHigh": "infinity", "MemoryLimit": "infinity", "MemoryLow": "0", "MemoryMax": "infinity", "MemoryMin": "0", "MemorySwapMax": "infinity", "MountAPIVFS": "no", "NFileDescriptorStore": "0", "NRestarts": "0", "NUMAPolicy": "n/a", "Names": "ntp.service", "NeedDaemonReload": "no", "Nice": "0", "NoNewPrivileges": "no", "NonBlocking": "no", "NotifyAccess": "none", "OOMPolicy": "stop", "OOMScoreAdjust": "0", "OnFailureJobMode": "replace", "OnSuccessJobMode": "fail", "Perpetual": "no", "PrivateDevices": "no", "PrivateIPC": "no", "PrivateMounts": "no", "PrivateNetwork": "no", "PrivateTmp": "yes", "PrivateUsers": "no", "ProcSubset": "all", "ProtectClock": "no", "ProtectControlGroups": "no", "ProtectHome": "no", "ProtectHostname": "no", "ProtectKernelLogs": "no", "ProtectKernelModules": "no", "ProtectKernelTunables": "no", "ProtectProc": "default", "ProtectSystem": "no", "RefuseManualStart": "no", "RefuseManualStop": "no", "ReloadResult": "success", "RemainAfterExit": "no", "RemoveIPC": "no", "Requires": "sysinit.target system.slice -.mount", "RequiresMountsFor": "/var/tmp", "Restart": "no", "RestartKillSignal": "15", "RestartUSec": "100ms", "RestrictNamespaces": "no", "RestrictRealtime": "no", "RestrictSUIDSGID": "no", "Result": "success", "RootDirectoryStartOnly": "no", "RuntimeDirectoryMode": "0755", "RuntimeDirectoryPreserve": "no", "RuntimeMaxUSec": "infinity", "SameProcessGroup": "no", "SecureBits": "0", "SendSIGHUP": "no", "SendSIGKILL": "yes", "Slice": "system.slice", "StandardError": "inherit", "StandardInput": "null", "StandardOutput": "journal", "StartLimitAction": "none", "StartLimitBurst": "5", "StartLimitIntervalUSec": "10s", "StartupBlockIOWeight": "[not set]", "StartupCPUShares": "[not set]", "StartupCPUWeight": "[not set]", "StartupIOWeight": "[not set]", "StateChangeTimestamp": "Mon 2025-11-24 09:44:28 UTC", "StateChangeTimestampMonotonic": "2815674768", "StateDirectoryMode": "0755", "StatusErrno": "0", "StopWhenUnneeded": "no", "SubState": "running", "SuccessAction": "none", "SyslogFacility": "3", "SyslogLevel": "6", "SyslogLevelPrefix": "yes", "SyslogPriority": "30", "SystemCallErrorNumber": "2147483646", "TTYReset": "no", "TTYVHangup": "no", "TTYVTDisallocate": "no", "TasksAccounting": "yes", "TasksCurrent": "2", "TasksMax": "4532", "TimeoutAbortUSec": "1min 30s", "TimeoutCleanUSec": "infinity", "TimeoutStartFailureMode": "terminate", "TimeoutStartUSec": "1min 30s", "TimeoutStopFailureMode": "terminate", "TimeoutStopUSec": "1min 30s", "TimerSlackNSec": "50000", "Transient": "no", "Type": "forking", "UID": "[not set]", "UMask": "0022", "UnitFilePreset": "enabled", "UnitFileState": "enabled", "UtmpMode": "init", "WantedBy": "multi-user.target", "Wants": "tmp.mount", "WatchdogSignal": "6", "WatchdogTimestamp": "n/a", "WatchdogTimestampMonotonic": "0", "WatchdogUSec": "0"}} -2025-11-24T09:44:36.0963360Z -2025-11-24T09:44:36.0963642Z TASK [Print current date] ****************************************************** -2025-11-24T09:44:36.4994824Z changed: [cassandra-tops-fowl] => {"changed": true, "cmd": ["date"], "delta": "0:00:00.004813", "end": "2025-11-24 09:44:36.081508", "msg": "", "rc": 0, "start": "2025-11-24 09:44:36.076695", "stderr": "", "stderr_lines": [], "stdout": "Mon Nov 24 09:44:36 AM UTC 2025", "stdout_lines": ["Mon Nov 24 09:44:36 AM UTC 2025"]} -2025-11-24T09:44:36.4997116Z changed: [cassandra-improved-teal] => {"changed": true, "cmd": ["date"], "delta": "0:00:00.004899", "end": "2025-11-24 09:44:35.946641", "msg": "", "rc": 0, "start": "2025-11-24 09:44:35.941742", "stderr": "", "stderr_lines": [], "stdout": "Mon Nov 24 09:44:35 AM UTC 2025", "stdout_lines": ["Mon Nov 24 09:44:35 AM UTC 2025"]} -2025-11-24T09:44:36.4999244Z changed: [cassandra-noted-manatee] => {"changed": true, "cmd": ["date"], "delta": "0:00:00.009079", "end": "2025-11-24 09:44:36.142852", "msg": "", "rc": 0, "start": "2025-11-24 09:44:36.133773", "stderr": "", "stderr_lines": [], "stdout": "Mon Nov 24 09:44:36 AM UTC 2025", "stdout_lines": ["Mon Nov 24 09:44:36 AM UTC 2025"]} -2025-11-24T09:44:36.5000384Z -2025-11-24T09:44:36.5000694Z PLAY RECAP ********************************************************************* -2025-11-24T09:44:36.5001644Z cassandra-improved-teal : ok=4 changed=3 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0 -2025-11-24T09:44:36.5002971Z cassandra-noted-manatee : ok=5 changed=4 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:44:36.5004649Z cassandra-tops-fowl : ok=5 changed=4 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:44:36.5005203Z -2025-11-24T09:44:36.5979886Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/kubernetes.yml --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip -2025-11-24T09:44:37.0935425Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:44:37.0936231Z -vvvv to see details -2025-11-24T09:44:37.0942953Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:44:37.0944038Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:44:37.3403832Z [WARNING]: While constructing a mapping from /wire-server-deploy/ansible/roles- -2025-11-24T09:44:37.3404862Z external/kubespray/roles/bootstrap-os/tasks/main.yml, line 29, column 7, found -2025-11-24T09:44:37.3405629Z a duplicate dict key (paths). Using last defined value only. -2025-11-24T09:44:39.0284956Z -2025-11-24T09:44:39.0285726Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:44:39.0286228Z -2025-11-24T09:44:39.0286575Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:44:40.2839253Z Still deploying... -2025-11-24T09:44:41.6642882Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:41.6643425Z ok: [kubenode-super-marlin] -2025-11-24T09:44:41.6643901Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:41.6644200Z -2025-11-24T09:44:41.6644466Z TASK [set_fact] **************************************************************** -2025-11-24T09:44:41.8097836Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:41.8098437Z ok: [kubenode-super-marlin] -2025-11-24T09:44:41.8098938Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:41.8099231Z -2025-11-24T09:44:41.8099560Z PLAY [Check Ansible version] *************************************************** -2025-11-24T09:44:41.8100000Z -2025-11-24T09:44:41.8100341Z TASK [Check 2.16.4 <= Ansible version < 2.17.0] ******************************** -2025-11-24T09:44:41.8494905Z ok: [adminhost] => { -2025-11-24T09:44:41.8495553Z "changed": false, -2025-11-24T09:44:41.8496145Z "msg": "All assertions passed" -2025-11-24T09:44:41.8496771Z } -2025-11-24T09:44:41.8497041Z -2025-11-24T09:44:41.8497482Z TASK [Check that python netaddr is installed] ********************************** -2025-11-24T09:44:41.9671383Z ok: [adminhost] => { -2025-11-24T09:44:41.9671874Z "changed": false, -2025-11-24T09:44:41.9672330Z "msg": "All assertions passed" -2025-11-24T09:44:41.9672972Z } -2025-11-24T09:44:41.9673164Z -2025-11-24T09:44:41.9673478Z TASK [Check that jinja is not too old (install via pip)] *********************** -2025-11-24T09:44:42.1263023Z ok: [adminhost] => { -2025-11-24T09:44:42.1263532Z "changed": false, -2025-11-24T09:44:42.1263985Z "msg": "All assertions passed" -2025-11-24T09:44:42.1264453Z } -2025-11-24T09:44:42.1264655Z -2025-11-24T09:44:42.1265008Z PLAY [Add kube-master nodes to kube_control_plane] ***************************** -2025-11-24T09:44:42.1265447Z -2025-11-24T09:44:42.1265755Z TASK [Add nodes to kube_control_plane group] *********************************** -2025-11-24T09:44:42.2407735Z changed: [kubenode-super-marlin] -2025-11-24T09:44:42.2408432Z changed: [kubenode-renewed-asp] -2025-11-24T09:44:42.2409021Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:44:42.2409388Z -2025-11-24T09:44:42.2409761Z PLAY [Add kube-node nodes to kube_node] **************************************** -2025-11-24T09:44:42.2410262Z -2025-11-24T09:44:42.2410627Z TASK [Add nodes to kube_node group] ******************************************** -2025-11-24T09:44:42.3713499Z changed: [kubenode-super-marlin] -2025-11-24T09:44:42.3714405Z changed: [kubenode-renewed-asp] -2025-11-24T09:44:42.3714963Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:44:42.3715277Z -2025-11-24T09:44:42.3715603Z PLAY [Add k8s-cluster nodes to k8s_cluster] ************************************ -2025-11-24T09:44:42.3716469Z -2025-11-24T09:44:42.3716776Z TASK [Add nodes to k8s_cluster group] ****************************************** -2025-11-24T09:44:42.4604874Z [WARNING]: Could not match supplied host pattern, ignoring: calico-rr -2025-11-24T09:44:42.4606133Z [WARNING]: Could not match supplied host pattern, ignoring: no-floating -2025-11-24T09:44:42.4614658Z [WARNING]: Could not match supplied host pattern, ignoring: bastion -2025-11-24T09:44:42.4621941Z [WARNING]: Could not match supplied host pattern, ignoring: calico_rr -2025-11-24T09:44:42.4963579Z changed: [kubenode-renewed-asp] -2025-11-24T09:44:42.4964355Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:44:42.4965292Z changed: [kubenode-super-marlin] -2025-11-24T09:44:42.4965850Z -2025-11-24T09:44:42.4966422Z PLAY [Add calico-rr nodes to calico_rr] **************************************** -2025-11-24T09:44:42.4967181Z skipping: no hosts matched -2025-11-24T09:44:42.4967469Z -2025-11-24T09:44:42.4967810Z PLAY [Add no-floating nodes to no_floating] ************************************ -2025-11-24T09:44:42.4968432Z skipping: no hosts matched -2025-11-24T09:44:42.4968685Z -2025-11-24T09:44:42.4968986Z PLAY [Install bastion ssh config] ********************************************** -2025-11-24T09:44:42.4969580Z skipping: no hosts matched -2025-11-24T09:44:42.4969833Z -2025-11-24T09:44:42.4970134Z PLAY [Bootstrap hosts for Ansible] ********************************************* -2025-11-24T09:44:42.4970547Z -2025-11-24T09:44:42.4970879Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:44:42.5833514Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:44:42.5834602Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:44:42.5835484Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:44:42.5836202Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:42.5836538Z -2025-11-24T09:44:42.5836956Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:44:42.6258588Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:42.6259205Z -2025-11-24T09:44:42.6259653Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:44:42.7094841Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:42.7095541Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:42.7096424Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:42.7096738Z -2025-11-24T09:44:42.7097099Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:44:42.7513325Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:42.7513703Z -2025-11-24T09:44:42.7514071Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:44:42.8347581Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:42.8348150Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:42.8348663Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:42.8348948Z -2025-11-24T09:44:42.8349407Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:44:42.9836152Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:42.9836857Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:42.9837504Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:42.9837856Z -2025-11-24T09:44:42.9838205Z PLAY [Gather facts] ************************************************************ -2025-11-24T09:44:42.9838667Z -2025-11-24T09:44:42.9839010Z TASK [Gather minimal facts] **************************************************** -2025-11-24T09:44:43.4578140Z ok: [kubenode-super-marlin] -2025-11-24T09:44:43.4578678Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:43.4579144Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:43.4579415Z -2025-11-24T09:44:43.4579738Z TASK [Gather necessary facts (network)] **************************************** -2025-11-24T09:44:44.1440702Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:44.1441364Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:44.1442421Z ok: [kubenode-super-marlin] -2025-11-24T09:44:44.1442989Z -2025-11-24T09:44:44.1443384Z TASK [Gather necessary facts (hardware)] *************************************** -2025-11-24T09:44:45.2820025Z ok: [kubenode-super-marlin] -2025-11-24T09:44:45.2820574Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:45.2821058Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:45.2821338Z -2025-11-24T09:44:45.2821656Z PLAY [Prepare for etcd install] ************************************************ -2025-11-24T09:44:45.2822073Z -2025-11-24T09:44:45.2823083Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:44:45.4064106Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:44:45.4065209Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:44:45.4066127Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:44:45.4066888Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:45.4067245Z -2025-11-24T09:44:45.4067683Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:44:45.4779047Z ok: [kubenode-renewed-asp -> localhost] -2025-11-24T09:44:45.4779508Z -2025-11-24T09:44:45.4779926Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:44:45.5981670Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:45.5982354Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:45.5983170Z ok: [kubenode-super-marlin] -2025-11-24T09:44:45.5983506Z -2025-11-24T09:44:45.5983976Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:44:45.6552570Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:45.6553194Z -2025-11-24T09:44:45.6553609Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:44:45.7588955Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:45.7589644Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:45.7590278Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:45.7590653Z -2025-11-24T09:44:45.7591189Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:44:46.3618431Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:46.3619135Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:46.3619784Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:46.3620506Z -2025-11-24T09:44:46.3620835Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:44:46.4559981Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:46.4560635Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:46.4561215Z ok: [kubenode-super-marlin] -2025-11-24T09:44:46.4561548Z -2025-11-24T09:44:46.4561961Z TASK [download : Prep_download | On localhost, check if passwordless root is possible] *** -2025-11-24T09:44:46.5177880Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:46.5178326Z -2025-11-24T09:44:46.5178926Z TASK [download : Prep_download | On localhost, check if user has access to the container runtime without using sudo] *** -2025-11-24T09:44:46.5735090Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:46.5735550Z -2025-11-24T09:44:46.5735990Z TASK [download : Prep_download | Parse the outputs of the previous commands] *** -2025-11-24T09:44:46.6697925Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:46.6698535Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:46.6699055Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:46.6699359Z -2025-11-24T09:44:46.6699758Z TASK [download : Prep_download | Check that local user is in group or can become root] *** -2025-11-24T09:44:46.7574514Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:46.7575218Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:46.7575843Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:46.7576196Z -2025-11-24T09:44:46.7576590Z TASK [download : Prep_download | Register docker images info] ****************** -2025-11-24T09:44:49.7124055Z ok: [kubenode-super-marlin] -2025-11-24T09:44:49.7124717Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:49.7125730Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:49.7126092Z -2025-11-24T09:44:49.7126523Z TASK [download : Prep_download | Create staging directory on remote node] ****** -2025-11-24T09:44:50.2561369Z changed: [kubenode-super-marlin] -2025-11-24T09:44:50.2561956Z changed: [kubenode-renewed-asp] -2025-11-24T09:44:50.2562457Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:44:50.2563155Z -2025-11-24T09:44:50.2563566Z TASK [download : Prep_download | Create local cache for files and images on control node] *** -2025-11-24T09:44:50.2855773Z Still deploying... -2025-11-24T09:44:50.3390710Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:50.3391363Z -2025-11-24T09:44:50.3391858Z TASK [download : Download | Get kubeadm binary and list of required images] **** -2025-11-24T09:44:50.5036468Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/prep_kubeadm_images.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:44:50.5037663Z -2025-11-24T09:44:50.5038073Z TASK [download : Prep_kubeadm_images | Check kubeadm version matches kubernetes version] *** -2025-11-24T09:44:50.9747695Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:50.9748380Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:50.9748924Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:50.9749240Z -2025-11-24T09:44:50.9749578Z TASK [download : Prep_kubeadm_images | Download kubeadm binary] **************** -2025-11-24T09:44:51.4862386Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:44:51.4863818Z -2025-11-24T09:44:51.4864216Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:44:51.9456807Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:51.9457491Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:51.9457976Z ok: [kubenode-super-marlin] -2025-11-24T09:44:51.9458251Z -2025-11-24T09:44:51.9458616Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:44:52.7428240Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:44:52.7429215Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" -2025-11-24T09:44:52.7429733Z } -2025-11-24T09:44:52.7430136Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:44:52.7430977Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" -2025-11-24T09:44:52.7431477Z } -2025-11-24T09:44:52.7431871Z ok: [kubenode-super-marlin] => { -2025-11-24T09:44:52.7432363Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" -2025-11-24T09:44:52.7433129Z } -2025-11-24T09:44:52.7433333Z -2025-11-24T09:44:52.7433660Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:44:53.5548160Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:53.5548897Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:53.5549359Z ok: [kubenode-super-marlin] -2025-11-24T09:44:53.5549624Z -2025-11-24T09:44:53.5549969Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:44:54.9077834Z ok: [kubenode-renewed-asp] -2025-11-24T09:44:54.9078524Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:44:54.9079011Z ok: [kubenode-super-marlin] -2025-11-24T09:44:54.9079287Z -2025-11-24T09:44:54.9079627Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:44:54.9511365Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:54.9511854Z -2025-11-24T09:44:54.9512395Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:44:55.0040756Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:55.0041361Z -2025-11-24T09:44:55.0041765Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:44:59.3622080Z changed: [kubenode-super-marlin] -2025-11-24T09:44:59.3623260Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:44:59.3623817Z changed: [kubenode-renewed-asp] -2025-11-24T09:44:59.3624087Z -2025-11-24T09:44:59.3624882Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:44:59.4202879Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:59.4203787Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:59.4204422Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:59.4204783Z -2025-11-24T09:44:59.4205148Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:44:59.4497827Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:59.4689965Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:59.4691147Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:59.4691508Z -2025-11-24T09:44:59.4691883Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:44:59.5117647Z skipping: [kubenode-renewed-asp] -2025-11-24T09:44:59.5118545Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:44:59.5119187Z skipping: [kubenode-super-marlin] -2025-11-24T09:44:59.5119529Z -2025-11-24T09:44:59.5119932Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:44:59.5855417Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:44:59.5856513Z -2025-11-24T09:44:59.5856908Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:00.0237253Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:00.0237974Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:00.0238560Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:00.0238872Z -2025-11-24T09:45:00.0239226Z TASK [download : Prep_kubeadm_images | Create kubeadm config] ****************** -2025-11-24T09:45:00.2874913Z Still deploying... -2025-11-24T09:45:01.0837218Z changed: [kubenode-super-marlin] -2025-11-24T09:45:01.0837905Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:01.0838407Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:01.0838723Z -2025-11-24T09:45:01.0839159Z TASK [download : Prep_kubeadm_images | Copy kubeadm binary from download dir to system path] *** -2025-11-24T09:45:01.9745683Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:01.9746643Z changed: [kubenode-super-marlin] -2025-11-24T09:45:01.9747147Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:01.9747413Z -2025-11-24T09:45:01.9754669Z TASK [download : Prep_kubeadm_images | Set kubeadm binary permissions] ********* -2025-11-24T09:45:02.2602345Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:02.2603204Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:02.2603735Z ok: [kubenode-super-marlin] -2025-11-24T09:45:02.2604018Z -2025-11-24T09:45:02.2604384Z TASK [download : Prep_kubeadm_images | Generate list of required images] ******* -2025-11-24T09:45:02.5793196Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:02.5793642Z -2025-11-24T09:45:02.5794102Z TASK [download : Prep_kubeadm_images | Parse list of images] ******************* -2025-11-24T09:45:02.6783175Z ok: [kubenode-renewed-asp] => (item=registry.k8s.io/kube-apiserver:v1.29.10) -2025-11-24T09:45:02.6784288Z ok: [kubenode-renewed-asp] => (item=registry.k8s.io/kube-controller-manager:v1.29.10) -2025-11-24T09:45:02.6785269Z ok: [kubenode-renewed-asp] => (item=registry.k8s.io/kube-scheduler:v1.29.10) -2025-11-24T09:45:02.6786137Z ok: [kubenode-renewed-asp] => (item=registry.k8s.io/kube-proxy:v1.29.10) -2025-11-24T09:45:02.6786578Z -2025-11-24T09:45:02.6786965Z TASK [download : Prep_kubeadm_images | Convert list of images to dict for later use] *** -2025-11-24T09:45:02.7428599Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:02.7429024Z -2025-11-24T09:45:02.7429424Z TASK [download : Download | Download files / images] *************************** -2025-11-24T09:45:03.4012337Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'netcheck_server', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-server', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4014939Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'netcheck_agent', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-agent', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4016645Z skipping: [kubenode-super-marlin] => (item={'key': 'netcheck_server', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-server', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4018361Z skipping: [kubenode-super-marlin] => (item={'key': 'netcheck_agent', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-agent', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4020130Z skipping: [kubenode-renewed-asp] => (item={'key': 'netcheck_server', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-server', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4021773Z skipping: [kubenode-renewed-asp] => (item={'key': 'netcheck_agent', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/mirantis/k8s-netchecker-agent', 'tag': 'v1.2.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4024202Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'crio', 'value': {'file': True, 'enabled': False, 'version': 'v1.29.1', 'dest': '/tmp/releases/cri-o.amd64.v1.29.1tar.gz', 'sha256': '127ca9f57c2a3ad44dde2e64e0ec94169886245dffb74c12e68eedc80756c260', 'url': 'https://storage.googleapis.com/cri-o/artifacts/cri-o.amd64.v1.29.1.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4027380Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cri_dockerd', 'value': {'file': True, 'enabled': False, 'version': '0.3.11', 'dest': '/tmp/releases/cri-dockerd-0.3.11.amd64.tar.gz', 'sha256': 'b2475988f3b86d85c7835269121171e35c92454ad5f4cd6252183b0fccd74d63', 'url': 'https://github.com/Mirantis/cri-dockerd/releases/download/v0.3.11/cri-dockerd-0.3.11.amd64.tgz', 'unarchive': True, 'unarchive_extra_opts': ['--strip=1'], 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4030507Z skipping: [kubenode-super-marlin] => (item={'key': 'crio', 'value': {'file': True, 'enabled': False, 'version': 'v1.29.1', 'dest': '/tmp/releases/cri-o.amd64.v1.29.1tar.gz', 'sha256': '127ca9f57c2a3ad44dde2e64e0ec94169886245dffb74c12e68eedc80756c260', 'url': 'https://storage.googleapis.com/cri-o/artifacts/cri-o.amd64.v1.29.1.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4033478Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'crun', 'value': {'file': True, 'enabled': False, 'version': '1.14.4', 'dest': '/tmp/releases/crun-1.14.4-amd64', 'sha256': '4f170aaa10d2ef02560cfb60b67ddfa1a83b1b4f7018227e9cb23a6af3955ec1', 'url': 'https://github.com/containers/crun/releases/download/1.14.4/crun-1.14.4-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4036376Z skipping: [kubenode-super-marlin] => (item={'key': 'cri_dockerd', 'value': {'file': True, 'enabled': False, 'version': '0.3.11', 'dest': '/tmp/releases/cri-dockerd-0.3.11.amd64.tar.gz', 'sha256': 'b2475988f3b86d85c7835269121171e35c92454ad5f4cd6252183b0fccd74d63', 'url': 'https://github.com/Mirantis/cri-dockerd/releases/download/v0.3.11/cri-dockerd-0.3.11.amd64.tgz', 'unarchive': True, 'unarchive_extra_opts': ['--strip=1'], 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4039252Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'youki', 'value': {'file': True, 'enabled': False, 'version': '0.1.0', 'dest': '/tmp/releases/youki_0_1_0_linux.tar.gz', 'sha256': 'f00677e9674215b44f140f0c0f4b79b0001c72c073d2c5bb514b7a9dcb13bdbc', 'url': 'https://github.com/containers/youki/releases/download/v0.1.0/youki_0_1_0_linux.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4042096Z skipping: [kubenode-super-marlin] => (item={'key': 'crun', 'value': {'file': True, 'enabled': False, 'version': '1.14.4', 'dest': '/tmp/releases/crun-1.14.4-amd64', 'sha256': '4f170aaa10d2ef02560cfb60b67ddfa1a83b1b4f7018227e9cb23a6af3955ec1', 'url': 'https://github.com/containers/crun/releases/download/1.14.4/crun-1.14.4-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4044885Z skipping: [kubenode-super-marlin] => (item={'key': 'youki', 'value': {'file': True, 'enabled': False, 'version': '0.1.0', 'dest': '/tmp/releases/youki_0_1_0_linux.tar.gz', 'sha256': 'f00677e9674215b44f140f0c0f4b79b0001c72c073d2c5bb514b7a9dcb13bdbc', 'url': 'https://github.com/containers/youki/releases/download/v0.1.0/youki_0_1_0_linux.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4047822Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kata_containers', 'value': {'enabled': False, 'file': True, 'version': '3.1.3', 'dest': '/tmp/releases/kata-static-3.1.3-amd64.tar.xz', 'sha256': '266c906222c85b67867dea3c9bdb58c6da0b656be3a29f9e0bed227c939f3f26', 'url': 'https://github.com/kata-containers/kata-containers/releases/download/3.1.3/kata-static-3.1.3-x86_64.tar.xz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4050862Z skipping: [kubenode-super-marlin] => (item={'key': 'kata_containers', 'value': {'enabled': False, 'file': True, 'version': '3.1.3', 'dest': '/tmp/releases/kata-static-3.1.3-amd64.tar.xz', 'sha256': '266c906222c85b67867dea3c9bdb58c6da0b656be3a29f9e0bed227c939f3f26', 'url': 'https://github.com/kata-containers/kata-containers/releases/download/3.1.3/kata-static-3.1.3-x86_64.tar.xz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4053926Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'gvisor_runsc', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'sha256': '3b949f7fab2c7d3d75df09fe5f170b46951e62b8833dcc4abad0a4d6c12f41f3', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/runsc', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4056693Z skipping: [kubenode-renewed-asp] => (item={'key': 'crio', 'value': {'file': True, 'enabled': False, 'version': 'v1.29.1', 'dest': '/tmp/releases/cri-o.amd64.v1.29.1tar.gz', 'sha256': '127ca9f57c2a3ad44dde2e64e0ec94169886245dffb74c12e68eedc80756c260', 'url': 'https://storage.googleapis.com/cri-o/artifacts/cri-o.amd64.v1.29.1.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4059510Z skipping: [kubenode-super-marlin] => (item={'key': 'gvisor_runsc', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'sha256': '3b949f7fab2c7d3d75df09fe5f170b46951e62b8833dcc4abad0a4d6c12f41f3', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/runsc', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4062540Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'gvisor_containerd_shim', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'sha256': '11a1b482e0ed6c72ea6ca72692e1cb2d0794214d142be5389e30517a96b157dc', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/containerd-shim-runsc-v1', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4065938Z skipping: [kubenode-renewed-asp] => (item={'key': 'cri_dockerd', 'value': {'file': True, 'enabled': False, 'version': '0.3.11', 'dest': '/tmp/releases/cri-dockerd-0.3.11.amd64.tar.gz', 'sha256': 'b2475988f3b86d85c7835269121171e35c92454ad5f4cd6252183b0fccd74d63', 'url': 'https://github.com/Mirantis/cri-dockerd/releases/download/v0.3.11/cri-dockerd-0.3.11.amd64.tgz', 'unarchive': True, 'unarchive_extra_opts': ['--strip=1'], 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.4069097Z skipping: [kubenode-super-marlin] => (item={'key': 'gvisor_containerd_shim', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'sha256': '11a1b482e0ed6c72ea6ca72692e1cb2d0794214d142be5389e30517a96b157dc', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/containerd-shim-runsc-v1', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5857283Z skipping: [kubenode-renewed-asp] => (item={'key': 'crun', 'value': {'file': True, 'enabled': False, 'version': '1.14.4', 'dest': '/tmp/releases/crun-1.14.4-amd64', 'sha256': '4f170aaa10d2ef02560cfb60b67ddfa1a83b1b4f7018227e9cb23a6af3955ec1', 'url': 'https://github.com/containers/crun/releases/download/1.14.4/crun-1.14.4-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5861170Z skipping: [kubenode-renewed-asp] => (item={'key': 'youki', 'value': {'file': True, 'enabled': False, 'version': '0.1.0', 'dest': '/tmp/releases/youki_0_1_0_linux.tar.gz', 'sha256': 'f00677e9674215b44f140f0c0f4b79b0001c72c073d2c5bb514b7a9dcb13bdbc', 'url': 'https://github.com/containers/youki/releases/download/v0.1.0/youki_0_1_0_linux.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5864885Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'skopeo', 'value': {'file': True, 'enabled': False, 'version': 'v1.15.0', 'dest': '/tmp/releases/skopeo-v1.15.0-amd64', 'sha256': '3cdbcde0163abb4c942f62d0302479d5aa4d31c5970d712841cf5d5f76edc594', 'url': 'https://github.com/lework/skopeo-binary/releases/download/v1.15.0/skopeo-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.5868199Z skipping: [kubenode-super-marlin] => (item={'key': 'skopeo', 'value': {'file': True, 'enabled': False, 'version': 'v1.15.0', 'dest': '/tmp/releases/skopeo-v1.15.0-amd64', 'sha256': '3cdbcde0163abb4c942f62d0302479d5aa4d31c5970d712841cf5d5f76edc594', 'url': 'https://github.com/lework/skopeo-binary/releases/download/v1.15.0/skopeo-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.5870882Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/cilium', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5872443Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/cilium', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5874202Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_operator', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/operator', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5876418Z skipping: [kubenode-renewed-asp] => (item={'key': 'kata_containers', 'value': {'enabled': False, 'file': True, 'version': '3.1.3', 'dest': '/tmp/releases/kata-static-3.1.3-amd64.tar.xz', 'sha256': '266c906222c85b67867dea3c9bdb58c6da0b656be3a29f9e0bed227c939f3f26', 'url': 'https://github.com/kata-containers/kata-containers/releases/download/3.1.3/kata-static-3.1.3-x86_64.tar.xz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5878593Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_operator', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/operator', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5880221Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_relay', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-relay', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5881668Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_relay', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-relay', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5883289Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_certgen', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/certgen', 'tag': 'v0.1.8', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5884873Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_certgen', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/certgen', 'tag': 'v0.1.8', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5887038Z skipping: [kubenode-renewed-asp] => (item={'key': 'gvisor_runsc', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-runsc-20240305-x86_64', 'sha256': '3b949f7fab2c7d3d75df09fe5f170b46951e62b8833dcc4abad0a4d6c12f41f3', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/runsc', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5890051Z skipping: [kubenode-renewed-asp] => (item={'key': 'gvisor_containerd_shim', 'value': {'enabled': False, 'file': True, 'version': 20240305, 'dest': '/tmp/releases/gvisor-containerd-shim-runsc-v1-20240305-x86_64', 'sha256': '11a1b482e0ed6c72ea6ca72692e1cb2d0794214d142be5389e30517a96b157dc', 'url': 'https://storage.googleapis.com/gvisor/releases/release/20240305/x86_64/containerd-shim-runsc-v1', 'unarchive': False, 'owner': 'root', 'mode': 755, 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5893234Z skipping: [kubenode-renewed-asp] => (item={'key': 'skopeo', 'value': {'file': True, 'enabled': False, 'version': 'v1.15.0', 'dest': '/tmp/releases/skopeo-v1.15.0-amd64', 'sha256': '3cdbcde0163abb4c942f62d0302479d5aa4d31c5970d712841cf5d5f76edc594', 'url': 'https://github.com/lework/skopeo-binary/releases/download/v1.15.0/skopeo-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.5895285Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/cilium', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5896714Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_operator', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/operator', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5898108Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_relay', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-relay', 'tag': 'v1.15.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5899506Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_certgen', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/certgen', 'tag': 'v0.1.8', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5900871Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_ui', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5902298Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_ui_backend', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui-backend', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5903971Z skipping: [kubenode-renewed-asp] => (item={'key': 'cilium_hubble_envoy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/envoyproxy/envoy', 'tag': 'v1.22.5', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5906256Z skipping: [kubenode-renewed-asp] => (item={'key': 'ciliumcli', 'value': {'enabled': False, 'file': True, 'version': 'v0.16.0', 'dest': '/tmp/releases/cilium-v0.16.0-amd64.tar.gz', 'sha256': 'da98675f961833d4ffd68b1046d907b228a7d394ded2abd70a50b20eaca171c4', 'url': 'https://github.com/cilium/cilium-cli/releases/download/v0.16.0/cilium-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5908426Z skipping: [kubenode-renewed-asp] => (item={'key': 'multus', 'value': {'enabled': False, 'container': True, 'repo': 'ghcr.io/k8snetworkplumbingwg/multus-cni', 'tag': 'v3.8', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5909917Z skipping: [kubenode-renewed-asp] => (item={'key': 'flannel', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel', 'tag': 'v0.22.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5911325Z skipping: [kubenode-renewed-asp] => (item={'key': 'flannel_init', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel-cni-plugin', 'tag': 'v1.1.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5912959Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_ui', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.5914394Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_ui', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8393000Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_ui_backend', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui-backend', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8394962Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_ui_backend', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/cilium/hubble-ui-backend', 'tag': 'v0.11.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8396957Z skipping: [kubenode-super-marlin] => (item={'key': 'cilium_hubble_envoy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/envoyproxy/envoy', 'tag': 'v1.22.5', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8399241Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cilium_hubble_envoy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/envoyproxy/envoy', 'tag': 'v1.22.5', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8402159Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'ciliumcli', 'value': {'enabled': False, 'file': True, 'version': 'v0.16.0', 'dest': '/tmp/releases/cilium-v0.16.0-amd64.tar.gz', 'sha256': 'da98675f961833d4ffd68b1046d907b228a7d394ded2abd70a50b20eaca171c4', 'url': 'https://github.com/cilium/cilium-cli/releases/download/v0.16.0/cilium-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8405660Z skipping: [kubenode-super-marlin] => (item={'key': 'ciliumcli', 'value': {'enabled': False, 'file': True, 'version': 'v0.16.0', 'dest': '/tmp/releases/cilium-v0.16.0-amd64.tar.gz', 'sha256': 'da98675f961833d4ffd68b1046d907b228a7d394ded2abd70a50b20eaca171c4', 'url': 'https://github.com/cilium/cilium-cli/releases/download/v0.16.0/cilium-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8408207Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'multus', 'value': {'enabled': False, 'container': True, 'repo': 'ghcr.io/k8snetworkplumbingwg/multus-cni', 'tag': 'v3.8', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8409698Z skipping: [kubenode-super-marlin] => (item={'key': 'multus', 'value': {'enabled': False, 'container': True, 'repo': 'ghcr.io/k8snetworkplumbingwg/multus-cni', 'tag': 'v3.8', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8411607Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'flannel', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel', 'tag': 'v0.22.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8413203Z skipping: [kubenode-super-marlin] => (item={'key': 'flannel', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel', 'tag': 'v0.22.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8414696Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'flannel_init', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel-cni-plugin', 'tag': 'v1.1.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8416441Z skipping: [kubenode-super-marlin] => (item={'key': 'flannel_init', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/flannel/flannel-cni-plugin', 'tag': 'v1.1.2', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8417862Z skipping: [kubenode-renewed-asp] => (item={'key': 'calico_typha', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/typha', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8419211Z skipping: [kubenode-renewed-asp] => (item={'key': 'calico_apiserver', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/apiserver', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8420608Z skipping: [kubenode-renewed-asp] => (item={'key': 'weave_kube', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-kube', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8422165Z skipping: [kubenode-renewed-asp] => (item={'key': 'weave_npc', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-npc', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8423638Z skipping: [kubenode-renewed-asp] => (item={'key': 'kube_ovn', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubeovn/kube-ovn', 'tag': 'v1.11.5', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8424983Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'calico_typha', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/typha', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8426512Z skipping: [kubenode-renewed-asp] => (item={'key': 'kube_router', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/cloudnativelabs/kube-router', 'tag': 'v2.0.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8427919Z skipping: [kubenode-super-marlin] => (item={'key': 'calico_typha', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/typha', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8429314Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'calico_apiserver', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/apiserver', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8430723Z skipping: [kubenode-super-marlin] => (item={'key': 'calico_apiserver', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/calico/apiserver', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8432132Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'weave_kube', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-kube', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8433661Z skipping: [kubenode-super-marlin] => (item={'key': 'weave_kube', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-kube', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8435236Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'weave_npc', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-npc', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8436628Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kube_ovn', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubeovn/kube-ovn', 'tag': 'v1.11.5', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8437994Z skipping: [kubenode-super-marlin] => (item={'key': 'weave_npc', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/weaveworks/weave-npc', 'tag': '2.8.1', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8439425Z skipping: [kubenode-super-marlin] => (item={'key': 'kube_ovn', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubeovn/kube-ovn', 'tag': 'v1.11.5', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8440842Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kube_router', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/cloudnativelabs/kube-router', 'tag': 'v2.0.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8442320Z skipping: [kubenode-super-marlin] => (item={'key': 'kube_router', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/cloudnativelabs/kube-router', 'tag': 'v2.0.0', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:03.8443833Z skipping: [kubenode-renewed-asp] => (item={'key': 'haproxy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/haproxy', 'tag': '2.8.2-alpine', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.8445203Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'haproxy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/haproxy', 'tag': '2.8.2-alpine', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.8446591Z skipping: [kubenode-super-marlin] => (item={'key': 'haproxy', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/haproxy', 'tag': '2.8.2-alpine', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.8448591Z skipping: [kubenode-renewed-asp] => (item={'key': 'helm', 'value': {'enabled': False, 'file': True, 'version': 'v3.14.4', 'dest': '/tmp/releases/helm-v3.14.4/helm-v3.14.4-linux-amd64.tar.gz', 'sha256': 'a5844ef2c38ef6ddf3b5a8f7d91e7e0e8ebc39a38bb3fc8013d629c1ef29c259', 'url': 'https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.8451378Z skipping: [kubenode-renewed-asp] => (item={'key': 'krew', 'value': {'enabled': False, 'file': True, 'version': 'v0.4.4', 'dest': '/tmp/releases/krew-linux_amd64.tar.gz', 'sha256': 'e471396b0ed4f2be092b4854cc030dfcbb12b86197972e7bef0cb89ad9c72477', 'url': 'https://github.com/kubernetes-sigs/krew/releases/download/v0.4.4/krew-linux_amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.9452008Z skipping: [kubenode-renewed-asp] => (item={'key': 'registry', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/registry', 'tag': '2.8.1', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9454226Z skipping: [kubenode-renewed-asp] => (item={'key': 'metrics_server', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/metrics-server/metrics-server', 'tag': 'v0.7.2', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.9456327Z skipping: [kubenode-renewed-asp] => (item={'key': 'local_volume_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/local-volume-provisioner', 'tag': 'v2.5.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9458298Z skipping: [kubenode-renewed-asp] => (item={'key': 'cephfs_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/cephfs-provisioner', 'tag': 'v2.1.0-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9460580Z skipping: [kubenode-renewed-asp] => (item={'key': 'rbd_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/rbd-provisioner', 'tag': 'v2.1.1-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9462286Z skipping: [kubenode-renewed-asp] => (item={'key': 'local_path_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/rancher/local-path-provisioner', 'tag': 'v0.0.24', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9464731Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'helm', 'value': {'enabled': False, 'file': True, 'version': 'v3.14.4', 'dest': '/tmp/releases/helm-v3.14.4/helm-v3.14.4-linux-amd64.tar.gz', 'sha256': 'a5844ef2c38ef6ddf3b5a8f7d91e7e0e8ebc39a38bb3fc8013d629c1ef29c259', 'url': 'https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.9467164Z skipping: [kubenode-renewed-asp] => (item={'key': 'ingress_nginx_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/ingress-nginx/controller', 'tag': 'v1.12.1', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9469385Z skipping: [kubenode-super-marlin] => (item={'key': 'helm', 'value': {'enabled': False, 'file': True, 'version': 'v3.14.4', 'dest': '/tmp/releases/helm-v3.14.4/helm-v3.14.4-linux-amd64.tar.gz', 'sha256': 'a5844ef2c38ef6ddf3b5a8f7d91e7e0e8ebc39a38bb3fc8013d629c1ef29c259', 'url': 'https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.9472227Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'krew', 'value': {'enabled': False, 'file': True, 'version': 'v0.4.4', 'dest': '/tmp/releases/krew-linux_amd64.tar.gz', 'sha256': 'e471396b0ed4f2be092b4854cc030dfcbb12b86197972e7bef0cb89ad9c72477', 'url': 'https://github.com/kubernetes-sigs/krew/releases/download/v0.4.4/krew-linux_amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.9474619Z skipping: [kubenode-renewed-asp] => (item={'key': 'ingress_alb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-alb-ingress-controller', 'tag': 'v1.1.9', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9476901Z skipping: [kubenode-super-marlin] => (item={'key': 'krew', 'value': {'enabled': False, 'file': True, 'version': 'v0.4.4', 'dest': '/tmp/releases/krew-linux_amd64.tar.gz', 'sha256': 'e471396b0ed4f2be092b4854cc030dfcbb12b86197972e7bef0cb89ad9c72477', 'url': 'https://github.com/kubernetes-sigs/krew/releases/download/v0.4.4/krew-linux_amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.9479175Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'registry', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/registry', 'tag': '2.8.1', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9480722Z skipping: [kubenode-renewed-asp] => (item={'key': 'cert_manager_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-controller', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9482231Z skipping: [kubenode-super-marlin] => (item={'key': 'registry', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/library/registry', 'tag': '2.8.1', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9483852Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'metrics_server', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/metrics-server/metrics-server', 'tag': 'v0.7.2', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.9485541Z skipping: [kubenode-super-marlin] => (item={'key': 'metrics_server', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/metrics-server/metrics-server', 'tag': 'v0.7.2', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:03.9487288Z skipping: [kubenode-renewed-asp] => (item={'key': 'cert_manager_cainjector', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-cainjector', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9488995Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'local_volume_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/local-volume-provisioner', 'tag': 'v2.5.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9490701Z skipping: [kubenode-super-marlin] => (item={'key': 'local_volume_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/local-volume-provisioner', 'tag': 'v2.5.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9492421Z skipping: [kubenode-renewed-asp] => (item={'key': 'cert_manager_webhook', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-webhook', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9494166Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cephfs_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/cephfs-provisioner', 'tag': 'v2.1.0-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9495835Z skipping: [kubenode-super-marlin] => (item={'key': 'cephfs_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/cephfs-provisioner', 'tag': 'v2.1.0-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9497506Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'rbd_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/rbd-provisioner', 'tag': 'v2.1.1-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9499077Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_attacher', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-attacher', 'tag': 'v3.3.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9500643Z skipping: [kubenode-super-marlin] => (item={'key': 'rbd_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/external_storage/rbd-provisioner', 'tag': 'v2.1.1-k8s1.11', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9502335Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'local_path_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/rancher/local-path-provisioner', 'tag': 'v0.0.24', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9504095Z skipping: [kubenode-super-marlin] => (item={'key': 'local_path_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/rancher/local-path-provisioner', 'tag': 'v0.0.24', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9505715Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-provisioner', 'tag': 'v3.0.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9507347Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'ingress_nginx_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/ingress-nginx/controller', 'tag': 'v1.12.1', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9508940Z skipping: [kubenode-super-marlin] => (item={'key': 'ingress_nginx_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/ingress-nginx/controller', 'tag': 'v1.12.1', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:03.9510530Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'ingress_alb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-alb-ingress-controller', 'tag': 'v1.1.9', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0331078Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_snapshotter', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-snapshotter', 'tag': 'v5.0.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0333199Z skipping: [kubenode-super-marlin] => (item={'key': 'ingress_alb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-alb-ingress-controller', 'tag': 'v1.1.9', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0334901Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cert_manager_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-controller', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0336683Z skipping: [kubenode-renewed-asp] => (item={'key': 'snapshot_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/snapshot-controller', 'tag': 'v7.0.2', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0338300Z skipping: [kubenode-super-marlin] => (item={'key': 'cert_manager_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-controller', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0339920Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cert_manager_cainjector', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-cainjector', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0341538Z skipping: [kubenode-super-marlin] => (item={'key': 'cert_manager_cainjector', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-cainjector', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0343212Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cert_manager_webhook', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-webhook', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0344702Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_resizer', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-resizer', 'tag': 'v1.3.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0346170Z skipping: [kubenode-super-marlin] => (item={'key': 'cert_manager_webhook', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/jetstack/cert-manager-webhook', 'tag': 'v1.16.3', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0347795Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_attacher', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-attacher', 'tag': 'v3.3.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0349362Z skipping: [kubenode-renewed-asp] => (item={'key': 'csi_node_driver_registrar', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-node-driver-registrar', 'tag': 'v2.4.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0350930Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_attacher', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-attacher', 'tag': 'v3.3.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0352442Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-provisioner', 'tag': 'v3.0.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0366479Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_provisioner', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-provisioner', 'tag': 'v3.0.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0374746Z skipping: [kubenode-renewed-asp] => (item={'key': 'cinder_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/provider-os/cinder-csi-plugin', 'tag': 'v1.29.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0376505Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_snapshotter', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-snapshotter', 'tag': 'v5.0.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0380182Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_snapshotter', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-snapshotter', 'tag': 'v5.0.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0382054Z skipping: [kubenode-renewed-asp] => (item={'key': 'aws_ebs_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-ebs-csi-driver', 'tag': 'v0.5.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0386787Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'snapshot_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/snapshot-controller', 'tag': 'v7.0.2', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0388448Z skipping: [kubenode-super-marlin] => (item={'key': 'snapshot_controller', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/snapshot-controller', 'tag': 'v7.0.2', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0389956Z skipping: [kubenode-renewed-asp] => (item={'key': 'dashboard', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/dashboard', 'tag': 'v2.7.0', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.0391435Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_resizer', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-resizer', 'tag': 'v1.3.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0392998Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_resizer', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-resizer', 'tag': 'v1.3.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0395107Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'csi_node_driver_registrar', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-node-driver-registrar', 'tag': 'v2.4.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0397074Z skipping: [kubenode-renewed-asp] => (item={'key': 'dashboard_metrics_scrapper', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/metrics-scraper', 'tag': 'v1.0.8', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.0399237Z skipping: [kubenode-super-marlin] => (item={'key': 'csi_node_driver_registrar', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/sig-storage/csi-node-driver-registrar', 'tag': 'v2.4.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0401255Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'cinder_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/provider-os/cinder-csi-plugin', 'tag': 'v1.29.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0404913Z skipping: [kubenode-renewed-asp] => (item={'key': 'metallb_speaker', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/speaker', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.0406448Z skipping: [kubenode-super-marlin] => (item={'key': 'cinder_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'registry.k8s.io/provider-os/cinder-csi-plugin', 'tag': 'v1.29.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0408026Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'aws_ebs_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-ebs-csi-driver', 'tag': 'v0.5.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0409702Z skipping: [kubenode-renewed-asp] => (item={'key': 'metallb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/controller', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.0411211Z skipping: [kubenode-super-marlin] => (item={'key': 'aws_ebs_csi_plugin', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/amazon/aws-ebs-csi-driver', 'tag': 'v0.5.0', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.0412822Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'dashboard', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/dashboard', 'tag': 'v2.7.0', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.0414996Z skipping: [kubenode-renewed-asp] => (item={'key': 'yq', 'value': {'enabled': False, 'file': True, 'version': 'v4.42.1', 'dest': '/tmp/releases/yq-v4.42.1-amd64', 'sha256': '1a95960dddd426321354d58d2beac457717f7c49a9ec0806749a5a9e400eb45e', 'url': 'https://github.com/mikefarah/yq/releases/download/v4.42.1/yq_linux_amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3702287Z skipping: [kubenode-super-marlin] => (item={'key': 'dashboard', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/dashboard', 'tag': 'v2.7.0', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3704359Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'dashboard_metrics_scrapper', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/metrics-scraper', 'tag': 'v1.0.8', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3706112Z skipping: [kubenode-super-marlin] => (item={'key': 'dashboard_metrics_scrapper', 'value': {'enabled': False, 'container': True, 'repo': 'docker.io/kubernetesui/metrics-scraper', 'tag': 'v1.0.8', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3707743Z skipping: [kubenode-renewed-asp] => (item={'key': 'kubeadm_kube-apiserver', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-apiserver', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3709216Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'metallb_speaker', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/speaker', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3710978Z skipping: [kubenode-super-marlin] => (item={'key': 'metallb_speaker', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/speaker', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3712490Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'metallb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/controller', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3714309Z skipping: [kubenode-super-marlin] => (item={'key': 'metallb_controller', 'value': {'enabled': False, 'container': True, 'repo': 'quay.io/metallb/controller', 'tag': 'v0.13.9', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3715850Z skipping: [kubenode-renewed-asp] => (item={'key': 'kubeadm_kube-controller-manager', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-controller-manager', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3718021Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'yq', 'value': {'enabled': False, 'file': True, 'version': 'v4.42.1', 'dest': '/tmp/releases/yq-v4.42.1-amd64', 'sha256': '1a95960dddd426321354d58d2beac457717f7c49a9ec0806749a5a9e400eb45e', 'url': 'https://github.com/mikefarah/yq/releases/download/v4.42.1/yq_linux_amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3720874Z skipping: [kubenode-super-marlin] => (item={'key': 'yq', 'value': {'enabled': False, 'file': True, 'version': 'v4.42.1', 'dest': '/tmp/releases/yq-v4.42.1-amd64', 'sha256': '1a95960dddd426321354d58d2beac457717f7c49a9ec0806749a5a9e400eb45e', 'url': 'https://github.com/mikefarah/yq/releases/download/v4.42.1/yq_linux_amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3723053Z skipping: [kubenode-renewed-asp] => (item={'key': 'kubeadm_kube-scheduler', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-scheduler', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3724525Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kubeadm_kube-apiserver', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-apiserver', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3726075Z skipping: [kubenode-super-marlin] => (item={'key': 'kubeadm_kube-apiserver', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-apiserver', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3727476Z skipping: [kubenode-renewed-asp] => (item={'key': 'kubeadm_kube-proxy', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-proxy', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3728935Z skipping: [kubenode-super-marlin] => (item={'key': 'kubeadm_kube-controller-manager', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-controller-manager', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3730511Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kubeadm_kube-controller-manager', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-controller-manager', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3732028Z skipping: [kubenode-super-marlin] => (item={'key': 'kubeadm_kube-scheduler', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-scheduler', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3733554Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kubeadm_kube-scheduler', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-scheduler', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3734948Z skipping: [kubenode-super-marlin] => (item={'key': 'kubeadm_kube-proxy', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-proxy', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3736393Z skipping: [kubenode-teaching-gobbler] => (item={'key': 'kubeadm_kube-proxy', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/kube-proxy', 'tag': 'v1.29.10', 'groups': 'k8s_cluster'}}) -2025-11-24T09:45:04.3739084Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'etcd', 'value': {'container': False, 'file': True, 'enabled': True, 'version': 'v3.5.16', 'dest': '/tmp/releases/etcd-v3.5.16-linux-amd64.tar.gz', 'repo': 'quay.io/coreos/etcd', 'tag': 'v3.5.16', 'sha256': 'b414b27a5ad05f7cb01395c447c85d3227e3fb1c176e51757a283b817f645ccc', 'url': 'http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['etcd']}}) -2025-11-24T09:45:04.3743063Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'cni', 'value': {'enabled': True, 'file': True, 'version': 'v1.3.0', 'dest': '/tmp/releases/cni-plugins-linux-amd64-v1.3.0.tgz', 'sha256': '754a71ed60a4bd08726c3af705a7d55ee3df03122b12e389fdba4bea35d7dd7e', 'url': 'http://10.1.1.1:8080/binaries/cni-plugins-linux-amd64-v1.3.0.tgz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.3746860Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'kubeadm', 'value': {'enabled': True, 'file': True, 'version': 'v1.29.10', 'dest': '/tmp/releases/kubeadm-v1.29.10-amd64', 'sha256': '9098c908e0f3a601e8bef9b2cdb4a9777e18204595a6542be58b3928c7b51440', 'url': 'http://10.1.1.1:8080/binaries/kubeadm', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.3750312Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'kubelet', 'value': {'enabled': True, 'file': True, 'version': 'v1.29.10', 'dest': '/tmp/releases/kubelet-v1.29.10-amd64', 'sha256': '4cc094062cd1cff49ca551208635669ab86e3982d38e8d0a77ab833a941ff708', 'url': 'http://10.1.1.1:8080/binaries/kubelet', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.3754036Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'kubectl', 'value': {'enabled': True, 'file': True, 'version': 'v1.29.10', 'dest': '/tmp/releases/kubectl-v1.29.10-amd64', 'sha256': '24f2f09a635d36b2ce36eaebf191326e2b25097eec541a3e47fee6726ef06cef', 'url': 'http://10.1.1.1:8080/binaries/kubectl', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.3757637Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'crictl', 'value': {'file': True, 'enabled': True, 'version': 'v1.29.0', 'dest': '/tmp/releases/crictl-v1.29.0-linux-amd64.tar.gz', 'sha256': 'd16a1ffb3938f5a19d5c8f45d363bd091ef89c0bc4d44ad16b933eede32fdcbb', 'url': 'http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6188063Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'runc', 'value': {'file': True, 'enabled': True, 'version': 'v1.1.14', 'dest': '/tmp/releases/runc-v1.1.14.amd64', 'sha256': 'a83c0804ebc16826829e7925626c4793da89a9b225bbcc468f2b338ea9f8e8a8', 'url': 'http://10.1.1.1:8080/binaries/runc.amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6192215Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'containerd', 'value': {'enabled': True, 'file': True, 'version': '1.7.22', 'dest': '/tmp/releases/containerd-1.7.22-linux-amd64.tar.gz', 'sha256': 'f8b2d935d1f86003f4e0c1af3b9f0d2820bacabe6dc9f562785b74af24c5e468', 'url': 'http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6196466Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'nerdctl', 'value': {'file': True, 'enabled': True, 'version': '1.7.7', 'dest': '/tmp/releases/nerdctl-1.7.7-linux-amd64.tar.gz', 'sha256': '298bb95aee485b24d566115ef7e4e90951dd232447b05de5646a652a23db70a9', 'url': 'http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz', 'unarchive': True, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6200851Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calicoctl', 'value': {'enabled': True, 'file': True, 'version': 'v3.27.4', 'dest': '/tmp/releases/calicoctl-v3.27.4-amd64', 'sha256': '84f2bd29ef7b06e85a2caf0b6c6e0d3da5ab5264d46b360e6baaf49bbc3b957d', 'url': 'http://10.1.1.1:8080/binaries/calicoctl-linux-amd64', 'unarchive': False, 'owner': 'root', 'mode': '0755', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6204358Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_node', 'value': {'enabled': True, 'container': True, 'repo': 'quay.io/calico/node', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6207183Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_cni', 'value': {'enabled': True, 'container': True, 'repo': 'quay.io/calico/cni', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6209936Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_flexvol', 'value': {'enabled': True, 'container': True, 'repo': 'quay.io/calico/pod2daemon-flexvol', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6212945Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_policy', 'value': {'enabled': True, 'container': True, 'repo': 'quay.io/calico/kube-controllers', 'tag': 'v3.27.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6216339Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'calico_crds', 'value': {'file': True, 'enabled': True, 'version': 'v3.27.4', 'dest': '/tmp/releases/calico-v3.27.4-kdd-crds/v3.27.4.tar.gz', 'sha256': '5f6ac510bd6bd8c14542afe91f7dbcf2a846dba02ae3152a3b07a1bfdea96078', 'url': 'http://10.1.1.1:8080/binaries/v3.27.4.tar.gz', 'unarchive': True, 'unarchive_extra_opts': ['--strip=3', '--wildcards', '*/libcalico-go/config/crd/'], 'owner': 'root', 'mode': '0755', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.6219783Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'pod_infra', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/pause', 'tag': '3.9', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6222252Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'kube-vip', 'value': {'enabled': True, 'container': True, 'repo': 'ghcr.io/kube-vip/kube-vip', 'tag': 'v0.8.0', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.6224858Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'nginx', 'value': {'enabled': True, 'container': True, 'repo': 'docker.io/library/nginx', 'tag': '1.25.4-alpine', 'sha256': '', 'groups': ['kube_node']}}) -2025-11-24T09:45:04.6227336Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'coredns', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/coredns/coredns', 'tag': 'v1.11.4', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6230022Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'nodelocaldns', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/dns/k8s-dns-node-cache', 'tag': '1.22.28', 'sha256': '', 'groups': ['k8s_cluster']}}) -2025-11-24T09:45:04.6232863Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/download_container.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler => (item={'key': 'dnsautoscaler', 'value': {'enabled': True, 'container': True, 'repo': 'registry.k8s.io/cpa/cluster-proportional-autoscaler', 'tag': 'v1.8.8', 'sha256': '', 'groups': ['kube_control_plane']}}) -2025-11-24T09:45:04.6234408Z -2025-11-24T09:45:04.6234718Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:04.6907040Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:04.6907592Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:04.6908100Z ok: [kubenode-super-marlin] -2025-11-24T09:45:04.6908375Z -2025-11-24T09:45:04.6908706Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:04.7531189Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:04.7531915Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" -2025-11-24T09:45:04.7532562Z } -2025-11-24T09:45:04.7533247Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:04.7533891Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" -2025-11-24T09:45:04.7534497Z } -2025-11-24T09:45:04.7534933Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:04.7535534Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" -2025-11-24T09:45:04.7536123Z } -2025-11-24T09:45:04.7536318Z -2025-11-24T09:45:04.7536645Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:04.8474349Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:04.8474926Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:04.8475423Z ok: [kubenode-super-marlin] -2025-11-24T09:45:04.8475676Z -2025-11-24T09:45:04.8475998Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:05.1260491Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:05.1261033Z ok: [kubenode-super-marlin] -2025-11-24T09:45:05.1261488Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:05.1262084Z -2025-11-24T09:45:05.1262407Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:05.1640584Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:05.1640999Z -2025-11-24T09:45:05.1641382Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:05.2058036Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:05.2058413Z -2025-11-24T09:45:05.2058752Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:05.7181311Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:05.7181985Z changed: [kubenode-super-marlin] -2025-11-24T09:45:05.7182511Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:05.7183078Z -2025-11-24T09:45:05.7183448Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:05.7435312Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:05.7635172Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:05.7635835Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:05.7636154Z -2025-11-24T09:45:05.7636562Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:05.8184264Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:05.8191306Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:05.8191936Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:05.8192262Z -2025-11-24T09:45:05.8192887Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:05.8695514Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:05.8696141Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:05.8697084Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:05.8697409Z -2025-11-24T09:45:05.8697744Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:05.9600521Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:05.9601536Z -2025-11-24T09:45:05.9602004Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:08.1807189Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:08.1807806Z changed: [kubenode-super-marlin] -2025-11-24T09:45:08.1808341Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:08.1808624Z -2025-11-24T09:45:08.1808957Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:08.2549436Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:08.2550054Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:08.2550548Z ok: [kubenode-super-marlin] -2025-11-24T09:45:08.2550819Z -2025-11-24T09:45:08.2551138Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:08.3263126Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:08.3263905Z "msg": "http://10.1.1.1:8080/binaries/cni-plugins-linux-amd64-v1.3.0.tgz" -2025-11-24T09:45:08.3264596Z } -2025-11-24T09:45:08.3265062Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:08.3265724Z "msg": "http://10.1.1.1:8080/binaries/cni-plugins-linux-amd64-v1.3.0.tgz" -2025-11-24T09:45:08.3266362Z } -2025-11-24T09:45:08.3266812Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:08.3267440Z "msg": "http://10.1.1.1:8080/binaries/cni-plugins-linux-amd64-v1.3.0.tgz" -2025-11-24T09:45:08.3268060Z } -2025-11-24T09:45:08.3268273Z -2025-11-24T09:45:08.3268625Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:08.4064672Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:08.4065362Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:08.4065971Z ok: [kubenode-super-marlin] -2025-11-24T09:45:08.4066342Z -2025-11-24T09:45:08.4066741Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:08.6669953Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:08.6670528Z ok: [kubenode-super-marlin] -2025-11-24T09:45:08.6671033Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:08.6671669Z -2025-11-24T09:45:08.6672028Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:08.7107358Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:08.7107773Z -2025-11-24T09:45:08.7108180Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:08.7588472Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:08.7588916Z -2025-11-24T09:45:08.7589338Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:09.3866552Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:09.3867241Z changed: [kubenode-super-marlin] -2025-11-24T09:45:09.3867730Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:09.3867995Z -2025-11-24T09:45:09.3868320Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:09.4275014Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:09.4602145Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:09.4603334Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:09.4603799Z -2025-11-24T09:45:09.4604276Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:09.4927167Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:09.5108088Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:09.5108799Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:09.5109169Z -2025-11-24T09:45:09.5109571Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:09.5616411Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:09.5617049Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:09.5618068Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:09.5618414Z -2025-11-24T09:45:09.5618767Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:09.6441255Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:09.6442289Z -2025-11-24T09:45:09.6442941Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:09.6951739Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:09.6952335Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:09.6953197Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:09.6953494Z -2025-11-24T09:45:09.6953827Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:09.7892130Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:09.7892956Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:09.7893514Z ok: [kubenode-super-marlin] -2025-11-24T09:45:09.7893803Z -2025-11-24T09:45:09.7894127Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:09.8714076Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:09.8714762Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" -2025-11-24T09:45:09.8715318Z } -2025-11-24T09:45:09.8715790Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:09.8716323Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" -2025-11-24T09:45:09.8716842Z } -2025-11-24T09:45:09.8717239Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:09.8717737Z "msg": "http://10.1.1.1:8080/binaries/kubeadm" -2025-11-24T09:45:09.8718225Z } -2025-11-24T09:45:09.8718419Z -2025-11-24T09:45:09.8718744Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:09.9487025Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:09.9487625Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:09.9488134Z ok: [kubenode-super-marlin] -2025-11-24T09:45:09.9488411Z -2025-11-24T09:45:09.9488790Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:10.2025691Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:10.2026349Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:10.2026976Z ok: [kubenode-super-marlin] -2025-11-24T09:45:10.2027268Z -2025-11-24T09:45:10.2027625Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:10.2473961Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:10.2474399Z -2025-11-24T09:45:10.2474855Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:10.2847543Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:10.2847922Z -2025-11-24T09:45:10.2848252Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:10.2892282Z Still deploying... -2025-11-24T09:45:10.6973337Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:10.6973884Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:10.6974389Z ok: [kubenode-super-marlin] -2025-11-24T09:45:10.6974661Z -2025-11-24T09:45:10.6975000Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:10.7269383Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:10.7473418Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:10.7474029Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:10.7474352Z -2025-11-24T09:45:10.7474721Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:10.7755003Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:10.7943054Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:10.7943655Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:10.7943960Z -2025-11-24T09:45:10.7944270Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:10.8458350Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:10.8458906Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:10.8459807Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:10.8460103Z -2025-11-24T09:45:10.8460417Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:10.9289684Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:10.9290740Z -2025-11-24T09:45:10.9291121Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:10.9820942Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:10.9821933Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:10.9822466Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:10.9823014Z -2025-11-24T09:45:10.9823358Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:11.0433144Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:11.0433710Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:11.0434188Z ok: [kubenode-super-marlin] -2025-11-24T09:45:11.0434479Z -2025-11-24T09:45:11.0434817Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:11.1149125Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:11.1149851Z "msg": "http://10.1.1.1:8080/binaries/kubelet" -2025-11-24T09:45:11.1150463Z } -2025-11-24T09:45:11.1150943Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:11.1151588Z "msg": "http://10.1.1.1:8080/binaries/kubelet" -2025-11-24T09:45:11.1152172Z } -2025-11-24T09:45:11.1152938Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:11.1153572Z "msg": "http://10.1.1.1:8080/binaries/kubelet" -2025-11-24T09:45:11.1154193Z } -2025-11-24T09:45:11.1154398Z -2025-11-24T09:45:11.1154721Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:11.1874335Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:11.1874963Z ok: [kubenode-super-marlin] -2025-11-24T09:45:11.1875490Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:11.1875767Z -2025-11-24T09:45:11.1876127Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:11.4422291Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:11.4423285Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:11.4423855Z ok: [kubenode-super-marlin] -2025-11-24T09:45:11.4424166Z -2025-11-24T09:45:11.4424559Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:11.4718069Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:11.4718431Z -2025-11-24T09:45:11.4718836Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:11.5077542Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:11.5077956Z -2025-11-24T09:45:11.5078348Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:12.7622026Z changed: [kubenode-super-marlin] -2025-11-24T09:45:12.7622992Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:12.7623623Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:12.7623952Z -2025-11-24T09:45:12.7624375Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:12.8113619Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:12.8301592Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:12.8302252Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:12.8302547Z -2025-11-24T09:45:12.8303146Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:12.8936646Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:12.8937233Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:12.8937784Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:12.8938081Z -2025-11-24T09:45:12.8938398Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:12.9416067Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:12.9416752Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:12.9417303Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:12.9417599Z -2025-11-24T09:45:12.9418430Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:13.0289936Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:13.0290932Z -2025-11-24T09:45:13.0291289Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:13.0858069Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:13.0858658Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:13.0859569Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:13.0859869Z -2025-11-24T09:45:13.0860202Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:13.1486352Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:13.1486950Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:13.1487400Z ok: [kubenode-super-marlin] -2025-11-24T09:45:13.1487649Z -2025-11-24T09:45:13.1487992Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:13.2194182Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:13.2194952Z "msg": "http://10.1.1.1:8080/binaries/kubectl" -2025-11-24T09:45:13.2195494Z } -2025-11-24T09:45:13.2195906Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:13.2196442Z "msg": "http://10.1.1.1:8080/binaries/kubectl" -2025-11-24T09:45:13.2196962Z } -2025-11-24T09:45:13.2197360Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:13.2197859Z "msg": "http://10.1.1.1:8080/binaries/kubectl" -2025-11-24T09:45:13.2198353Z } -2025-11-24T09:45:13.2198551Z -2025-11-24T09:45:13.2198874Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:13.2891300Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:13.2892054Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:13.2892580Z ok: [kubenode-super-marlin] -2025-11-24T09:45:13.2893096Z -2025-11-24T09:45:13.2893467Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:13.5539536Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:13.5540276Z ok: [kubenode-super-marlin] -2025-11-24T09:45:13.5540737Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:13.5540992Z -2025-11-24T09:45:13.5541315Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:13.5817687Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:13.5818480Z -2025-11-24T09:45:13.5818865Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:13.6289993Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:13.6290532Z -2025-11-24T09:45:13.6290880Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:14.3318047Z changed: [kubenode-super-marlin] -2025-11-24T09:45:14.3318744Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:14.3319262Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:14.3319699Z -2025-11-24T09:45:14.3320069Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:14.3989335Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:14.3990103Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:14.3990709Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:14.3991027Z -2025-11-24T09:45:14.3991425Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:14.4506251Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:14.4506979Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:14.4507512Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:14.4507827Z -2025-11-24T09:45:14.4508151Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:14.4763343Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:14.5009051Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:14.5009777Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:14.5010088Z -2025-11-24T09:45:14.5010799Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:14.5898232Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:14.5899183Z -2025-11-24T09:45:14.5899521Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:14.6535007Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:14.6535850Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:14.6536394Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:14.6537127Z -2025-11-24T09:45:14.6537458Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:14.7221292Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:14.7221967Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:14.7222471Z ok: [kubenode-super-marlin] -2025-11-24T09:45:14.7222999Z -2025-11-24T09:45:15.0573781Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:15.0574630Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:15.0575282Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" -2025-11-24T09:45:15.0575959Z } -2025-11-24T09:45:15.0576388Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:15.0577130Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" -2025-11-24T09:45:15.0577757Z } -2025-11-24T09:45:15.0578178Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:15.0578785Z "msg": "http://10.1.1.1:8080/binaries/crictl-v1.29.0-linux-amd64.tar.gz" -2025-11-24T09:45:15.0579397Z } -2025-11-24T09:45:15.0579610Z -2025-11-24T09:45:15.0579959Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:15.1374028Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:15.1374677Z ok: [kubenode-super-marlin] -2025-11-24T09:45:15.1375168Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:15.1375452Z -2025-11-24T09:45:15.1375790Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:15.3988336Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:15.3988977Z ok: [kubenode-super-marlin] -2025-11-24T09:45:15.3989462Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:15.3989746Z -2025-11-24T09:45:15.3990084Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:15.4285843Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:15.4286630Z -2025-11-24T09:45:15.4287038Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:15.4854204Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:15.4854644Z -2025-11-24T09:45:15.4854985Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:15.9245538Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:15.9246208Z ok: [kubenode-super-marlin] -2025-11-24T09:45:15.9246676Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:15.9246943Z -2025-11-24T09:45:15.9247292Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:15.9879761Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:15.9880826Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:15.9881473Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:15.9881828Z -2025-11-24T09:45:15.9882279Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:16.0533598Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:16.0534319Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:16.0534922Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:16.0535259Z -2025-11-24T09:45:16.0535608Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:16.1099823Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:16.1100556Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:16.1101128Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:16.1101445Z -2025-11-24T09:45:16.1101794Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:16.2030024Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:16.2031075Z -2025-11-24T09:45:16.2031438Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:18.4967546Z ok: [kubenode-super-marlin] -2025-11-24T09:45:18.4968236Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:18.4968724Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:18.4969004Z -2025-11-24T09:45:18.4969711Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:18.5946634Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:18.5947302Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:18.5947775Z ok: [kubenode-super-marlin] -2025-11-24T09:45:18.5948043Z -2025-11-24T09:45:18.5948370Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:18.6745743Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:18.6746530Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" -2025-11-24T09:45:18.6747059Z } -2025-11-24T09:45:18.6747458Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:18.6747998Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" -2025-11-24T09:45:18.6748498Z } -2025-11-24T09:45:18.6748883Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:18.6749383Z "msg": "http://10.1.1.1:8080/binaries/runc.amd64" -2025-11-24T09:45:18.6749869Z } -2025-11-24T09:45:18.6750059Z -2025-11-24T09:45:18.6750401Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:18.7544760Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:18.7545459Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:18.7545977Z ok: [kubenode-super-marlin] -2025-11-24T09:45:18.7546269Z -2025-11-24T09:45:18.7546629Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:19.0163261Z ok: [kubenode-super-marlin] -2025-11-24T09:45:19.0164009Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:19.0164502Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:19.0164781Z -2025-11-24T09:45:19.0165117Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:19.0555109Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:19.0555771Z -2025-11-24T09:45:19.0556267Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:19.1064792Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:19.1065279Z -2025-11-24T09:45:19.1065623Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:19.5553970Z ok: [kubenode-super-marlin] -2025-11-24T09:45:19.5554839Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:19.5555477Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:19.5555807Z -2025-11-24T09:45:19.5556209Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:19.6030235Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:19.6243308Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:19.6244153Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:19.6244454Z -2025-11-24T09:45:19.6244833Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:19.6593472Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:19.6823503Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:19.6824435Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:19.6824802Z -2025-11-24T09:45:19.6825126Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:19.7295400Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:19.7296166Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:19.7296732Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:19.7297048Z -2025-11-24T09:45:19.7297399Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:19.8207959Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:19.8209084Z -2025-11-24T09:45:19.8209488Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:19.8720997Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:19.8721747Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:19.8722309Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:19.8722605Z -2025-11-24T09:45:19.8723276Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:19.9439358Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:19.9440121Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:19.9440613Z ok: [kubenode-super-marlin] -2025-11-24T09:45:19.9440944Z -2025-11-24T09:45:19.9441284Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:20.0234186Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:20.0235113Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" -2025-11-24T09:45:20.0235788Z } -2025-11-24T09:45:20.0236229Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:20.0236894Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" -2025-11-24T09:45:20.0237521Z } -2025-11-24T09:45:20.0237950Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:20.0238581Z "msg": "http://10.1.1.1:8080/binaries/containerd-1.7.22-linux-amd64.tar.gz" -2025-11-24T09:45:20.0239200Z } -2025-11-24T09:45:20.0239411Z -2025-11-24T09:45:20.0239758Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:20.0948911Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:20.0949567Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:20.0950057Z ok: [kubenode-super-marlin] -2025-11-24T09:45:20.0950326Z -2025-11-24T09:45:20.0950709Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:20.2913011Z Still deploying... -2025-11-24T09:45:20.3417274Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:20.3417961Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:20.3418439Z ok: [kubenode-super-marlin] -2025-11-24T09:45:20.3418703Z -2025-11-24T09:45:20.3419046Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:20.3811902Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:20.3812854Z -2025-11-24T09:45:20.3813250Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:20.4333618Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:20.4334125Z -2025-11-24T09:45:20.4334490Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:20.8881353Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:20.8882038Z ok: [kubenode-super-marlin] -2025-11-24T09:45:20.8882553Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:20.8883053Z -2025-11-24T09:45:20.8883420Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:20.9479966Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:20.9480644Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:20.9481213Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:20.9481529Z -2025-11-24T09:45:20.9481932Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:20.9723247Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:20.9907584Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:20.9908374Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:20.9908700Z -2025-11-24T09:45:20.9909066Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:21.0348639Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:21.0349313Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:21.0349848Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:21.0350140Z -2025-11-24T09:45:21.0350467Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:21.1262387Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:21.1263559Z -2025-11-24T09:45:21.1263890Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:21.1813488Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:21.1814350Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:21.1814987Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:21.1815340Z -2025-11-24T09:45:21.1815729Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:21.2515251Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:21.2515962Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:21.2516435Z ok: [kubenode-super-marlin] -2025-11-24T09:45:21.2516700Z -2025-11-24T09:45:21.2517020Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:21.3437087Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:21.3438053Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" -2025-11-24T09:45:21.3438776Z } -2025-11-24T09:45:21.3439256Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:21.3439962Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" -2025-11-24T09:45:21.3440632Z } -2025-11-24T09:45:21.3441115Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:21.3441828Z "msg": "http://10.1.1.1:8080/binaries/nerdctl-1.7.7-linux-amd64.tar.gz" -2025-11-24T09:45:21.3442500Z } -2025-11-24T09:45:21.3442993Z -2025-11-24T09:45:21.3443396Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:21.4267451Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:21.4268399Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:21.4269014Z ok: [kubenode-super-marlin] -2025-11-24T09:45:21.4269343Z -2025-11-24T09:45:21.4269748Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:21.6841977Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:21.6843001Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:21.6843598Z ok: [kubenode-super-marlin] -2025-11-24T09:45:21.6843926Z -2025-11-24T09:45:21.6844321Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:21.7247655Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:21.7248190Z -2025-11-24T09:45:21.7248980Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:21.7721835Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:21.7722376Z -2025-11-24T09:45:21.7723121Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:22.1944444Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:22.1945156Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:22.1945666Z ok: [kubenode-super-marlin] -2025-11-24T09:45:22.1945956Z -2025-11-24T09:45:22.1946316Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:22.2449370Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:22.2450170Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:22.2450789Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:22.2451123Z -2025-11-24T09:45:22.2451547Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:22.3020354Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:22.3021098Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:22.3021668Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:22.3021981Z -2025-11-24T09:45:22.3022330Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:22.3297470Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:22.3576151Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:22.3576975Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:22.3577323Z -2025-11-24T09:45:22.3577697Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:22.4689577Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:22.4690453Z -2025-11-24T09:45:22.4690778Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:23.5117637Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:23.5118260Z ok: [kubenode-super-marlin] -2025-11-24T09:45:23.5118759Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:23.5119044Z -2025-11-24T09:45:23.5119399Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:23.6090113Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:23.6090833Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:23.6091473Z ok: [kubenode-super-marlin] -2025-11-24T09:45:23.6091825Z -2025-11-24T09:45:23.6092262Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:23.7016465Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:23.7017146Z "msg": "http://10.1.1.1:8080/binaries/calicoctl-linux-amd64" -2025-11-24T09:45:23.7017738Z } -2025-11-24T09:45:23.7018146Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:23.7018765Z "msg": "http://10.1.1.1:8080/binaries/calicoctl-linux-amd64" -2025-11-24T09:45:23.7019316Z } -2025-11-24T09:45:23.7019715Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:23.7020254Z "msg": "http://10.1.1.1:8080/binaries/calicoctl-linux-amd64" -2025-11-24T09:45:23.7020806Z } -2025-11-24T09:45:23.7021020Z -2025-11-24T09:45:23.7021342Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:23.7827242Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:23.7827811Z ok: [kubenode-super-marlin] -2025-11-24T09:45:23.7828321Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:23.7828619Z -2025-11-24T09:45:23.7828969Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:24.0143311Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:24.0143846Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:24.0144344Z ok: [kubenode-super-marlin] -2025-11-24T09:45:24.0144603Z -2025-11-24T09:45:24.0144926Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:24.0441686Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:24.0442092Z -2025-11-24T09:45:24.0442506Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:24.0825501Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:24.0825888Z -2025-11-24T09:45:24.0826241Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:24.9123620Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:24.9124477Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:24.9125015Z changed: [kubenode-super-marlin] -2025-11-24T09:45:24.9125307Z -2025-11-24T09:45:24.9125649Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:24.9745428Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:24.9746316Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:24.9746896Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:24.9747210Z -2025-11-24T09:45:24.9747597Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:25.0151135Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:25.0424844Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.0425601Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:25.0425922Z -2025-11-24T09:45:25.0426272Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:25.0990542Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:25.0991274Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.0991809Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:25.0992107Z -2025-11-24T09:45:25.0992432Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:25.1993483Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:25.1994496Z -2025-11-24T09:45:25.1994845Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:25.2581142Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:25.2581860Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.2582469Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:25.2583012Z -2025-11-24T09:45:25.2583366Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:45:25.3244468Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:25.3245164Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.3245667Z ok: [kubenode-super-marlin] -2025-11-24T09:45:25.3245939Z -2025-11-24T09:45:25.3246330Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:45:25.4069349Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:25.4070288Z "msg": "quay.io/calico/node" -2025-11-24T09:45:25.4070873Z } -2025-11-24T09:45:25.4071352Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:25.4071976Z "msg": "quay.io/calico/node" -2025-11-24T09:45:25.4072524Z } -2025-11-24T09:45:25.4073247Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:25.4073752Z "msg": "quay.io/calico/node" -2025-11-24T09:45:25.4074222Z } -2025-11-24T09:45:25.4074441Z -2025-11-24T09:45:25.4074852Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:45:25.4772583Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:25.4773701Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.4774299Z ok: [kubenode-super-marlin] -2025-11-24T09:45:25.4774629Z -2025-11-24T09:45:25.4775055Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:45:25.5499399Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:25.5500093Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.5500620Z ok: [kubenode-super-marlin] -2025-11-24T09:45:25.5500907Z -2025-11-24T09:45:25.5501294Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:45:25.6150040Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:25.6150712Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.6151234Z ok: [kubenode-super-marlin] -2025-11-24T09:45:25.6151523Z -2025-11-24T09:45:25.6151884Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:45:25.7079199Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:25.7080056Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.7080646Z ok: [kubenode-super-marlin] -2025-11-24T09:45:25.7080996Z -2025-11-24T09:45:25.7081387Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:45:25.7466793Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:25.7730818Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.7731616Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:25.7731943Z -2025-11-24T09:45:25.7732319Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:45:25.8470520Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:25.8471370Z ok: [kubenode-super-marlin] -2025-11-24T09:45:25.8471953Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.8472277Z -2025-11-24T09:45:25.8472900Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:45:25.8995618Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:25.8996389Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.8996960Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:25.8997278Z -2025-11-24T09:45:25.8997656Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:45:25.9338574Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:25.9561280Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:25.9562176Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:25.9562531Z -2025-11-24T09:45:25.9563300Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:45:26.0609752Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:26.0610366Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:26.0610879Z ok: [kubenode-super-marlin] -2025-11-24T09:45:26.0611164Z -2025-11-24T09:45:26.0611518Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:45:26.1153987Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:26.1154796Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:26.1155377Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:26.1155694Z -2025-11-24T09:45:26.1156063Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:45:26.2248538Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:26.2249518Z -2025-11-24T09:45:26.2249948Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:45:28.6225082Z ok: [kubenode-super-marlin] -2025-11-24T09:45:28.6225816Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:28.6226337Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:28.6226641Z -2025-11-24T09:45:28.6227104Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:45:28.7111218Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:28.7112122Z ok: [kubenode-super-marlin] -2025-11-24T09:45:28.7112968Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:28.7113316Z -2025-11-24T09:45:28.7113871Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:45:28.7582377Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:28.7839275Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:28.7840079Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:28.7840378Z -2025-11-24T09:45:28.7840660Z TASK [download : debug] ******************************************************** -2025-11-24T09:45:28.8800993Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:28.8801958Z "msg": "Pull quay.io/calico/node:v3.27.4 required is: False" -2025-11-24T09:45:28.8802909Z } -2025-11-24T09:45:28.8803410Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:28.8804109Z "msg": "Pull quay.io/calico/node:v3.27.4 required is: False" -2025-11-24T09:45:28.8804764Z } -2025-11-24T09:45:28.8805582Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:28.8806235Z "msg": "Pull quay.io/calico/node:v3.27.4 required is: False" -2025-11-24T09:45:28.8806858Z } -2025-11-24T09:45:28.8807096Z -2025-11-24T09:45:28.8807515Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:45:28.9437114Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:28.9438029Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:28.9438679Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:28.9438978Z -2025-11-24T09:45:28.9439329Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:45:28.9705037Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:28.9905144Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:28.9906052Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:28.9906516Z -2025-11-24T09:45:28.9907126Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:45:29.0455071Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:29.0455866Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:29.0456402Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:29.0456700Z -2025-11-24T09:45:29.0457041Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:45:29.1177197Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:29.1177867Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:29.1178378Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:29.1178666Z -2025-11-24T09:45:29.1179014Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:45:29.1680433Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:29.1680943Z -2025-11-24T09:45:29.1681374Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:45:29.2029846Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:29.2276118Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:29.2276843Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:29.2277221Z -2025-11-24T09:45:29.2277628Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:45:29.2821441Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:29.2822974Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:29.2823612Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:29.2823972Z -2025-11-24T09:45:29.2824422Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:45:29.4658878Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:29.4659721Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:29.4660356Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:29.4660737Z -2025-11-24T09:45:29.4661138Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:45:29.7125196Z ok: [kubenode-super-marlin] -2025-11-24T09:45:29.7125858Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:29.7126341Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:29.7126615Z -2025-11-24T09:45:29.7126966Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:45:29.7995287Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:29.7996151Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:29.7996768Z ok: [kubenode-super-marlin] -2025-11-24T09:45:29.7997092Z -2025-11-24T09:45:29.7997580Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:45:29.8705109Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:29.8705769Z "msg": "quay.io/calico/cni" -2025-11-24T09:45:29.8706227Z } -2025-11-24T09:45:29.8706638Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:29.8707201Z "msg": "quay.io/calico/cni" -2025-11-24T09:45:29.8707630Z } -2025-11-24T09:45:29.8708028Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:29.8708494Z "msg": "quay.io/calico/cni" -2025-11-24T09:45:29.8708920Z } -2025-11-24T09:45:29.8709123Z -2025-11-24T09:45:29.8709509Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:45:29.9455069Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:29.9455768Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:29.9456253Z ok: [kubenode-super-marlin] -2025-11-24T09:45:29.9456549Z -2025-11-24T09:45:29.9456897Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:45:30.0147296Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:30.0147997Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.0148481Z ok: [kubenode-super-marlin] -2025-11-24T09:45:30.0148750Z -2025-11-24T09:45:30.0149087Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:45:30.0835429Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:30.0836084Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.0836567Z ok: [kubenode-super-marlin] -2025-11-24T09:45:30.0836833Z -2025-11-24T09:45:30.0837171Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:45:30.1479283Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:30.1479978Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.1480466Z ok: [kubenode-super-marlin] -2025-11-24T09:45:30.1480734Z -2025-11-24T09:45:30.1481066Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:45:30.1733708Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:30.1947168Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.1947903Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:30.1948213Z -2025-11-24T09:45:30.1948583Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:45:30.2805884Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:30.2806941Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.2807449Z ok: [kubenode-super-marlin] -2025-11-24T09:45:30.2807723Z -2025-11-24T09:45:30.2808054Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:45:30.2922239Z Still deploying... -2025-11-24T09:45:30.3094779Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:30.3297361Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.3298101Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:30.3298391Z -2025-11-24T09:45:30.3298715Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:45:30.3855027Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:30.3855755Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.3856302Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:30.3856596Z -2025-11-24T09:45:30.3856930Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:45:30.4619348Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:30.4620041Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.4620514Z ok: [kubenode-super-marlin] -2025-11-24T09:45:30.4620776Z -2025-11-24T09:45:30.4621095Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:45:30.5080756Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:30.5081637Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:30.5082299Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:30.5082874Z -2025-11-24T09:45:30.5083293Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:45:30.6138994Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:30.6140008Z -2025-11-24T09:45:30.6140442Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:45:32.8627071Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:32.8627752Z ok: [kubenode-super-marlin] -2025-11-24T09:45:32.8628233Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:32.8628496Z -2025-11-24T09:45:32.8628928Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:45:32.9341277Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:32.9341954Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:32.9342985Z ok: [kubenode-super-marlin] -2025-11-24T09:45:32.9343268Z -2025-11-24T09:45:32.9343737Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:45:32.9675763Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:32.9913097Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:32.9913855Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:32.9914162Z -2025-11-24T09:45:32.9914452Z TASK [download : debug] ******************************************************** -2025-11-24T09:45:33.0636011Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:33.0636848Z "msg": "Pull quay.io/calico/cni:v3.27.4 required is: False" -2025-11-24T09:45:33.0637451Z } -2025-11-24T09:45:33.0637883Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:33.0638490Z "msg": "Pull quay.io/calico/cni:v3.27.4 required is: False" -2025-11-24T09:45:33.0639067Z } -2025-11-24T09:45:33.0639496Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:33.0640064Z "msg": "Pull quay.io/calico/cni:v3.27.4 required is: False" -2025-11-24T09:45:33.0640631Z } -2025-11-24T09:45:33.0640843Z -2025-11-24T09:45:33.0641199Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:45:33.1218113Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:33.1218836Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.1219372Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:33.1219671Z -2025-11-24T09:45:33.1220024Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:45:33.1693328Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:33.1694533Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.1695187Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:33.1695529Z -2025-11-24T09:45:33.1695986Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:45:33.2202956Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:33.2203807Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.2204443Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:33.2204785Z -2025-11-24T09:45:33.2205176Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:45:33.2845294Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:33.2846083Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.2846619Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:33.2846914Z -2025-11-24T09:45:33.2847245Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:45:33.3241585Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:33.3242216Z -2025-11-24T09:45:33.3242936Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:45:33.3830201Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:33.3831343Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.3832181Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:33.3832519Z -2025-11-24T09:45:33.3833034Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:45:33.4328531Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:33.4329468Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.4330127Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:33.4330478Z -2025-11-24T09:45:33.4330922Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:45:33.4783546Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:33.4784244Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.4784886Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:33.4785239Z -2025-11-24T09:45:33.4785650Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:45:33.7109254Z ok: [kubenode-super-marlin] -2025-11-24T09:45:33.7109920Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:33.7110475Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.7110793Z -2025-11-24T09:45:33.7111188Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:45:33.8154669Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:33.8155333Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:33.8155922Z ok: [kubenode-super-marlin] -2025-11-24T09:45:33.8156275Z -2025-11-24T09:45:33.8156779Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:45:33.9173646Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:33.9174357Z "msg": "quay.io/calico/pod2daemon-flexvol" -2025-11-24T09:45:33.9174985Z } -2025-11-24T09:45:33.9175491Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:33.9176132Z "msg": "quay.io/calico/pod2daemon-flexvol" -2025-11-24T09:45:33.9176777Z } -2025-11-24T09:45:33.9177269Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:33.9177885Z "msg": "quay.io/calico/pod2daemon-flexvol" -2025-11-24T09:45:33.9178493Z } -2025-11-24T09:45:33.9178742Z -2025-11-24T09:45:33.9179231Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:45:34.0196725Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:34.0197371Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.0197948Z ok: [kubenode-super-marlin] -2025-11-24T09:45:34.0198258Z -2025-11-24T09:45:34.0198688Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:45:34.1098824Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:34.1099379Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.1099852Z ok: [kubenode-super-marlin] -2025-11-24T09:45:34.1100116Z -2025-11-24T09:45:34.1100483Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:45:34.2055136Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:34.2055825Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.2056393Z ok: [kubenode-super-marlin] -2025-11-24T09:45:34.2056713Z -2025-11-24T09:45:34.2057131Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:45:34.2974726Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:34.2975311Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.2975810Z ok: [kubenode-super-marlin] -2025-11-24T09:45:34.2976089Z -2025-11-24T09:45:34.2976423Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:45:34.3335850Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:34.3571556Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.3572270Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:34.3572923Z -2025-11-24T09:45:34.3573329Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:45:34.4456240Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:34.4456813Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.4457327Z ok: [kubenode-super-marlin] -2025-11-24T09:45:34.4457596Z -2025-11-24T09:45:34.4457925Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:45:34.4855883Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:34.5085689Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.5086475Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:34.5086847Z -2025-11-24T09:45:34.5087263Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:45:34.5413013Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:34.5641547Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.5642151Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:34.5642453Z -2025-11-24T09:45:34.5643026Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:45:34.6515647Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.6516237Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:34.6516728Z ok: [kubenode-super-marlin] -2025-11-24T09:45:34.6516998Z -2025-11-24T09:45:34.6517328Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:45:34.6829528Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:34.7148482Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:34.7149214Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:34.7149925Z -2025-11-24T09:45:34.7150340Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:45:34.8281634Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:34.8283163Z -2025-11-24T09:45:34.8283684Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:45:37.0944701Z ok: [kubenode-super-marlin] -2025-11-24T09:45:37.0945250Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:37.0945727Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.0945996Z -2025-11-24T09:45:37.0946406Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:45:37.1769188Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:37.1769826Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.1770391Z ok: [kubenode-super-marlin] -2025-11-24T09:45:37.1770721Z -2025-11-24T09:45:37.1771269Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:45:37.2341484Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.2342097Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.2342864Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:37.2343180Z -2025-11-24T09:45:37.2343512Z TASK [download : debug] ******************************************************** -2025-11-24T09:45:37.3184302Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:37.3185045Z "msg": "Pull quay.io/calico/pod2daemon-flexvol:v3.27.4 required is: False" -2025-11-24T09:45:37.3186137Z } -2025-11-24T09:45:37.3186568Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:37.3187204Z "msg": "Pull quay.io/calico/pod2daemon-flexvol:v3.27.4 required is: False" -2025-11-24T09:45:37.3187817Z } -2025-11-24T09:45:37.3188222Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:37.3188825Z "msg": "Pull quay.io/calico/pod2daemon-flexvol:v3.27.4 required is: False" -2025-11-24T09:45:37.3189442Z } -2025-11-24T09:45:37.3195600Z -2025-11-24T09:45:37.3195988Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:45:37.3522574Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.3754799Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.3755412Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:37.3755720Z -2025-11-24T09:45:37.3756077Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:45:37.4023303Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.4246947Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.4247543Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:37.4247845Z -2025-11-24T09:45:37.4248353Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:45:37.4743319Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.4743907Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.4744441Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:37.4744737Z -2025-11-24T09:45:37.4745068Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:45:37.5466447Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.5467049Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.5467584Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:37.5467877Z -2025-11-24T09:45:37.5468217Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:45:37.5917728Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.5918102Z -2025-11-24T09:45:37.5918473Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:45:37.6277720Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.6583725Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.6584454Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:37.6584812Z -2025-11-24T09:45:37.6585219Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:45:37.6974025Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.7323276Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.7324069Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:37.7324433Z -2025-11-24T09:45:37.7324884Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:45:37.7834411Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:37.7835132Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:37.7835759Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:37.7836116Z -2025-11-24T09:45:37.7836540Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:45:38.0688501Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.0689079Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:38.0689583Z ok: [kubenode-super-marlin] -2025-11-24T09:45:38.0689867Z -2025-11-24T09:45:38.0690220Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:45:38.1748143Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:38.1748816Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.1749402Z ok: [kubenode-super-marlin] -2025-11-24T09:45:38.1749755Z -2025-11-24T09:45:38.1750236Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:45:38.2769070Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:38.2769654Z "msg": "quay.io/calico/kube-controllers" -2025-11-24T09:45:38.2770160Z } -2025-11-24T09:45:38.2770563Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:38.2771079Z "msg": "quay.io/calico/kube-controllers" -2025-11-24T09:45:38.2771556Z } -2025-11-24T09:45:38.2772354Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:38.2773047Z "msg": "quay.io/calico/kube-controllers" -2025-11-24T09:45:38.2773526Z } -2025-11-24T09:45:38.2773725Z -2025-11-24T09:45:38.2774108Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:45:38.3568545Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:38.3569208Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.3569837Z ok: [kubenode-super-marlin] -2025-11-24T09:45:38.3570149Z -2025-11-24T09:45:38.3570552Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:45:38.4263239Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:38.4263914Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.4264488Z ok: [kubenode-super-marlin] -2025-11-24T09:45:38.4264806Z -2025-11-24T09:45:38.4265195Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:45:38.4977548Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:38.4978119Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.4978710Z ok: [kubenode-super-marlin] -2025-11-24T09:45:38.4979037Z -2025-11-24T09:45:38.4979434Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:45:38.5768363Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:38.5768911Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.5769478Z ok: [kubenode-super-marlin] -2025-11-24T09:45:38.5769817Z -2025-11-24T09:45:38.5770207Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:45:38.6278328Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:38.6278911Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.6279435Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:38.6279723Z -2025-11-24T09:45:38.6280051Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:45:38.6959437Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:38.6960078Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.6960684Z ok: [kubenode-super-marlin] -2025-11-24T09:45:38.6961002Z -2025-11-24T09:45:38.6961392Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:45:38.7197584Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:38.7431629Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.7432327Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:38.7433263Z -2025-11-24T09:45:38.7433671Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:45:38.7751670Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:38.7980246Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.7980838Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:38.7981142Z -2025-11-24T09:45:38.7981484Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:45:38.8834272Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:38.8834820Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.8835297Z ok: [kubenode-super-marlin] -2025-11-24T09:45:38.8835617Z -2025-11-24T09:45:38.8835951Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:45:38.9431405Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:38.9432111Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:38.9432968Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:38.9433339Z -2025-11-24T09:45:38.9433769Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:45:39.0506973Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:39.0508176Z -2025-11-24T09:45:39.0508610Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:45:40.2937969Z Still deploying... -2025-11-24T09:45:41.2906758Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:41.2907444Z ok: [kubenode-super-marlin] -2025-11-24T09:45:41.2908460Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.2908804Z -2025-11-24T09:45:41.2909310Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:45:41.3863624Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:41.3864172Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.3864650Z ok: [kubenode-super-marlin] -2025-11-24T09:45:41.3864937Z -2025-11-24T09:45:41.3865400Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:45:41.4440548Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.4441173Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.4441726Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:41.4442042Z -2025-11-24T09:45:41.4442347Z TASK [download : debug] ******************************************************** -2025-11-24T09:45:41.5122809Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:41.5123526Z "msg": "Pull quay.io/calico/kube-controllers:v3.27.4 required is: False" -2025-11-24T09:45:41.5124138Z } -2025-11-24T09:45:41.5124543Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:41.5125299Z "msg": "Pull quay.io/calico/kube-controllers:v3.27.4 required is: False" -2025-11-24T09:45:41.5125977Z } -2025-11-24T09:45:41.5126455Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:41.5127141Z "msg": "Pull quay.io/calico/kube-controllers:v3.27.4 required is: False" -2025-11-24T09:45:41.5127808Z } -2025-11-24T09:45:41.5128040Z -2025-11-24T09:45:41.5128424Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:45:41.5609124Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.5609810Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.5610428Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:41.5610794Z -2025-11-24T09:45:41.5611210Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:45:41.5899104Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.6142127Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.6142986Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:41.6143289Z -2025-11-24T09:45:41.6143688Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:45:41.6382033Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.6571810Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.6573186Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:41.6573542Z -2025-11-24T09:45:41.6573954Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:45:41.7259740Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.7260471Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.7261129Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:41.7261500Z -2025-11-24T09:45:41.7261924Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:45:41.7589936Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.7590364Z -2025-11-24T09:45:41.7590798Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:45:41.7863254Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.8105316Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.8105931Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:41.8106230Z -2025-11-24T09:45:41.8106571Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:45:41.8410335Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.8639870Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.8640627Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:41.8641006Z -2025-11-24T09:45:41.8641387Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:45:41.8945617Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:41.9247820Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:41.9248481Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:41.9248808Z -2025-11-24T09:45:41.9249604Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:45:42.1518438Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:42.1519125Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:42.1519851Z ok: [kubenode-super-marlin] -2025-11-24T09:45:42.1520193Z -2025-11-24T09:45:42.1520595Z TASK [download : Prep_download | Set a few facts] ****************************** -2025-11-24T09:45:42.2469926Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:42.2470586Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:42.2471171Z ok: [kubenode-super-marlin] -2025-11-24T09:45:42.2471860Z -2025-11-24T09:45:42.2472279Z TASK [download : Download_file | Show url of file to dowload] ****************** -2025-11-24T09:45:42.3244466Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:42.3245104Z "msg": "http://10.1.1.1:8080/binaries/v3.27.4.tar.gz" -2025-11-24T09:45:42.3245678Z } -2025-11-24T09:45:42.3246113Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:42.3246683Z "msg": "http://10.1.1.1:8080/binaries/v3.27.4.tar.gz" -2025-11-24T09:45:42.3247269Z } -2025-11-24T09:45:42.3247701Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:42.3248238Z "msg": "http://10.1.1.1:8080/binaries/v3.27.4.tar.gz" -2025-11-24T09:45:42.3248794Z } -2025-11-24T09:45:42.3249006Z -2025-11-24T09:45:42.3249355Z TASK [download : Download_file | Set pathname of cached file] ****************** -2025-11-24T09:45:42.4095988Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:42.4096634Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:42.4097201Z ok: [kubenode-super-marlin] -2025-11-24T09:45:42.4097518Z -2025-11-24T09:45:42.4097933Z TASK [download : Download_file | Create dest directory on node] **************** -2025-11-24T09:45:42.7964892Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:42.7965547Z changed: [kubenode-super-marlin] -2025-11-24T09:45:42.7966133Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:42.7966500Z -2025-11-24T09:45:42.7966893Z TASK [download : Download_file | Create local cache directory] ***************** -2025-11-24T09:45:42.8380623Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:42.8381071Z -2025-11-24T09:45:42.8381509Z TASK [download : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:45:42.8773785Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:42.8774228Z -2025-11-24T09:45:42.8774637Z TASK [download : Download_file | Download item] ******************************** -2025-11-24T09:45:43.3220208Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:43.3220866Z changed: [kubenode-super-marlin] -2025-11-24T09:45:43.3221453Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:43.3221852Z -2025-11-24T09:45:43.3222255Z TASK [download : Download_file | Copy file back to ansible host file cache] **** -2025-11-24T09:45:43.3551219Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:43.3798361Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:43.3799090Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:43.3799472Z -2025-11-24T09:45:43.3799876Z TASK [download : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:45:43.4412511Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:43.4413412Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:43.4413981Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:43.4414297Z -2025-11-24T09:45:43.4414644Z TASK [download : Download_file | Set mode and owner] *************************** -2025-11-24T09:45:43.5029972Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:43.5030559Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:43.5031110Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:43.5031426Z -2025-11-24T09:45:43.5031763Z TASK [download : Download_file | Extract file archives] ************************ -2025-11-24T09:45:43.5898836Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:43.5899772Z -2025-11-24T09:45:43.5900459Z TASK [download : Extract_file | Unpacking archive] ***************************** -2025-11-24T09:45:44.7635547Z changed: [kubenode-super-marlin] -2025-11-24T09:45:44.7636236Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:45:44.7636851Z changed: [kubenode-renewed-asp] -2025-11-24T09:45:44.7637185Z -2025-11-24T09:45:44.7637569Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:45:44.8231975Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:44.8232877Z ok: [kubenode-super-marlin] -2025-11-24T09:45:44.8233480Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:44.8233817Z -2025-11-24T09:45:44.8234640Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:45:44.8928047Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:44.8928718Z "msg": "registry.k8s.io/pause" -2025-11-24T09:45:44.8929292Z } -2025-11-24T09:45:44.8929768Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:44.8930332Z "msg": "registry.k8s.io/pause" -2025-11-24T09:45:44.8930871Z } -2025-11-24T09:45:44.8931367Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:44.8931969Z "msg": "registry.k8s.io/pause" -2025-11-24T09:45:44.8932518Z } -2025-11-24T09:45:44.8933063Z -2025-11-24T09:45:44.8933530Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:45:45.0179664Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:45.0180274Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.0180884Z ok: [kubenode-super-marlin] -2025-11-24T09:45:45.0181205Z -2025-11-24T09:45:45.0181618Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:45:45.1008960Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:45.1009504Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.1009981Z ok: [kubenode-super-marlin] -2025-11-24T09:45:45.1010246Z -2025-11-24T09:45:45.1010582Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:45:45.1774073Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:45.1774617Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.1775112Z ok: [kubenode-super-marlin] -2025-11-24T09:45:45.1775387Z -2025-11-24T09:45:45.1775720Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:45:45.2378936Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:45.2379609Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.2380198Z ok: [kubenode-super-marlin] -2025-11-24T09:45:45.2380886Z -2025-11-24T09:45:45.2381296Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:45:45.2992083Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:45.2992896Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.2993426Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:45.2993721Z -2025-11-24T09:45:45.2994049Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:45:45.3646534Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:45.3647171Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.3647738Z ok: [kubenode-super-marlin] -2025-11-24T09:45:45.3648049Z -2025-11-24T09:45:45.3648459Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:45:45.4117206Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:45.4117786Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.4118311Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:45.4118610Z -2025-11-24T09:45:45.4118970Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:45:45.4364154Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:45.4593742Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.4594458Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:45.4594810Z -2025-11-24T09:45:45.4595205Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:45:45.5451471Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:45.5452022Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.5452499Z ok: [kubenode-super-marlin] -2025-11-24T09:45:45.5453065Z -2025-11-24T09:45:45.5453843Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:45:45.5793244Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:45.6017539Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:45.6018126Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:45.6018417Z -2025-11-24T09:45:45.6024807Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:45:45.7099454Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:45.7100992Z -2025-11-24T09:45:45.7101498Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:45:48.0220085Z ok: [kubenode-super-marlin] -2025-11-24T09:45:48.0220651Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.0221136Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:48.0221408Z -2025-11-24T09:45:48.0221864Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:45:48.0948414Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:48.0948964Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.0949454Z ok: [kubenode-super-marlin] -2025-11-24T09:45:48.0949730Z -2025-11-24T09:45:48.0950201Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:45:48.1475993Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.1476592Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.1477160Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:48.1477463Z -2025-11-24T09:45:48.1477753Z TASK [download : debug] ******************************************************** -2025-11-24T09:45:48.2263710Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:48.2264436Z "msg": "Pull registry.k8s.io/pause:3.9 required is: False" -2025-11-24T09:45:48.2265119Z } -2025-11-24T09:45:48.2265608Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:48.2266305Z "msg": "Pull registry.k8s.io/pause:3.9 required is: False" -2025-11-24T09:45:48.2266942Z } -2025-11-24T09:45:48.2267414Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:48.2268029Z "msg": "Pull registry.k8s.io/pause:3.9 required is: False" -2025-11-24T09:45:48.2268654Z } -2025-11-24T09:45:48.2268883Z -2025-11-24T09:45:48.2269276Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:45:48.2942000Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.2942593Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.2943404Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:48.2943699Z -2025-11-24T09:45:48.2944052Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:45:48.3211849Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.3459507Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.3460204Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:48.3460560Z -2025-11-24T09:45:48.3461058Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:45:48.3728703Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.3949002Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.3949739Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:48.3950091Z -2025-11-24T09:45:48.3950485Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:45:48.4540991Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.4541885Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.4542450Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:48.4543007Z -2025-11-24T09:45:48.4543350Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:45:48.4907877Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.4908303Z -2025-11-24T09:45:48.4908714Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:45:48.5238935Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.5522587Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.5523541Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:48.5523900Z -2025-11-24T09:45:48.5524331Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:45:48.5798218Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.6039563Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.6040275Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:48.6040630Z -2025-11-24T09:45:48.6041084Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:45:48.6607384Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:48.6608071Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.6608697Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:48.6609044Z -2025-11-24T09:45:48.6609441Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:45:48.9299445Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:48.9300049Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:48.9300545Z ok: [kubenode-super-marlin] -2025-11-24T09:45:48.9300827Z -2025-11-24T09:45:48.9301173Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:45:49.0282039Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:49.0282879Z ok: [kubenode-super-marlin] -2025-11-24T09:45:49.0283497Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.0283836Z -2025-11-24T09:45:49.0284304Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:45:49.1059914Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:49.1060568Z "msg": "ghcr.io/kube-vip/kube-vip" -2025-11-24T09:45:49.1061160Z } -2025-11-24T09:45:49.1061643Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:49.1062248Z "msg": "ghcr.io/kube-vip/kube-vip" -2025-11-24T09:45:49.1063113Z } -2025-11-24T09:45:49.1063592Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:49.1064179Z "msg": "ghcr.io/kube-vip/kube-vip" -2025-11-24T09:45:49.1064763Z } -2025-11-24T09:45:49.1065004Z -2025-11-24T09:45:49.1065456Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:45:49.1817147Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:49.1817802Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.1818357Z ok: [kubenode-super-marlin] -2025-11-24T09:45:49.1818934Z -2025-11-24T09:45:49.1819269Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:45:49.2770989Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:49.2771662Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.2772225Z ok: [kubenode-super-marlin] -2025-11-24T09:45:49.2772545Z -2025-11-24T09:45:49.2773238Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:45:49.3587418Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:49.3587977Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.3588451Z ok: [kubenode-super-marlin] -2025-11-24T09:45:49.3588721Z -2025-11-24T09:45:49.3589084Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:45:49.4377455Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:49.4378116Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.4378690Z ok: [kubenode-super-marlin] -2025-11-24T09:45:49.4379002Z -2025-11-24T09:45:49.4379389Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:45:49.4785915Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:49.4959551Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.4960144Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:49.4960466Z -2025-11-24T09:45:49.4960796Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:45:49.5592364Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:49.5593304Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.5593882Z ok: [kubenode-super-marlin] -2025-11-24T09:45:49.5594200Z -2025-11-24T09:45:49.5594986Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:45:49.5885538Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:49.6069987Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.6070543Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:49.6070845Z -2025-11-24T09:45:49.6071200Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:45:49.6361379Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:49.6580049Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.6580729Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:49.6581441Z -2025-11-24T09:45:49.6581842Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:45:49.7303855Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:49.7304385Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.7304843Z ok: [kubenode-super-marlin] -2025-11-24T09:45:49.7305103Z -2025-11-24T09:45:49.7305424Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:45:49.7629135Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:49.7846401Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:49.7847017Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:49.7847332Z -2025-11-24T09:45:49.7847727Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:45:49.8949563Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:49.8950541Z -2025-11-24T09:45:49.8950979Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:45:50.2954223Z Still deploying... -2025-11-24T09:45:52.3007406Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.3008053Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:52.3008593Z ok: [kubenode-super-marlin] -2025-11-24T09:45:52.3008910Z -2025-11-24T09:45:52.3009444Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:45:52.3905637Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:52.3906273Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.3906836Z ok: [kubenode-super-marlin] -2025-11-24T09:45:52.3907146Z -2025-11-24T09:45:52.3907684Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:45:52.4537764Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.4538349Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.4538880Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:52.4539212Z -2025-11-24T09:45:52.4539495Z TASK [download : debug] ******************************************************** -2025-11-24T09:45:52.5256368Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:52.5257006Z "msg": "Pull ghcr.io/kube-vip/kube-vip:v0.8.0 required is: False" -2025-11-24T09:45:52.5257576Z } -2025-11-24T09:45:52.5257963Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:52.5258553Z "msg": "Pull ghcr.io/kube-vip/kube-vip:v0.8.0 required is: False" -2025-11-24T09:45:52.5259088Z } -2025-11-24T09:45:52.5259464Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:52.5259999Z "msg": "Pull ghcr.io/kube-vip/kube-vip:v0.8.0 required is: False" -2025-11-24T09:45:52.5260526Z } -2025-11-24T09:45:52.5260729Z -2025-11-24T09:45:52.5261064Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:45:52.5601629Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.5885451Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.5886109Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:52.5886431Z -2025-11-24T09:45:52.5886806Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:45:52.6426473Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.6427179Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.6427814Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:52.6428161Z -2025-11-24T09:45:52.6429052Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:45:52.6921837Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.6922410Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.6923227Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:52.6923528Z -2025-11-24T09:45:52.6923866Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:45:52.7766800Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.7767380Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.7768216Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:52.7768509Z -2025-11-24T09:45:52.7768842Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:45:52.8115297Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.8115733Z -2025-11-24T09:45:52.8116080Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:45:52.8617398Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.8618114Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.8618746Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:52.8619093Z -2025-11-24T09:45:52.8619491Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:45:52.9146489Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.9147193Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.9147842Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:52.9148232Z -2025-11-24T09:45:52.9148647Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:45:52.9610102Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:52.9610713Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:52.9611286Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:52.9611599Z -2025-11-24T09:45:52.9611957Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:45:53.2174395Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.2175054Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:53.2175654Z ok: [kubenode-super-marlin] -2025-11-24T09:45:53.2175966Z -2025-11-24T09:45:53.2176354Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:45:53.2787116Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:53.2787717Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.2788217Z ok: [kubenode-super-marlin] -2025-11-24T09:45:53.2788870Z -2025-11-24T09:45:53.2789297Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:45:53.3524823Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:53.3525521Z "msg": "docker.io/library/nginx" -2025-11-24T09:45:53.3526098Z } -2025-11-24T09:45:53.3526590Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:53.3527193Z "msg": "docker.io/library/nginx" -2025-11-24T09:45:53.3527742Z } -2025-11-24T09:45:53.3528209Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:53.3528776Z "msg": "docker.io/library/nginx" -2025-11-24T09:45:53.3529324Z } -2025-11-24T09:45:53.3529579Z -2025-11-24T09:45:53.3530052Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:45:53.4281130Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:53.4281816Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.4282416Z ok: [kubenode-super-marlin] -2025-11-24T09:45:53.4283042Z -2025-11-24T09:45:53.4283505Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:45:53.4983302Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:53.4984032Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.4984533Z ok: [kubenode-super-marlin] -2025-11-24T09:45:53.4984802Z -2025-11-24T09:45:53.4985137Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:45:53.5610581Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:53.5611125Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.5611584Z ok: [kubenode-super-marlin] -2025-11-24T09:45:53.5611838Z -2025-11-24T09:45:53.5612544Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:45:53.6287917Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:53.6288502Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.6288989Z ok: [kubenode-super-marlin] -2025-11-24T09:45:53.6289261Z -2025-11-24T09:45:53.6289593Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:45:53.6790313Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:53.6791029Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.6791690Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:53.6792403Z -2025-11-24T09:45:53.6792997Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:45:53.7460701Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:53.7461283Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.7461778Z ok: [kubenode-super-marlin] -2025-11-24T09:45:53.7462041Z -2025-11-24T09:45:53.7462366Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:45:53.7721688Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:53.7938641Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.7939238Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:53.7939542Z -2025-11-24T09:45:53.7939873Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:45:53.8269459Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:53.8536604Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.8537205Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:53.8537506Z -2025-11-24T09:45:53.8537866Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:45:53.9220162Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:53.9220748Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.9221252Z ok: [kubenode-super-marlin] -2025-11-24T09:45:53.9221539Z -2025-11-24T09:45:53.9221905Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:45:53.9518828Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:53.9801185Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:53.9801788Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:53.9802093Z -2025-11-24T09:45:53.9802445Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:45:54.0916364Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:54.0917632Z -2025-11-24T09:45:54.0918066Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:45:56.5254177Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:56.5254754Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:56.5255231Z ok: [kubenode-super-marlin] -2025-11-24T09:45:56.5255508Z -2025-11-24T09:45:56.5255937Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:45:56.6341231Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:56.6341881Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:56.6342448Z ok: [kubenode-super-marlin] -2025-11-24T09:45:56.6343022Z -2025-11-24T09:45:56.6343573Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:45:56.6898547Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:56.6899263Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:56.6899884Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:56.6900223Z -2025-11-24T09:45:56.6900553Z TASK [download : debug] ******************************************************** -2025-11-24T09:45:56.8984247Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:56.8985064Z "msg": "Pull docker.io/library/nginx:1.25.4-alpine required is: False" -2025-11-24T09:45:56.8985821Z } -2025-11-24T09:45:56.8986329Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:56.8987102Z "msg": "Pull docker.io/library/nginx:1.25.4-alpine required is: False" -2025-11-24T09:45:56.8987809Z } -2025-11-24T09:45:56.8988753Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:56.8989474Z "msg": "Pull docker.io/library/nginx:1.25.4-alpine required is: False" -2025-11-24T09:45:56.8990182Z } -2025-11-24T09:45:56.8990425Z -2025-11-24T09:45:56.8990844Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:45:56.9516766Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:56.9517367Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:56.9523819Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:56.9524529Z -2025-11-24T09:45:56.9524905Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:45:56.9813422Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:57.0003116Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.0003783Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:57.0004106Z -2025-11-24T09:45:57.0004545Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:45:57.0509368Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:57.0510075Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.0510735Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:57.0511111Z -2025-11-24T09:45:57.0511523Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:45:57.1162934Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:57.1163659Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.1164317Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:57.1164681Z -2025-11-24T09:45:57.1165126Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:45:57.1494458Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:57.1494875Z -2025-11-24T09:45:57.1495289Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:45:57.1824750Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:57.2091000Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.2091644Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:57.2091956Z -2025-11-24T09:45:57.2092409Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:45:57.2573001Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:57.2573721Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.2574359Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:57.2575063Z -2025-11-24T09:45:57.2575524Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:45:57.3038056Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:57.3038686Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.3039217Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:57.3039512Z -2025-11-24T09:45:57.3039850Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:45:57.5562399Z ok: [kubenode-super-marlin] -2025-11-24T09:45:57.5563181Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.5563671Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:57.5563964Z -2025-11-24T09:45:57.5564322Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:45:57.6300969Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:57.6301506Z ok: [kubenode-super-marlin] -2025-11-24T09:45:57.6301977Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.6302252Z -2025-11-24T09:45:57.6302885Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:45:57.6891678Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:45:57.6892263Z "msg": "registry.k8s.io/coredns/coredns" -2025-11-24T09:45:57.6893040Z } -2025-11-24T09:45:57.6893459Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:45:57.6893975Z "msg": "registry.k8s.io/coredns/coredns" -2025-11-24T09:45:57.6894462Z } -2025-11-24T09:45:57.6894866Z ok: [kubenode-super-marlin] => { -2025-11-24T09:45:57.6895357Z "msg": "registry.k8s.io/coredns/coredns" -2025-11-24T09:45:57.6895836Z } -2025-11-24T09:45:57.6896039Z -2025-11-24T09:45:57.6896840Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:45:57.7731656Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:57.7732317Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.7733192Z ok: [kubenode-super-marlin] -2025-11-24T09:45:57.7733513Z -2025-11-24T09:45:57.7733923Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:45:57.8610605Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:57.8611169Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.8611654Z ok: [kubenode-super-marlin] -2025-11-24T09:45:57.8612295Z -2025-11-24T09:45:57.8612880Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:45:57.9527662Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:57.9528218Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:57.9528695Z ok: [kubenode-super-marlin] -2025-11-24T09:45:57.9528974Z -2025-11-24T09:45:57.9529312Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:45:58.0140500Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:58.0141060Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:58.0141542Z ok: [kubenode-super-marlin] -2025-11-24T09:45:58.0141813Z -2025-11-24T09:45:58.0142144Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:45:58.0623583Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:58.0624248Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:58.0624808Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:58.0625120Z -2025-11-24T09:45:58.0625485Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:45:58.1639395Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:58.1640051Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:58.1640616Z ok: [kubenode-super-marlin] -2025-11-24T09:45:58.1640942Z -2025-11-24T09:45:58.1641325Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:45:58.2021293Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:58.2022028Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:58.2022963Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:58.2023326Z -2025-11-24T09:45:58.2023722Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:45:58.2542103Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:58.2543469Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:58.2544104Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:58.2544457Z -2025-11-24T09:45:58.2544853Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:45:58.3260147Z ok: [kubenode-renewed-asp] -2025-11-24T09:45:58.3260720Z ok: [kubenode-super-marlin] -2025-11-24T09:45:58.3261218Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:45:58.3261599Z -2025-11-24T09:45:58.3261952Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:45:58.3569973Z skipping: [kubenode-renewed-asp] -2025-11-24T09:45:58.3887404Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:45:58.3887995Z skipping: [kubenode-super-marlin] -2025-11-24T09:45:58.3888286Z -2025-11-24T09:45:58.3888619Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:45:58.4878896Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:45:58.4879877Z -2025-11-24T09:45:58.4880306Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:46:00.2971793Z Still deploying... -2025-11-24T09:46:00.6665016Z ok: [kubenode-super-marlin] -2025-11-24T09:46:00.6665570Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:00.6666048Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:00.6666317Z -2025-11-24T09:46:00.6666747Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:46:00.7459672Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:00.7460262Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:00.7460767Z ok: [kubenode-super-marlin] -2025-11-24T09:46:00.7461050Z -2025-11-24T09:46:00.7461549Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:46:00.7818201Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:00.8110109Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:00.8110845Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:00.8111209Z -2025-11-24T09:46:00.8111952Z TASK [download : debug] ******************************************************** -2025-11-24T09:46:00.8810631Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:46:00.8811401Z "msg": "Pull registry.k8s.io/coredns/coredns:v1.11.4 required is: False" -2025-11-24T09:46:00.8812017Z } -2025-11-24T09:46:00.8812424Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:46:00.8813348Z "msg": "Pull registry.k8s.io/coredns/coredns:v1.11.4 required is: False" -2025-11-24T09:46:00.8813973Z } -2025-11-24T09:46:00.8814368Z ok: [kubenode-super-marlin] => { -2025-11-24T09:46:00.8814950Z "msg": "Pull registry.k8s.io/coredns/coredns:v1.11.4 required is: False" -2025-11-24T09:46:00.8815530Z } -2025-11-24T09:46:00.8815733Z -2025-11-24T09:46:00.8816068Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:46:00.9430924Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:00.9431611Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:00.9432226Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:00.9432596Z -2025-11-24T09:46:00.9433350Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:46:00.9976103Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:00.9976806Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:00.9977432Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:00.9977791Z -2025-11-24T09:46:00.9978292Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:46:01.0538976Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:01.0539671Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.0540298Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:01.0540654Z -2025-11-24T09:46:01.0541044Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:46:01.1289203Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:01.1289805Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.1290335Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:01.1290691Z -2025-11-24T09:46:01.1291047Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:46:01.1729865Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:01.1730259Z -2025-11-24T09:46:01.1730602Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:46:01.2145061Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:01.2335784Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.2336519Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:01.2336887Z -2025-11-24T09:46:01.2337301Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:46:01.2913523Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:01.2914109Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.2914641Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:01.2914955Z -2025-11-24T09:46:01.2915331Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:46:01.3461148Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:01.3461850Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.3462484Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:01.3463103Z -2025-11-24T09:46:01.3463504Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:46:01.5911375Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:01.5911961Z ok: [kubenode-super-marlin] -2025-11-24T09:46:01.5913103Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.5913435Z -2025-11-24T09:46:01.5913789Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:46:01.6919507Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:01.6920171Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.6920752Z ok: [kubenode-super-marlin] -2025-11-24T09:46:01.6921077Z -2025-11-24T09:46:01.6921574Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:46:01.7941699Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:46:01.7942942Z "msg": "registry.k8s.io/dns/k8s-dns-node-cache" -2025-11-24T09:46:01.7943491Z } -2025-11-24T09:46:01.7943901Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:46:01.7944439Z "msg": "registry.k8s.io/dns/k8s-dns-node-cache" -2025-11-24T09:46:01.7944949Z } -2025-11-24T09:46:01.7945345Z ok: [kubenode-super-marlin] => { -2025-11-24T09:46:01.7945841Z "msg": "registry.k8s.io/dns/k8s-dns-node-cache" -2025-11-24T09:46:01.7946344Z } -2025-11-24T09:46:01.7946582Z -2025-11-24T09:46:01.7946979Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:46:01.8736012Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:01.8736670Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.8737259Z ok: [kubenode-super-marlin] -2025-11-24T09:46:01.8737592Z -2025-11-24T09:46:01.8738014Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:46:01.9569542Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:01.9570105Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:01.9570606Z ok: [kubenode-super-marlin] -2025-11-24T09:46:01.9570901Z -2025-11-24T09:46:01.9571237Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:46:02.0395786Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:02.0396398Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:02.0396914Z ok: [kubenode-super-marlin] -2025-11-24T09:46:02.0397204Z -2025-11-24T09:46:02.0397583Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:46:02.1129413Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:02.1130003Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:02.1130508Z ok: [kubenode-super-marlin] -2025-11-24T09:46:02.1130818Z -2025-11-24T09:46:02.1131254Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:46:02.1645281Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:02.1645994Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:02.1646636Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:02.1647009Z -2025-11-24T09:46:02.1647398Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:46:02.2549191Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:02.2549849Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:02.2550451Z ok: [kubenode-super-marlin] -2025-11-24T09:46:02.2550769Z -2025-11-24T09:46:02.2551159Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:46:02.2902830Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:02.4870910Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:02.4871651Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:02.4872001Z -2025-11-24T09:46:02.4872392Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:46:02.4873469Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:02.4874070Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:02.4874701Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:02.4875048Z -2025-11-24T09:46:02.4875450Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:46:02.4876195Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:02.4876745Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:02.4877279Z ok: [kubenode-super-marlin] -2025-11-24T09:46:02.4877592Z -2025-11-24T09:46:02.4877987Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:46:02.5775431Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:02.5776536Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:02.5777215Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:02.5777568Z -2025-11-24T09:46:02.5777970Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:46:02.6638505Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:46:02.6639639Z -2025-11-24T09:46:02.6640132Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:46:04.8314816Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:04.8315447Z ok: [kubenode-super-marlin] -2025-11-24T09:46:04.8315946Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:04.8316225Z -2025-11-24T09:46:04.8316686Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:46:04.9427979Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:04.9428670Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:04.9429243Z ok: [kubenode-super-marlin] -2025-11-24T09:46:04.9429564Z -2025-11-24T09:46:04.9430107Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:46:04.9851085Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.0129727Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.0130350Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:05.0130651Z -2025-11-24T09:46:05.0130963Z TASK [download : debug] ******************************************************** -2025-11-24T09:46:05.0965610Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:46:05.0966540Z "msg": "Pull registry.k8s.io/dns/k8s-dns-node-cache:1.22.28 required is: False" -2025-11-24T09:46:05.0967261Z } -2025-11-24T09:46:05.0967695Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:46:05.0968375Z "msg": "Pull registry.k8s.io/dns/k8s-dns-node-cache:1.22.28 required is: False" -2025-11-24T09:46:05.0969054Z } -2025-11-24T09:46:05.0969483Z ok: [kubenode-super-marlin] => { -2025-11-24T09:46:05.0970125Z "msg": "Pull registry.k8s.io/dns/k8s-dns-node-cache:1.22.28 required is: False" -2025-11-24T09:46:05.0970766Z } -2025-11-24T09:46:05.0970980Z -2025-11-24T09:46:05.0971337Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:46:05.1455023Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.1455656Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.1456220Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:05.1456551Z -2025-11-24T09:46:05.1456924Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:46:05.1731482Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.1945601Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.1946304Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:05.1946626Z -2025-11-24T09:46:05.1947074Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:46:05.2255333Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.2468182Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.2468881Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:05.2469241Z -2025-11-24T09:46:05.2469660Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:46:05.3045183Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.3045807Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.3046364Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:05.3046704Z -2025-11-24T09:46:05.3047061Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:46:05.3466399Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.3466832Z -2025-11-24T09:46:05.3467259Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:46:05.4020253Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.4020959Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.4022014Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:05.4022440Z -2025-11-24T09:46:05.4023249Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:46:05.4319263Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.4624222Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.4624856Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:05.4625197Z -2025-11-24T09:46:05.4625599Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:46:05.5125908Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:05.5126583Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.5133706Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:05.5134047Z -2025-11-24T09:46:05.5134446Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:46:05.7497527Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:05.7498131Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.7498678Z ok: [kubenode-super-marlin] -2025-11-24T09:46:05.7498970Z -2025-11-24T09:46:05.7499324Z TASK [download : Set default values for flag variables] ************************ -2025-11-24T09:46:05.8420585Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:05.8421321Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:05.8421893Z ok: [kubenode-super-marlin] -2025-11-24T09:46:05.8422247Z -2025-11-24T09:46:05.8423000Z TASK [download : Set_container_facts | Display the name of the image being processed] *** -2025-11-24T09:46:05.9306202Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:46:05.9306943Z "msg": "registry.k8s.io/cpa/cluster-proportional-autoscaler" -2025-11-24T09:46:05.9307584Z } -2025-11-24T09:46:05.9308020Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:46:05.9308664Z "msg": "registry.k8s.io/cpa/cluster-proportional-autoscaler" -2025-11-24T09:46:05.9309281Z } -2025-11-24T09:46:05.9309713Z ok: [kubenode-super-marlin] => { -2025-11-24T09:46:05.9310305Z "msg": "registry.k8s.io/cpa/cluster-proportional-autoscaler" -2025-11-24T09:46:05.9310921Z } -2025-11-24T09:46:05.9311173Z -2025-11-24T09:46:05.9311585Z TASK [download : Set_container_facts | Set if containers should be pulled by digest] *** -2025-11-24T09:46:06.0066992Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:06.0067583Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.0068092Z ok: [kubenode-super-marlin] -2025-11-24T09:46:06.0068687Z -2025-11-24T09:46:06.0069066Z TASK [download : Set_container_facts | Define by what name to pull the image] *** -2025-11-24T09:46:06.0723725Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:06.0724523Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.0725239Z ok: [kubenode-super-marlin] -2025-11-24T09:46:06.0725636Z -2025-11-24T09:46:06.0726181Z TASK [download : Set_container_facts | Define file name of image] ************** -2025-11-24T09:46:06.1356521Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:06.1357116Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.1357634Z ok: [kubenode-super-marlin] -2025-11-24T09:46:06.1357916Z -2025-11-24T09:46:06.1358297Z TASK [download : Set_container_facts | Define path of image] ******************* -2025-11-24T09:46:06.2189114Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:06.2189652Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.2190158Z ok: [kubenode-super-marlin] -2025-11-24T09:46:06.2190420Z -2025-11-24T09:46:06.2190759Z TASK [download : Set image save/load command for docker] *********************** -2025-11-24T09:46:06.2705589Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:06.2706339Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.2706933Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:06.2707256Z -2025-11-24T09:46:06.2707609Z TASK [download : Set image save/load command for containerd] ******************* -2025-11-24T09:46:06.3412925Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:06.3413536Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.3414052Z ok: [kubenode-super-marlin] -2025-11-24T09:46:06.3414337Z -2025-11-24T09:46:06.3415091Z TASK [download : Set image save/load command for crio] ************************* -2025-11-24T09:46:06.3776424Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:06.4084059Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.4084741Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:06.4085061Z -2025-11-24T09:46:06.4085417Z TASK [download : Set image save/load command for docker on localhost] ********** -2025-11-24T09:46:06.4386519Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:06.4666704Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.4667305Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:06.4667969Z -2025-11-24T09:46:06.4668315Z TASK [download : Set image save/load command for containerd on localhost] ****** -2025-11-24T09:46:06.5587321Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:06.5587921Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.5588447Z ok: [kubenode-super-marlin] -2025-11-24T09:46:06.5588727Z -2025-11-24T09:46:06.5589089Z TASK [download : Set image save/load command for crio on localhost] ************ -2025-11-24T09:46:06.6232113Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:06.6232997Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:06.6233587Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:06.6233905Z -2025-11-24T09:46:06.6234268Z TASK [download : Download_container | Prepare container download] ************** -2025-11-24T09:46:06.7235211Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/check_pull_required.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:46:06.7236214Z -2025-11-24T09:46:06.7236651Z TASK [download : Check_pull_required | Generate a list of information about the images on a node] *** -2025-11-24T09:46:08.9207542Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:08.9208127Z ok: [kubenode-super-marlin] -2025-11-24T09:46:08.9208650Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:08.9208977Z -2025-11-24T09:46:08.9209526Z TASK [download : Check_pull_required | Set pull_required if the desired image is not yet loaded] *** -2025-11-24T09:46:09.0048021Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.0048709Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:09.0049232Z ok: [kubenode-super-marlin] -2025-11-24T09:46:09.0049514Z -2025-11-24T09:46:09.0050011Z TASK [download : Check_pull_required | Check that the local digest sha256 corresponds to the given image tag] *** -2025-11-24T09:46:09.0564002Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.0564595Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.0565109Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:09.0565411Z -2025-11-24T09:46:09.0565677Z TASK [download : debug] ******************************************************** -2025-11-24T09:46:09.1224873Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:46:09.1225797Z "msg": "Pull registry.k8s.io/cpa/cluster-proportional-autoscaler:v1.8.8 required is: False" -2025-11-24T09:46:09.1226623Z } -2025-11-24T09:46:09.1227109Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:46:09.1227992Z "msg": "Pull registry.k8s.io/cpa/cluster-proportional-autoscaler:v1.8.8 required is: False" -2025-11-24T09:46:09.1228802Z } -2025-11-24T09:46:09.1229280Z ok: [kubenode-super-marlin] => { -2025-11-24T09:46:09.1230077Z "msg": "Pull registry.k8s.io/cpa/cluster-proportional-autoscaler:v1.8.8 required is: False" -2025-11-24T09:46:09.1230858Z } -2025-11-24T09:46:09.1231096Z -2025-11-24T09:46:09.1231501Z TASK [download : Download_container | Determine if image is in cache] ********** -2025-11-24T09:46:09.1764931Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.1765558Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.1766143Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:09.1766450Z -2025-11-24T09:46:09.1766826Z TASK [download : Download_container | Set fact indicating if image is in cache] *** -2025-11-24T09:46:09.2199532Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.2418541Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.2419180Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:09.2419509Z -2025-11-24T09:46:09.2420276Z TASK [download : Stop if image not in cache on ansible host when download_force_cache=true] *** -2025-11-24T09:46:09.2705795Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.3039217Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.3039855Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:09.3040179Z -2025-11-24T09:46:09.3040540Z TASK [download : Download_container | Download image if required] ************** -2025-11-24T09:46:09.6465114Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.6465744Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.6466704Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:09.6467022Z -2025-11-24T09:46:09.6467380Z TASK [download : Download_container | Save and compress image] ***************** -2025-11-24T09:46:09.6833202Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.6833665Z -2025-11-24T09:46:09.6834084Z TASK [download : Download_container | Copy image to ansible host cache] ******** -2025-11-24T09:46:09.7119279Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.7350155Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.7351021Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:09.7351452Z -2025-11-24T09:46:09.7351933Z TASK [download : Download_container | Upload image to node if it is cached] **** -2025-11-24T09:46:09.7858857Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.7859511Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.7860079Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:09.7860401Z -2025-11-24T09:46:09.7860814Z TASK [download : Download_container | Load image into the local container registry] *** -2025-11-24T09:46:09.8439620Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:09.8440261Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:09.8440869Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:09.8441197Z -2025-11-24T09:46:09.8441575Z TASK [download : Download_container | Remove container image from cache] ******* -2025-11-24T09:46:10.2125346Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:10.2126026Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:10.2126585Z ok: [kubenode-super-marlin] -2025-11-24T09:46:10.2126886Z -2025-11-24T09:46:10.2127266Z PLAY [Add worker nodes to the etcd play if needed] ***************************** -2025-11-24T09:46:10.2127765Z -2025-11-24T09:46:10.2128156Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:46:10.2988176Z Still deploying... -2025-11-24T09:46:10.3218633Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:46:10.3219506Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:46:10.3220332Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:46:10.3221042Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:10.3221354Z -2025-11-24T09:46:10.3221712Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:46:10.3847362Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:10.3847814Z -2025-11-24T09:46:10.3848258Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:46:10.4587134Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:10.4587769Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:10.4588316Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:10.4588663Z -2025-11-24T09:46:10.4589067Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:46:10.5117289Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:10.5117673Z -2025-11-24T09:46:10.5118038Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:46:10.5863030Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:10.5863701Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:10.5864272Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:10.5864614Z -2025-11-24T09:46:10.5865091Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:46:10.6593295Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:10.6594084Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:10.6594705Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:10.6595097Z -2025-11-24T09:46:10.6595495Z TASK [Check if nodes needs etcd client certs (depends on network_plugin)] ****** -2025-11-24T09:46:10.7644460Z [WARNING]: Could not match supplied host pattern, ignoring: -2025-11-24T09:46:10.7645147Z _kubespray_needs_etcd -2025-11-24T09:46:10.8126998Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:10.8127650Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:10.8128585Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:10.8128946Z -2025-11-24T09:46:10.8129334Z PLAY [Install etcd] ************************************************************ -2025-11-24T09:46:10.8129779Z -2025-11-24T09:46:10.8130167Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:46:10.8786034Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:46:10.8786912Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:46:10.8787691Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:46:10.8788351Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:10.8788655Z -2025-11-24T09:46:10.8789016Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:46:10.9118348Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:10.9118775Z -2025-11-24T09:46:10.9119178Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:46:10.9740015Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:10.9740662Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:10.9741235Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:10.9741586Z -2025-11-24T09:46:10.9742010Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:46:11.0023558Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:11.0023983Z -2025-11-24T09:46:11.0539570Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:46:11.0540357Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:11.0540895Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:11.0541429Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:11.0541763Z -2025-11-24T09:46:11.0542231Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:46:11.1194958Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:11.1195571Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:11.1196124Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:11.1196453Z -2025-11-24T09:46:11.1196792Z TASK [adduser : User | Create User Group] ************************************** -2025-11-24T09:46:11.6516902Z changed: [kubenode-super-marlin] -2025-11-24T09:46:11.6517552Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:11.6518140Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:11.6518459Z -2025-11-24T09:46:11.6518831Z TASK [adduser : User | Create User] ******************************************** -2025-11-24T09:46:12.2485978Z changed: [kubenode-super-marlin] -2025-11-24T09:46:12.2486675Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:12.2487292Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:12.2487614Z -2025-11-24T09:46:12.2488013Z TASK [adduser : User | Create User Group] ************************************** -2025-11-24T09:46:12.5203419Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:12.5204106Z ok: [kubenode-super-marlin] -2025-11-24T09:46:12.5204629Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:12.5204912Z -2025-11-24T09:46:12.5205265Z TASK [adduser : User | Create User] ******************************************** -2025-11-24T09:46:12.8615181Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:12.8615781Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:12.8616266Z ok: [kubenode-super-marlin] -2025-11-24T09:46:12.8616538Z -2025-11-24T09:46:12.8617277Z TASK [etcd : Check etcd certs] ************************************************* -2025-11-24T09:46:12.9441807Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/check_certs.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:46:12.9442959Z -2025-11-24T09:46:12.9443358Z TASK [etcd : Check_certs | Register certs that have already been generated on first etcd node] *** -2025-11-24T09:46:13.4034124Z [WARNING]: Skipped '/etc/ssl/etcd/ssl' path due to this access issue: -2025-11-24T09:46:13.4034850Z '/etc/ssl/etcd/ssl' is not a directory -2025-11-24T09:46:13.4215666Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:13.4216076Z -2025-11-24T09:46:13.4216575Z TASK [etcd : Check_certs | Set default value for 'sync_certs', 'gen_certs' and 'etcd_secret_changed' to false] *** -2025-11-24T09:46:13.5080416Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:13.5081006Z ok: [kubenode-super-marlin] -2025-11-24T09:46:13.5081524Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:13.5081829Z -2025-11-24T09:46:13.5082235Z TASK [etcd : Check certs | Register ca and etcd admin/member certs on etcd hosts] *** -2025-11-24T09:46:14.5856926Z ok: [kubenode-super-marlin] => (item=ca.pem) -2025-11-24T09:46:14.5857726Z ok: [kubenode-teaching-gobbler] => (item=ca.pem) -2025-11-24T09:46:14.5858282Z ok: [kubenode-renewed-asp] => (item=ca.pem) -2025-11-24T09:46:14.5858941Z ok: [kubenode-teaching-gobbler] => (item=member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:14.5859697Z ok: [kubenode-super-marlin] => (item=member-kubenode-super-marlin.pem) -2025-11-24T09:46:14.5860381Z ok: [kubenode-renewed-asp] => (item=member-kubenode-renewed-asp.pem) -2025-11-24T09:46:14.5861124Z ok: [kubenode-teaching-gobbler] => (item=member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:14.5861864Z ok: [kubenode-super-marlin] => (item=member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:14.5862562Z ok: [kubenode-renewed-asp] => (item=member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:14.5863610Z ok: [kubenode-teaching-gobbler] => (item=admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:14.5864358Z ok: [kubenode-super-marlin] => (item=admin-kubenode-super-marlin.pem) -2025-11-24T09:46:14.5865036Z ok: [kubenode-renewed-asp] => (item=admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:14.5865743Z ok: [kubenode-teaching-gobbler] => (item=admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:14.5866471Z ok: [kubenode-super-marlin] => (item=admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:14.5867505Z ok: [kubenode-renewed-asp] => (item=admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:14.5867925Z -2025-11-24T09:46:14.5868269Z TASK [etcd : Check certs | Register ca and etcd node certs on kubernetes hosts] *** -2025-11-24T09:46:15.2452267Z ok: [kubenode-renewed-asp] => (item=ca.pem) -2025-11-24T09:46:15.2453792Z ok: [kubenode-super-marlin] => (item=ca.pem) -2025-11-24T09:46:15.2454747Z ok: [kubenode-teaching-gobbler] => (item=ca.pem) -2025-11-24T09:46:15.2455385Z ok: [kubenode-super-marlin] => (item=node-kubenode-super-marlin.pem) -2025-11-24T09:46:15.2456112Z ok: [kubenode-renewed-asp] => (item=node-kubenode-renewed-asp.pem) -2025-11-24T09:46:15.2456833Z ok: [kubenode-teaching-gobbler] => (item=node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:15.2457561Z ok: [kubenode-super-marlin] => (item=node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:15.2458286Z ok: [kubenode-teaching-gobbler] => (item=node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:15.2459016Z ok: [kubenode-renewed-asp] => (item=node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:15.2459414Z -2025-11-24T09:46:15.2459831Z TASK [etcd : Check_certs | Set 'gen_certs' to true if expected certificates are not on the first etcd node(1/2)] *** -2025-11-24T09:46:15.5573861Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca.pem) -2025-11-24T09:46:15.5574731Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:15.5575597Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:15.5576864Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) -2025-11-24T09:46:15.5577730Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:15.5578573Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) -2025-11-24T09:46:15.5579744Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:15.5580622Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) -2025-11-24T09:46:15.5581999Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:15.5583651Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:15.5584489Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:15.5585306Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:15.5586133Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:15.5586933Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:15.5587711Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:15.5588484Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:15.5589246Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:15.5590051Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:15.5590841Z ok: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:15.5591288Z -2025-11-24T09:46:15.5591703Z TASK [etcd : Check_certs | Set 'gen_certs' to true if expected certificates are not on the first etcd node(2/2)] *** -2025-11-24T09:46:15.6977932Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca.pem) -2025-11-24T09:46:15.6978881Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:15.6979825Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:15.6981141Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) -2025-11-24T09:46:15.6982071Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:15.6983327Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) -2025-11-24T09:46:15.6984239Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:15.6991708Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) -2025-11-24T09:46:15.6992908Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:15.6993910Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:15.6994836Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:15.6995759Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:15.6996679Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:15.6997561Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:15.6998409Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:15.6999251Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:15.7000392Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:15.7001277Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:15.7002222Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:15.7003072Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:15.7003617Z -2025-11-24T09:46:15.7004087Z TASK [etcd : Check_certs | Set 'gen_*_certs' groups to track which nodes needs to have certs generated on first etcd node] *** -2025-11-24T09:46:15.7787462Z changed: [kubenode-renewed-asp] => (item={'node_type': 'master', 'certs': ['/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem', '/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem', '/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem', '/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem']}) -2025-11-24T09:46:15.7789558Z changed: [kubenode-renewed-asp] => (item={'node_type': 'node', 'certs': ['/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem', '/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem']}) -2025-11-24T09:46:15.7791485Z changed: [kubenode-super-marlin] => (item={'node_type': 'master', 'certs': ['/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem', '/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem', '/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem', '/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem']}) -2025-11-24T09:46:15.7793716Z changed: [kubenode-super-marlin] => (item={'node_type': 'node', 'certs': ['/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem', '/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem']}) -2025-11-24T09:46:15.7795723Z changed: [kubenode-teaching-gobbler] => (item={'node_type': 'master', 'certs': ['/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem', '/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem', '/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem', '/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem']}) -2025-11-24T09:46:15.7797809Z changed: [kubenode-teaching-gobbler] => (item={'node_type': 'node', 'certs': ['/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem', '/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem']}) -2025-11-24T09:46:15.7798616Z -2025-11-24T09:46:15.7799155Z TASK [etcd : Check_certs | Set 'etcd_member_requires_sync' to true if ca or member/admin cert and key don't exist on etcd member or checksum doesn't match] *** -2025-11-24T09:46:15.8958833Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:15.8959501Z ok: [kubenode-super-marlin] -2025-11-24T09:46:15.8960058Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:15.8960400Z -2025-11-24T09:46:15.8961071Z TASK [etcd : Check_certs | Set 'kubernetes_host_requires_sync' to true if ca or node cert and key don't exist on kubernetes host or checksum doesn't match] *** -2025-11-24T09:46:15.9428293Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:15.9428957Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:15.9429544Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:15.9429897Z -2025-11-24T09:46:15.9430282Z TASK [etcd : Check_certs | Set 'sync_certs' to true] *************************** -2025-11-24T09:46:16.0078120Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:16.0078787Z ok: [kubenode-super-marlin] -2025-11-24T09:46:16.0079352Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:16.0079673Z -2025-11-24T09:46:16.0080034Z TASK [etcd : Generate etcd certs] ********************************************** -2025-11-24T09:46:16.0974716Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/gen_certs_script.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:46:16.0975841Z -2025-11-24T09:46:16.0976196Z TASK [etcd : Gen_certs | create etcd cert dir] ********************************* -2025-11-24T09:46:16.3329744Z changed: [kubenode-super-marlin] -2025-11-24T09:46:16.3330364Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:16.3330846Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:16.3331155Z -2025-11-24T09:46:16.6092174Z TASK [etcd : Gen_certs | create etcd script dir (on kubenode-renewed-asp)] ***** -2025-11-24T09:46:16.6093228Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:16.6093519Z -2025-11-24T09:46:16.6093832Z TASK [etcd : Gen_certs | write openssl config] ********************************* -2025-11-24T09:46:17.1617326Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:17.1617685Z -2025-11-24T09:46:17.1618034Z TASK [etcd : Gen_certs | copy certs generation script] ************************* -2025-11-24T09:46:17.6771337Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:17.6771683Z -2025-11-24T09:46:17.6772451Z TASK [etcd : Gen_certs | run cert generation script for etcd and kube control plane nodes] *** -2025-11-24T09:46:20.3005223Z Still deploying... -2025-11-24T09:46:21.1285848Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:21.1286285Z -2025-11-24T09:46:21.1286700Z TASK [etcd : Gen_certs | run cert generation script for all clients] *********** -2025-11-24T09:46:21.1917279Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:21.1917665Z -2025-11-24T09:46:21.1918181Z TASK [etcd : Gen_certs | Gather etcd member/admin and kube_control_plane client certs from first etcd node] *** -2025-11-24T09:46:25.5550886Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca.pem) -2025-11-24T09:46:25.5551991Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca-key.pem) -2025-11-24T09:46:25.5553164Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5554167Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5555137Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5556093Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5557045Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5557999Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5558973Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5559929Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5560904Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5562117Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5563154Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5564035Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5564885Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5565706Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5566518Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5567337Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5568171Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5569026Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5569736Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:25.5570377Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/ca.pem) -2025-11-24T09:46:25.5571261Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/ca.pem) -2025-11-24T09:46:25.5572140Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/ca-key.pem) -2025-11-24T09:46:25.5573304Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/ca-key.pem) -2025-11-24T09:46:25.5574218Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5575173Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5576143Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5577219Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5578175Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5579125Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5580102Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5581098Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5582057Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5583103Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5584070Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5585044Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5586010Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5586964Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5587928Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5589034Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5590011Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5591004Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5592022Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5593144Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5594156Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5595141Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5596123Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5597158Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5598149Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5599246Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:25.5600209Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5601191Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:25.5602149Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5603324Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:25.5604498Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5605472Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:25.5606446Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5607415Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:25.5608388Z ok: [kubenode-super-marlin -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5609390Z ok: [kubenode-teaching-gobbler -> kubenode-renewed-asp(10.1.1.4)] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:25.5609953Z -2025-11-24T09:46:25.5610348Z TASK [etcd : Gen_certs | Write etcd member/admin and kube_control_plane client certs to other etcd nodes] *** -2025-11-24T09:46:30.3021799Z Still deploying... -2025-11-24T09:46:34.8243688Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca.pem) -2025-11-24T09:46:34.8244753Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/ca-key.pem) -2025-11-24T09:46:34.8245622Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8246534Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8247429Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8248629Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8249539Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8250433Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8251322Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8252223Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8253361Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8254347Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8255268Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8256189Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8257054Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8257885Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8258713Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8259536Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8260543Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8261410Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8262091Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:34.8262756Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/ca.pem) -2025-11-24T09:46:34.8263439Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/ca.pem) -2025-11-24T09:46:34.8264112Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/ca-key.pem) -2025-11-24T09:46:34.8264906Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/ca-key.pem) -2025-11-24T09:46:34.8265683Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8266510Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8267539Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8268392Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8269211Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8270031Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8270865Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8271719Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8272569Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8273521Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8274356Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8275214Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8276068Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8276897Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8277829Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8278688Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8279540Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8280391Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8281260Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8282115Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8283089Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/admin-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8283987Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8284868Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8285716Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8286576Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/member-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8287445Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8288276Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:34.8289222Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8290066Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:34.8290921Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8291748Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8292566Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8293579Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:34.8294438Z changed: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8295291Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:34.8296173Z changed: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:34.8296669Z -2025-11-24T09:46:34.8296972Z TASK [etcd : Gen_certs | Gather node certs from first etcd node] *************** -2025-11-24T09:46:34.8672054Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:34.8673410Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:35.0220761Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:35.0222009Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:35.0223466Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:35.0224550Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:35.0225647Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:35.0226485Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:35.0227317Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:35.0228423Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:35.0229640Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:35.0230606Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:35.0231561Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:35.0232512Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:35.0233563Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:35.0234504Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:35.0235461Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:35.0236171Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:35.0236877Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:35.0237812Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:35.0238560Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:35.0238861Z -2025-11-24T09:46:35.0239178Z TASK [etcd : Gen_certs | Write node certs to other etcd nodes] ***************** -2025-11-24T09:46:35.0403688Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:35.0405402Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:35.1355625Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:35.1356680Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:35.1357611Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:35.1358536Z skipping: [kubenode-renewed-asp] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:35.1359591Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:35.1360270Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:35.1361156Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:35.1362061Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp.pem) -2025-11-24T09:46:35.1363265Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:35.1364241Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:35.1365191Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-renewed-asp-key.pem) -2025-11-24T09:46:35.1366116Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:35.1367035Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler.pem) -2025-11-24T09:46:35.1367969Z skipping: [kubenode-super-marlin] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:35.1368703Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:35.1369447Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-teaching-gobbler-key.pem) -2025-11-24T09:46:35.1370422Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin.pem) -2025-11-24T09:46:35.1371359Z skipping: [kubenode-teaching-gobbler] => (item=/etc/ssl/etcd/ssl/node-kubenode-super-marlin-key.pem) -2025-11-24T09:46:35.1372094Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:35.1372392Z -2025-11-24T09:46:35.1372790Z TASK [etcd : Gen_certs | Generate etcd certs] ********************************** -2025-11-24T09:46:35.1808131Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:35.1809009Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:35.1809634Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:35.1810038Z -2025-11-24T09:46:35.1810432Z TASK [etcd : Gen_certs | Generate etcd certs on nodes if needed] *************** -2025-11-24T09:46:35.2405394Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:35.2406255Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:35.2406871Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:35.2407280Z -2025-11-24T09:46:35.2407706Z TASK [etcd : Gen_certs | check certificate permissions] ************************ -2025-11-24T09:46:35.4775421Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:35.4776315Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:35.4776946Z changed: [kubenode-super-marlin] -2025-11-24T09:46:35.4777237Z -2025-11-24T09:46:35.4777530Z TASK [etcd : Trust etcd CA] **************************************************** -2025-11-24T09:46:35.6114931Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/upd_ca_trust.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:46:35.6115863Z -2025-11-24T09:46:35.6116194Z TASK [etcd : Gen_certs | target ca-certificate store file] ********************* -2025-11-24T09:46:35.6807220Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:35.6807969Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:35.6808535Z ok: [kubenode-super-marlin] -2025-11-24T09:46:35.6808862Z -2025-11-24T09:46:35.6809232Z TASK [etcd : Gen_certs | add CA to trusted CA dir] ***************************** -2025-11-24T09:46:35.9711958Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:35.9712569Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:35.9713396Z changed: [kubenode-super-marlin] -2025-11-24T09:46:35.9713675Z -2025-11-24T09:46:35.9714004Z TASK [etcd : Gen_certs | update ca-certificates (Debian/Ubuntu/SUSE/Flatcar)] *** -2025-11-24T09:46:37.3009579Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:37.3010289Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:37.3010800Z changed: [kubenode-super-marlin] -2025-11-24T09:46:37.3011081Z -2025-11-24T09:46:37.3011438Z TASK [etcd : Gen_certs | update ca-certificates (RedHat)] ********************** -2025-11-24T09:46:37.3555328Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:37.3556032Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:37.3562133Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:37.3562486Z -2025-11-24T09:46:37.3563205Z TASK [etcd : Gen_certs | update ca-certificates (ClearLinux)] ****************** -2025-11-24T09:46:37.4059719Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:37.4060657Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:37.4061284Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:37.4061675Z -2025-11-24T09:46:37.4062044Z TASK [etcd : Trust etcd CA on nodes if needed] ********************************* -2025-11-24T09:46:37.4607303Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:37.4608212Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:37.4608822Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:37.4609197Z -2025-11-24T09:46:37.4609571Z TASK [etcd : Gen_certs | Get etcd certificate serials] ************************* -2025-11-24T09:46:37.5103485Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:37.5104373Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:37.5104886Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:37.5105198Z -2025-11-24T09:46:37.5105500Z TASK [etcd : Set etcd_client_cert_serial] ************************************** -2025-11-24T09:46:37.5728421Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:37.5729360Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:37.5730025Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:37.5730406Z -2025-11-24T09:46:37.5730830Z TASK [etcdctl_etcdutl : Copy etcdctl and etcdutl binary from docker container] *** -2025-11-24T09:46:37.6306588Z skipping: [kubenode-renewed-asp] => (item=etcdctl) -2025-11-24T09:46:37.6307713Z skipping: [kubenode-renewed-asp] => (item=etcdutl) -2025-11-24T09:46:37.6308353Z skipping: [kubenode-super-marlin] => (item=etcdctl) -2025-11-24T09:46:37.6308963Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:37.6309539Z skipping: [kubenode-super-marlin] => (item=etcdutl) -2025-11-24T09:46:37.6310138Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:37.6310721Z skipping: [kubenode-teaching-gobbler] => (item=etcdctl) -2025-11-24T09:46:37.6311386Z skipping: [kubenode-teaching-gobbler] => (item=etcdutl) -2025-11-24T09:46:37.6311996Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:37.6312325Z -2025-11-24T09:46:37.6312978Z TASK [etcdctl_etcdutl : Download etcd binary] ********************************** -2025-11-24T09:46:37.8585309Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcdctl_etcdutl/tasks/../../download/tasks/download_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:46:37.8586408Z -2025-11-24T09:46:37.8586775Z TASK [etcdctl_etcdutl : Prep_download | Set a few facts] *********************** -2025-11-24T09:46:38.3300561Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:38.3301421Z ok: [kubenode-super-marlin] -2025-11-24T09:46:38.3302029Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:38.3302370Z -2025-11-24T09:46:38.3303205Z TASK [etcdctl_etcdutl : Download_file | Show url of file to dowload] *********** -2025-11-24T09:46:39.1705608Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:46:39.1706576Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" -2025-11-24T09:46:39.1707177Z } -2025-11-24T09:46:39.1707584Z ok: [kubenode-super-marlin] => { -2025-11-24T09:46:39.1708641Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" -2025-11-24T09:46:39.1709246Z } -2025-11-24T09:46:39.1709652Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:46:39.1710255Z "msg": "http://10.1.1.1:8080/binaries/etcd-v3.5.16-linux-amd64.tar.gz" -2025-11-24T09:46:39.1710846Z } -2025-11-24T09:46:39.1711049Z -2025-11-24T09:46:39.1711558Z TASK [etcdctl_etcdutl : Download_file | Set pathname of cached file] *********** -2025-11-24T09:46:40.0213109Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:40.0213908Z ok: [kubenode-super-marlin] -2025-11-24T09:46:40.0214885Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:40.0215214Z -2025-11-24T09:46:40.0215602Z TASK [etcdctl_etcdutl : Download_file | Create dest directory on node] ********* -2025-11-24T09:46:40.3033478Z Still deploying... -2025-11-24T09:46:41.3746459Z ok: [kubenode-super-marlin] -2025-11-24T09:46:41.3747122Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:41.3747643Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:41.3747941Z -2025-11-24T09:46:41.3748324Z TASK [etcdctl_etcdutl : Download_file | Create local cache directory] ********** -2025-11-24T09:46:41.4011208Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:41.4011691Z -2025-11-24T09:46:41.4339974Z TASK [etcdctl_etcdutl : Download_file | Create cache directory on download_delegate host] *** -2025-11-24T09:46:41.4340725Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:41.4341043Z -2025-11-24T09:46:41.4341368Z TASK [etcdctl_etcdutl : Download_file | Download item] ************************* -2025-11-24T09:46:45.4671998Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:45.4672983Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:45.4673502Z ok: [kubenode-super-marlin] -2025-11-24T09:46:45.4673778Z -2025-11-24T09:46:45.4674152Z TASK [etcdctl_etcdutl : Download_file | Copy file back to ansible host file cache] *** -2025-11-24T09:46:45.5346441Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:45.5347332Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:45.5347869Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:45.5348181Z -2025-11-24T09:46:45.5348583Z TASK [etcdctl_etcdutl : Download_file | Copy file from cache to nodes, if it is available] *** -2025-11-24T09:46:45.5957018Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:45.5957672Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:45.5958184Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:45.5958937Z -2025-11-24T09:46:45.5959269Z TASK [etcdctl_etcdutl : Download_file | Set mode and owner] ******************** -2025-11-24T09:46:45.6464903Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:45.6465803Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:45.6466427Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:45.6466805Z -2025-11-24T09:46:45.6467205Z TASK [etcdctl_etcdutl : Download_file | Extract file archives] ***************** -2025-11-24T09:46:45.7271673Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/download/tasks/extract_file.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:46:45.7273069Z -2025-11-24T09:46:45.7273476Z TASK [etcdctl_etcdutl : Extract_file | Unpacking archive] ********************** -2025-11-24T09:46:49.4001235Z ok: [kubenode-super-marlin] -2025-11-24T09:46:49.4002094Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:46:49.4002940Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:49.4003274Z -2025-11-24T09:46:49.4003669Z TASK [etcdctl_etcdutl : Copy etcd binary] ************************************** -2025-11-24T09:46:50.3043649Z Still deploying... -2025-11-24T09:46:51.6408939Z changed: [kubenode-super-marlin] -2025-11-24T09:46:51.6409667Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:51.6410242Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:51.6410533Z -2025-11-24T09:46:51.6410895Z TASK [etcdctl_etcdutl : Copy etcdctl and etcdutl binary from download dir] ***** -2025-11-24T09:46:52.3510191Z changed: [kubenode-super-marlin] => (item=etcdctl) -2025-11-24T09:46:52.3510921Z changed: [kubenode-renewed-asp] => (item=etcdctl) -2025-11-24T09:46:52.3511924Z changed: [kubenode-teaching-gobbler] => (item=etcdctl) -2025-11-24T09:46:52.3512509Z changed: [kubenode-super-marlin] => (item=etcdutl) -2025-11-24T09:46:52.3513358Z changed: [kubenode-renewed-asp] => (item=etcdutl) -2025-11-24T09:46:52.3513904Z changed: [kubenode-teaching-gobbler] => (item=etcdutl) -2025-11-24T09:46:52.3514256Z -2025-11-24T09:46:52.3514574Z TASK [etcdctl_etcdutl : Create etcdctl wrapper script] ************************* -2025-11-24T09:46:52.9168116Z changed: [kubenode-super-marlin] -2025-11-24T09:46:52.9168828Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:52.9169687Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:52.9170019Z -2025-11-24T09:46:52.9170328Z TASK [etcd : Install etcd] ***************************************************** -2025-11-24T09:46:53.0295683Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/install_host.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:46:53.0296644Z -2025-11-24T09:46:53.0296992Z TASK [etcd : Get currently-deployed etcd version] ****************************** -2025-11-24T09:46:53.3170921Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": "/usr/local/bin/etcd --version", "msg": "[Errno 2] No such file or directory: b'/usr/local/bin/etcd'", "rc": 2, "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": []} -2025-11-24T09:46:53.3172182Z ...ignoring -2025-11-24T09:46:53.3173502Z fatal: [kubenode-renewed-asp]: FAILED! => {"changed": false, "cmd": "/usr/local/bin/etcd --version", "msg": "[Errno 2] No such file or directory: b'/usr/local/bin/etcd'", "rc": 2, "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": []} -2025-11-24T09:46:53.3174625Z ...ignoring -2025-11-24T09:46:53.3175675Z fatal: [kubenode-teaching-gobbler]: FAILED! => {"changed": false, "cmd": "/usr/local/bin/etcd --version", "msg": "[Errno 2] No such file or directory: b'/usr/local/bin/etcd'", "rc": 2, "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": []} -2025-11-24T09:46:53.3176772Z ...ignoring -2025-11-24T09:46:53.3176987Z -2025-11-24T09:46:53.3177292Z TASK [etcd : Restart etcd if necessary] **************************************** -2025-11-24T09:46:53.5613488Z changed: [kubenode-super-marlin] -2025-11-24T09:46:53.5614247Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:46:53.5614766Z changed: [kubenode-renewed-asp] -2025-11-24T09:46:53.5615318Z -2025-11-24T09:46:53.5615661Z TASK [etcd : Restart etcd-events if necessary] ********************************* -2025-11-24T09:46:53.6241432Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:53.6242349Z skipping: [kubenode-super-marlin] -2025-11-24T09:46:53.6243273Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:46:53.6243650Z -2025-11-24T09:46:53.6244024Z TASK [etcd : Install | Copy etcd binary from download dir] ********************* -2025-11-24T09:46:54.0442915Z changed: [kubenode-renewed-asp] => (item=etcd) -2025-11-24T09:46:54.0443977Z changed: [kubenode-super-marlin] => (item=etcd) -2025-11-24T09:46:54.0444707Z changed: [kubenode-teaching-gobbler] => (item=etcd) -2025-11-24T09:46:54.0445145Z -2025-11-24T09:46:54.0445455Z TASK [etcd : Configure etcd] *************************************************** -2025-11-24T09:46:54.2063416Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/configure.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:46:54.2064391Z -2025-11-24T09:46:54.2064733Z TASK [etcd : Configure | Check if etcd cluster is healthy] ********************* -2025-11-24T09:46:59.5490311Z ok: [kubenode-renewed-asp] -2025-11-24T09:46:59.5490916Z -2025-11-24T09:46:59.5491327Z TASK [etcd : Configure | Check if etcd-events cluster is healthy] ************** -2025-11-24T09:46:59.5832495Z skipping: [kubenode-renewed-asp] -2025-11-24T09:46:59.5833254Z -2025-11-24T09:46:59.5833616Z TASK [etcd : Configure | Refresh etcd config] ********************************** -2025-11-24T09:46:59.6745159Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/refresh_config.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:46:59.6746358Z -2025-11-24T09:46:59.6746762Z TASK [etcd : Refresh config | Create etcd config file] ************************* -2025-11-24T09:47:00.2730876Z changed: [kubenode-super-marlin] -2025-11-24T09:47:00.2731802Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:00.2732375Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:00.2733025Z -2025-11-24T09:47:00.2733386Z TASK [etcd : Refresh config | Create etcd-events config file] ****************** -2025-11-24T09:47:00.3058036Z Still deploying... -2025-11-24T09:47:00.3351350Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:00.3352041Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:00.3352559Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:00.3353189Z -2025-11-24T09:47:00.3353527Z TASK [etcd : Configure | Copy etcd.service systemd file] *********************** -2025-11-24T09:47:00.8446079Z changed: [kubenode-super-marlin] -2025-11-24T09:47:00.8446884Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:00.8447500Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:00.8447825Z -2025-11-24T09:47:00.8448216Z TASK [etcd : Configure | Copy etcd-events.service systemd file] **************** -2025-11-24T09:47:00.9099837Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:00.9100471Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:00.9101002Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:00.9101318Z -2025-11-24T09:47:02.0142410Z TASK [etcd : Configure | reload systemd] *************************************** -2025-11-24T09:47:02.0143491Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:02.0144055Z ok: [kubenode-super-marlin] -2025-11-24T09:47:02.0144706Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:02.0145003Z -2025-11-24T09:47:02.0145361Z TASK [etcd : Configure | Ensure etcd is running] ******************************* -2025-11-24T09:47:03.5275583Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:03.5276185Z changed: [kubenode-super-marlin] -2025-11-24T09:47:03.5276756Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:03.5277091Z -2025-11-24T09:47:03.5277435Z TASK [etcd : Configure | Ensure etcd-events is running] ************************ -2025-11-24T09:47:03.5807043Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:03.5807752Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:03.5808370Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:03.5809224Z -2025-11-24T09:47:03.5809722Z TASK [etcd : Configure | Wait for etcd cluster to be healthy] ****************** -2025-11-24T09:47:03.9311955Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:03.9312349Z -2025-11-24T09:47:03.9313061Z TASK [etcd : Configure | Wait for etcd-events cluster to be healthy] *********** -2025-11-24T09:47:03.9703711Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:03.9704114Z -2025-11-24T09:47:03.9704455Z TASK [etcd : Configure | Check if member is in etcd cluster] ******************* -2025-11-24T09:47:04.3262178Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:04.3263183Z ok: [kubenode-super-marlin] -2025-11-24T09:47:04.3263791Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:04.3264140Z -2025-11-24T09:47:04.3264545Z TASK [etcd : Configure | Check if member is in etcd-events cluster] ************ -2025-11-24T09:47:04.3727553Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:04.3913438Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:04.3914074Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:04.3914392Z -2025-11-24T09:47:04.3914713Z TASK [etcd : Configure | Join member(s) to etcd cluster one at a time] ********* -2025-11-24T09:47:04.4647912Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:47:04.4648743Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:47:04.4649517Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:47:04.4650272Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:47:04.4651041Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:04.4652210Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:04.4653152Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:04.4653950Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) -2025-11-24T09:47:04.4654618Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:04.4655263Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) -2025-11-24T09:47:04.4656070Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:04.4656903Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:04.4657222Z -2025-11-24T09:47:04.4657573Z TASK [etcd : Configure | Join member(s) to etcd-events cluster one at a time] *** -2025-11-24T09:47:04.4873275Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:47:04.4874204Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:47:04.5170180Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:04.5171060Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:47:04.5171728Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:04.5172406Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:47:04.5173486Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) -2025-11-24T09:47:04.5174295Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) -2025-11-24T09:47:04.5175074Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:04.5175747Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:04.5176405Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:04.5177095Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:04.5177419Z -2025-11-24T09:47:04.5177753Z TASK [etcd : Refresh etcd config] ********************************************** -2025-11-24T09:47:04.6453317Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/refresh_config.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:47:04.6454392Z -2025-11-24T09:47:04.6454767Z TASK [etcd : Refresh config | Create etcd config file] ************************* -2025-11-24T09:47:05.1912199Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:05.1913373Z changed: [kubenode-super-marlin] -2025-11-24T09:47:05.1914304Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:05.1914584Z -2025-11-24T09:47:05.1914905Z TASK [etcd : Refresh config | Create etcd-events config file] ****************** -2025-11-24T09:47:05.2365326Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:05.2652098Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:05.2653060Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:05.2653419Z -2025-11-24T09:47:05.2653762Z TASK [etcd : Restart etcd if certs changed] ************************************ -2025-11-24T09:47:05.3271256Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:05.3272137Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:05.3273079Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:05.3273472Z -2025-11-24T09:47:05.3273871Z TASK [etcd : Restart etcd-events if certs changed] ***************************** -2025-11-24T09:47:05.3620780Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:05.3899711Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:05.3900431Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:05.3900754Z -2025-11-24T09:47:05.3901083Z TASK [etcd : Refresh etcd config again for idempotency] ************************ -2025-11-24T09:47:05.5122610Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/etcd/tasks/refresh_config.yml for kubenode-renewed-asp, kubenode-super-marlin, kubenode-teaching-gobbler -2025-11-24T09:47:05.5124118Z -2025-11-24T09:47:05.5124535Z TASK [etcd : Refresh config | Create etcd config file] ************************* -2025-11-24T09:47:06.0287373Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:06.0288093Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:06.0289056Z ok: [kubenode-super-marlin] -2025-11-24T09:47:06.0289359Z -2025-11-24T09:47:06.0289709Z TASK [etcd : Refresh config | Create etcd-events config file] ****************** -2025-11-24T09:47:06.1285058Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:06.1285807Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:06.1286367Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:06.1286723Z -2025-11-24T09:47:06.1287071Z RUNNING HANDLER [etcd : Refresh Time Fact] ************************************* -2025-11-24T09:47:07.2698551Z ok: [kubenode-super-marlin] -2025-11-24T09:47:07.2699577Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:07.2700109Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:07.2700408Z -2025-11-24T09:47:07.2700750Z RUNNING HANDLER [etcd : Set Backup Directory] ********************************** -2025-11-24T09:47:07.3435543Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:07.3436344Z ok: [kubenode-super-marlin] -2025-11-24T09:47:07.3436902Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:07.3437221Z -2025-11-24T09:47:07.3437617Z RUNNING HANDLER [etcd : Create Backup Directory] ******************************* -2025-11-24T09:47:07.6189270Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:07.6189961Z changed: [kubenode-super-marlin] -2025-11-24T09:47:07.6190526Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:07.6190898Z -2025-11-24T09:47:07.6191261Z RUNNING HANDLER [etcd : Stat etcd v2 data directory] *************************** -2025-11-24T09:47:07.8830073Z ok: [kubenode-super-marlin] -2025-11-24T09:47:07.8830792Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:07.8831359Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:07.8831672Z -2025-11-24T09:47:07.8832046Z RUNNING HANDLER [etcd : Backup etcd v2 data] *********************************** -2025-11-24T09:47:08.1736764Z changed: [kubenode-super-marlin] -2025-11-24T09:47:08.1737465Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:08.1743976Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:08.1744398Z -2025-11-24T09:47:08.1744782Z RUNNING HANDLER [etcd : Backup etcd v3 data] *********************************** -2025-11-24T09:47:08.5265861Z changed: [kubenode-super-marlin] -2025-11-24T09:47:08.5266796Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:08.5267332Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:08.5267670Z -2025-11-24T09:47:08.5268014Z RUNNING HANDLER [etcd : Etcd | reload systemd] ********************************* -2025-11-24T09:47:09.2132295Z ok: [kubenode-super-marlin] -2025-11-24T09:47:09.2133438Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:09.2134024Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:09.2134370Z -2025-11-24T09:47:09.2134738Z RUNNING HANDLER [etcd : Reload etcd] ******************************************* -2025-11-24T09:47:10.3070760Z Still deploying... -2025-11-24T09:47:20.3089345Z Still deploying... -2025-11-24T09:47:29.6508067Z changed: [kubenode-super-marlin] -2025-11-24T09:47:29.6510253Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:29.6511270Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:29.6511826Z -2025-11-24T09:47:29.6512512Z RUNNING HANDLER [etcd : Wait for etcd up] ************************************** -2025-11-24T09:47:30.3109043Z Still deploying... -2025-11-24T09:47:30.3136675Z ok: [kubenode-super-marlin] -2025-11-24T09:47:30.3137642Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:30.3138312Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:30.3138670Z -2025-11-24T09:47:30.3139044Z RUNNING HANDLER [etcd : Find old etcd backups] ********************************* -2025-11-24T09:47:30.3452896Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.3686010Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:30.3686712Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:30.3687110Z -2025-11-24T09:47:30.3687513Z RUNNING HANDLER [etcd : Remove old etcd backups] ******************************* -2025-11-24T09:47:30.4277863Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.4278870Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:30.4279478Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:30.4279851Z -2025-11-24T09:47:30.4280676Z RUNNING HANDLER [etcd : Set etcd_secret_changed] ******************************* -2025-11-24T09:47:30.5478119Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:30.6234448Z -2025-11-24T09:47:30.6235265Z PLAY [Install Kubernetes nodes] ************************************************ -2025-11-24T09:47:30.6235829Z -2025-11-24T09:47:30.6236270Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:47:30.6237150Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:47:30.6238400Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:30.6239231Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:47:30.6239940Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.6240274Z -2025-11-24T09:47:30.6240666Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:47:30.6491885Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.6492270Z -2025-11-24T09:47:30.6492902Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:47:30.6977043Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.6977677Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:30.6978211Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:30.6978503Z -2025-11-24T09:47:30.6978898Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:47:30.7380173Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.7380618Z -2025-11-24T09:47:30.7381065Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:47:30.7918242Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.7919302Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:30.7919950Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:30.7920307Z -2025-11-24T09:47:30.7920826Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:47:30.8580267Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:30.8580911Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.8581411Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:30.8581711Z -2025-11-24T09:47:30.8582047Z TASK [kubernetes/node : Look up docker cgroup driver] ************************** -2025-11-24T09:47:30.8828680Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.9057209Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:30.9057869Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:30.9058178Z -2025-11-24T09:47:30.9058548Z TASK [kubernetes/node : Set kubelet_cgroup_driver_detected fact for docker] **** -2025-11-24T09:47:30.9500223Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:30.9500927Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:30.9501544Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:30.9501891Z -2025-11-24T09:47:30.9502282Z TASK [kubernetes/node : Look up crio cgroup driver] **************************** -2025-11-24T09:47:30.9784136Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:31.0024982Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.0025707Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:31.0026065Z -2025-11-24T09:47:31.0026468Z TASK [kubernetes/node : Set kubelet_cgroup_driver_detected fact for crio] ****** -2025-11-24T09:47:31.0390418Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:31.0620440Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.0621059Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:31.0621364Z -2025-11-24T09:47:31.0621715Z TASK [kubernetes/node : Set kubelet_cgroup_driver_detected fact for containerd] *** -2025-11-24T09:47:31.1308890Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:31.1309443Z ok: [kubenode-super-marlin] -2025-11-24T09:47:31.1309933Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.1310209Z -2025-11-24T09:47:31.1310544Z TASK [kubernetes/node : Set kubelet_cgroup_driver] ***************************** -2025-11-24T09:47:31.2084308Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:31.2085231Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.2085703Z ok: [kubenode-super-marlin] -2025-11-24T09:47:31.2085956Z -2025-11-24T09:47:31.2086282Z TASK [kubernetes/node : Set kubelet_cgroups options when cgroupfs is used] ***** -2025-11-24T09:47:31.2541940Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:31.2542840Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.2543429Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:31.2543745Z -2025-11-24T09:47:31.2544139Z TASK [kubernetes/node : Set kubelet_config_extra_args options when cgroupfs is used] *** -2025-11-24T09:47:31.2822364Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:31.3037811Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.3038514Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:31.3038870Z -2025-11-24T09:47:31.3039262Z TASK [kubernetes/node : Os specific vars] ************************************** -2025-11-24T09:47:31.3737302Z ok: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-22.yml) -2025-11-24T09:47:31.3738845Z ok: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-22.yml) -2025-11-24T09:47:31.3740303Z ok: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/vars/ubuntu-22.yml) -2025-11-24T09:47:31.3741123Z -2025-11-24T09:47:31.3741550Z TASK [kubernetes/node : Pre-upgrade | check if kubelet container exists] ******* -2025-11-24T09:47:31.7938162Z ok: [kubenode-super-marlin] -2025-11-24T09:47:31.7938826Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:31.7939381Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.7939705Z -2025-11-24T09:47:31.7940110Z TASK [kubernetes/node : Pre-upgrade | copy /var/lib/cni from kubelet] ********** -2025-11-24T09:47:31.8433522Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:31.8434104Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.8434629Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:31.8434936Z -2025-11-24T09:47:31.8435391Z TASK [kubernetes/node : Pre-upgrade | ensure kubelet container service is stopped if using host deployment] *** -2025-11-24T09:47:31.8761127Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:31.8971174Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.8971752Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:31.8972398Z -2025-11-24T09:47:31.8973039Z TASK [kubernetes/node : Pre-upgrade | ensure kubelet container is removed if using host deployment] *** -2025-11-24T09:47:31.9421250Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:31.9421944Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:31.9422567Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:31.9423147Z -2025-11-24T09:47:31.9423544Z TASK [kubernetes/node : Ensure /var/lib/cni exists] **************************** -2025-11-24T09:47:32.2242475Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:32.2243544Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:32.2244148Z changed: [kubenode-super-marlin] -2025-11-24T09:47:32.2244484Z -2025-11-24T09:47:32.2244886Z TASK [kubernetes/node : Install | Copy kubeadm binary from download dir] ******* -2025-11-24T09:47:32.2892461Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:32.2893323Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:32.2893877Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:32.2894188Z -2025-11-24T09:47:32.2894523Z TASK [kubernetes/node : Install | Copy kubelet binary from download dir] ******* -2025-11-24T09:47:33.3745440Z changed: [kubenode-super-marlin] -2025-11-24T09:47:33.3746143Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.3746749Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:33.3747078Z -2025-11-24T09:47:33.3747487Z TASK [kubernetes/node : Haproxy | Cleanup potentially deployed haproxy] ******** -2025-11-24T09:47:33.4131410Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.4357652Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.4358266Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.4358995Z -2025-11-24T09:47:33.4359358Z TASK [kubernetes/node : Nginx-proxy | Make nginx directory] ******************** -2025-11-24T09:47:33.4860386Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.4860961Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.4861507Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.4861799Z -2025-11-24T09:47:33.4862163Z TASK [kubernetes/node : Nginx-proxy | Write nginx-proxy configuration] ********* -2025-11-24T09:47:33.5287256Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.5287844Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.5288752Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.5289047Z -2025-11-24T09:47:33.5289394Z TASK [kubernetes/node : Nginx-proxy | Get checksum from config] **************** -2025-11-24T09:47:33.5848729Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.5849384Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.5850019Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.5850364Z -2025-11-24T09:47:33.5850783Z TASK [kubernetes/node : Nginx-proxy | Write static pod] ************************ -2025-11-24T09:47:33.6307493Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.6308225Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.6308879Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.6309237Z -2025-11-24T09:47:33.6309670Z TASK [kubernetes/node : Haproxy | Cleanup potentially deployed nginx-proxy] **** -2025-11-24T09:47:33.6863485Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.6864098Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.6864651Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.6864946Z -2025-11-24T09:47:33.6865280Z TASK [kubernetes/node : Haproxy | Make haproxy directory] ********************** -2025-11-24T09:47:33.7373787Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.7374475Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.7375076Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.7375456Z -2025-11-24T09:47:33.7375878Z TASK [kubernetes/node : Haproxy | Write haproxy configuration] ***************** -2025-11-24T09:47:33.7645052Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.7905034Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.7905736Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.7906091Z -2025-11-24T09:47:33.7906479Z TASK [kubernetes/node : Haproxy | Get checksum from config] ******************** -2025-11-24T09:47:33.8407387Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.8408120Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.8408770Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.8409148Z -2025-11-24T09:47:33.8409564Z TASK [kubernetes/node : Haproxy | Write static pod] **************************** -2025-11-24T09:47:33.8918286Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:33.8918856Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:33.8919401Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:33.8919693Z -2025-11-24T09:47:33.8920050Z TASK [kubernetes/node : Ensure nodePort range is reserved] ********************* -2025-11-24T09:47:35.3537620Z changed: [kubenode-super-marlin] -2025-11-24T09:47:35.3538311Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:35.3538893Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:35.3539282Z -2025-11-24T09:47:35.3539684Z TASK [kubernetes/node : Verify if br_netfilter module exists] ****************** -2025-11-24T09:47:35.6242068Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:35.6243045Z ok: [kubenode-super-marlin] -2025-11-24T09:47:35.6243633Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:35.6244012Z -2025-11-24T09:47:35.6244450Z TASK [kubernetes/node : Verify br_netfilter module path exists] **************** -2025-11-24T09:47:36.0787897Z ok: [kubenode-renewed-asp] => (item=/etc/modules-load.d) -2025-11-24T09:47:36.0788784Z ok: [kubenode-teaching-gobbler] => (item=/etc/modules-load.d) -2025-11-24T09:47:36.0789575Z ok: [kubenode-super-marlin] => (item=/etc/modules-load.d) -2025-11-24T09:47:36.0790285Z ok: [kubenode-teaching-gobbler] => (item=/etc/modprobe.d) -2025-11-24T09:47:36.0791421Z ok: [kubenode-super-marlin] => (item=/etc/modprobe.d) -2025-11-24T09:47:36.0792172Z ok: [kubenode-renewed-asp] => (item=/etc/modprobe.d) -2025-11-24T09:47:36.0792579Z -2025-11-24T09:47:36.0793227Z TASK [kubernetes/node : Enable br_netfilter module] **************************** -2025-11-24T09:47:36.5842124Z changed: [kubenode-super-marlin] -2025-11-24T09:47:36.5843133Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:36.5843726Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:36.5844026Z -2025-11-24T09:47:36.5844654Z TASK [kubernetes/node : Persist br_netfilter module] *************************** -2025-11-24T09:47:37.1129759Z changed: [kubenode-super-marlin] -2025-11-24T09:47:37.1130361Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:37.1130842Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:37.1131168Z -2025-11-24T09:47:37.1131518Z TASK [kubernetes/node : Check if bridge-nf-call-iptables key exists] *********** -2025-11-24T09:47:37.3401488Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:37.3402178Z ok: [kubenode-super-marlin] -2025-11-24T09:47:37.3403034Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:37.3403371Z -2025-11-24T09:47:37.3403772Z TASK [kubernetes/node : Enable bridge-nf-call tables] ************************** -2025-11-24T09:47:39.0107552Z changed: [kubenode-renewed-asp] => (item=net.bridge.bridge-nf-call-iptables) -2025-11-24T09:47:39.0108663Z changed: [kubenode-teaching-gobbler] => (item=net.bridge.bridge-nf-call-iptables) -2025-11-24T09:47:39.0109696Z changed: [kubenode-super-marlin] => (item=net.bridge.bridge-nf-call-iptables) -2025-11-24T09:47:39.0110710Z changed: [kubenode-super-marlin] => (item=net.bridge.bridge-nf-call-arptables) -2025-11-24T09:47:39.0111683Z changed: [kubenode-renewed-asp] => (item=net.bridge.bridge-nf-call-arptables) -2025-11-24T09:47:39.0112838Z changed: [kubenode-renewed-asp] => (item=net.bridge.bridge-nf-call-ip6tables) -2025-11-24T09:47:39.0113848Z changed: [kubenode-super-marlin] => (item=net.bridge.bridge-nf-call-ip6tables) -2025-11-24T09:47:39.0114840Z changed: [kubenode-teaching-gobbler] => (item=net.bridge.bridge-nf-call-arptables) -2025-11-24T09:47:39.0115850Z changed: [kubenode-teaching-gobbler] => (item=net.bridge.bridge-nf-call-ip6tables) -2025-11-24T09:47:39.0116425Z -2025-11-24T09:47:39.0116828Z TASK [kubernetes/node : Modprobe Kernel Module for IPVS] *********************** -2025-11-24T09:47:40.3124238Z Still deploying... -2025-11-24T09:47:40.3448469Z changed: [kubenode-super-marlin] => (item=ip_vs) -2025-11-24T09:47:40.3449142Z changed: [kubenode-teaching-gobbler] => (item=ip_vs) -2025-11-24T09:47:40.3449772Z changed: [kubenode-renewed-asp] => (item=ip_vs) -2025-11-24T09:47:40.3450349Z changed: [kubenode-renewed-asp] => (item=ip_vs_rr) -2025-11-24T09:47:40.3450914Z changed: [kubenode-super-marlin] => (item=ip_vs_rr) -2025-11-24T09:47:40.3451494Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_rr) -2025-11-24T09:47:40.3452084Z changed: [kubenode-renewed-asp] => (item=ip_vs_wrr) -2025-11-24T09:47:40.3452897Z changed: [kubenode-super-marlin] => (item=ip_vs_wrr) -2025-11-24T09:47:40.3453513Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_wrr) -2025-11-24T09:47:40.3454111Z changed: [kubenode-renewed-asp] => (item=ip_vs_sh) -2025-11-24T09:47:40.3454687Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_sh) -2025-11-24T09:47:40.3455264Z changed: [kubenode-super-marlin] => (item=ip_vs_sh) -2025-11-24T09:47:40.3455855Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_wlc) -2025-11-24T09:47:40.3456453Z changed: [kubenode-renewed-asp] => (item=ip_vs_wlc) -2025-11-24T09:47:40.3457017Z changed: [kubenode-super-marlin] => (item=ip_vs_wlc) -2025-11-24T09:47:40.3457603Z changed: [kubenode-teaching-gobbler] => (item=ip_vs_lc) -2025-11-24T09:47:40.3458182Z changed: [kubenode-renewed-asp] => (item=ip_vs_lc) -2025-11-24T09:47:40.3458737Z changed: [kubenode-super-marlin] => (item=ip_vs_lc) -2025-11-24T09:47:40.3459068Z -2025-11-24T09:47:40.3459395Z TASK [kubernetes/node : Modprobe conntrack module] ***************************** -2025-11-24T09:47:40.6050120Z changed: [kubenode-renewed-asp] => (item=nf_conntrack) -2025-11-24T09:47:40.6052927Z fatal: [kubenode-renewed-asp]: FAILED! => {"msg": "The conditional check '(modprobe_conntrack_module|default({'rc': 1})).rc != 0' failed. The error was: error while evaluating conditional ((modprobe_conntrack_module|default({'rc': 1})).rc != 0): 'dict object' has no attribute 'rc'. 'dict object' has no attribute 'rc'\n\nThe error appears to be in '/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml': line 126, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- name: Modprobe conntrack module\n ^ here\n"} -2025-11-24T09:47:40.6055633Z ...ignoring -2025-11-24T09:47:40.6056103Z changed: [kubenode-super-marlin] => (item=nf_conntrack) -2025-11-24T09:47:40.6056734Z changed: [kubenode-teaching-gobbler] => (item=nf_conntrack) -2025-11-24T09:47:40.6059221Z fatal: [kubenode-super-marlin]: FAILED! => {"msg": "The conditional check '(modprobe_conntrack_module|default({'rc': 1})).rc != 0' failed. The error was: error while evaluating conditional ((modprobe_conntrack_module|default({'rc': 1})).rc != 0): 'dict object' has no attribute 'rc'. 'dict object' has no attribute 'rc'\n\nThe error appears to be in '/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml': line 126, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- name: Modprobe conntrack module\n ^ here\n"} -2025-11-24T09:47:40.6061416Z ...ignoring -2025-11-24T09:47:40.6063667Z fatal: [kubenode-teaching-gobbler]: FAILED! => {"msg": "The conditional check '(modprobe_conntrack_module|default({'rc': 1})).rc != 0' failed. The error was: error while evaluating conditional ((modprobe_conntrack_module|default({'rc': 1})).rc != 0): 'dict object' has no attribute 'rc'. 'dict object' has no attribute 'rc'\n\nThe error appears to be in '/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/node/tasks/main.yml': line 126, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- name: Modprobe conntrack module\n ^ here\n"} -2025-11-24T09:47:40.6065836Z ...ignoring -2025-11-24T09:47:40.6066036Z -2025-11-24T09:47:40.6066354Z TASK [kubernetes/node : Check cloud provider credentials] ********************** -2025-11-24T09:47:40.6588192Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:40.6588767Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:40.6589309Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:40.6589601Z -2025-11-24T09:47:40.6589941Z TASK [kubernetes/node : Test if openstack_cacert is a base64 string] *********** -2025-11-24T09:47:40.7173587Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:40.7174241Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:40.7174808Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:40.7175168Z -2025-11-24T09:47:40.7175542Z TASK [kubernetes/node : Write cacert file] ************************************* -2025-11-24T09:47:40.7712009Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:40.7712884Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:40.7713445Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:40.7713740Z -2025-11-24T09:47:40.7714066Z TASK [kubernetes/node : Write cloud-config] ************************************ -2025-11-24T09:47:40.8219210Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:40.8219905Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:40.8220535Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:40.8220919Z -2025-11-24T09:47:40.8221320Z TASK [kubernetes/node : Set kubelet api version to v1beta1] ******************** -2025-11-24T09:47:40.8844884Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:40.8845534Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:40.8853459Z ok: [kubenode-super-marlin] -2025-11-24T09:47:40.8853882Z -2025-11-24T09:47:40.8854248Z TASK [kubernetes/node : Write kubelet environment config file (kubeadm)] ******* -2025-11-24T09:47:41.4414991Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:41.4415743Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:41.4416347Z changed: [kubenode-super-marlin] -2025-11-24T09:47:41.4416704Z -2025-11-24T09:47:41.4417120Z TASK [kubernetes/node : Write kubelet config file] ***************************** -2025-11-24T09:47:42.0604067Z changed: [kubenode-super-marlin] -2025-11-24T09:47:42.0604762Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:42.0605294Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:42.0605622Z -2025-11-24T09:47:42.0606350Z TASK [kubernetes/node : Write kubelet systemd init file] *********************** -2025-11-24T09:47:42.6581120Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:42.6581820Z changed: [kubenode-super-marlin] -2025-11-24T09:47:42.6582307Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:42.6582603Z -2025-11-24T09:47:42.6583258Z TASK [kubernetes/node : Flush_handlers and reload-systemd] ********************* -2025-11-24T09:47:42.6583700Z -2025-11-24T09:47:42.6584051Z TASK [kubernetes/node : Flush_handlers and reload-systemd] ********************* -2025-11-24T09:47:42.6584463Z -2025-11-24T09:47:42.6584765Z TASK [kubernetes/node : Flush_handlers and reload-systemd] ********************* -2025-11-24T09:47:42.6585161Z -2025-11-24T09:47:42.6585465Z RUNNING HANDLER [kubernetes/node : Kubelet | reload systemd] ******************* -2025-11-24T09:47:43.3451790Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:43.3452877Z ok: [kubenode-super-marlin] -2025-11-24T09:47:43.3453482Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:43.3453833Z -2025-11-24T09:47:43.3454244Z RUNNING HANDLER [kubernetes/node : Kubelet | restart kubelet] ****************** -2025-11-24T09:47:43.7496411Z changed: [kubenode-super-marlin] -2025-11-24T09:47:43.7497127Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:43.7497682Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:43.7498005Z -2025-11-24T09:47:43.7498345Z TASK [kubernetes/node : Enable kubelet] **************************************** -2025-11-24T09:47:44.5025461Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:44.5026084Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:44.5026599Z changed: [kubenode-super-marlin] -2025-11-24T09:47:44.5026901Z -2025-11-24T09:47:44.5027260Z RUNNING HANDLER [kubernetes/node : Kubelet | restart kubelet] ****************** -2025-11-24T09:47:44.9644978Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:44.9645640Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:44.9646299Z changed: [kubenode-super-marlin] -2025-11-24T09:47:44.9646637Z -2025-11-24T09:47:44.9647032Z PLAY [Install the control plane] *********************************************** -2025-11-24T09:47:44.9647516Z -2025-11-24T09:47:44.9647911Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:47:45.0663647Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:47:45.0664417Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:45.0665146Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:47:45.0665738Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.0666011Z -2025-11-24T09:47:45.0666332Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:47:45.1162928Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.1163400Z -2025-11-24T09:47:45.1163813Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:47:45.1603170Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.1994123Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:45.1994869Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:45.1995293Z -2025-11-24T09:47:45.1995742Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:47:45.2315123Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.2315644Z -2025-11-24T09:47:45.2316041Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:47:45.2982957Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.2983749Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:45.2984390Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:45.2984767Z -2025-11-24T09:47:45.2985295Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:47:45.3824993Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.3825894Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:45.3826499Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:45.3827218Z -2025-11-24T09:47:45.3827759Z TASK [kubernetes/tokens : Check_tokens | check if the tokens have already been generated on first master] *** -2025-11-24T09:47:45.4208707Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.4209171Z -2025-11-24T09:47:45.4209624Z TASK [kubernetes/tokens : Check_tokens | Set default value for 'sync_tokens' and 'gen_tokens' to false] *** -2025-11-24T09:47:45.4718572Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.4719330Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:45.4719850Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:45.4720170Z -2025-11-24T09:47:45.4720554Z TASK [kubernetes/tokens : Check_tokens | Set 'sync_tokens' and 'gen_tokens' to true] *** -2025-11-24T09:47:45.4922204Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.4923098Z -2025-11-24T09:47:45.4923581Z TASK [kubernetes/tokens : Check tokens | check if a cert already exists] ******* -2025-11-24T09:47:45.5439524Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.5440442Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:45.5441111Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:45.5441488Z -2025-11-24T09:47:45.5441881Z TASK [kubernetes/tokens : Check_tokens | Set 'sync_tokens' to true] ************ -2025-11-24T09:47:45.6892255Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.6892937Z -2025-11-24T09:47:45.6893341Z TASK [kubernetes/tokens : Make sure the tokens directory exits] **************** -2025-11-24T09:47:45.7423581Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.7424190Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:45.7424718Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:45.7425133Z -2025-11-24T09:47:45.7425546Z TASK [kubernetes/tokens : Gen_tokens | copy tokens generation script] ********** -2025-11-24T09:47:45.7861249Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.7862006Z -2025-11-24T09:47:45.7862360Z TASK [kubernetes/tokens : Gen_tokens | generate tokens for master components] *** -2025-11-24T09:47:45.8363068Z skipping: [kubenode-super-marlin] => (item=['system:kubectl', 'kubenode-super-marlin']) -2025-11-24T09:47:45.8364173Z skipping: [kubenode-super-marlin] => (item=['system:kubectl', 'kubenode-renewed-asp']) -2025-11-24T09:47:45.8365178Z skipping: [kubenode-super-marlin] => (item=['system:kubectl', 'kubenode-teaching-gobbler']) -2025-11-24T09:47:45.8365974Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.8366329Z -2025-11-24T09:47:45.8366760Z TASK [kubernetes/tokens : Gen_tokens | generate tokens for node components] **** -2025-11-24T09:47:45.8901631Z skipping: [kubenode-super-marlin] => (item=['system:kubelet', 'kubenode-super-marlin']) -2025-11-24T09:47:45.8903074Z skipping: [kubenode-super-marlin] => (item=['system:kubelet', 'kubenode-renewed-asp']) -2025-11-24T09:47:45.8904100Z skipping: [kubenode-super-marlin] => (item=['system:kubelet', 'kubenode-teaching-gobbler']) -2025-11-24T09:47:45.8904926Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.8905284Z -2025-11-24T09:47:45.8905682Z TASK [kubernetes/tokens : Gen_tokens | Get list of tokens from first master] *** -2025-11-24T09:47:45.9249004Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.9249509Z -2025-11-24T09:47:45.9249874Z TASK [kubernetes/tokens : Gen_tokens | Gather tokens] ************************** -2025-11-24T09:47:45.9607620Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:45.9608234Z -2025-11-24T09:47:45.9608648Z TASK [kubernetes/tokens : Gen_tokens | Copy tokens on masters] ***************** -2025-11-24T09:47:45.9910011Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:46.0276318Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:46.0277015Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:46.0277347Z -2025-11-24T09:47:46.0277660Z TASK [adduser : User | Create User Group] ************************************** -2025-11-24T09:47:46.0556550Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:46.0767290Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:46.0768208Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:46.0768608Z -2025-11-24T09:47:46.0769304Z TASK [adduser : User | Create User] ******************************************** -2025-11-24T09:47:46.0989853Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:46.1440128Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:46.1440825Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:46.1441147Z -2025-11-24T09:47:46.1441582Z TASK [kubernetes/control-plane : Pre-upgrade | Delete master manifests if etcd secrets changed] *** -2025-11-24T09:47:46.1755357Z skipping: [kubenode-super-marlin] => (item=kube-apiserver) -2025-11-24T09:47:46.1756237Z skipping: [kubenode-super-marlin] => (item=kube-controller-manager) -2025-11-24T09:47:46.1756942Z skipping: [kubenode-super-marlin] => (item=kube-scheduler) -2025-11-24T09:47:46.8187459Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:46.8188262Z skipping: [kubenode-teaching-gobbler] => (item=kube-apiserver) -2025-11-24T09:47:46.8189076Z skipping: [kubenode-teaching-gobbler] => (item=kube-controller-manager) -2025-11-24T09:47:46.8189828Z skipping: [kubenode-teaching-gobbler] => (item=kube-scheduler) -2025-11-24T09:47:46.8190483Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:46.8191052Z ok: [kubenode-renewed-asp] => (item=kube-apiserver) -2025-11-24T09:47:46.8191689Z ok: [kubenode-renewed-asp] => (item=kube-controller-manager) -2025-11-24T09:47:46.8192336Z ok: [kubenode-renewed-asp] => (item=kube-scheduler) -2025-11-24T09:47:46.8192923Z -2025-11-24T09:47:46.8193356Z TASK [kubernetes/control-plane : Pre-upgrade | Delete master containers forcefully] *** -2025-11-24T09:47:46.8383449Z skipping: [kubenode-super-marlin] => (item=kube-apiserver) -2025-11-24T09:47:46.8569369Z skipping: [kubenode-super-marlin] => (item=kube-controller-manager) -2025-11-24T09:47:46.8571169Z skipping: [kubenode-super-marlin] => (item=kube-scheduler) -2025-11-24T09:47:46.8998626Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:46.8999777Z skipping: [kubenode-renewed-asp] => (item=kube-apiserver) -2025-11-24T09:47:46.9000621Z skipping: [kubenode-renewed-asp] => (item=kube-controller-manager) -2025-11-24T09:47:46.9001442Z skipping: [kubenode-renewed-asp] => (item=kube-scheduler) -2025-11-24T09:47:46.9002121Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:46.9003190Z skipping: [kubenode-teaching-gobbler] => (item=kube-apiserver) -2025-11-24T09:47:46.9004340Z skipping: [kubenode-teaching-gobbler] => (item=kube-controller-manager) -2025-11-24T09:47:46.9005188Z skipping: [kubenode-teaching-gobbler] => (item=kube-scheduler) -2025-11-24T09:47:46.9005919Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:46.9006305Z -2025-11-24T09:47:46.9006652Z TASK [kubernetes/control-plane : Create webhook token auth config] ************* -2025-11-24T09:47:46.9731756Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:46.9732451Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:46.9733362Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:46.9733768Z -2025-11-24T09:47:46.9734184Z TASK [kubernetes/control-plane : Create webhook authorization config] ********** -2025-11-24T09:47:46.9968848Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:47.0191975Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:47.0192954Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:47.0193356Z -2025-11-24T09:47:47.0193775Z TASK [kubernetes/control-plane : Create kube-scheduler config] ***************** -2025-11-24T09:47:47.5656508Z changed: [kubenode-super-marlin] -2025-11-24T09:47:47.5657185Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:47.5658210Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:47.5658613Z -2025-11-24T09:47:47.5659113Z TASK [kubernetes/control-plane : Check if secret for encrypting data at rest already exist] *** -2025-11-24T09:47:47.6030614Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:47.6306471Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:47.6307139Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:47.6307550Z -2025-11-24T09:47:47.6307972Z TASK [kubernetes/control-plane : Slurp secrets_encryption file if it exists] *** -2025-11-24T09:47:47.6612339Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:47.6880388Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:47.6880969Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:47.6881309Z -2025-11-24T09:47:47.6881737Z TASK [kubernetes/control-plane : Base 64 Decode slurped secrets_encryption.yaml file] *** -2025-11-24T09:47:47.7437577Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:47.7438263Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:47.7438901Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:47.7439282Z -2025-11-24T09:47:47.7439758Z TASK [kubernetes/control-plane : Extract secret value from secrets_encryption.yaml] *** -2025-11-24T09:47:47.7970354Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:47.7971088Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:47.7972128Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:47.7972967Z -2025-11-24T09:47:47.7973413Z TASK [kubernetes/control-plane : Set kube_encrypt_token across master nodes] *** -2025-11-24T09:47:47.8227702Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:47:47.8750817Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:47:47.8751634Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:47:47.8752434Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:47.8753388Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:47.8754030Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:47:47.8754786Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:47.8755575Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) -2025-11-24T09:47:47.8756249Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:47.8756887Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) -2025-11-24T09:47:47.8758016Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:47.8758714Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:47.8759046Z -2025-11-24T09:47:47.8759451Z TASK [kubernetes/control-plane : Write secrets for encrypting secret data at rest] *** -2025-11-24T09:47:47.9203798Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:47.9204490Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:47.9205108Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:47.9205499Z -2025-11-24T09:47:47.9205997Z TASK [kubernetes/control-plane : Install | Copy kubectl binary from download dir] *** -2025-11-24T09:47:48.7693778Z changed: [kubenode-super-marlin] -2025-11-24T09:47:48.7694458Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:48.7695071Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:48.7695396Z -2025-11-24T09:47:48.7695817Z TASK [kubernetes/control-plane : Install kubectl bash completion] ************** -2025-11-24T09:47:49.1306321Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:49.1307058Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:49.1307648Z changed: [kubenode-super-marlin] -2025-11-24T09:47:49.1308002Z -2025-11-24T09:47:49.1308468Z TASK [kubernetes/control-plane : Set kubectl bash completion file permissions] *** -2025-11-24T09:47:49.4043473Z changed: [kubenode-super-marlin] -2025-11-24T09:47:49.4044043Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:49.4044526Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:49.4044832Z -2025-11-24T09:47:49.4045184Z TASK [kubernetes/control-plane : Set bash alias for kubectl] ******************* -2025-11-24T09:47:49.4625954Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:49.4626720Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:49.4627326Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:49.4627705Z -2025-11-24T09:47:49.4628229Z TASK [kubernetes/control-plane : Check which kube-control nodes are already members of the cluster] *** -2025-11-24T09:47:49.7896248Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/kubectl", "get", "nodes", "--selector=node-role.kubernetes.io/control-plane", "-o", "json"], "delta": "0:00:00.059800", "end": "2025-11-24 09:47:48.650806", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:47:48.591006", "stderr": "E1124 09:47:48.643420 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.643754 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.645306 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.645584 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.646945 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nThe connection to the server localhost:8080 was refused - did you specify the right host or port?", "stderr_lines": ["E1124 09:47:48.643420 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.643754 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.645306 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.645584 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.646945 8505 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "The connection to the server localhost:8080 was refused - did you specify the right host or port?"], "stdout": "", "stdout_lines": []} -2025-11-24T09:47:49.7904910Z ...ignoring -2025-11-24T09:47:49.7913088Z fatal: [kubenode-teaching-gobbler]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/kubectl", "get", "nodes", "--selector=node-role.kubernetes.io/control-plane", "-o", "json"], "delta": "0:00:00.060437", "end": "2025-11-24 09:47:49.048594", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:47:48.988157", "stderr": "E1124 09:47:49.041843 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:49.042159 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:49.043564 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:49.043843 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:49.045153 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nThe connection to the server localhost:8080 was refused - did you specify the right host or port?", "stderr_lines": ["E1124 09:47:49.041843 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:49.042159 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:49.043564 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:49.043843 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:49.045153 8502 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "The connection to the server localhost:8080 was refused - did you specify the right host or port?"], "stdout": "", "stdout_lines": []} -2025-11-24T09:47:49.7921076Z ...ignoring -2025-11-24T09:47:49.7928288Z fatal: [kubenode-renewed-asp]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/kubectl", "get", "nodes", "--selector=node-role.kubernetes.io/control-plane", "-o", "json"], "delta": "0:00:00.070339", "end": "2025-11-24 09:47:48.503469", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:47:48.433130", "stderr": "E1124 09:47:48.495017 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.495477 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.497064 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.497506 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nE1124 09:47:48.499128 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused\nThe connection to the server localhost:8080 was refused - did you specify the right host or port?", "stderr_lines": ["E1124 09:47:48.495017 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.495477 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.497064 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.497506 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "E1124 09:47:48.499128 8341 memcache.go:265] couldn't get current server API group list: Get \"http://localhost:8080/api?timeout=32s\": dial tcp 127.0.0.1:8080: connect: connection refused", "The connection to the server localhost:8080 was refused - did you specify the right host or port?"], "stdout": "", "stdout_lines": []} -2025-11-24T09:47:49.7935798Z ...ignoring -2025-11-24T09:47:49.7936009Z -2025-11-24T09:47:49.7937014Z TASK [kubernetes/control-plane : Set fact joined_control_planes] *************** -2025-11-24T09:47:49.8418145Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:47:49.8419201Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:47:49.8420115Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:49.8420883Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:49.8421256Z -2025-11-24T09:47:49.8422030Z TASK [kubernetes/control-plane : Set fact first_kube_control_plane] ************ -2025-11-24T09:47:49.9044030Z ok: [kubenode-super-marlin] -2025-11-24T09:47:49.9045158Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:49.9045795Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:49.9046120Z -2025-11-24T09:47:49.9046558Z TASK [kubernetes/control-plane : Install OIDC certificate] ********************* -2025-11-24T09:47:49.9560858Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:49.9561801Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:49.9562392Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:49.9563094Z -2025-11-24T09:47:49.9563549Z TASK [kubernetes/control-plane : Kubeadm | Check if kubeadm has already run] *** -2025-11-24T09:47:50.2159386Z ok: [kubenode-super-marlin] -2025-11-24T09:47:50.2160345Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:50.2160973Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.2161344Z -2025-11-24T09:47:50.2161830Z TASK [kubernetes/control-plane : Backup old certs and keys] ******************** -2025-11-24T09:47:50.2488395Z skipping: [kubenode-super-marlin] => (item=apiserver.crt) -2025-11-24T09:47:50.2489441Z skipping: [kubenode-super-marlin] => (item=apiserver.key) -2025-11-24T09:47:50.2490124Z skipping: [kubenode-renewed-asp] => (item=apiserver.crt) -2025-11-24T09:47:50.2490876Z skipping: [kubenode-super-marlin] => (item=apiserver-kubelet-client.crt) -2025-11-24T09:47:50.2834406Z skipping: [kubenode-renewed-asp] => (item=apiserver.key) -2025-11-24T09:47:50.2835583Z skipping: [kubenode-super-marlin] => (item=apiserver-kubelet-client.key) -2025-11-24T09:47:50.2836677Z skipping: [kubenode-renewed-asp] => (item=apiserver-kubelet-client.crt) -2025-11-24T09:47:50.2837688Z skipping: [kubenode-renewed-asp] => (item=apiserver-kubelet-client.key) -2025-11-24T09:47:50.2838666Z skipping: [kubenode-super-marlin] => (item=front-proxy-client.crt) -2025-11-24T09:47:50.2839624Z skipping: [kubenode-renewed-asp] => (item=front-proxy-client.crt) -2025-11-24T09:47:50.2840778Z skipping: [kubenode-renewed-asp] => (item=front-proxy-client.key) -2025-11-24T09:47:50.2841423Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:50.2842052Z skipping: [kubenode-super-marlin] => (item=front-proxy-client.key) -2025-11-24T09:47:50.2843021Z skipping: [kubenode-teaching-gobbler] => (item=apiserver.crt) -2025-11-24T09:47:50.2843679Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:50.2844264Z skipping: [kubenode-teaching-gobbler] => (item=apiserver.key) -2025-11-24T09:47:50.2845049Z skipping: [kubenode-teaching-gobbler] => (item=apiserver-kubelet-client.crt) -2025-11-24T09:47:50.2845905Z skipping: [kubenode-teaching-gobbler] => (item=apiserver-kubelet-client.key) -2025-11-24T09:47:50.2846730Z skipping: [kubenode-teaching-gobbler] => (item=front-proxy-client.crt) -2025-11-24T09:47:50.2847506Z skipping: [kubenode-teaching-gobbler] => (item=front-proxy-client.key) -2025-11-24T09:47:50.2848187Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.2848517Z -2025-11-24T09:47:50.2848872Z TASK [kubernetes/control-plane : Backup old confs] ***************************** -2025-11-24T09:47:50.3133152Z skipping: [kubenode-super-marlin] => (item=admin.conf) -2025-11-24T09:47:50.3134132Z skipping: [kubenode-super-marlin] => (item=controller-manager.conf) -2025-11-24T09:47:50.3134880Z skipping: [kubenode-super-marlin] => (item=kubelet.conf) -2025-11-24T09:47:50.3135593Z skipping: [kubenode-super-marlin] => (item=scheduler.conf) -2025-11-24T09:47:50.3136260Z skipping: [kubenode-renewed-asp] => (item=admin.conf) -2025-11-24T09:47:50.3136965Z skipping: [kubenode-renewed-asp] => (item=controller-manager.conf) -2025-11-24T09:47:50.3140978Z Still deploying... -2025-11-24T09:47:50.3487530Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:50.3488511Z skipping: [kubenode-renewed-asp] => (item=kubelet.conf) -2025-11-24T09:47:50.3489282Z skipping: [kubenode-renewed-asp] => (item=scheduler.conf) -2025-11-24T09:47:50.3489969Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:50.3490629Z skipping: [kubenode-teaching-gobbler] => (item=admin.conf) -2025-11-24T09:47:50.3497661Z skipping: [kubenode-teaching-gobbler] => (item=controller-manager.conf) -2025-11-24T09:47:50.3498830Z skipping: [kubenode-teaching-gobbler] => (item=kubelet.conf) -2025-11-24T09:47:50.3499569Z skipping: [kubenode-teaching-gobbler] => (item=scheduler.conf) -2025-11-24T09:47:50.3500228Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.3500562Z -2025-11-24T09:47:50.3500933Z TASK [kubernetes/control-plane : Kubeadm | aggregate all SANs] ***************** -2025-11-24T09:47:50.5838178Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.5838854Z ok: [kubenode-super-marlin] -2025-11-24T09:47:50.5839425Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:50.5839742Z -2025-11-24T09:47:50.5840172Z TASK [kubernetes/control-plane : Create audit-policy directory] **************** -2025-11-24T09:47:50.6354778Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:50.6808704Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:50.6809297Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.6809630Z -2025-11-24T09:47:50.6809984Z TASK [kubernetes/control-plane : Write api audit policy yaml] ****************** -2025-11-24T09:47:50.6810658Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:50.6811155Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:50.6811654Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.6811973Z -2025-11-24T09:47:50.6812324Z TASK [kubernetes/control-plane : Write api audit webhook config yaml] ********** -2025-11-24T09:47:50.7306718Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:50.7307439Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:50.7308122Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.7308510Z -2025-11-24T09:47:50.7308884Z TASK [kubernetes/control-plane : Create apiserver tracing config directory] **** -2025-11-24T09:47:50.7756091Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:50.7756797Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:50.7757397Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.7758151Z -2025-11-24T09:47:50.7758577Z TASK [kubernetes/control-plane : Write apiserver tracing config yaml] ********** -2025-11-24T09:47:50.8003682Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:50.8264897Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:50.8265596Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.8265923Z -2025-11-24T09:47:50.8266272Z TASK [kubernetes/control-plane : Set kubeadm_config_api_fqdn define] *********** -2025-11-24T09:47:50.8750337Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:50.8751224Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:50.8751921Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.8752341Z -2025-11-24T09:47:50.8753082Z TASK [kubernetes/control-plane : Set kubeadm api version to v1beta3] *********** -2025-11-24T09:47:50.9366055Z ok: [kubenode-super-marlin] -2025-11-24T09:47:50.9366678Z ok: [kubenode-renewed-asp] -2025-11-24T09:47:50.9367187Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:47:50.9367510Z -2025-11-24T09:47:50.9367902Z TASK [kubernetes/control-plane : Kubeadm | Create kubeadm config] ************** -2025-11-24T09:47:51.6715342Z changed: [kubenode-super-marlin] -2025-11-24T09:47:51.6716098Z changed: [kubenode-renewed-asp] -2025-11-24T09:47:51.6716595Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:47:51.6716909Z -2025-11-24T09:47:51.6717374Z TASK [kubernetes/control-plane : Kubeadm | Create directory to store admission control configurations] *** -2025-11-24T09:47:51.7273798Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:51.7274484Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:51.7274993Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:51.7275740Z -2025-11-24T09:47:51.7276117Z TASK [kubernetes/control-plane : Kubeadm | Push admission control config file] *** -2025-11-24T09:47:51.7832163Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:51.7833410Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:51.7834059Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:51.7834454Z -2025-11-24T09:47:51.7834893Z TASK [kubernetes/control-plane : Kubeadm | Push admission control config files] *** -2025-11-24T09:47:51.8107632Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:51.8279641Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:51.8280430Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:51.8280753Z -2025-11-24T09:47:51.8281138Z TASK [kubernetes/control-plane : Kubeadm | Configure default cluster podnodeslector] *** -2025-11-24T09:47:51.8910423Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:51.8911131Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:51.8911640Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:51.8911981Z -2025-11-24T09:47:51.8912330Z TASK [kubernetes/control-plane : Kubeadm | Check apiserver.crt SAN IPs] ******** -2025-11-24T09:47:52.0211903Z skipping: [kubenode-super-marlin] => (item=10.233.0.1) -2025-11-24T09:47:52.0213032Z skipping: [kubenode-super-marlin] => (item=127.0.0.1) -2025-11-24T09:47:52.0213779Z skipping: [kubenode-super-marlin] => (item=10.1.1.8) -2025-11-24T09:47:52.0214491Z skipping: [kubenode-super-marlin] => (item=10.1.1.4) -2025-11-24T09:47:52.0215178Z skipping: [kubenode-super-marlin] => (item=10.1.1.9) -2025-11-24T09:47:52.0215902Z skipping: [kubenode-super-marlin] => (item=192.168.122.100) -2025-11-24T09:47:52.0216597Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:52.0217257Z skipping: [kubenode-renewed-asp] => (item=10.233.0.1) -2025-11-24T09:47:52.0217974Z skipping: [kubenode-renewed-asp] => (item=127.0.0.1) -2025-11-24T09:47:52.0218682Z skipping: [kubenode-teaching-gobbler] => (item=10.233.0.1) -2025-11-24T09:47:52.0219416Z skipping: [kubenode-renewed-asp] => (item=10.1.1.8) -2025-11-24T09:47:52.0220130Z skipping: [kubenode-teaching-gobbler] => (item=127.0.0.1) -2025-11-24T09:47:52.0220833Z skipping: [kubenode-renewed-asp] => (item=10.1.1.4) -2025-11-24T09:47:52.0221520Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.8) -2025-11-24T09:47:52.0222216Z skipping: [kubenode-renewed-asp] => (item=10.1.1.9) -2025-11-24T09:47:52.0223257Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.4) -2025-11-24T09:47:52.0223838Z skipping: [kubenode-renewed-asp] => (item=192.168.122.100) -2025-11-24T09:47:52.0224409Z skipping: [kubenode-teaching-gobbler] => (item=10.1.1.9) -2025-11-24T09:47:52.0224938Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:52.0225464Z skipping: [kubenode-teaching-gobbler] => (item=192.168.122.100) -2025-11-24T09:47:52.0226025Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:52.0226323Z -2025-11-24T09:47:52.0226656Z TASK [kubernetes/control-plane : Kubeadm | Check apiserver.crt SAN hosts] ****** -2025-11-24T09:47:52.1568582Z skipping: [kubenode-super-marlin] => (item=localhost) -2025-11-24T09:47:52.1569384Z skipping: [kubenode-super-marlin] => (item=kubernetes) -2025-11-24T09:47:52.1570075Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:52.1570789Z skipping: [kubenode-teaching-gobbler] => (item=localhost) -2025-11-24T09:47:52.1571518Z skipping: [kubenode-super-marlin] => (item=lb-apiserver.kubernetes.local) -2025-11-24T09:47:52.1572227Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes) -2025-11-24T09:47:52.1573155Z skipping: [kubenode-super-marlin] => (item=kubernetes.default.svc) -2025-11-24T09:47:52.1573912Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:52.1574618Z skipping: [kubenode-super-marlin] => (item=kubernetes.default) -2025-11-24T09:47:52.1575254Z skipping: [kubenode-renewed-asp] => (item=localhost) -2025-11-24T09:47:52.1575941Z skipping: [kubenode-teaching-gobbler] => (item=lb-apiserver.kubernetes.local) -2025-11-24T09:47:52.1577123Z skipping: [kubenode-super-marlin] => (item=kubernetes.default.svc.cluster.local) -2025-11-24T09:47:52.1577831Z skipping: [kubenode-renewed-asp] => (item=kubernetes) -2025-11-24T09:47:52.1578502Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes.default.svc) -2025-11-24T09:47:52.1579208Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:47:52.1579915Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes.default) -2025-11-24T09:47:52.1580643Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:47:52.1581523Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes.default.svc.cluster.local) -2025-11-24T09:47:52.1582331Z skipping: [kubenode-renewed-asp] => (item=lb-apiserver.kubernetes.local) -2025-11-24T09:47:52.1583161Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:47:52.1583773Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:52.1584364Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) -2025-11-24T09:47:52.1585079Z skipping: [kubenode-renewed-asp] => (item=kubernetes.default.svc) -2025-11-24T09:47:52.1585758Z skipping: [kubenode-renewed-asp] => (item=kubernetes.default) -2025-11-24T09:47:52.1586445Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) -2025-11-24T09:47:52.1587032Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:52.1587644Z skipping: [kubenode-renewed-asp] => (item=kubernetes.default.svc.cluster.local) -2025-11-24T09:47:52.1588325Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:47:52.1588970Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:47:52.1589542Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:52.1589811Z -2025-11-24T09:47:52.1590143Z TASK [kubernetes/control-plane : Kubeadm | regenerate apiserver cert 1/2] ****** -2025-11-24T09:47:52.1875435Z skipping: [kubenode-super-marlin] => (item=apiserver.crt) -2025-11-24T09:47:52.1876341Z skipping: [kubenode-super-marlin] => (item=apiserver.key) -2025-11-24T09:47:52.1877006Z skipping: [kubenode-renewed-asp] => (item=apiserver.crt) -2025-11-24T09:47:52.1877641Z skipping: [kubenode-renewed-asp] => (item=apiserver.key) -2025-11-24T09:47:52.2105471Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:52.2106291Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:52.2106899Z skipping: [kubenode-teaching-gobbler] => (item=apiserver.crt) -2025-11-24T09:47:52.2107948Z skipping: [kubenode-teaching-gobbler] => (item=apiserver.key) -2025-11-24T09:47:52.2108621Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:52.2108955Z -2025-11-24T09:47:52.2109324Z TASK [kubernetes/control-plane : Kubeadm | regenerate apiserver cert 2/2] ****** -2025-11-24T09:47:52.2337747Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:52.2531652Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:52.2532604Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:52.2533295Z -2025-11-24T09:47:52.2533835Z TASK [kubernetes/control-plane : Kubeadm | Create directory to store kubeadm patches] *** -2025-11-24T09:47:52.3116545Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:52.3117319Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:52.3117990Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:52.3118322Z -2025-11-24T09:47:52.3118737Z TASK [kubernetes/control-plane : Kubeadm | Copy kubeadm patches from inventory files] *** -2025-11-24T09:47:52.3629924Z skipping: [kubenode-super-marlin] -2025-11-24T09:47:52.3630665Z skipping: [kubenode-renewed-asp] -2025-11-24T09:47:52.3631174Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:47:52.3631505Z -2025-11-24T09:47:52.3631849Z TASK [kubernetes/control-plane : Kubeadm | Initialize first master] ************ -2025-11-24T09:48:00.3159627Z Still deploying... -2025-11-24T09:48:01.6278678Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:01.6279268Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:01.6279796Z changed: [kubenode-super-marlin] -2025-11-24T09:48:01.6280079Z -2025-11-24T09:48:01.6280856Z TASK [kubernetes/control-plane : Set kubeadm certificate key] ****************** -2025-11-24T09:48:01.8208034Z skipping: [kubenode-renewed-asp] => (item=[init] Using Kubernetes version: v1.29.10) -2025-11-24T09:48:01.8209022Z skipping: [kubenode-super-marlin] => (item=[init] Using Kubernetes version: v1.29.10) -2025-11-24T09:48:01.8209915Z skipping: [kubenode-renewed-asp] => (item=[preflight] Running pre-flight checks) -2025-11-24T09:48:01.8210797Z skipping: [kubenode-super-marlin] => (item=[preflight] Running pre-flight checks) -2025-11-24T09:48:01.8211784Z skipping: [kubenode-renewed-asp] => (item=[preflight] Pulling images required for setting up a Kubernetes cluster) -2025-11-24T09:48:01.8213539Z skipping: [kubenode-super-marlin] => (item=[preflight] Pulling images required for setting up a Kubernetes cluster) -2025-11-24T09:48:01.8214731Z skipping: [kubenode-renewed-asp] => (item=[preflight] This might take a minute or two, depending on the speed of your internet connection) -2025-11-24T09:48:01.8215975Z skipping: [kubenode-super-marlin] => (item=[preflight] This might take a minute or two, depending on the speed of your internet connection) -2025-11-24T09:48:01.8217099Z skipping: [kubenode-teaching-gobbler] => (item=[init] Using Kubernetes version: v1.29.10) -2025-11-24T09:48:01.8218187Z skipping: [kubenode-renewed-asp] => (item=[preflight] You can also perform this action in beforehand using 'kubeadm config images pull') -2025-11-24T09:48:01.8219295Z skipping: [kubenode-super-marlin] => (item=[preflight] You can also perform this action in beforehand using 'kubeadm config images pull') -2025-11-24T09:48:01.8220254Z skipping: [kubenode-renewed-asp] => (item=[certs] Using certificateDir folder "/etc/kubernetes/ssl") -2025-11-24T09:48:01.8221071Z skipping: [kubenode-teaching-gobbler] => (item=[preflight] Running pre-flight checks) -2025-11-24T09:48:01.8221891Z skipping: [kubenode-super-marlin] => (item=[certs] Using certificateDir folder "/etc/kubernetes/ssl") -2025-11-24T09:48:01.8222813Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "ca" certificate and key) -2025-11-24T09:48:01.8223694Z skipping: [kubenode-teaching-gobbler] => (item=[preflight] Pulling images required for setting up a Kubernetes cluster) -2025-11-24T09:48:01.8224595Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "apiserver" certificate and key) -2025-11-24T09:48:01.8225380Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "ca" certificate and key) -2025-11-24T09:48:01.8226462Z skipping: [kubenode-teaching-gobbler] => (item=[preflight] This might take a minute or two, depending on the speed of your internet connection) -2025-11-24T09:48:01.8228344Z skipping: [kubenode-renewed-asp] => (item=[certs] apiserver serving cert is signed for DNS names [kubenode-renewed-asp kubenode-super-marlin kubenode-teaching-gobbler kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local lb-apiserver.kubernetes.local localhost] and IPs [10.233.0.1 10.1.1.8 127.0.0.1 10.1.1.4 10.1.1.9 192.168.122.100]) -2025-11-24T09:48:01.8230226Z skipping: [kubenode-teaching-gobbler] => (item=[preflight] You can also perform this action in beforehand using 'kubeadm config images pull') -2025-11-24T09:48:01.8231189Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "apiserver" certificate and key) -2025-11-24T09:48:01.8232043Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Using certificateDir folder "/etc/kubernetes/ssl") -2025-11-24T09:48:01.8233047Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "apiserver-kubelet-client" certificate and key) -2025-11-24T09:48:01.8234811Z skipping: [kubenode-super-marlin] => (item=[certs] apiserver serving cert is signed for DNS names [kubenode-renewed-asp kubenode-super-marlin kubenode-teaching-gobbler kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local lb-apiserver.kubernetes.local localhost] and IPs [10.233.0.1 10.1.1.8 127.0.0.1 10.1.1.4 10.1.1.9 192.168.122.100]) -2025-11-24T09:48:01.8236679Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "ca" certificate and key) -2025-11-24T09:48:01.8237504Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "front-proxy-ca" certificate and key) -2025-11-24T09:48:01.8238387Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "apiserver-kubelet-client" certificate and key) -2025-11-24T09:48:01.8239257Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "apiserver" certificate and key) -2025-11-24T09:48:01.8240114Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "front-proxy-client" certificate and key) -2025-11-24T09:48:01.8241037Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "front-proxy-ca" certificate and key) -2025-11-24T09:48:01.8241937Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping etcd/ca certificate authority generation) -2025-11-24T09:48:01.8243864Z skipping: [kubenode-teaching-gobbler] => (item=[certs] apiserver serving cert is signed for DNS names [kubenode-renewed-asp kubenode-super-marlin kubenode-teaching-gobbler kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local lb-apiserver.kubernetes.local localhost] and IPs [10.233.0.1 10.1.1.8 127.0.0.1 10.1.1.4 10.1.1.9 192.168.122.100]) -2025-11-24T09:48:01.8245618Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "front-proxy-client" certificate and key) -2025-11-24T09:48:01.8246522Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping etcd/server certificate generation) -2025-11-24T09:48:01.8247475Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "apiserver-kubelet-client" certificate and key) -2025-11-24T09:48:01.8248432Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping etcd/ca certificate authority generation) -2025-11-24T09:48:01.8249370Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping etcd/peer certificate generation) -2025-11-24T09:48:01.8250262Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "front-proxy-ca" certificate and key) -2025-11-24T09:48:01.8251164Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping etcd/server certificate generation) -2025-11-24T09:48:01.8252123Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping etcd/healthcheck-client certificate generation) -2025-11-24T09:48:01.8253241Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "front-proxy-client" certificate and key) -2025-11-24T09:48:01.8254146Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping etcd/peer certificate generation) -2025-11-24T09:48:01.8255103Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping etcd/ca certificate authority generation) -2025-11-24T09:48:01.8256087Z skipping: [kubenode-renewed-asp] => (item=[certs] External etcd mode: Skipping apiserver-etcd-client certificate generation) -2025-11-24T09:48:01.8257075Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping etcd/healthcheck-client certificate generation) -2025-11-24T09:48:01.8257954Z skipping: [kubenode-renewed-asp] => (item=[certs] Generating "sa" key and public key) -2025-11-24T09:48:01.8258815Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping etcd/server certificate generation) -2025-11-24T09:48:01.8259790Z skipping: [kubenode-super-marlin] => (item=[certs] External etcd mode: Skipping apiserver-etcd-client certificate generation) -2025-11-24T09:48:01.8260700Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Using kubeconfig folder "/etc/kubernetes") -2025-11-24T09:48:01.8261581Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping etcd/peer certificate generation) -2025-11-24T09:48:01.8262440Z skipping: [kubenode-super-marlin] => (item=[certs] Generating "sa" key and public key) -2025-11-24T09:48:01.8263457Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "admin.conf" kubeconfig file) -2025-11-24T09:48:01.8264405Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping etcd/healthcheck-client certificate generation) -2025-11-24T09:48:01.8265352Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Using kubeconfig folder "/etc/kubernetes") -2025-11-24T09:48:01.8266163Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "admin.conf" kubeconfig file) -2025-11-24T09:48:01.8267083Z skipping: [kubenode-teaching-gobbler] => (item=[certs] External etcd mode: Skipping apiserver-etcd-client certificate generation) -2025-11-24T09:48:01.8268099Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "super-admin.conf" kubeconfig file) -2025-11-24T09:48:01.8268917Z skipping: [kubenode-teaching-gobbler] => (item=[certs] Generating "sa" key and public key) -2025-11-24T09:48:01.8269778Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "super-admin.conf" kubeconfig file) -2025-11-24T09:48:01.8270609Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "kubelet.conf" kubeconfig file) -2025-11-24T09:48:01.8271444Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Using kubeconfig folder "/etc/kubernetes") -2025-11-24T09:48:01.8272283Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "kubelet.conf" kubeconfig file) -2025-11-24T09:48:01.8273233Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "controller-manager.conf" kubeconfig file) -2025-11-24T09:48:01.8274087Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "admin.conf" kubeconfig file) -2025-11-24T09:48:01.8274913Z skipping: [kubenode-renewed-asp] => (item=[kubeconfig] Writing "scheduler.conf" kubeconfig file) -2025-11-24T09:48:01.8275758Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "controller-manager.conf" kubeconfig file) -2025-11-24T09:48:01.8276649Z skipping: [kubenode-renewed-asp] => (item=[control-plane] Using manifest folder "/etc/kubernetes/manifests") -2025-11-24T09:48:01.9373385Z skipping: [kubenode-super-marlin] => (item=[kubeconfig] Writing "scheduler.conf" kubeconfig file) -2025-11-24T09:48:01.9374815Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "super-admin.conf" kubeconfig file) -2025-11-24T09:48:01.9376350Z skipping: [kubenode-renewed-asp] => (item=[control-plane] Creating static Pod manifest for "kube-apiserver") -2025-11-24T09:48:01.9377714Z skipping: [kubenode-super-marlin] => (item=[control-plane] Using manifest folder "/etc/kubernetes/manifests") -2025-11-24T09:48:01.9378744Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "kubelet.conf" kubeconfig file) -2025-11-24T09:48:01.9379821Z skipping: [kubenode-renewed-asp] => (item=[control-plane] Creating static Pod manifest for "kube-controller-manager") -2025-11-24T09:48:01.9380939Z skipping: [kubenode-super-marlin] => (item=[control-plane] Creating static Pod manifest for "kube-apiserver") -2025-11-24T09:48:01.9382012Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "controller-manager.conf" kubeconfig file) -2025-11-24T09:48:01.9383400Z skipping: [kubenode-super-marlin] => (item=[control-plane] Creating static Pod manifest for "kube-controller-manager") -2025-11-24T09:48:01.9384525Z skipping: [kubenode-renewed-asp] => (item=[control-plane] Creating static Pod manifest for "kube-scheduler") -2025-11-24T09:48:01.9385569Z skipping: [kubenode-super-marlin] => (item=[control-plane] Creating static Pod manifest for "kube-scheduler") -2025-11-24T09:48:01.9386583Z skipping: [kubenode-teaching-gobbler] => (item=[kubeconfig] Writing "scheduler.conf" kubeconfig file) -2025-11-24T09:48:01.9387750Z skipping: [kubenode-renewed-asp] => (item=[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env") -2025-11-24T09:48:01.9389111Z skipping: [kubenode-super-marlin] => (item=[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env") -2025-11-24T09:48:01.9390515Z skipping: [kubenode-teaching-gobbler] => (item=[control-plane] Using manifest folder "/etc/kubernetes/manifests") -2025-11-24T09:48:01.9391626Z skipping: [kubenode-renewed-asp] => (item=[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml") -2025-11-24T09:48:01.9392868Z skipping: [kubenode-super-marlin] => (item=[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml") -2025-11-24T09:48:01.9393884Z skipping: [kubenode-teaching-gobbler] => (item=[control-plane] Creating static Pod manifest for "kube-apiserver") -2025-11-24T09:48:01.9394825Z skipping: [kubenode-renewed-asp] => (item=[kubelet-start] Starting the kubelet) -2025-11-24T09:48:01.9395555Z skipping: [kubenode-super-marlin] => (item=[kubelet-start] Starting the kubelet) -2025-11-24T09:48:01.9396434Z skipping: [kubenode-teaching-gobbler] => (item=[control-plane] Creating static Pod manifest for "kube-controller-manager") -2025-11-24T09:48:01.9397678Z skipping: [kubenode-super-marlin] => (item=[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 5m0s) -2025-11-24T09:48:01.9398880Z skipping: [kubenode-teaching-gobbler] => (item=[control-plane] Creating static Pod manifest for "kube-scheduler") -2025-11-24T09:48:01.9400064Z skipping: [kubenode-renewed-asp] => (item=[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 5m0s) -2025-11-24T09:48:01.9401260Z skipping: [kubenode-super-marlin] => (item=[apiclient] All control plane components are healthy after 5.008133 seconds) -2025-11-24T09:48:01.9402340Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env") -2025-11-24T09:48:01.9403586Z skipping: [kubenode-renewed-asp] => (item=[apiclient] All control plane components are healthy after 5.008133 seconds) -2025-11-24T09:48:01.9404647Z skipping: [kubenode-super-marlin] => (item=[upload-config] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace) -2025-11-24T09:48:01.9405775Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml") -2025-11-24T09:48:01.9406878Z skipping: [kubenode-renewed-asp] => (item=[upload-config] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace) -2025-11-24T09:48:01.9407942Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet-start] Starting the kubelet) -2025-11-24T09:48:01.9408977Z skipping: [kubenode-super-marlin] => (item=[kubelet] Creating a ConfigMap "kubelet-config" in namespace kube-system with the configuration for the kubelets in the cluster) -2025-11-24T09:48:01.9410267Z skipping: [kubenode-renewed-asp] => (item=[kubelet] Creating a ConfigMap "kubelet-config" in namespace kube-system with the configuration for the kubelets in the cluster) -2025-11-24T09:48:01.9411457Z skipping: [kubenode-super-marlin] => (item=[upload-certs] Storing the certificates in Secret "kubeadm-certs" in the "kube-system" Namespace) -2025-11-24T09:48:01.9412536Z skipping: [kubenode-renewed-asp] => (item=[upload-certs] Storing the certificates in Secret "kubeadm-certs" in the "kube-system" Namespace) -2025-11-24T09:48:01.9413995Z skipping: [kubenode-teaching-gobbler] => (item=[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 5m0s) -2025-11-24T09:48:01.9415108Z skipping: [kubenode-super-marlin] => (item=[upload-certs] Using certificate key:) -2025-11-24T09:48:01.9415843Z skipping: [kubenode-renewed-asp] => (item=[upload-certs] Using certificate key:) -2025-11-24T09:48:01.9416713Z skipping: [kubenode-teaching-gobbler] => (item=[apiclient] All control plane components are healthy after 5.008133 seconds) -2025-11-24T09:48:01.9417833Z skipping: [kubenode-super-marlin] => (item=cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) -2025-11-24T09:48:01.9418771Z skipping: [kubenode-renewed-asp] => (item=cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) -2025-11-24T09:48:01.9419837Z skipping: [kubenode-teaching-gobbler] => (item=[upload-config] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace) -2025-11-24T09:48:01.9421336Z skipping: [kubenode-super-marlin] => (item=[mark-control-plane] Marking the node kubenode-super-marlin as control-plane by adding the labels: [node-role.kubernetes.io/control-plane node.kubernetes.io/exclude-from-external-load-balancers]) -2025-11-24T09:48:01.9423214Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet] Creating a ConfigMap "kubelet-config" in namespace kube-system with the configuration for the kubelets in the cluster) -2025-11-24T09:48:01.9424772Z skipping: [kubenode-renewed-asp] => (item=[mark-control-plane] Marking the node kubenode-super-marlin as control-plane by adding the labels: [node-role.kubernetes.io/control-plane node.kubernetes.io/exclude-from-external-load-balancers]) -2025-11-24T09:48:01.9426070Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Using token: lj8vy0.p2b7f9q286brlf0y) -2025-11-24T09:48:01.9427065Z skipping: [kubenode-teaching-gobbler] => (item=[upload-certs] Storing the certificates in Secret "kubeadm-certs" in the "kube-system" Namespace) -2025-11-24T09:48:01.9428050Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Using token: lj8vy0.p2b7f9q286brlf0y) -2025-11-24T09:48:01.9428981Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC Roles) -2025-11-24T09:48:01.9429882Z skipping: [kubenode-teaching-gobbler] => (item=[upload-certs] Using certificate key:) -2025-11-24T09:48:01.9436997Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC Roles) -2025-11-24T09:48:01.9438100Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to get nodes) -2025-11-24T09:48:01.9439144Z skipping: [kubenode-teaching-gobbler] => (item=cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) -2025-11-24T09:48:01.9440185Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to get nodes) -2025-11-24T09:48:01.9441770Z skipping: [kubenode-teaching-gobbler] => (item=[mark-control-plane] Marking the node kubenode-super-marlin as control-plane by adding the labels: [node-role.kubernetes.io/control-plane node.kubernetes.io/exclude-from-external-load-balancers]) -2025-11-24T09:48:01.9443564Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials) -2025-11-24T09:48:01.9444939Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials) -2025-11-24T09:48:01.9446075Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Using token: lj8vy0.p2b7f9q286brlf0y) -2025-11-24T09:48:01.9447185Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token) -2025-11-24T09:48:01.9448388Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC Roles) -2025-11-24T09:48:01.9449585Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token) -2025-11-24T09:48:02.1160965Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Configured RBAC rules to allow certificate rotation for all node client certificates in the cluster) -2025-11-24T09:48:02.1163782Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to get nodes) -2025-11-24T09:48:02.1165421Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Configured RBAC rules to allow certificate rotation for all node client certificates in the cluster) -2025-11-24T09:48:02.1166782Z skipping: [kubenode-super-marlin] => (item=[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespace) -2025-11-24T09:48:02.1167997Z skipping: [kubenode-renewed-asp] => (item=[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespace) -2025-11-24T09:48:02.1169528Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials) -2025-11-24T09:48:02.1171087Z skipping: [kubenode-super-marlin] => (item=[kubelet-finalize] Updating "/etc/kubernetes/kubelet.conf" to point to a rotatable kubelet client certificate and key) -2025-11-24T09:48:02.1172540Z skipping: [kubenode-renewed-asp] => (item=[kubelet-finalize] Updating "/etc/kubernetes/kubelet.conf" to point to a rotatable kubelet client certificate and key) -2025-11-24T09:48:02.1174225Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token) -2025-11-24T09:48:02.1175319Z skipping: [kubenode-super-marlin] => (item=[addons] Applied essential addon: kube-proxy) -2025-11-24T09:48:02.1176098Z skipping: [kubenode-renewed-asp] => (item=[addons] Applied essential addon: kube-proxy) -2025-11-24T09:48:02.1177166Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Configured RBAC rules to allow certificate rotation for all node client certificates in the cluster) -2025-11-24T09:48:02.1178079Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1178597Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1179416Z skipping: [kubenode-teaching-gobbler] => (item=[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespace) -2025-11-24T09:48:02.1180409Z skipping: [kubenode-super-marlin] => (item=Your Kubernetes control-plane has initialized successfully!) -2025-11-24T09:48:02.1181298Z skipping: [kubenode-renewed-asp] => (item=Your Kubernetes control-plane has initialized successfully!) -2025-11-24T09:48:02.1182489Z skipping: [kubenode-teaching-gobbler] => (item=[kubelet-finalize] Updating "/etc/kubernetes/kubelet.conf" to point to a rotatable kubelet client certificate and key) -2025-11-24T09:48:02.1183684Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1184369Z skipping: [kubenode-teaching-gobbler] => (item=[addons] Applied essential addon: kube-proxy) -2025-11-24T09:48:02.1185040Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1185785Z skipping: [kubenode-renewed-asp] => (item=To start using your cluster, you need to run the following as a regular user:) -2025-11-24T09:48:02.1186538Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1187288Z skipping: [kubenode-super-marlin] => (item=To start using your cluster, you need to run the following as a regular user:) -2025-11-24T09:48:02.1188023Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1188738Z skipping: [kubenode-teaching-gobbler] => (item=Your Kubernetes control-plane has initialized successfully!) -2025-11-24T09:48:02.1189457Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1189972Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1190572Z skipping: [kubenode-renewed-asp] => (item= mkdir -p $HOME/.kube) -2025-11-24T09:48:02.1191237Z skipping: [kubenode-super-marlin] => (item= mkdir -p $HOME/.kube) -2025-11-24T09:48:02.1192073Z skipping: [kubenode-teaching-gobbler] => (item=To start using your cluster, you need to run the following as a regular user:) -2025-11-24T09:48:02.1193366Z skipping: [kubenode-renewed-asp] => (item= sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config) -2025-11-24T09:48:02.1194238Z skipping: [kubenode-super-marlin] => (item= sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config) -2025-11-24T09:48:02.1194926Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1195599Z skipping: [kubenode-renewed-asp] => (item= sudo chown $(id -u):$(id -g) $HOME/.kube/config) -2025-11-24T09:48:02.1196393Z skipping: [kubenode-super-marlin] => (item= sudo chown $(id -u):$(id -g) $HOME/.kube/config) -2025-11-24T09:48:02.1197125Z skipping: [kubenode-teaching-gobbler] => (item= mkdir -p $HOME/.kube) -2025-11-24T09:48:02.1197803Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1198310Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1199004Z skipping: [kubenode-teaching-gobbler] => (item= sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config) -2025-11-24T09:48:02.1199861Z skipping: [kubenode-super-marlin] => (item=Alternatively, if you are the root user, you can run:) -2025-11-24T09:48:02.1200701Z skipping: [kubenode-renewed-asp] => (item=Alternatively, if you are the root user, you can run:) -2025-11-24T09:48:02.1201368Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1202034Z skipping: [kubenode-teaching-gobbler] => (item= sudo chown $(id -u):$(id -g) $HOME/.kube/config) -2025-11-24T09:48:02.1202906Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1203591Z skipping: [kubenode-super-marlin] => (item= export KUBECONFIG=/etc/kubernetes/admin.conf) -2025-11-24T09:48:02.1204263Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1204932Z skipping: [kubenode-renewed-asp] => (item= export KUBECONFIG=/etc/kubernetes/admin.conf) -2025-11-24T09:48:02.1205569Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1206258Z skipping: [kubenode-teaching-gobbler] => (item=Alternatively, if you are the root user, you can run:) -2025-11-24T09:48:02.1207111Z skipping: [kubenode-super-marlin] => (item=You should now deploy a pod network to the cluster.) -2025-11-24T09:48:02.1207782Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1208297Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1209034Z skipping: [kubenode-super-marlin] => (item=Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:) -2025-11-24T09:48:02.1210017Z skipping: [kubenode-renewed-asp] => (item=You should now deploy a pod network to the cluster.) -2025-11-24T09:48:02.1210902Z skipping: [kubenode-super-marlin] => (item= https://kubernetes.io/docs/concepts/cluster-administration/addons/) -2025-11-24T09:48:02.1211786Z skipping: [kubenode-teaching-gobbler] => (item= export KUBECONFIG=/etc/kubernetes/admin.conf) -2025-11-24T09:48:02.1212833Z skipping: [kubenode-renewed-asp] => (item=Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:) -2025-11-24T09:48:02.1213586Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1214111Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1214970Z skipping: [kubenode-super-marlin] => (item=You can now join any number of the control-plane node running the following command on each as root:) -2025-11-24T09:48:02.1216014Z skipping: [kubenode-renewed-asp] => (item= https://kubernetes.io/docs/concepts/cluster-administration/addons/) -2025-11-24T09:48:02.1216904Z skipping: [kubenode-teaching-gobbler] => (item=You should now deploy a pod network to the cluster.) -2025-11-24T09:48:02.1217586Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1218092Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1218841Z skipping: [kubenode-teaching-gobbler] => (item=Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:) -2025-11-24T09:48:02.1219778Z skipping: [kubenode-super-marlin] => (item= kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) -2025-11-24T09:48:02.1220901Z skipping: [kubenode-renewed-asp] => (item=You can now join any number of the control-plane node running the following command on each as root:) -2025-11-24T09:48:02.1221950Z skipping: [kubenode-teaching-gobbler] => (item= https://kubernetes.io/docs/concepts/cluster-administration/addons/) -2025-11-24T09:48:02.1223280Z skipping: [kubenode-super-marlin] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 \) -2025-11-24T09:48:02.1224168Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1224686Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1225484Z skipping: [kubenode-renewed-asp] => (item= kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) -2025-11-24T09:48:02.1226488Z skipping: [kubenode-teaching-gobbler] => (item=You can now join any number of the control-plane node running the following command on each as root:) -2025-11-24T09:48:02.1227656Z skipping: [kubenode-renewed-asp] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 \) -2025-11-24T09:48:02.1228810Z ok: [kubenode-super-marlin] => (item= --control-plane --certificate-key cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) -2025-11-24T09:48:02.1229619Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1230140Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1230940Z skipping: [kubenode-super-marlin] => (item=Please note that the certificate-key gives access to cluster sensitive data, keep it secret!) -2025-11-24T09:48:02.1232207Z skipping: [kubenode-super-marlin] => (item=As a safeguard, uploaded-certs will be deleted in two hours; If necessary, you can use) -2025-11-24T09:48:02.1233392Z skipping: [kubenode-teaching-gobbler] => (item= kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) -2025-11-24T09:48:02.1234353Z skipping: [kubenode-super-marlin] => (item="kubeadm init phase upload-certs --upload-certs" to reload certs afterward.) -2025-11-24T09:48:02.1235100Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1235916Z ok: [kubenode-renewed-asp] => (item= --control-plane --certificate-key cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) -2025-11-24T09:48:02.1751116Z skipping: [kubenode-teaching-gobbler] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 \) -2025-11-24T09:48:02.1753381Z skipping: [kubenode-super-marlin] => (item=Then you can join any number of worker nodes by running the following on each as root:) -2025-11-24T09:48:02.1754397Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1754999Z skipping: [kubenode-super-marlin] => (item=) -2025-11-24T09:48:02.1755859Z skipping: [kubenode-renewed-asp] => (item=Please note that the certificate-key gives access to cluster sensitive data, keep it secret!) -2025-11-24T09:48:02.1756914Z skipping: [kubenode-super-marlin] => (item=kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) -2025-11-24T09:48:02.1757939Z skipping: [kubenode-renewed-asp] => (item=As a safeguard, uploaded-certs will be deleted in two hours; If necessary, you can use) -2025-11-24T09:48:02.1759153Z skipping: [kubenode-super-marlin] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 ) -2025-11-24T09:48:02.1760338Z skipping: [kubenode-renewed-asp] => (item="kubeadm init phase upload-certs --upload-certs" to reload certs afterward.) -2025-11-24T09:48:02.1761142Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1762033Z ok: [kubenode-teaching-gobbler] => (item= --control-plane --certificate-key cde45f4c6b6a293c6c34d12d8d361542dae5defe8d71fdbf8427d894dfb1a4fc) -2025-11-24T09:48:02.1763327Z skipping: [kubenode-renewed-asp] => (item=Then you can join any number of worker nodes by running the following on each as root:) -2025-11-24T09:48:02.1764152Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1764708Z skipping: [kubenode-renewed-asp] => (item=) -2025-11-24T09:48:02.1765734Z skipping: [kubenode-teaching-gobbler] => (item=Please note that the certificate-key gives access to cluster sensitive data, keep it secret!) -2025-11-24T09:48:02.1766743Z skipping: [kubenode-renewed-asp] => (item=kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) -2025-11-24T09:48:02.1767733Z skipping: [kubenode-teaching-gobbler] => (item=As a safeguard, uploaded-certs will be deleted in two hours; If necessary, you can use) -2025-11-24T09:48:02.1768883Z skipping: [kubenode-renewed-asp] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 ) -2025-11-24T09:48:02.1770092Z skipping: [kubenode-teaching-gobbler] => (item="kubeadm init phase upload-certs --upload-certs" to reload certs afterward.) -2025-11-24T09:48:02.1770862Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1771644Z skipping: [kubenode-teaching-gobbler] => (item=Then you can join any number of worker nodes by running the following on each as root:) -2025-11-24T09:48:02.1772421Z skipping: [kubenode-teaching-gobbler] => (item=) -2025-11-24T09:48:02.1773250Z skipping: [kubenode-teaching-gobbler] => (item=kubeadm join 10.1.1.8:6443 --token lj8vy0.p2b7f9q286brlf0y \) -2025-11-24T09:48:02.1774324Z skipping: [kubenode-teaching-gobbler] => (item= --discovery-token-ca-cert-hash sha256:1c95b3ccb78a01eeb71329a717eb5b94c15f15bd2cadfcc57f910bfa59754792 ) -2025-11-24T09:48:02.1775010Z -2025-11-24T09:48:02.1775458Z TASK [kubernetes/control-plane : Create hardcoded kubeadm token for joining nodes with 24h expiration (if defined)] *** -2025-11-24T09:48:02.2265981Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:02.2266697Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:02.2267318Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:02.2267705Z -2025-11-24T09:48:02.2268144Z TASK [kubernetes/control-plane : Remove binding to anonymous user] ************* -2025-11-24T09:48:02.2539035Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:02.2743437Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:02.2744013Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:02.2744343Z -2025-11-24T09:48:02.2744817Z TASK [kubernetes/control-plane : Create kubeadm token for joining nodes with 24h expiration (default)] *** -2025-11-24T09:48:02.5605913Z ok: [kubenode-teaching-gobbler -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:48:02.5606807Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:48:02.5607759Z ok: [kubenode-super-marlin] -2025-11-24T09:48:02.5608084Z -2025-11-24T09:48:02.5608483Z TASK [kubernetes/control-plane : Set kubeadm_token] **************************** -2025-11-24T09:48:02.6487909Z ok: [kubenode-super-marlin] -2025-11-24T09:48:02.6488484Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:02.6488981Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:02.6489274Z -2025-11-24T09:48:02.6489646Z TASK [kubernetes/control-plane : Kubeadm | Join other masters] ***************** -2025-11-24T09:48:02.7557598Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-secondary.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:48:02.7558695Z -2025-11-24T09:48:02.7559072Z TASK [kubernetes/control-plane : Set kubeadm_discovery_address] **************** -2025-11-24T09:48:02.8505896Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:02.8506553Z ok: [kubenode-super-marlin] -2025-11-24T09:48:02.8507143Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:02.8507477Z -2025-11-24T09:48:02.8507874Z TASK [kubernetes/control-plane : Upload certificates so they are fresh and not expired] *** -2025-11-24T09:48:03.1439362Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:03.1440094Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:03.1440718Z changed: [kubenode-super-marlin] -2025-11-24T09:48:03.1441057Z -2025-11-24T09:48:03.1441481Z TASK [kubernetes/control-plane : Parse certificate key if not set] ************* -2025-11-24T09:48:03.2369814Z ok: [kubenode-super-marlin] -2025-11-24T09:48:03.2370223Z -2025-11-24T09:48:03.2371040Z TASK [kubernetes/control-plane : Create kubeadm ControlPlane config] *********** -2025-11-24T09:48:03.8305657Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:03.8306327Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:03.8306927Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:03.8307288Z -2025-11-24T09:48:03.8307707Z TASK [kubernetes/control-plane : Wait for k8s apiserver] *********************** -2025-11-24T09:48:04.3015585Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:04.3016277Z ok: [kubenode-super-marlin] -2025-11-24T09:48:04.3017255Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:04.3017577Z -2025-11-24T09:48:04.3017997Z TASK [kubernetes/control-plane : Check already run] **************************** -2025-11-24T09:48:04.3787597Z ok: [kubenode-super-marlin] => { -2025-11-24T09:48:04.3788243Z "msg": false -2025-11-24T09:48:04.3788661Z } -2025-11-24T09:48:04.3789040Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:48:04.3789486Z "msg": false -2025-11-24T09:48:04.3789889Z } -2025-11-24T09:48:04.3790304Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:48:04.3790773Z "msg": false -2025-11-24T09:48:04.3791167Z } -2025-11-24T09:48:04.3791359Z -2025-11-24T09:48:04.3791696Z TASK [kubernetes/control-plane : Reset cert directory] ************************* -2025-11-24T09:48:04.4039856Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:04.6691488Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:04.6692206Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:04.6692511Z -2025-11-24T09:48:04.6693111Z TASK [kubernetes/control-plane : Get kubeconfig for join discovery process] **** -2025-11-24T09:48:04.7085540Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:04.7086057Z -2025-11-24T09:48:04.7086454Z TASK [kubernetes/control-plane : Copy discovery kubeconfig] ******************** -2025-11-24T09:48:04.7468535Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:04.7675232Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:04.7675999Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:04.7676404Z -2025-11-24T09:48:04.7676840Z TASK [kubernetes/control-plane : Joining control plane node to the cluster.] *** -2025-11-24T09:48:10.3177945Z Still deploying... -2025-11-24T09:48:14.9546653Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:19.0237522Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:19.0238399Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:19.0239187Z -2025-11-24T09:48:19.0239630Z TASK [kubernetes/control-plane : Kubeadm | upgrade kubernetes cluster] ********* -2025-11-24T09:48:19.0707550Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:19.0938342Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:19.0939078Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:19.0939410Z -2025-11-24T09:48:19.0939795Z TASK [kubernetes/control-plane : Kubeadm | Remove taint for master with node role] *** -2025-11-24T09:48:19.4778135Z changed: [kubenode-super-marlin] => (item=node-role.kubernetes.io/control-plane:NoSchedule-) -2025-11-24T09:48:19.4779359Z changed: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => (item=node-role.kubernetes.io/control-plane:NoSchedule-) -2025-11-24T09:48:19.4780579Z changed: [kubenode-teaching-gobbler -> kubenode-super-marlin(10.1.1.8)] => (item=node-role.kubernetes.io/control-plane:NoSchedule-) -2025-11-24T09:48:19.4781249Z -2025-11-24T09:48:19.4781621Z TASK [kubernetes/control-plane : Include kubeadm etcd extra tasks] ************* -2025-11-24T09:48:19.5352100Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:19.5353081Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:19.5353637Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:19.5353996Z -2025-11-24T09:48:19.5354416Z TASK [kubernetes/control-plane : Include kubeadm secondary server apiserver fixes] *** -2025-11-24T09:48:19.6420188Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubeadm-fix-apiserver.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:48:19.6421325Z -2025-11-24T09:48:19.6422176Z TASK [kubernetes/control-plane : Update server field in component kubeconfigs] *** -2025-11-24T09:48:20.3198744Z Still deploying... -2025-11-24T09:48:20.8635823Z changed: [kubenode-teaching-gobbler] => (item=admin.conf) -2025-11-24T09:48:20.8636628Z changed: [kubenode-super-marlin] => (item=admin.conf) -2025-11-24T09:48:20.8637270Z changed: [kubenode-renewed-asp] => (item=admin.conf) -2025-11-24T09:48:20.8638038Z changed: [kubenode-teaching-gobbler] => (item=controller-manager.conf) -2025-11-24T09:48:20.8638876Z changed: [kubenode-super-marlin] => (item=controller-manager.conf) -2025-11-24T09:48:20.8640095Z changed: [kubenode-renewed-asp] => (item=controller-manager.conf) -2025-11-24T09:48:20.8640868Z changed: [kubenode-teaching-gobbler] => (item=kubelet.conf) -2025-11-24T09:48:20.8641587Z changed: [kubenode-super-marlin] => (item=kubelet.conf) -2025-11-24T09:48:20.8642279Z changed: [kubenode-renewed-asp] => (item=kubelet.conf) -2025-11-24T09:48:20.8643271Z changed: [kubenode-super-marlin] => (item=scheduler.conf) -2025-11-24T09:48:20.8644024Z changed: [kubenode-teaching-gobbler] => (item=scheduler.conf) -2025-11-24T09:48:20.8644756Z changed: [kubenode-renewed-asp] => (item=scheduler.conf) -2025-11-24T09:48:20.8645178Z -2025-11-24T09:48:20.8645586Z TASK [kubernetes/control-plane : Include kubelet client cert rotation fixes] *** -2025-11-24T09:48:21.1060431Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes/control-plane/tasks/kubelet-fix-client-cert-rotation.yml for kubenode-super-marlin, kubenode-renewed-asp, kubenode-teaching-gobbler -2025-11-24T09:48:21.1061631Z -2025-11-24T09:48:21.1062029Z TASK [kubernetes/control-plane : Fixup kubelet client cert rotation 1/2] ******* -2025-11-24T09:48:21.4098847Z ok: [kubenode-super-marlin] -2025-11-24T09:48:21.4099597Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:21.4100105Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:21.4100396Z -2025-11-24T09:48:21.4100783Z TASK [kubernetes/control-plane : Fixup kubelet client cert rotation 2/2] ******* -2025-11-24T09:48:21.6677454Z ok: [kubenode-super-marlin] -2025-11-24T09:48:21.6678111Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:21.6678578Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:21.6678851Z -2025-11-24T09:48:22.1924730Z TASK [kubernetes/control-plane : Install script to renew K8S control plane certificates] *** -2025-11-24T09:48:22.1925655Z changed: [kubenode-super-marlin] -2025-11-24T09:48:22.1926547Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:22.1927127Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:22.1927439Z -2025-11-24T09:48:22.1927872Z TASK [kubernetes/control-plane : Renew K8S control plane certificates monthly 1/2] *** -2025-11-24T09:48:22.2355019Z skipping: [kubenode-super-marlin] => (item=k8s-certs-renew.service) -2025-11-24T09:48:22.2356095Z skipping: [kubenode-super-marlin] => (item=k8s-certs-renew.timer) -2025-11-24T09:48:22.2356977Z skipping: [kubenode-renewed-asp] => (item=k8s-certs-renew.service) -2025-11-24T09:48:22.2357849Z skipping: [kubenode-renewed-asp] => (item=k8s-certs-renew.timer) -2025-11-24T09:48:22.2612977Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:22.2613897Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:22.2614728Z skipping: [kubenode-teaching-gobbler] => (item=k8s-certs-renew.service) -2025-11-24T09:48:22.2615596Z skipping: [kubenode-teaching-gobbler] => (item=k8s-certs-renew.timer) -2025-11-24T09:48:22.2616332Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:22.2616698Z -2025-11-24T09:48:22.2617133Z TASK [kubernetes/control-plane : Renew K8S control plane certificates monthly 2/2] *** -2025-11-24T09:48:22.3290110Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:22.3290886Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:22.3291428Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:22.3291761Z -2025-11-24T09:48:22.3292129Z TASK [kubernetes/client : Set external kube-apiserver endpoint] **************** -2025-11-24T09:48:22.4104837Z ok: [kubenode-super-marlin] -2025-11-24T09:48:22.4105560Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:22.4106476Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:22.4106772Z -2025-11-24T09:48:22.4107180Z TASK [kubernetes/client : Create kube config dir for current/ansible become user] *** -2025-11-24T09:48:22.6809079Z changed: [kubenode-super-marlin] -2025-11-24T09:48:22.6809880Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:22.6816781Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:22.6817201Z -2025-11-24T09:48:22.6817633Z TASK [kubernetes/client : Copy admin kubeconfig to current/ansible become user home] *** -2025-11-24T09:48:22.9888352Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:22.9889457Z changed: [kubenode-super-marlin] -2025-11-24T09:48:22.9889991Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:22.9890289Z -2025-11-24T09:48:22.9890646Z TASK [kubernetes/client : Create kube artifacts dir] *************************** -2025-11-24T09:48:23.3719814Z changed: [kubenode-super-marlin -> localhost] -2025-11-24T09:48:23.3720483Z -2025-11-24T09:48:23.3720926Z TASK [kubernetes/client : Wait for k8s apiserver] ****************************** -2025-11-24T09:48:23.6279847Z ok: [kubenode-super-marlin] -2025-11-24T09:48:23.6280577Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:23.6281097Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:23.6281388Z -2025-11-24T09:48:23.6281764Z TASK [kubernetes/client : Get admin kubeconfig from remote host] *************** -2025-11-24T09:48:23.8513612Z ok: [kubenode-super-marlin] -2025-11-24T09:48:23.8514127Z -2025-11-24T09:48:23.8514483Z TASK [kubernetes/client : Convert kubeconfig to YAML] ************************** -2025-11-24T09:48:23.9371990Z ok: [kubenode-super-marlin] -2025-11-24T09:48:23.9372909Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:23.9373441Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:23.9373740Z -2025-11-24T09:48:23.9374112Z TASK [kubernetes/client : Override username in kubeconfig] ********************* -2025-11-24T09:48:24.0247418Z ok: [kubenode-super-marlin] -2025-11-24T09:48:24.0248126Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:24.0248638Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:24.0248963Z -2025-11-24T09:48:24.0249333Z TASK [kubernetes/client : Write admin kubeconfig on ansible host] ************** -2025-11-24T09:48:24.5272294Z changed: [kubenode-super-marlin -> localhost] -2025-11-24T09:48:24.5273097Z -2025-11-24T09:48:24.5273501Z TASK [kubernetes/client : Copy kubectl binary to ansible host] ***************** -2025-11-24T09:48:24.5554033Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:24.5554512Z -2025-11-24T09:48:24.5554895Z TASK [kubernetes/client : Create helper script kubectl.sh on ansible host] ***** -2025-11-24T09:48:24.6137628Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:24.6138115Z -2025-11-24T09:48:24.6138539Z TASK [kubernetes-apps/cluster_roles : Kubernetes Apps | Wait for kube-apiserver] *** -2025-11-24T09:48:25.0244407Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:25.0245086Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:25.0245650Z ok: [kubenode-super-marlin] -2025-11-24T09:48:25.0245935Z -2025-11-24T09:48:25.0246433Z TASK [kubernetes-apps/cluster_roles : Kubernetes Apps | Add ClusterRoleBinding to admit nodes] *** -2025-11-24T09:48:25.4658321Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:25.4658961Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:25.4659466Z changed: [kubenode-super-marlin] -2025-11-24T09:48:25.4659743Z -2025-11-24T09:48:25.4660223Z TASK [kubernetes-apps/cluster_roles : Apply workaround to allow all nodes with cert O=system:nodes to register] *** -2025-11-24T09:48:26.0970505Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:26.0971360Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:26.0972065Z ok: [kubenode-super-marlin] -2025-11-24T09:48:26.0972419Z -2025-11-24T09:48:26.0973145Z TASK [kubernetes-apps/cluster_roles : Kubernetes Apps | Remove old webhook ClusterRole] *** -2025-11-24T09:48:26.3911135Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:26.3911956Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:26.3912529Z ok: [kubenode-super-marlin] -2025-11-24T09:48:26.3913116Z -2025-11-24T09:48:26.3914031Z TASK [kubernetes-apps/cluster_roles : Kubernetes Apps | Remove old webhook ClusterRoleBinding] *** -2025-11-24T09:48:26.7072091Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:26.7073305Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:26.7073995Z ok: [kubenode-super-marlin] -2025-11-24T09:48:26.7074328Z -2025-11-24T09:48:26.7074752Z TASK [kubernetes-apps/cluster_roles : Configure Oracle Cloud provider] ********* -2025-11-24T09:48:26.7753543Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:26.7754354Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:26.7755194Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:26.7755509Z -2025-11-24T09:48:26.7755930Z TASK [kubernetes-apps/cluster_roles : PriorityClass | Copy k8s-cluster-critical-pc.yml file] *** -2025-11-24T09:48:27.3091969Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:27.3093036Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:27.3093880Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:27.3094401Z -2025-11-24T09:48:27.3095052Z TASK [kubernetes-apps/cluster_roles : PriorityClass | Create k8s-cluster-critical] *** -2025-11-24T09:48:27.7674493Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:27.7675270Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:27.7675781Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:27.7676058Z -2025-11-24T09:48:27.7676420Z RUNNING HANDLER [kubernetes/control-plane : Master | reload systemd] *********** -2025-11-24T09:48:28.4830151Z ok: [kubenode-super-marlin] -2025-11-24T09:48:28.4830767Z -2025-11-24T09:48:28.4831215Z RUNNING HANDLER [kubernetes/control-plane : Master | reload kubelet] *********** -2025-11-24T09:48:28.9583002Z changed: [kubenode-super-marlin] -2025-11-24T09:48:28.9583813Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:28.9584347Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:28.9584671Z -2025-11-24T09:48:28.9585113Z RUNNING HANDLER [kubernetes/control-plane : Master | Remove scheduler container docker] *** -2025-11-24T09:48:29.0015786Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:29.0276120Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:29.0277039Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:29.0277453Z -2025-11-24T09:48:29.0278010Z RUNNING HANDLER [kubernetes/control-plane : Master | Remove scheduler container containerd/crio] *** -2025-11-24T09:48:29.5514727Z changed: [kubenode-super-marlin] -2025-11-24T09:48:29.5515821Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:29.5516370Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:29.5516664Z -2025-11-24T09:48:29.5517137Z RUNNING HANDLER [kubernetes/control-plane : Master | Remove controller manager container docker] *** -2025-11-24T09:48:29.5889509Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:29.6115872Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:29.6116637Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:29.6117003Z -2025-11-24T09:48:29.6117480Z RUNNING HANDLER [kubernetes/control-plane : Master | Remove controller manager container containerd/crio] *** -2025-11-24T09:48:30.2154520Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:30.2155428Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:30.2156002Z changed: [kubenode-super-marlin] -2025-11-24T09:48:30.2156342Z -2025-11-24T09:48:30.2156777Z RUNNING HANDLER [kubernetes/control-plane : Master | wait for kube-scheduler] *** -2025-11-24T09:48:30.3216135Z Still deploying... -2025-11-24T09:48:31.9561903Z FAILED - RETRYING: [kubenode-super-marlin]: Master | wait for kube-scheduler (60 retries left). -2025-11-24T09:48:31.9563423Z FAILED - RETRYING: [kubenode-teaching-gobbler]: Master | wait for kube-scheduler (60 retries left). -2025-11-24T09:48:31.9564570Z FAILED - RETRYING: [kubenode-renewed-asp]: Master | wait for kube-scheduler (60 retries left). -2025-11-24T09:48:31.9565391Z ok: [kubenode-super-marlin] -2025-11-24T09:48:31.9565952Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:31.9566508Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:31.9566827Z -2025-11-24T09:48:31.9567820Z RUNNING HANDLER [kubernetes/control-plane : Master | wait for kube-controller-manager] *** -2025-11-24T09:48:32.3482885Z ok: [kubenode-super-marlin] -2025-11-24T09:48:32.3483581Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:32.3484068Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:32.3484337Z -2025-11-24T09:48:32.3484775Z RUNNING HANDLER [kubernetes/control-plane : Master | wait for the apiserver to be running] *** -2025-11-24T09:48:32.7962179Z ok: [kubenode-super-marlin] -2025-11-24T09:48:32.7963035Z -2025-11-24T09:48:32.7963463Z PLAY [Invoke kubeadm and install a CNI] **************************************** -2025-11-24T09:48:32.7964356Z -2025-11-24T09:48:32.7964783Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:48:32.9070435Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:48:32.9071503Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:48:32.9072373Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:48:32.9073341Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:32.9073709Z -2025-11-24T09:48:32.9074114Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:48:32.9470220Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:32.9470726Z -2025-11-24T09:48:32.9471080Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:48:33.0085760Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:33.0086648Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:33.0087258Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:33.0087617Z -2025-11-24T09:48:33.0087991Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:48:33.0375305Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:33.0375927Z -2025-11-24T09:48:33.0376405Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:48:33.0991068Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:33.0991967Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:33.0992610Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:33.0993187Z -2025-11-24T09:48:33.0993703Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:48:33.1728457Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:33.3054982Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:33.3056329Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:33.3056661Z -2025-11-24T09:48:33.3057012Z TASK [kubernetes/kubeadm : Set kubeadm_discovery_address] ********************** -2025-11-24T09:48:33.3057675Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:33.3058139Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:33.3058604Z ok: [kubenode-super-marlin] -2025-11-24T09:48:33.3058865Z -2025-11-24T09:48:33.3059198Z TASK [kubernetes/kubeadm : Check if kubelet.conf exists] *********************** -2025-11-24T09:48:33.5539808Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:33.5540687Z ok: [kubenode-super-marlin] -2025-11-24T09:48:33.5541284Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:33.5541614Z -2025-11-24T09:48:33.5542017Z TASK [kubernetes/kubeadm : Check if kubeadm CA cert is accessible] ************* -2025-11-24T09:48:33.7997564Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:48:33.7998114Z -2025-11-24T09:48:33.7998451Z TASK [kubernetes/kubeadm : Calculate kubeadm CA cert hash] ********************* -2025-11-24T09:48:34.0287787Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:48:34.0288504Z -2025-11-24T09:48:34.0289042Z TASK [kubernetes/kubeadm : Create kubeadm token for joining nodes with 24h expiration (default)] *** -2025-11-24T09:48:34.1138057Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.1138719Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.1139242Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.1139540Z -2025-11-24T09:48:34.1139883Z TASK [kubernetes/kubeadm : Set kubeadm_token to generated token] *************** -2025-11-24T09:48:34.1894529Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.1895146Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.1895674Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.1895972Z -2025-11-24T09:48:34.1896310Z TASK [kubernetes/kubeadm : Set kubeadm api version to v1beta3] ***************** -2025-11-24T09:48:34.2829885Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:34.2830793Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.2831357Z ok: [kubenode-super-marlin] -2025-11-24T09:48:34.2831620Z -2025-11-24T09:48:34.2831975Z TASK [kubernetes/kubeadm : Get kubeconfig for join discovery process] ********** -2025-11-24T09:48:34.3386051Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.3386569Z -2025-11-24T09:48:34.3386947Z TASK [kubernetes/kubeadm : Copy discovery kubeconfig] ************************** -2025-11-24T09:48:34.4035590Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.4036181Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.4036699Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.4036996Z -2025-11-24T09:48:34.4037358Z TASK [kubernetes/kubeadm : Create kubeadm client config] *********************** -2025-11-24T09:48:34.4557920Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.4559000Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.4560054Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.4560662Z -2025-11-24T09:48:34.4561256Z TASK [kubernetes/kubeadm : Kubeadm | Create directory to store kubeadm patches] *** -2025-11-24T09:48:34.5112206Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.5113074Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.5113661Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.5113970Z -2025-11-24T09:48:34.5114351Z TASK [kubernetes/kubeadm : Kubeadm | Copy kubeadm patches from inventory files] *** -2025-11-24T09:48:34.5804962Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.5805609Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.5806169Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.5806485Z -2025-11-24T09:48:34.5806857Z TASK [kubernetes/kubeadm : Join to cluster] ************************************ -2025-11-24T09:48:34.6300337Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.6300919Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.6301444Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.6301736Z -2025-11-24T09:48:34.6302072Z TASK [kubernetes/kubeadm : Display kubeadm join stderr if any] ***************** -2025-11-24T09:48:34.6828973Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.6829550Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.6830091Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.6830390Z -2025-11-24T09:48:34.6830739Z TASK [kubernetes/kubeadm : Update server field in kubelet kubeconfig] ********** -2025-11-24T09:48:34.7624809Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.7625386Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.7625912Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.7626202Z -2025-11-24T09:48:34.7626627Z TASK [kubernetes/kubeadm : Update server field in kubelet kubeconfig - external lb] *** -2025-11-24T09:48:34.7998842Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:34.8302073Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:34.8302894Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:34.8303294Z -2025-11-24T09:48:34.8303659Z TASK [kubernetes/kubeadm : Update server field in kube-proxy kubeconfig] ******* -2025-11-24T09:48:35.2470336Z changed: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:48:35.2470897Z -2025-11-24T09:48:35.2471388Z TASK [kubernetes/kubeadm : Update server field in kube-proxy kubeconfig - external lb] *** -2025-11-24T09:48:35.3153098Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:35.3153544Z -2025-11-24T09:48:35.3153981Z TASK [kubernetes/kubeadm : Set ca.crt file permission] ************************* -2025-11-24T09:48:35.5607620Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:35.5608186Z ok: [kubenode-super-marlin] -2025-11-24T09:48:35.5608661Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:35.5609329Z -2025-11-24T09:48:35.5609789Z TASK [kubernetes/kubeadm : Restart all kube-proxy pods to ensure that they load the new configmap] *** -2025-11-24T09:48:35.9630805Z changed: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:48:35.9631319Z -2025-11-24T09:48:35.9631770Z TASK [kubernetes/kubeadm : Extract etcd certs from control plane if using etcd kubeadm mode] *** -2025-11-24T09:48:36.0037651Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:36.0451066Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:36.0452006Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:36.0452307Z -2025-11-24T09:48:36.0452882Z TASK [kubernetes/node-label : Kubernetes Apps | Wait for kube-apiserver] ******* -2025-11-24T09:48:36.0734737Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:36.4709945Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:36.4710652Z ok: [kubenode-super-marlin] -2025-11-24T09:48:36.4710978Z -2025-11-24T09:48:36.4711413Z TASK [kubernetes/node-label : Set role node label to empty list] *************** -2025-11-24T09:48:36.5471874Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:36.5472423Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:36.5473132Z ok: [kubenode-super-marlin] -2025-11-24T09:48:36.5473404Z -2025-11-24T09:48:36.5473741Z TASK [kubernetes/node-label : Node label for nvidia GPU nodes] ***************** -2025-11-24T09:48:36.5902262Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:36.6374708Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:36.6375306Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:36.6375694Z -2025-11-24T09:48:36.6376120Z TASK [kubernetes/node-label : Set inventory node label to empty list] ********** -2025-11-24T09:48:36.7303742Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:36.7304316Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:36.7304812Z ok: [kubenode-super-marlin] -2025-11-24T09:48:36.7305101Z -2025-11-24T09:48:36.7305475Z TASK [kubernetes/node-label : Populate inventory node label] ******************* -2025-11-24T09:48:36.7988215Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:36.7988796Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:36.7989295Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:36.7989577Z -2025-11-24T09:48:36.7989889Z TASK [kubernetes/node-label : debug] ******************************************* -2025-11-24T09:48:36.8796905Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:48:36.8797946Z "role_node_labels": [] -2025-11-24T09:48:36.8798469Z } -2025-11-24T09:48:36.8798959Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:48:36.8799559Z "role_node_labels": [] -2025-11-24T09:48:36.8800076Z } -2025-11-24T09:48:36.8800459Z ok: [kubenode-super-marlin] => { -2025-11-24T09:48:36.8800902Z "role_node_labels": [] -2025-11-24T09:48:36.8801301Z } -2025-11-24T09:48:36.8801492Z -2025-11-24T09:48:36.8801797Z TASK [kubernetes/node-label : debug] ******************************************* -2025-11-24T09:48:36.9638885Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:48:36.9639457Z "inventory_node_labels": [] -2025-11-24T09:48:36.9639958Z } -2025-11-24T09:48:36.9640432Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:48:36.9640962Z "inventory_node_labels": [] -2025-11-24T09:48:36.9641432Z } -2025-11-24T09:48:36.9641856Z ok: [kubenode-super-marlin] => { -2025-11-24T09:48:36.9642343Z "inventory_node_labels": [] -2025-11-24T09:48:36.9643092Z } -2025-11-24T09:48:36.9643337Z -2025-11-24T09:48:36.9643673Z TASK [kubernetes/node-label : Set label to node] ******************************* -2025-11-24T09:48:37.0210360Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:37.0211070Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:37.0211773Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:37.0212127Z -2025-11-24T09:48:37.0212552Z TASK [kubernetes/node-taint : Set role and inventory node taint to empty list] *** -2025-11-24T09:48:37.0811875Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:37.0812398Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:37.0813082Z ok: [kubenode-super-marlin] -2025-11-24T09:48:37.0813354Z -2025-11-24T09:48:37.0814010Z TASK [kubernetes/node-taint : Node taint for nvidia GPU nodes] ***************** -2025-11-24T09:48:37.1117476Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:37.1368011Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:37.1375855Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:37.1376318Z -2025-11-24T09:48:37.1376680Z TASK [kubernetes/node-taint : Populate inventory node taint] ******************* -2025-11-24T09:48:37.1661824Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:37.1884113Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:37.1885100Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:37.1885427Z -2025-11-24T09:48:37.1885756Z TASK [kubernetes/node-taint : debug] ******************************************* -2025-11-24T09:48:37.2467413Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:48:37.2468084Z "role_node_taints": [] -2025-11-24T09:48:37.2468615Z } -2025-11-24T09:48:37.2469109Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:48:37.2469722Z "role_node_taints": [] -2025-11-24T09:48:37.2470233Z } -2025-11-24T09:48:37.2470708Z ok: [kubenode-super-marlin] => { -2025-11-24T09:48:37.2471262Z "role_node_taints": [] -2025-11-24T09:48:37.2471768Z } -2025-11-24T09:48:37.2472003Z -2025-11-24T09:48:37.2472390Z TASK [kubernetes/node-taint : debug] ******************************************* -2025-11-24T09:48:37.3044556Z ok: [kubenode-renewed-asp] => { -2025-11-24T09:48:37.3045229Z "inventory_node_taints": [] -2025-11-24T09:48:37.3045789Z } -2025-11-24T09:48:37.3046332Z ok: [kubenode-teaching-gobbler] => { -2025-11-24T09:48:37.3046978Z "inventory_node_taints": [] -2025-11-24T09:48:37.3047514Z } -2025-11-24T09:48:37.3048015Z ok: [kubenode-super-marlin] => { -2025-11-24T09:48:37.3048534Z "inventory_node_taints": [] -2025-11-24T09:48:37.3048978Z } -2025-11-24T09:48:37.3049173Z -2025-11-24T09:48:37.3878854Z TASK [kubernetes/node-taint : Set taint to node] ******************************* -2025-11-24T09:48:37.3879709Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:37.3880271Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:37.3880793Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:37.3881085Z -2025-11-24T09:48:37.3881413Z TASK [network_plugin/cni : CNI | make sure /opt/cni/bin exists] **************** -2025-11-24T09:48:37.6547071Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:37.6547633Z ok: [kubenode-super-marlin] -2025-11-24T09:48:37.6548417Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:37.6548693Z -2025-11-24T09:48:37.6549009Z TASK [network_plugin/cni : CNI | Copy cni plugins] ***************************** -2025-11-24T09:48:40.3230561Z Still deploying... -2025-11-24T09:48:41.0946526Z changed: [kubenode-super-marlin] -2025-11-24T09:48:41.0947225Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:41.0947711Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.0948013Z -2025-11-24T09:48:41.0948398Z TASK [network_plugin/cilium : Cilium | Check Cilium encryption `cilium_ipsec_key` for ipsec] *** -2025-11-24T09:48:41.1453222Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.1454203Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.1454837Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.1455198Z -2025-11-24T09:48:41.1455767Z TASK [network_plugin/cilium : Stop if `cilium_ipsec_enabled` is defined and `cilium_encryption_type` is not `ipsec`] *** -2025-11-24T09:48:41.1980233Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.1981170Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.1981806Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.1982162Z -2025-11-24T09:48:41.1982869Z TASK [network_plugin/cilium : Stop if kernel version is too low for Cilium Wireguard encryption] *** -2025-11-24T09:48:41.2530558Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.2531298Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.2531835Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.2532126Z -2025-11-24T09:48:41.2532502Z TASK [network_plugin/cilium : Stop if bad Cilium identity allocation mode] ***** -2025-11-24T09:48:41.3110614Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.3111247Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.3111807Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.3112113Z -2025-11-24T09:48:41.3112474Z TASK [network_plugin/cilium : Stop if bad Cilium Cluster ID] ******************* -2025-11-24T09:48:41.3622127Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.3623304Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.3623941Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.3624297Z -2025-11-24T09:48:41.3624701Z TASK [network_plugin/cilium : Stop if bad encryption type] ********************* -2025-11-24T09:48:41.4113877Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.4114747Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.4115394Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.4115768Z -2025-11-24T09:48:41.4116113Z TASK [network_plugin/cilium : Stop if cilium_version is < v1.10.0] ************* -2025-11-24T09:48:41.4639252Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.4640201Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.4640842Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.4641202Z -2025-11-24T09:48:41.4641756Z TASK [network_plugin/cilium : Set `cilium_encryption_type` to "ipsec" and if `cilium_ipsec_enabled` is true] *** -2025-11-24T09:48:41.5217198Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.5218125Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.5218807Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.5219172Z -2025-11-24T09:48:41.5219578Z TASK [network_plugin/cilium : Cilium install] ********************************** -2025-11-24T09:48:41.5712971Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.5713755Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.5714321Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.5714634Z -2025-11-24T09:48:41.5714976Z TASK [network_plugin/cilium : Cilium apply] ************************************ -2025-11-24T09:48:41.6574634Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:41.6575485Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.6576062Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:41.6576379Z -2025-11-24T09:48:41.6576731Z TASK [network_plugin/calico : Slurp CNI config] ******************************** -2025-11-24T09:48:41.9114553Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:41.9115438Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:41.9116419Z ok: [kubenode-super-marlin] -2025-11-24T09:48:41.9116748Z -2025-11-24T09:48:41.9117210Z TASK [network_plugin/calico : Set fact calico_cni_config from slurped CNI config] *** -2025-11-24T09:48:41.9965570Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:42.0656481Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:42.0657202Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:42.0657498Z -2025-11-24T09:48:42.0657832Z TASK [network_plugin/calico : Set fact calico_datastore to etcd if needed] ***** -2025-11-24T09:48:42.0658585Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:42.0659205Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:42.0659858Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:42.0660196Z -2025-11-24T09:48:42.0660576Z TASK [network_plugin/calico : Calico | Get kubelet hostname] ******************* -2025-11-24T09:48:42.1570144Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:42.1570900Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:42.1571483Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:42.1571797Z -2025-11-24T09:48:42.1572154Z TASK [network_plugin/calico : Calico | Gather os specific variables] *********** -2025-11-24T09:48:42.2699585Z ok: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/calico/vars/../vars/debian.yml) -2025-11-24T09:48:42.2701182Z ok: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/calico/vars/../vars/debian.yml) -2025-11-24T09:48:42.2703288Z ok: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/calico/vars/../vars/debian.yml) -2025-11-24T09:48:42.2704016Z -2025-11-24T09:48:42.2704363Z TASK [network_plugin/calico : Calico | Add wireguard yum repo] ***************** -2025-11-24T09:48:42.3068485Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:42.3320338Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:42.3321281Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:42.3321670Z -2025-11-24T09:48:42.3322070Z TASK [network_plugin/calico : Calico install] ********************************** -2025-11-24T09:48:42.4446906Z included: /wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/calico/tasks/install.yml for kubenode-renewed-asp, kubenode-teaching-gobbler, kubenode-super-marlin -2025-11-24T09:48:42.4448260Z -2025-11-24T09:48:42.4448615Z TASK [network_plugin/calico : Calico | Install Wireguard packages] ************* -2025-11-24T09:48:42.4947674Z skipping: [kubenode-renewed-asp] => (item=wireguard) -2025-11-24T09:48:42.4948674Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:42.4949375Z skipping: [kubenode-teaching-gobbler] => (item=wireguard) -2025-11-24T09:48:42.4950092Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:42.4950753Z skipping: [kubenode-super-marlin] => (item=wireguard) -2025-11-24T09:48:42.4951415Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:42.4951754Z -2025-11-24T09:48:42.4952174Z TASK [network_plugin/calico : Calico | Copy calicoctl binary from download dir] *** -2025-11-24T09:48:43.3862935Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:43.3863835Z changed: [kubenode-super-marlin] -2025-11-24T09:48:43.3864461Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:43.3864797Z -2025-11-24T09:48:43.3865199Z TASK [network_plugin/calico : Calico | Create calico certs directory] ********** -2025-11-24T09:48:43.4426863Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:43.4427620Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:43.4428184Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:43.4428495Z -2025-11-24T09:48:43.4428893Z TASK [network_plugin/calico : Calico | Link etcd certificates for calico-node] *** -2025-11-24T09:48:43.4766074Z skipping: [kubenode-renewed-asp] => (item={'s': 'ca.pem', 'd': 'ca_cert.crt'}) -2025-11-24T09:48:43.5146193Z skipping: [kubenode-renewed-asp] => (item={'s': 'node-kubenode-renewed-asp.pem', 'd': 'cert.crt'}) -2025-11-24T09:48:43.5147241Z skipping: [kubenode-renewed-asp] => (item={'s': 'node-kubenode-renewed-asp-key.pem', 'd': 'key.pem'}) -2025-11-24T09:48:43.5148442Z skipping: [kubenode-teaching-gobbler] => (item={'s': 'ca.pem', 'd': 'ca_cert.crt'}) -2025-11-24T09:48:43.5149121Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:43.5149860Z skipping: [kubenode-teaching-gobbler] => (item={'s': 'node-kubenode-teaching-gobbler.pem', 'd': 'cert.crt'}) -2025-11-24T09:48:43.5150909Z skipping: [kubenode-teaching-gobbler] => (item={'s': 'node-kubenode-teaching-gobbler-key.pem', 'd': 'key.pem'}) -2025-11-24T09:48:43.5151692Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:43.5152345Z skipping: [kubenode-super-marlin] => (item={'s': 'ca.pem', 'd': 'ca_cert.crt'}) -2025-11-24T09:48:43.5153419Z skipping: [kubenode-super-marlin] => (item={'s': 'node-kubenode-super-marlin.pem', 'd': 'cert.crt'}) -2025-11-24T09:48:43.5154343Z skipping: [kubenode-super-marlin] => (item={'s': 'node-kubenode-super-marlin-key.pem', 'd': 'key.pem'}) -2025-11-24T09:48:43.5155068Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:43.5155355Z -2025-11-24T09:48:43.5155686Z TASK [network_plugin/calico : Calico | Generate typha certs] ******************* -2025-11-24T09:48:43.5505867Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:43.5714646Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:43.5715512Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:43.5717869Z -2025-11-24T09:48:43.5718356Z TASK [network_plugin/calico : Calico | Generate apiserver certs] *************** -2025-11-24T09:48:43.6237308Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:43.6238055Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:43.6239085Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:43.6239452Z -2025-11-24T09:48:43.6239859Z TASK [network_plugin/calico : Calico | Install calicoctl wrapper script] ******* -2025-11-24T09:48:44.1670328Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:44.1671233Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:44.1671817Z changed: [kubenode-super-marlin] -2025-11-24T09:48:44.1672169Z -2025-11-24T09:48:44.1672560Z TASK [network_plugin/calico : Calico | wait for etcd] ************************** -2025-11-24T09:48:44.2055670Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:44.2056605Z -2025-11-24T09:48:44.2057153Z TASK [network_plugin/calico : Calico | Check if calico network pool has already been configured] *** -2025-11-24T09:48:44.2447766Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:44.5029890Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:44.5030655Z ok: [kubenode-super-marlin] -2025-11-24T09:48:44.5030935Z -2025-11-24T09:48:44.5031406Z TASK [network_plugin/calico : Calico | Ensure that calico_pool_cidr is within kube_pods_subnet when defined] *** -2025-11-24T09:48:44.5387467Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:44.5664224Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:44.5665133Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:44.5665502Z -2025-11-24T09:48:44.5666028Z TASK [network_plugin/calico : Calico | Check if calico IPv6 network pool has already been configured] *** -2025-11-24T09:48:44.6184849Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:44.6185740Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:44.6186596Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:44.6187055Z -2025-11-24T09:48:44.6187739Z TASK [network_plugin/calico : Calico | Ensure that calico_pool_cidr_ipv6 is within kube_pods_subnet_ipv6 when defined] *** -2025-11-24T09:48:44.6942556Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:44.6943503Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:44.6944039Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:44.6944327Z -2025-11-24T09:48:44.6944688Z TASK [network_plugin/calico : Calico | Check if extra directory is needed] ***** -2025-11-24T09:48:44.9623426Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:44.9624111Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:44.9624587Z ok: [kubenode-super-marlin] -2025-11-24T09:48:44.9624851Z -2025-11-24T09:48:44.9625197Z TASK [network_plugin/calico : Calico | Set kdd path when calico < v3.22.3] ***** -2025-11-24T09:48:45.0275252Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:45.0276138Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:45.0276791Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:45.0277136Z -2025-11-24T09:48:45.0277532Z TASK [network_plugin/calico : Calico | Set kdd path when calico > v3.22.2] ***** -2025-11-24T09:48:45.1180973Z ok: [kubenode-renewed-asp] -2025-11-24T09:48:45.1181820Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:48:45.1182394Z ok: [kubenode-super-marlin] -2025-11-24T09:48:45.1182996Z -2025-11-24T09:48:45.1183438Z TASK [network_plugin/calico : Calico | Create calico manifests for kdd] ******** -2025-11-24T09:48:45.6424484Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:48:45.6425365Z changed: [kubenode-super-marlin] -2025-11-24T09:48:45.6425860Z changed: [kubenode-renewed-asp] -2025-11-24T09:48:45.6426135Z -2025-11-24T09:48:45.6426519Z TASK [network_plugin/calico : Calico | Create Calico Kubernetes datastore resources] *** -2025-11-24T09:48:46.5198597Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:46.5199500Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:46.5200118Z ok: [kubenode-super-marlin] -2025-11-24T09:48:46.5200460Z -2025-11-24T09:48:46.5200868Z TASK [network_plugin/calico : Calico | Get existing FelixConfiguration] ******** -2025-11-24T09:48:46.8445953Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:46.8446845Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:46.8449877Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/calicoctl.sh", "get", "felixconfig", "default", "-o", "json"], "delta": "0:00:00.081596", "end": "2025-11-24 09:48:45.764314", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:48:45.682718", "stderr": "resource does not exist: FelixConfiguration(default) with error: felixconfigurations.crd.projectcalico.org \"default\" not found", "stderr_lines": ["resource does not exist: FelixConfiguration(default) with error: felixconfigurations.crd.projectcalico.org \"default\" not found"], "stdout": "null", "stdout_lines": ["null"]} -2025-11-24T09:48:46.8452215Z ...ignoring -2025-11-24T09:48:46.8452438Z -2025-11-24T09:48:46.8453198Z TASK [network_plugin/calico : Calico | Set kubespray FelixConfiguration] ******* -2025-11-24T09:48:46.8885658Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:46.9350790Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:46.9351751Z ok: [kubenode-super-marlin] -2025-11-24T09:48:46.9352084Z -2025-11-24T09:48:46.9352491Z TASK [network_plugin/calico : Calico | Process FelixConfiguration] ************* -2025-11-24T09:48:47.0053586Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:47.0054329Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:47.0054889Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:47.0055182Z -2025-11-24T09:48:47.0055530Z TASK [network_plugin/calico : Calico | Configure calico FelixConfiguration] **** -2025-11-24T09:48:49.2992257Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:49.2993491Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:49.2994182Z ok: [kubenode-super-marlin] -2025-11-24T09:48:49.2994545Z -2025-11-24T09:48:49.2994941Z TASK [network_plugin/calico : Calico | Get existing calico network pool] ******* -2025-11-24T09:48:49.3456307Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:49.6560407Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:49.6563159Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/calicoctl.sh", "get", "ippool", "default-pool", "-o", "json"], "delta": "0:00:00.105930", "end": "2025-11-24 09:48:48.582159", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:48:48.476229", "stderr": "resource does not exist: IPPool(default-pool) with error: ippools.crd.projectcalico.org \"default-pool\" not found", "stderr_lines": ["resource does not exist: IPPool(default-pool) with error: ippools.crd.projectcalico.org \"default-pool\" not found"], "stdout": "null", "stdout_lines": ["null"]} -2025-11-24T09:48:49.6565651Z ...ignoring -2025-11-24T09:48:49.6565913Z -2025-11-24T09:48:49.6566250Z TASK [network_plugin/calico : Calico | Set kubespray calico network pool] ****** -2025-11-24T09:48:49.7005352Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:49.7408495Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:49.7409442Z ok: [kubenode-super-marlin] -2025-11-24T09:48:49.7409769Z -2025-11-24T09:48:49.7410214Z TASK [network_plugin/calico : Calico | Get current calico network pool blocksize] *** -2025-11-24T09:48:49.8105764Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:49.8106610Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:49.8107261Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:49.8107622Z -2025-11-24T09:48:49.8108029Z TASK [network_plugin/calico : Calico | Merge calico network pool] ************** -2025-11-24T09:48:49.8744506Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:49.8745387Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:49.8746020Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:49.8746405Z -2025-11-24T09:48:49.8746809Z TASK [network_plugin/calico : Calico | Configure calico network pool] ********** -2025-11-24T09:48:49.9019613Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.1894459Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.1895365Z ok: [kubenode-super-marlin] -2025-11-24T09:48:50.1895702Z -2025-11-24T09:48:50.1896108Z TASK [network_plugin/calico : Calico | Get existing calico ipv6 network pool] *** -2025-11-24T09:48:50.2323330Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.2555657Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.2556652Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:50.2557485Z -2025-11-24T09:48:50.2557952Z TASK [network_plugin/calico : Calico | Set kubespray calico network pool] ****** -2025-11-24T09:48:50.3107243Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.3107955Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.3108481Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:50.3108776Z -2025-11-24T09:48:50.3109203Z TASK [network_plugin/calico : Calico | Get current calico ipv6 network pool blocksize] *** -2025-11-24T09:48:50.3246439Z Still deploying... -2025-11-24T09:48:50.3386994Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.3600771Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.3601781Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:50.3602145Z -2025-11-24T09:48:50.3602545Z TASK [network_plugin/calico : Calico | Merge calico ipv6 network pool] ********* -2025-11-24T09:48:50.3865330Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.4134518Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.4135475Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:50.4135844Z -2025-11-24T09:48:50.4136251Z TASK [network_plugin/calico : Calico | Configure calico ipv6 network pool] ***** -2025-11-24T09:48:50.4453568Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.4722226Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.4723208Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:50.4723531Z -2025-11-24T09:48:50.4723938Z TASK [network_plugin/calico : Populate Service External IPs] ******************* -2025-11-24T09:48:50.4968792Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.4969291Z -2025-11-24T09:48:50.4969648Z TASK [network_plugin/calico : Populate Service LoadBalancer IPs] *************** -2025-11-24T09:48:50.5219949Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.5220533Z -2025-11-24T09:48:50.5220917Z TASK [network_plugin/calico : Determine nodeToNodeMesh needed state] *********** -2025-11-24T09:48:50.5598426Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.5598890Z -2025-11-24T09:48:50.5599240Z TASK [network_plugin/calico : Calico | Get existing BGP Configuration] ********* -2025-11-24T09:48:50.8173102Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.8174024Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.8176752Z fatal: [kubenode-super-marlin]: FAILED! => {"changed": false, "cmd": ["/usr/local/bin/calicoctl.sh", "get", "bgpconfig", "default", "-o", "json"], "delta": "0:00:00.043176", "end": "2025-11-24 09:48:49.754619", "msg": "non-zero return code", "rc": 1, "start": "2025-11-24 09:48:49.711443", "stderr": "resource does not exist: BGPConfiguration(default) with error: bgpconfigurations.crd.projectcalico.org \"default\" not found", "stderr_lines": ["resource does not exist: BGPConfiguration(default) with error: bgpconfigurations.crd.projectcalico.org \"default\" not found"], "stdout": "null", "stdout_lines": ["null"]} -2025-11-24T09:48:50.8179910Z ...ignoring -2025-11-24T09:48:50.8180180Z -2025-11-24T09:48:50.8180594Z TASK [network_plugin/calico : Calico | Set kubespray BGP Configuration] ******** -2025-11-24T09:48:50.8465334Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.8977025Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.8977899Z ok: [kubenode-super-marlin] -2025-11-24T09:48:50.8978242Z -2025-11-24T09:48:50.8978651Z TASK [network_plugin/calico : Calico | Process BGP Configuration] ************** -2025-11-24T09:48:50.9285208Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:50.9578435Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:50.9579216Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:50.9579555Z -2025-11-24T09:48:50.9579925Z TASK [network_plugin/calico : Calico | Set up BGP Configuration] *************** -2025-11-24T09:48:53.2582575Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:53.2583443Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:53.2583976Z ok: [kubenode-super-marlin] -2025-11-24T09:48:53.2584251Z -2025-11-24T09:48:53.2584591Z TASK [network_plugin/calico : Calico | Create calico manifests] **************** -2025-11-24T09:48:56.3249242Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico-config', 'file': 'calico-config.yml', 'type': 'cm'}) -2025-11-24T09:48:56.3250325Z changed: [kubenode-renewed-asp] => (item={'name': 'calico-config', 'file': 'calico-config.yml', 'type': 'cm'}) -2025-11-24T09:48:56.3251251Z changed: [kubenode-super-marlin] => (item={'name': 'calico-config', 'file': 'calico-config.yml', 'type': 'cm'}) -2025-11-24T09:48:56.3252158Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico-node', 'file': 'calico-node.yml', 'type': 'ds'}) -2025-11-24T09:48:56.3253351Z changed: [kubenode-renewed-asp] => (item={'name': 'calico-node', 'file': 'calico-node.yml', 'type': 'ds'}) -2025-11-24T09:48:56.3254344Z changed: [kubenode-super-marlin] => (item={'name': 'calico-node', 'file': 'calico-node.yml', 'type': 'ds'}) -2025-11-24T09:48:56.3255204Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-node-sa.yml', 'type': 'sa'}) -2025-11-24T09:48:56.3256059Z changed: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-node-sa.yml', 'type': 'sa'}) -2025-11-24T09:48:56.3256873Z changed: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-node-sa.yml', 'type': 'sa'}) -2025-11-24T09:48:56.3257721Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-cr.yml', 'type': 'clusterrole'}) -2025-11-24T09:48:56.3258580Z changed: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-cr.yml', 'type': 'clusterrole'}) -2025-11-24T09:48:56.3259412Z changed: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-cr.yml', 'type': 'clusterrole'}) -2025-11-24T09:48:56.3260300Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-crb.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:48:56.3261212Z changed: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-crb.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:48:56.3262100Z changed: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-crb.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:48:56.3263240Z changed: [kubenode-teaching-gobbler] => (item={'name': 'kubernetes-services-endpoint', 'file': 'kubernetes-services-endpoint.yml', 'type': 'cm'}) -2025-11-24T09:48:56.3264345Z changed: [kubenode-super-marlin] => (item={'name': 'kubernetes-services-endpoint', 'file': 'kubernetes-services-endpoint.yml', 'type': 'cm'}) -2025-11-24T09:48:56.3265529Z changed: [kubenode-renewed-asp] => (item={'name': 'kubernetes-services-endpoint', 'file': 'kubernetes-services-endpoint.yml', 'type': 'cm'}) -2025-11-24T09:48:56.3266116Z -2025-11-24T09:48:56.3266431Z TASK [network_plugin/calico : Calico | Create calico manifests for typha] ****** -2025-11-24T09:48:56.3627488Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-typha.yml', 'type': 'typha'}) -2025-11-24T09:48:56.3957973Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:56.3959208Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-typha.yml', 'type': 'typha'}) -2025-11-24T09:48:56.3960176Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:56.3961100Z skipping: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-typha.yml', 'type': 'typha'}) -2025-11-24T09:48:56.3962004Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:56.3962366Z -2025-11-24T09:48:56.3963056Z TASK [network_plugin/calico : Calico | get calico apiserver caBundle] ********** -2025-11-24T09:48:56.4471723Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:56.4472582Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:56.4473532Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:56.4473897Z -2025-11-24T09:48:56.4474322Z TASK [network_plugin/calico : Calico | set calico apiserver caBundle fact] ***** -2025-11-24T09:48:56.5000323Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:56.5001239Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:56.5001899Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:56.5002274Z -2025-11-24T09:48:56.5003380Z TASK [network_plugin/calico : Calico | Create calico manifests for apiserver] *** -2025-11-24T09:48:56.5300047Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-apiserver.yml', 'type': 'calico-apiserver'}) -2025-11-24T09:48:56.5574623Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:56.5575481Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-apiserver.yml', 'type': 'calico-apiserver'}) -2025-11-24T09:48:56.5576307Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:56.5577082Z skipping: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-apiserver.yml', 'type': 'calico-apiserver'}) -2025-11-24T09:48:56.5578200Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:56.5578492Z -2025-11-24T09:48:56.5578818Z TASK [network_plugin/calico : Start Calico resources] ************************** -2025-11-24T09:48:58.8569006Z skipping: [kubenode-renewed-asp] => (item=calico-config.yml) -2025-11-24T09:48:58.8569793Z skipping: [kubenode-teaching-gobbler] => (item=calico-config.yml) -2025-11-24T09:48:58.8570554Z skipping: [kubenode-renewed-asp] => (item=calico-node.yml) -2025-11-24T09:48:58.8571241Z skipping: [kubenode-teaching-gobbler] => (item=calico-node.yml) -2025-11-24T09:48:58.8571912Z skipping: [kubenode-renewed-asp] => (item=calico-node-sa.yml) -2025-11-24T09:48:58.8572613Z skipping: [kubenode-teaching-gobbler] => (item=calico-node-sa.yml) -2025-11-24T09:48:58.8573591Z skipping: [kubenode-teaching-gobbler] => (item=calico-cr.yml) -2025-11-24T09:48:58.8574262Z skipping: [kubenode-renewed-asp] => (item=calico-cr.yml) -2025-11-24T09:48:58.8574914Z skipping: [kubenode-teaching-gobbler] => (item=calico-crb.yml) -2025-11-24T09:48:58.8575583Z skipping: [kubenode-renewed-asp] => (item=calico-crb.yml) -2025-11-24T09:48:58.8576313Z skipping: [kubenode-teaching-gobbler] => (item=kubernetes-services-endpoint.yml) -2025-11-24T09:48:58.8577133Z skipping: [kubenode-renewed-asp] => (item=kubernetes-services-endpoint.yml) -2025-11-24T09:48:58.8577893Z skipping: [kubenode-teaching-gobbler] => (item=calico-typha.yml) -2025-11-24T09:48:58.8578561Z skipping: [kubenode-renewed-asp] => (item=calico-typha.yml) -2025-11-24T09:48:58.8579152Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:58.8579675Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:58.8580203Z ok: [kubenode-super-marlin] => (item=calico-config.yml) -2025-11-24T09:48:58.8580790Z ok: [kubenode-super-marlin] => (item=calico-node.yml) -2025-11-24T09:48:58.8581737Z ok: [kubenode-super-marlin] => (item=calico-node-sa.yml) -2025-11-24T09:48:58.8582326Z ok: [kubenode-super-marlin] => (item=calico-cr.yml) -2025-11-24T09:48:58.8583018Z ok: [kubenode-super-marlin] => (item=calico-crb.yml) -2025-11-24T09:48:58.8583670Z ok: [kubenode-super-marlin] => (item=kubernetes-services-endpoint.yml) -2025-11-24T09:48:58.8584364Z skipping: [kubenode-super-marlin] => (item=calico-typha.yml) -2025-11-24T09:48:58.8584761Z -2025-11-24T09:48:58.8585092Z TASK [network_plugin/calico : Start Calico apiserver resources] **************** -2025-11-24T09:48:58.8998533Z skipping: [kubenode-renewed-asp] => (item=calico-apiserver.yml) -2025-11-24T09:48:58.9440472Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:58.9441304Z skipping: [kubenode-teaching-gobbler] => (item=calico-apiserver.yml) -2025-11-24T09:48:58.9442112Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:58.9443092Z skipping: [kubenode-super-marlin] => (item=calico-apiserver.yml) -2025-11-24T09:48:58.9443872Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:58.9444221Z -2025-11-24T09:48:58.9444612Z TASK [network_plugin/calico : Wait for calico kubeconfig to be created] ******** -2025-11-24T09:48:58.9936753Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:58.9937332Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:58.9937860Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:58.9938213Z -2025-11-24T09:48:58.9938553Z TASK [network_plugin/calico : Calico | Create Calico ipam manifests] *********** -2025-11-24T09:48:59.4970126Z changed: [kubenode-teaching-gobbler] => (item={'name': 'calico', 'file': 'calico-ipamconfig.yml', 'type': 'ipam'}) -2025-11-24T09:48:59.4971401Z changed: [kubenode-super-marlin] => (item={'name': 'calico', 'file': 'calico-ipamconfig.yml', 'type': 'ipam'}) -2025-11-24T09:48:59.4972486Z changed: [kubenode-renewed-asp] => (item={'name': 'calico', 'file': 'calico-ipamconfig.yml', 'type': 'ipam'}) -2025-11-24T09:48:59.4973388Z -2025-11-24T09:48:59.4973789Z TASK [network_plugin/calico : Calico | Create ipamconfig resources] ************ -2025-11-24T09:48:59.8546647Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:59.8547216Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:59.8548049Z ok: [kubenode-super-marlin] -2025-11-24T09:48:59.8548315Z -2025-11-24T09:48:59.8548646Z TASK [network_plugin/calico : Calico | Peer with Calico Route Reflector] ******* -2025-11-24T09:48:59.9067129Z skipping: [kubenode-renewed-asp] -2025-11-24T09:48:59.9429727Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:48:59.9430326Z skipping: [kubenode-super-marlin] -2025-11-24T09:48:59.9430615Z -2025-11-24T09:48:59.9430962Z TASK [network_plugin/calico : Calico | Peer with the router] ******************* -2025-11-24T09:49:00.0208211Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.0208828Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.0209359Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.0209654Z -2025-11-24T09:49:00.0210116Z TASK [network_plugin/flannel : Flannel | Stop if kernel version is too low for Flannel Wireguard encryption] *** -2025-11-24T09:49:00.0484094Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.0675134Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.0675907Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.0676283Z -2025-11-24T09:49:00.0676704Z TASK [network_plugin/flannel : Flannel | Create Flannel manifests] ************* -2025-11-24T09:49:00.0855931Z skipping: [kubenode-renewed-asp] => (item={'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}) -2025-11-24T09:49:00.0857114Z skipping: [kubenode-renewed-asp] => (item={'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}) -2025-11-24T09:49:00.0985674Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.1454313Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}) -2025-11-24T09:49:00.1455729Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}) -2025-11-24T09:49:00.1457128Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.1458110Z skipping: [kubenode-super-marlin] => (item={'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}) -2025-11-24T09:49:00.1459256Z skipping: [kubenode-super-marlin] => (item={'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}) -2025-11-24T09:49:00.1460026Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.1460341Z -2025-11-24T09:49:00.1460694Z TASK [network_plugin/weave : Weave | Create manifest] ************************** -2025-11-24T09:49:00.1707884Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.1880380Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.1881101Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.1881495Z -2025-11-24T09:49:00.1881933Z TASK [network_plugin/weave : Weave | Fix nodePort for Weave] ******************* -2025-11-24T09:49:00.3258712Z Still deploying... -2025-11-24T09:49:00.3701947Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.3703056Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.3703629Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.3703948Z -2025-11-24T09:49:00.3704314Z TASK [network_plugin/macvlan : Macvlan | Retrieve Pod Cidr] ******************** -2025-11-24T09:49:00.4343438Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.4344130Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.4344657Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.4344949Z -2025-11-24T09:49:00.4345285Z TASK [network_plugin/macvlan : Macvlan | set node_pod_cidr] ******************** -2025-11-24T09:49:00.4616093Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.4818809Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.4819644Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.4820032Z -2025-11-24T09:49:00.4820554Z TASK [network_plugin/macvlan : Macvlan | Retrieve default gateway network interface] *** -2025-11-24T09:49:00.5073867Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.5304391Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.5305312Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.5305685Z -2025-11-24T09:49:00.5306074Z TASK [network_plugin/macvlan : Macvlan | set node_default_gateway_interface] *** -2025-11-24T09:49:00.5645326Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.5846912Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.5847895Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.5848256Z -2025-11-24T09:49:00.5848729Z TASK [network_plugin/macvlan : Macvlan | Install network gateway interface on debian] *** -2025-11-24T09:49:00.6118007Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.6351755Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.6352954Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.6353324Z -2025-11-24T09:49:00.6656859Z TASK [network_plugin/macvlan : Macvlan | Install macvlan script on centos] ***** -2025-11-24T09:49:00.6658022Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-local) -2025-11-24T09:49:00.6659344Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-macvlan) -2025-11-24T09:49:00.6956918Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-macvlan) -2025-11-24T09:49:00.6958559Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-local) -2025-11-24T09:49:00.6960143Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-local) -2025-11-24T09:49:00.6961121Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.6962077Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-macvlan) -2025-11-24T09:49:00.6964083Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-local) -2025-11-24T09:49:00.6965446Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifup-macvlan) -2025-11-24T09:49:00.6966851Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-macvlan) -2025-11-24T09:49:00.6968262Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-macvlan) -2025-11-24T09:49:00.6969639Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-local) -2025-11-24T09:49:00.6970459Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.6971304Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/network_plugin/macvlan/files/ifdown-local) -2025-11-24T09:49:00.6972174Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.6972469Z -2025-11-24T09:49:00.6972900Z TASK [network_plugin/macvlan : Macvlan | Install post-up script on centos] ***** -2025-11-24T09:49:00.7449929Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.7450837Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.7451469Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.7451859Z -2025-11-24T09:49:00.7452328Z TASK [network_plugin/macvlan : Macvlan | Install network gateway interface on centos] *** -2025-11-24T09:49:00.7607062Z skipping: [kubenode-renewed-asp] => (item={'src': 'centos-network-macvlan.cfg', 'dst': 'ifcfg-mac0'}) -2025-11-24T09:49:00.7608260Z skipping: [kubenode-renewed-asp] => (item={'src': 'centos-routes-macvlan.cfg', 'dst': 'route-mac0'}) -2025-11-24T09:49:00.7873585Z skipping: [kubenode-renewed-asp] => (item={'src': 'centos-postup-macvlan.cfg', 'dst': 'post-up-mac0'}) -2025-11-24T09:49:00.7874658Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'centos-network-macvlan.cfg', 'dst': 'ifcfg-mac0'}) -2025-11-24T09:49:00.8289032Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.8290501Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'centos-routes-macvlan.cfg', 'dst': 'route-mac0'}) -2025-11-24T09:49:00.8291673Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'centos-postup-macvlan.cfg', 'dst': 'post-up-mac0'}) -2025-11-24T09:49:00.8292457Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.8293424Z skipping: [kubenode-super-marlin] => (item={'src': 'centos-network-macvlan.cfg', 'dst': 'ifcfg-mac0'}) -2025-11-24T09:49:00.8294344Z skipping: [kubenode-super-marlin] => (item={'src': 'centos-routes-macvlan.cfg', 'dst': 'route-mac0'}) -2025-11-24T09:49:00.8295260Z skipping: [kubenode-super-marlin] => (item={'src': 'centos-postup-macvlan.cfg', 'dst': 'post-up-mac0'}) -2025-11-24T09:49:00.8295972Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.8296268Z -2025-11-24T09:49:00.8296691Z TASK [network_plugin/macvlan : Macvlan | Install service nat via gateway on Flatcar Container Linux] *** -2025-11-24T09:49:00.8849572Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.8850293Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.8850813Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.8851109Z -2025-11-24T09:49:00.8851560Z TASK [network_plugin/macvlan : Macvlan | Enable service nat via gateway on Flatcar Container Linux] *** -2025-11-24T09:49:00.9150289Z skipping: [kubenode-renewed-asp] => (item=systemctl daemon-reload) -2025-11-24T09:49:00.9151478Z skipping: [kubenode-renewed-asp] => (item=systemctl enable enable_nat_ouside.service) -2025-11-24T09:49:00.9429320Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:00.9430361Z skipping: [kubenode-teaching-gobbler] => (item=systemctl daemon-reload) -2025-11-24T09:49:00.9431401Z skipping: [kubenode-teaching-gobbler] => (item=systemctl enable enable_nat_ouside.service) -2025-11-24T09:49:00.9432861Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:00.9433677Z skipping: [kubenode-super-marlin] => (item=systemctl daemon-reload) -2025-11-24T09:49:00.9434496Z skipping: [kubenode-super-marlin] => (item=systemctl enable enable_nat_ouside.service) -2025-11-24T09:49:00.9435186Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:00.9435478Z -2025-11-24T09:49:00.9435925Z TASK [network_plugin/macvlan : Macvlan | Install network gateway interface on Flatcar Container Linux] *** -2025-11-24T09:49:00.9600597Z skipping: [kubenode-renewed-asp] => (item={'src': 'coreos-device-macvlan.cfg', 'dst': 'macvlan.netdev'}) -2025-11-24T09:49:00.9775321Z skipping: [kubenode-renewed-asp] => (item={'src': 'coreos-interface-macvlan.cfg', 'dst': 'output.network'}) -2025-11-24T09:49:00.9776640Z skipping: [kubenode-renewed-asp] => (item={'src': 'coreos-network-macvlan.cfg', 'dst': 'macvlan.network'}) -2025-11-24T09:49:01.0079690Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.0080687Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'coreos-device-macvlan.cfg', 'dst': 'macvlan.netdev'}) -2025-11-24T09:49:01.0081811Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'coreos-interface-macvlan.cfg', 'dst': 'output.network'}) -2025-11-24T09:49:01.0083180Z skipping: [kubenode-teaching-gobbler] => (item={'src': 'coreos-network-macvlan.cfg', 'dst': 'macvlan.network'}) -2025-11-24T09:49:01.0083998Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.0084768Z skipping: [kubenode-super-marlin] => (item={'src': 'coreos-device-macvlan.cfg', 'dst': 'macvlan.netdev'}) -2025-11-24T09:49:01.0086136Z skipping: [kubenode-super-marlin] => (item={'src': 'coreos-interface-macvlan.cfg', 'dst': 'output.network'}) -2025-11-24T09:49:01.0087157Z skipping: [kubenode-super-marlin] => (item={'src': 'coreos-network-macvlan.cfg', 'dst': 'macvlan.network'}) -2025-11-24T09:49:01.0087921Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.0088231Z -2025-11-24T09:49:01.0088589Z TASK [network_plugin/macvlan : Macvlan | Install cni definition for Macvlan] *** -2025-11-24T09:49:01.0572045Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.0573138Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.0573776Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.0574465Z -2025-11-24T09:49:01.0574909Z TASK [network_plugin/macvlan : Macvlan | Install loopback definition for Macvlan] *** -2025-11-24T09:49:01.0866217Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.1045449Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.1046370Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.1046770Z -2025-11-24T09:49:01.1047228Z TASK [network_plugin/macvlan : Enable net.ipv4.conf.all.arp_notify in sysctl] *** -2025-11-24T09:49:01.1319262Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.1662030Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.1663070Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.1663446Z -2025-11-24T09:49:01.1663818Z TASK [network_plugin/kube-ovn : Kube-OVN | Label ovn-db node] ****************** -2025-11-24T09:49:01.2026646Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:49:01.2027623Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:49:01.2028545Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:01.2029359Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-super-marlin) -2025-11-24T09:49:01.2030103Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-renewed-asp) -2025-11-24T09:49:01.2030861Z skipping: [kubenode-teaching-gobbler] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:01.2330191Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.2330930Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.2331687Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:49:01.2332523Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:49:01.2333730Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:01.2334859Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.2335207Z -2025-11-24T09:49:01.2335598Z TASK [network_plugin/kube-ovn : Kube-OVN | Create Kube-OVN manifests] ********** -2025-11-24T09:49:01.3188903Z skipping: [kubenode-renewed-asp] => (item={'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}) -2025-11-24T09:49:01.3189947Z skipping: [kubenode-renewed-asp] => (item={'name': 'ovn', 'file': 'cni-ovn.yml'}) -2025-11-24T09:49:01.3190872Z skipping: [kubenode-renewed-asp] => (item={'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}) -2025-11-24T09:49:01.3191860Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}) -2025-11-24T09:49:01.3192851Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.3193594Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'ovn', 'file': 'cni-ovn.yml'}) -2025-11-24T09:49:01.3194549Z skipping: [kubenode-super-marlin] => (item={'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}) -2025-11-24T09:49:01.3195539Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}) -2025-11-24T09:49:01.3196433Z skipping: [kubenode-super-marlin] => (item={'name': 'ovn', 'file': 'cni-ovn.yml'}) -2025-11-24T09:49:01.3197163Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.3197902Z skipping: [kubenode-super-marlin] => (item={'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}) -2025-11-24T09:49:01.3198637Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.3198946Z -2025-11-24T09:49:01.3199356Z TASK [network_plugin/kube-router : Kube-router | Add annotations on kube_control_plane] *** -2025-11-24T09:49:01.3579432Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.3860109Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.3867471Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.3867854Z -2025-11-24T09:49:01.3868237Z TASK [network_plugin/kube-router : Kube-router | Add annotations on kube_node] *** -2025-11-24T09:49:01.4317833Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.4588958Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.4589563Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.4589862Z -2025-11-24T09:49:01.4590240Z TASK [network_plugin/kube-router : Kube-router | Add common annotations on all servers] *** -2025-11-24T09:49:01.5129664Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.5130302Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.5130867Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.5131178Z -2025-11-24T09:49:01.5131549Z TASK [network_plugin/kube-router : Kube-router | Create config directory] ****** -2025-11-24T09:49:01.5713050Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.5713697Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.5714228Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.5714534Z -2025-11-24T09:49:01.5714886Z TASK [network_plugin/kube-router : Kube-router | Create kubeconfig] ************ -2025-11-24T09:49:01.6218303Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.6219100Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.6219637Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.6219937Z -2025-11-24T09:49:01.6220279Z TASK [network_plugin/kube-router : Kube-router | Slurp cni config] ************* -2025-11-24T09:49:01.6803665Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.6804354Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.6804887Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.6805192Z -2025-11-24T09:49:01.6805548Z TASK [network_plugin/kube-router : Kube-router | Set cni_config variable] ****** -2025-11-24T09:49:01.7241871Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.7242609Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.7243414Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.7243718Z -2025-11-24T09:49:01.7244079Z TASK [network_plugin/kube-router : Kube-router | Set host_subnet variable] ***** -2025-11-24T09:49:01.7770933Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.7771652Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.7772524Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.7773092Z -2025-11-24T09:49:01.7773442Z TASK [network_plugin/kube-router : Kube-router | Create cni config] ************ -2025-11-24T09:49:01.8283066Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.8283786Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.8284312Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.8284605Z -2025-11-24T09:49:01.8284959Z TASK [network_plugin/kube-router : Kube-router | Delete old configuration] ***** -2025-11-24T09:49:01.8872206Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.8873489Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:01.8874152Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:01.8874517Z -2025-11-24T09:49:01.8874943Z TASK [network_plugin/kube-router : Kube-router | Create manifest] ************** -2025-11-24T09:49:01.9499816Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:01.9500434Z -2025-11-24T09:49:01.9500869Z TASK [kubernetes-apps/helm : Helm | Gather os specific variables] ************** -2025-11-24T09:49:02.0124820Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:02.0126017Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.0127087Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:02.0128630Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:02.0130165Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.0130776Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.0131148Z -2025-11-24T09:49:02.0131545Z TASK [kubernetes-apps/helm : Helm | Install PyYaml] **************************** -2025-11-24T09:49:02.0456030Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.0677601Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.0678301Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.0678599Z -2025-11-24T09:49:02.0678940Z TASK [kubernetes-apps/helm : Helm | Install PyYaml [flatcar]] ****************** -2025-11-24T09:49:02.1000498Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.1193240Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.1194191Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.1194564Z -2025-11-24T09:49:02.1194979Z TASK [kubernetes-apps/helm : Helm | Download helm] ***************************** -2025-11-24T09:49:02.1488532Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.1743422Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.1744175Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.1744475Z -2025-11-24T09:49:02.1744817Z TASK [kubernetes-apps/helm : Helm | Copy helm binary from download dir] ******** -2025-11-24T09:49:02.2201074Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.2201824Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.2202407Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.2202976Z -2025-11-24T09:49:02.2203348Z TASK [kubernetes-apps/helm : Helm | Get helm completion] *********************** -2025-11-24T09:49:02.2715197Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.2716146Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.2716816Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.2717182Z -2025-11-24T09:49:02.2717601Z TASK [kubernetes-apps/helm : Helm | Install helm completion] ******************* -2025-11-24T09:49:02.3077450Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.3427917Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.3428716Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.3429030Z -2025-11-24T09:49:02.3429498Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** -2025-11-24T09:49:02.3693574Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.3957440Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.3958611Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.3958970Z -2025-11-24T09:49:02.3959346Z TASK [helm-apps : Add Helm repositories] *************************************** -2025-11-24T09:49:02.4579666Z skipping: [kubenode-renewed-asp] => (item={'name': '', 'url': ''}) -2025-11-24T09:49:02.4580610Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.4581353Z skipping: [kubenode-teaching-gobbler] => (item={'name': '', 'url': ''}) -2025-11-24T09:49:02.4582125Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.4583070Z skipping: [kubenode-super-marlin] => (item={'name': '', 'url': ''}) -2025-11-24T09:49:02.4583763Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.4584073Z -2025-11-24T09:49:02.4584411Z TASK [helm-apps : Update Helm repositories] ************************************ -2025-11-24T09:49:02.5164864Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.5165527Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.5166090Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.5166422Z -2025-11-24T09:49:02.5166768Z TASK [helm-apps : Install Helm Applications] *********************************** -2025-11-24T09:49:02.5549245Z skipping: [kubenode-renewed-asp] => (item={'name': '', 'namespace': 'kube-system', 'chart_ref': '', 'chart_version': '', 'wait': True, 'values': {}}) -2025-11-24T09:49:02.6023626Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.6024633Z skipping: [kubenode-teaching-gobbler] => (item={'name': '', 'namespace': 'kube-system', 'chart_ref': '', 'chart_version': '', 'wait': True, 'values': {}}) -2025-11-24T09:49:02.6025571Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.6026901Z skipping: [kubenode-super-marlin] => (item={'name': '', 'namespace': 'kube-system', 'chart_ref': '', 'chart_version': '', 'wait': True, 'values': {}}) -2025-11-24T09:49:02.6027859Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.6028219Z -2025-11-24T09:49:02.6028627Z TASK [network_plugin/custom_cni : Custom CNI | Check Custom CNI Manifests] ***** -2025-11-24T09:49:02.6580529Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.6581319Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.6581879Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.6582505Z -2025-11-24T09:49:02.6583101Z TASK [network_plugin/custom_cni : Custom CNI | Copy Custom manifests] ********** -2025-11-24T09:49:02.6833835Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.6834479Z -2025-11-24T09:49:02.6834895Z TASK [network_plugin/custom_cni : Custom CNI | Start Resources] **************** -2025-11-24T09:49:02.7519833Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.7520494Z -2025-11-24T09:49:02.7520950Z TASK [kubernetes-apps/helm : Helm | Gather os specific variables] ************** -2025-11-24T09:49:02.8285751Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:02.8286922Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.8288052Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:02.8289228Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.8290255Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:02.8291230Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.8291534Z -2025-11-24T09:49:02.8291890Z TASK [kubernetes-apps/helm : Helm | Install PyYaml] **************************** -2025-11-24T09:49:02.8797936Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.8798640Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.8799303Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.8799660Z -2025-11-24T09:49:02.8800066Z TASK [kubernetes-apps/helm : Helm | Install PyYaml [flatcar]] ****************** -2025-11-24T09:49:02.9324467Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.9325168Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.9326149Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.9326501Z -2025-11-24T09:49:02.9326888Z TASK [kubernetes-apps/helm : Helm | Download helm] ***************************** -2025-11-24T09:49:02.9835700Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:02.9836299Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:02.9836829Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:02.9837122Z -2025-11-24T09:49:02.9837466Z TASK [kubernetes-apps/helm : Helm | Copy helm binary from download dir] ******** -2025-11-24T09:49:03.0225267Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:03.0441649Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:03.0442384Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.0443073Z -2025-11-24T09:49:03.0443531Z TASK [kubernetes-apps/helm : Helm | Get helm completion] *********************** -2025-11-24T09:49:03.0705891Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:03.0929324Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:03.0929977Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.0930290Z -2025-11-24T09:49:03.0930670Z TASK [kubernetes-apps/helm : Helm | Install helm completion] ******************* -2025-11-24T09:49:03.1200279Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:03.1702999Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:03.1703709Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.1704039Z -2025-11-24T09:49:03.1704508Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** -2025-11-24T09:49:03.2041079Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:03.2291945Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:03.2295229Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.2296384Z -2025-11-24T09:49:03.2297515Z TASK [helm-apps : Add Helm repositories] *************************************** -2025-11-24T09:49:03.2570057Z skipping: [kubenode-renewed-asp] => (item={'name': 'kubelet-csr-approver', 'url': 'https://postfinance.github.io/kubelet-csr-approver'}) -2025-11-24T09:49:03.2571489Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kubelet-csr-approver', 'url': 'https://postfinance.github.io/kubelet-csr-approver'}) -2025-11-24T09:49:03.2818051Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:03.2818769Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:03.2819834Z skipping: [kubenode-super-marlin] => (item={'name': 'kubelet-csr-approver', 'url': 'https://postfinance.github.io/kubelet-csr-approver'}) -2025-11-24T09:49:03.2820835Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.2821184Z -2025-11-24T09:49:03.2821594Z TASK [helm-apps : Update Helm repositories] ************************************ -2025-11-24T09:49:03.3311261Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:03.3311878Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:03.3312433Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.3313017Z -2025-11-24T09:49:03.3313376Z TASK [helm-apps : Install Helm Applications] *********************************** -2025-11-24T09:49:03.3612355Z skipping: [kubenode-renewed-asp] => (item={'name': 'kubelet-csr-approver', 'namespace': 'kube-system', 'chart_ref': 'kubelet-csr-approver/kubelet-csr-approver', 'chart_version': '1.1.0', 'wait': True, 'values': {}}) -2025-11-24T09:49:03.4989293Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'kubelet-csr-approver', 'namespace': 'kube-system', 'chart_ref': 'kubelet-csr-approver/kubelet-csr-approver', 'chart_version': '1.1.0', 'wait': True, 'values': {}}) -2025-11-24T09:49:03.4990591Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:03.4991138Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:03.4992388Z skipping: [kubenode-super-marlin] => (item={'name': 'kubelet-csr-approver', 'namespace': 'kube-system', 'chart_ref': 'kubelet-csr-approver/kubelet-csr-approver', 'chart_version': '1.1.0', 'wait': True, 'values': {}}) -2025-11-24T09:49:03.4993864Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.4994179Z -2025-11-24T09:49:03.4994525Z PLAY [Install Calico Route Reflector] ****************************************** -2025-11-24T09:49:03.4995546Z skipping: no hosts matched -2025-11-24T09:49:03.4995828Z -2025-11-24T09:49:03.4996199Z PLAY [Patch Kubernetes for Windows] ******************************************** -2025-11-24T09:49:03.4996655Z -2025-11-24T09:49:03.4997011Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:49:03.5874306Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:49:03.5875132Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:03.5875871Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:49:03.5876516Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.5876799Z -2025-11-24T09:49:03.5877115Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:49:03.6358070Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.6358483Z -2025-11-24T09:49:03.6358846Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:49:03.6927187Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.6927628Z -2025-11-24T09:49:03.6928080Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:49:03.7479236Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.7479641Z -2025-11-24T09:49:03.7480026Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:49:03.7801750Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.7802136Z -2025-11-24T09:49:03.7803288Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:49:03.8181999Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:03.8182407Z -2025-11-24T09:49:03.8183041Z TASK [win_nodes/kubernetes_patch : Ensure that user manifests directory exists] *** -2025-11-24T09:49:04.0422466Z changed: [kubenode-super-marlin] -2025-11-24T09:49:04.0423100Z -2025-11-24T09:49:04.0423535Z TASK [win_nodes/kubernetes_patch : Check current nodeselector for kube-proxy daemonset] *** -2025-11-24T09:49:04.3332331Z ok: [kubenode-super-marlin] -2025-11-24T09:49:04.3333027Z -2025-11-24T09:49:04.6786744Z TASK [win_nodes/kubernetes_patch : Apply nodeselector patch for kube-proxy daemonset] *** -2025-11-24T09:49:04.6787565Z changed: [kubenode-super-marlin] -2025-11-24T09:49:04.6787894Z -2025-11-24T09:49:04.6788245Z TASK [win_nodes/kubernetes_patch : debug] ************************************** -2025-11-24T09:49:04.7287892Z ok: [kubenode-super-marlin] => { -2025-11-24T09:49:04.7288507Z "msg": [ -2025-11-24T09:49:04.7289094Z "daemonset.apps/kube-proxy patched (no change)" -2025-11-24T09:49:04.7289680Z ] -2025-11-24T09:49:04.7290091Z } -2025-11-24T09:49:04.7290308Z -2025-11-24T09:49:04.7290651Z TASK [win_nodes/kubernetes_patch : debug] ************************************** -2025-11-24T09:49:04.9368846Z ok: [kubenode-super-marlin] => { -2025-11-24T09:49:04.9369457Z "msg": [] -2025-11-24T09:49:04.9369892Z } -2025-11-24T09:49:04.9370129Z -2025-11-24T09:49:04.9370468Z PLAY [Install Kubernetes apps] ************************************************* -2025-11-24T09:49:04.9370921Z -2025-11-24T09:49:04.9371302Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:49:05.0103937Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:49:05.0104931Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:05.0105842Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:49:05.0106604Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.0106963Z -2025-11-24T09:49:05.0107399Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:49:05.0466014Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.0466434Z -2025-11-24T09:49:05.0466832Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:49:05.1184776Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.1185689Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.1186195Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.1186511Z -2025-11-24T09:49:05.1186902Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:49:05.1583862Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.1584263Z -2025-11-24T09:49:05.1584639Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:49:05.2255014Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.2255632Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.2256191Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.2256565Z -2025-11-24T09:49:05.2257034Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:49:05.3048675Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.3049302Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.3049840Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.3050197Z -2025-11-24T09:49:05.3050811Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Check OpenStack credentials] *** -2025-11-24T09:49:05.3608289Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.3608928Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.3609454Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.3609799Z -2025-11-24T09:49:05.3610353Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Get base64 cacert] *** -2025-11-24T09:49:05.4186536Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.4187613Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.4188174Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.4188508Z -2025-11-24T09:49:05.4189089Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Get base64 cloud-config] *** -2025-11-24T09:49:05.4889823Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.4890487Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.4890999Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.4891308Z -2025-11-24T09:49:05.4891814Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Generate Manifests] *** -2025-11-24T09:49:05.5786336Z skipping: [kubenode-super-marlin] => (item={'name': 'external-openstack-cloud-config-secret', 'file': 'external-openstack-cloud-config-secret.yml'}) -2025-11-24T09:49:05.5788172Z skipping: [kubenode-super-marlin] => (item={'name': 'external-openstack-cloud-controller-manager-roles', 'file': 'external-openstack-cloud-controller-manager-roles.yml'}) -2025-11-24T09:49:05.5789804Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-openstack-cloud-config-secret', 'file': 'external-openstack-cloud-config-secret.yml'}) -2025-11-24T09:49:05.5791554Z skipping: [kubenode-super-marlin] => (item={'name': 'external-openstack-cloud-controller-manager-role-bindings', 'file': 'external-openstack-cloud-controller-manager-role-bindings.yml'}) -2025-11-24T09:49:05.5793498Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-openstack-cloud-controller-manager-roles', 'file': 'external-openstack-cloud-controller-manager-roles.yml'}) -2025-11-24T09:49:05.5795124Z skipping: [kubenode-super-marlin] => (item={'name': 'external-openstack-cloud-controller-manager-ds', 'file': 'external-openstack-cloud-controller-manager-ds.yml'}) -2025-11-24T09:49:05.5796164Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.5797318Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-openstack-cloud-controller-manager-role-bindings', 'file': 'external-openstack-cloud-controller-manager-role-bindings.yml'}) -2025-11-24T09:49:05.5798930Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-openstack-cloud-config-secret', 'file': 'external-openstack-cloud-config-secret.yml'}) -2025-11-24T09:49:05.5800412Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-openstack-cloud-controller-manager-ds', 'file': 'external-openstack-cloud-controller-manager-ds.yml'}) -2025-11-24T09:49:05.5801778Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.5802833Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-openstack-cloud-controller-manager-roles', 'file': 'external-openstack-cloud-controller-manager-roles.yml'}) -2025-11-24T09:49:05.5804332Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-openstack-cloud-controller-manager-role-bindings', 'file': 'external-openstack-cloud-controller-manager-role-bindings.yml'}) -2025-11-24T09:49:05.5805785Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-openstack-cloud-controller-manager-ds', 'file': 'external-openstack-cloud-controller-manager-ds.yml'}) -2025-11-24T09:49:05.5806699Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.5806994Z -2025-11-24T09:49:05.5807462Z TASK [kubernetes-apps/external_cloud_controller/openstack : External OpenStack Cloud Controller | Apply Manifests] *** -2025-11-24T09:49:05.6274529Z skipping: [kubenode-super-marlin] => (item=external-openstack-cloud-config-secret.yml) -2025-11-24T09:49:05.6864741Z skipping: [kubenode-super-marlin] => (item=external-openstack-cloud-controller-manager-roles.yml) -2025-11-24T09:49:05.6866740Z skipping: [kubenode-super-marlin] => (item=external-openstack-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:05.6868295Z skipping: [kubenode-super-marlin] => (item=external-openstack-cloud-controller-manager-ds.yml) -2025-11-24T09:49:05.6869182Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.6870400Z skipping: [kubenode-renewed-asp] => (item=external-openstack-cloud-config-secret.yml) -2025-11-24T09:49:05.6871483Z skipping: [kubenode-renewed-asp] => (item=external-openstack-cloud-controller-manager-roles.yml) -2025-11-24T09:49:05.6872555Z skipping: [kubenode-teaching-gobbler] => (item=external-openstack-cloud-config-secret.yml) -2025-11-24T09:49:05.6874019Z skipping: [kubenode-renewed-asp] => (item=external-openstack-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:05.6875060Z skipping: [kubenode-teaching-gobbler] => (item=external-openstack-cloud-controller-manager-roles.yml) -2025-11-24T09:49:05.6876028Z skipping: [kubenode-renewed-asp] => (item=external-openstack-cloud-controller-manager-ds.yml) -2025-11-24T09:49:05.6876895Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.6877674Z skipping: [kubenode-teaching-gobbler] => (item=external-openstack-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:05.6878734Z skipping: [kubenode-teaching-gobbler] => (item=external-openstack-cloud-controller-manager-ds.yml) -2025-11-24T09:49:05.6885483Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.6885836Z -2025-11-24T09:49:05.6886350Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Controller | Check vsphere credentials] *** -2025-11-24T09:49:05.7459718Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.7460350Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.7460894Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.7461208Z -2025-11-24T09:49:05.7461752Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Controller | Generate CPI cloud-config] *** -2025-11-24T09:49:05.9272929Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cpi-cloud-config) -2025-11-24T09:49:05.9273746Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:05.9756964Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cpi-cloud-config) -2025-11-24T09:49:05.9757763Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:05.9758507Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cpi-cloud-config) -2025-11-24T09:49:05.9759256Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:05.9759594Z -2025-11-24T09:49:05.9760140Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Controller | Generate Manifests] *** -2025-11-24T09:49:06.0111793Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cpi-cloud-config-secret.yml) -2025-11-24T09:49:06.0113472Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.0114438Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cpi-cloud-config-secret.yml) -2025-11-24T09:49:06.0115422Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.0116421Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.0117407Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.0118392Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.0119324Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cpi-cloud-config-secret.yml) -2025-11-24T09:49:06.0120045Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.0120746Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.0121695Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.0122460Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.0123395Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.0124409Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.0125154Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.0125466Z -2025-11-24T09:49:06.0126376Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Provider Interface | Create a CPI configMap manifest] *** -2025-11-24T09:49:06.0704878Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.0705553Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.0706144Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.0706506Z -2025-11-24T09:49:06.0707207Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Provider Interface | Apply a CPI configMap manifest] *** -2025-11-24T09:49:06.2104868Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.2105898Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.2106495Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.2106887Z -2025-11-24T09:49:06.2107476Z TASK [kubernetes-apps/external_cloud_controller/vsphere : External vSphere Cloud Controller | Apply Manifests] *** -2025-11-24T09:49:06.2108641Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cpi-cloud-config-secret.yml) -2025-11-24T09:49:06.2109714Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.2110854Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.2719012Z skipping: [kubenode-super-marlin] => (item=external-vsphere-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.2720100Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cpi-cloud-config-secret.yml) -2025-11-24T09:49:06.2721099Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.2721887Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.2722922Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.2723977Z skipping: [kubenode-renewed-asp] => (item=external-vsphere-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.2724740Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.2725494Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cpi-cloud-config-secret.yml) -2025-11-24T09:49:06.2726532Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.2727632Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.2729033Z skipping: [kubenode-teaching-gobbler] => (item=external-vsphere-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.2729822Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.2730154Z -2025-11-24T09:49:06.2730679Z TASK [kubernetes-apps/external_cloud_controller/hcloud : External Hcloud Cloud Controller | Generate Manifests] *** -2025-11-24T09:49:06.3308571Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.3309221Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.3309817Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.3310175Z -2025-11-24T09:49:06.3310780Z TASK [kubernetes-apps/external_cloud_controller/hcloud : External Hcloud Cloud Controller | Apply Manifests] *** -2025-11-24T09:49:06.3722236Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.3723093Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.3723660Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.3723980Z -2025-11-24T09:49:06.3724573Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External Huawei Cloud Controller | Check Huawei credentials] *** -2025-11-24T09:49:06.4267183Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.4267845Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.4268444Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.4268816Z -2025-11-24T09:49:06.4269432Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External huaweicloud Cloud Controller | Get base64 cacert] *** -2025-11-24T09:49:06.4864310Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.4864932Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.4865462Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.4865802Z -2025-11-24T09:49:06.4866845Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External huaweicloud Cloud Controller | Get base64 cloud-config] *** -2025-11-24T09:49:06.5159300Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.5445023Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.5445720Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.5446126Z -2025-11-24T09:49:06.6208932Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External Huawei Cloud Controller | Generate Manifests] *** -2025-11-24T09:49:06.6210750Z skipping: [kubenode-super-marlin] => (item={'name': 'external-huawei-cloud-config-secret', 'file': 'external-huawei-cloud-config-secret.yml'}) -2025-11-24T09:49:06.6212115Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-huawei-cloud-config-secret', 'file': 'external-huawei-cloud-config-secret.yml'}) -2025-11-24T09:49:06.6213861Z skipping: [kubenode-super-marlin] => (item={'name': 'external-huawei-cloud-controller-manager-roles', 'file': 'external-huawei-cloud-controller-manager-roles.yml'}) -2025-11-24T09:49:06.6215395Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-huawei-cloud-controller-manager-roles', 'file': 'external-huawei-cloud-controller-manager-roles.yml'}) -2025-11-24T09:49:06.6217003Z skipping: [kubenode-super-marlin] => (item={'name': 'external-huawei-cloud-controller-manager-role-bindings', 'file': 'external-huawei-cloud-controller-manager-role-bindings.yml'}) -2025-11-24T09:49:06.6218694Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-huawei-cloud-controller-manager-role-bindings', 'file': 'external-huawei-cloud-controller-manager-role-bindings.yml'}) -2025-11-24T09:49:06.6220292Z skipping: [kubenode-renewed-asp] => (item={'name': 'external-huawei-cloud-controller-manager-ds', 'file': 'external-huawei-cloud-controller-manager-ds.yml'}) -2025-11-24T09:49:06.6221702Z skipping: [kubenode-super-marlin] => (item={'name': 'external-huawei-cloud-controller-manager-ds', 'file': 'external-huawei-cloud-controller-manager-ds.yml'}) -2025-11-24T09:49:06.6222566Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.6223170Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.6223991Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-huawei-cloud-config-secret', 'file': 'external-huawei-cloud-config-secret.yml'}) -2025-11-24T09:49:06.6225279Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-huawei-cloud-controller-manager-roles', 'file': 'external-huawei-cloud-controller-manager-roles.yml'}) -2025-11-24T09:49:06.6228031Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-huawei-cloud-controller-manager-role-bindings', 'file': 'external-huawei-cloud-controller-manager-role-bindings.yml'}) -2025-11-24T09:49:06.6232481Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'external-huawei-cloud-controller-manager-ds', 'file': 'external-huawei-cloud-controller-manager-ds.yml'}) -2025-11-24T09:49:06.6234052Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.6234371Z -2025-11-24T09:49:06.6234863Z TASK [kubernetes-apps/external_cloud_controller/huaweicloud : External Huawei Cloud Controller | Apply Manifests] *** -2025-11-24T09:49:06.6560008Z skipping: [kubenode-super-marlin] => (item=external-huawei-cloud-config-secret.yml) -2025-11-24T09:49:06.6561167Z skipping: [kubenode-super-marlin] => (item=external-huawei-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.6562290Z skipping: [kubenode-super-marlin] => (item=external-huawei-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.6563540Z skipping: [kubenode-super-marlin] => (item=external-huawei-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.7837709Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.7838670Z skipping: [kubenode-renewed-asp] => (item=external-huawei-cloud-config-secret.yml) -2025-11-24T09:49:06.7839763Z skipping: [kubenode-renewed-asp] => (item=external-huawei-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.7841306Z skipping: [kubenode-renewed-asp] => (item=external-huawei-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.7842979Z skipping: [kubenode-renewed-asp] => (item=external-huawei-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.7843832Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.7844573Z skipping: [kubenode-teaching-gobbler] => (item=external-huawei-cloud-config-secret.yml) -2025-11-24T09:49:06.7845616Z skipping: [kubenode-teaching-gobbler] => (item=external-huawei-cloud-controller-manager-roles.yml) -2025-11-24T09:49:06.7846764Z skipping: [kubenode-teaching-gobbler] => (item=external-huawei-cloud-controller-manager-role-bindings.yml) -2025-11-24T09:49:06.7848022Z skipping: [kubenode-teaching-gobbler] => (item=external-huawei-cloud-controller-manager-ds.yml) -2025-11-24T09:49:06.7848832Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.7849165Z -2025-11-24T09:49:06.7849538Z TASK [kubernetes-apps/network_plugin/flannel : Flannel | Start Resources] ****** -2025-11-24T09:49:06.8206833Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.8682401Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.8685071Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.8687208Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.8688551Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.8689080Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.8690453Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'flannel', 'file': 'cni-flannel-rbac.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.8693081Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'flannel'", 'item': {'name': 'kube-flannel', 'file': 'cni-flannel.yml', 'type': 'ds'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.8694447Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.8694783Z -2025-11-24T09:49:06.8695267Z TASK [kubernetes-apps/network_plugin/flannel : Flannel | Wait for flannel subnet.env file presence] *** -2025-11-24T09:49:06.9020069Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:06.9437905Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:06.9438590Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:06.9438972Z -2025-11-24T09:49:06.9439415Z TASK [kubernetes-apps/network_plugin/kube-ovn : Kube-OVN | Start Resources] **** -2025-11-24T09:49:06.9666079Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.9668647Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'ovn', 'file': 'cni-ovn.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.9670558Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:06.9783877Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:07.0251181Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:07.0254097Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'ovn', 'file': 'cni-ovn.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:07.0256234Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:07.0257592Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:07.0259158Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn-crd', 'file': 'cni-kube-ovn-crd.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:07.0261225Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'ovn', 'file': 'cni-ovn.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:07.0263337Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "kube_network_plugin == 'kube-ovn'", 'item': {'name': 'kube-ovn', 'file': 'cni-kube-ovn.yml'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:07.0264631Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:07.0264962Z -2025-11-24T09:49:07.0265331Z TASK [kubernetes-apps/network_plugin/weave : Weave | Start Resources] ********** -2025-11-24T09:49:07.0773557Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:07.0774189Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:07.0774744Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:07.0775076Z -2025-11-24T09:49:07.0775527Z TASK [kubernetes-apps/network_plugin/weave : Weave | Wait for Weave to become available] *** -2025-11-24T09:49:07.1604104Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:07.1604735Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:07.1605278Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:07.1605613Z -2025-11-24T09:49:07.1606055Z TASK [kubernetes-apps/network_plugin/kube-router : Kube-router | Start Resources] *** -2025-11-24T09:49:07.2055680Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:07.2056070Z -2025-11-24T09:49:07.2056560Z TASK [kubernetes-apps/network_plugin/kube-router : Kube-router | Wait for kube-router pods to be ready] *** -2025-11-24T09:49:07.2955336Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:07.2955813Z -2025-11-24T09:49:07.2956306Z TASK [policy_controller/calico : Create calico-kube-controllers manifests] ***** -2025-11-24T09:49:09.1379037Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-controllers.yml', 'type': 'deployment'}) -2025-11-24T09:49:09.1380380Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-controllers.yml', 'type': 'deployment'}) -2025-11-24T09:49:09.1381616Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:09.1383286Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:09.1384455Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-cr.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:09.1385630Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-cr.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:09.1386785Z skipping: [kubenode-renewed-asp] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-crb.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:09.1387743Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:09.1388620Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-crb.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:09.1389446Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:09.1390255Z changed: [kubenode-super-marlin] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-controllers.yml', 'type': 'deployment'}) -2025-11-24T09:49:09.1391279Z changed: [kubenode-super-marlin] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:09.1392273Z changed: [kubenode-super-marlin] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-cr.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:09.1393440Z changed: [kubenode-super-marlin] => (item={'name': 'calico-kube-controllers', 'file': 'calico-kube-crb.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:09.1394020Z -2025-11-24T09:49:09.1394349Z TASK [policy_controller/calico : Start of Calico kube controllers] ************* -2025-11-24T09:49:10.3276012Z Still deploying... -2025-11-24T09:49:10.3902254Z skipping: [kubenode-teaching-gobbler] => (item=calico-kube-controllers.yml) -2025-11-24T09:49:10.3903477Z skipping: [kubenode-renewed-asp] => (item=calico-kube-controllers.yml) -2025-11-24T09:49:10.3904268Z skipping: [kubenode-teaching-gobbler] => (item=calico-kube-sa.yml) -2025-11-24T09:49:10.3904982Z skipping: [kubenode-renewed-asp] => (item=calico-kube-sa.yml) -2025-11-24T09:49:10.3905679Z skipping: [kubenode-teaching-gobbler] => (item=calico-kube-cr.yml) -2025-11-24T09:49:10.3906361Z skipping: [kubenode-renewed-asp] => (item=calico-kube-cr.yml) -2025-11-24T09:49:10.3907081Z skipping: [kubenode-teaching-gobbler] => (item=calico-kube-crb.yml) -2025-11-24T09:49:10.3908113Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.3908690Z skipping: [kubenode-renewed-asp] => (item=calico-kube-crb.yml) -2025-11-24T09:49:10.3909301Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.3909877Z ok: [kubenode-super-marlin] => (item=calico-kube-controllers.yml) -2025-11-24T09:49:10.3910524Z ok: [kubenode-super-marlin] => (item=calico-kube-sa.yml) -2025-11-24T09:49:10.3911135Z ok: [kubenode-super-marlin] => (item=calico-kube-cr.yml) -2025-11-24T09:49:10.3911735Z ok: [kubenode-super-marlin] => (item=calico-kube-crb.yml) -2025-11-24T09:49:10.3912123Z -2025-11-24T09:49:10.3912585Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Create addon dir] *** -2025-11-24T09:49:10.4589952Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.4590568Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.4591128Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.4591459Z -2025-11-24T09:49:10.4591969Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Templates list] *** -2025-11-24T09:49:10.5100375Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.5101013Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.5101549Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.5101885Z -2025-11-24T09:49:10.5102568Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Append extra templates to NGINX Ingress Template list for service] *** -2025-11-24T09:49:10.5680198Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.5680789Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.5681710Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.5682032Z -2025-11-24T09:49:10.5682904Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Append extra templates to NGINX Ingress Templates list for webhook] *** -2025-11-24T09:49:10.6026476Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.6251841Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.6252572Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.6253290Z -2025-11-24T09:49:10.6253843Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Create manifests] *** -2025-11-24T09:49:10.6753182Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.6753838Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.6754390Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.6754721Z -2025-11-24T09:49:10.6755221Z TASK [kubernetes-apps/ingress_controller/ingress_nginx : NGINX Ingress Controller | Apply manifests] *** -2025-11-24T09:49:10.7492941Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.7493789Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.7494397Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.7494778Z -2025-11-24T09:49:10.7495332Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Remove legacy addon dir and manifests] *** -2025-11-24T09:49:10.7787942Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.8016593Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.8017202Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.8017548Z -2025-11-24T09:49:10.8018044Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Remove legacy namespace] *** -2025-11-24T09:49:10.8338951Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.8578220Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.8578813Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.8579136Z -2025-11-24T09:49:10.8579560Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Create addon dir] *** -2025-11-24T09:49:10.8899801Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.9090893Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.9091526Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.9091881Z -2025-11-24T09:49:10.9092330Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Templates list] *** -2025-11-24T09:49:10.9419960Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:10.9676566Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:10.9677169Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:10.9677520Z -2025-11-24T09:49:10.9677941Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Create manifests] *** -2025-11-24T09:49:10.9998381Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.0219546Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.0220158Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.0220498Z -2025-11-24T09:49:11.0220940Z TASK [kubernetes-apps/ingress_controller/cert_manager : Cert Manager | Apply manifests] *** -2025-11-24T09:49:11.0581366Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.1087995Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.1088641Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.1088994Z -2025-11-24T09:49:11.1089521Z TASK [kubernetes-apps/ingress_controller/alb_ingress_controller : ALB Ingress Controller | Create addon dir] *** -2025-11-24T09:49:11.1485137Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.1724653Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.1725346Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.1725793Z -2025-11-24T09:49:11.1726381Z TASK [kubernetes-apps/ingress_controller/alb_ingress_controller : ALB Ingress Controller | Create manifests] *** -2025-11-24T09:49:11.1918184Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:11.1920020Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:11.2155351Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}) -2025-11-24T09:49:11.2156398Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:11.2157416Z skipping: [kubenode-super-marlin] => (item={'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}) -2025-11-24T09:49:11.2158489Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:11.2160026Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:11.2161113Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}) -2025-11-24T09:49:11.2162008Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:11.2594364Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.2595525Z skipping: [kubenode-renewed-asp] => (item={'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}) -2025-11-24T09:49:11.2596485Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.2597475Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:11.2598949Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:11.2600175Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}) -2025-11-24T09:49:11.2601203Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:11.2602266Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}) -2025-11-24T09:49:11.2603457Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.2603782Z -2025-11-24T09:49:11.2604621Z TASK [kubernetes-apps/ingress_controller/alb_ingress_controller : ALB Ingress Controller | Apply manifests] *** -2025-11-24T09:49:11.2948878Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.2951664Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.2954475Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.2956756Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.2959416Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.2961437Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3781037Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.3790790Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3793959Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3796060Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3798235Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3799611Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.3801109Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrole', 'file': 'alb-ingress-clusterrole.yml', 'type': 'clusterrole'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3803393Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-clusterrolebinding', 'file': 'alb-ingress-clusterrolebinding.yml', 'type': 'clusterrolebinding'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3805572Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-ns', 'file': 'alb-ingress-ns.yml', 'type': 'ns'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3807394Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-sa', 'file': 'alb-ingress-sa.yml', 'type': 'sa'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3809250Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'ingress_alb_enabled', 'item': {'name': 'alb-ingress-deploy', 'file': 'alb-ingress-deploy.yml', 'type': 'deploy'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:11.3810465Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.3810772Z -2025-11-24T09:49:11.3811327Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Ensure base dir is created on all hosts] *** -2025-11-24T09:49:11.4105257Z skipping: [kubenode-super-marlin] => (item=['kubenode-renewed-asp', 'local-storage']) -2025-11-24T09:49:11.4106288Z skipping: [kubenode-super-marlin] => (item=['kubenode-teaching-gobbler', 'local-storage']) -2025-11-24T09:49:11.4107222Z skipping: [kubenode-super-marlin] => (item=['kubenode-super-marlin', 'local-storage']) -2025-11-24T09:49:11.4488254Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.4489153Z skipping: [kubenode-renewed-asp] => (item=['kubenode-renewed-asp', 'local-storage']) -2025-11-24T09:49:11.4490119Z skipping: [kubenode-renewed-asp] => (item=['kubenode-teaching-gobbler', 'local-storage']) -2025-11-24T09:49:11.4491086Z skipping: [kubenode-renewed-asp] => (item=['kubenode-super-marlin', 'local-storage']) -2025-11-24T09:49:11.4491859Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.4492606Z skipping: [kubenode-teaching-gobbler] => (item=['kubenode-renewed-asp', 'local-storage']) -2025-11-24T09:49:11.4494111Z skipping: [kubenode-teaching-gobbler] => (item=['kubenode-teaching-gobbler', 'local-storage']) -2025-11-24T09:49:11.4495126Z skipping: [kubenode-teaching-gobbler] => (item=['kubenode-super-marlin', 'local-storage']) -2025-11-24T09:49:11.4495915Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.4496269Z -2025-11-24T09:49:11.4496861Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Create addon dir] *** -2025-11-24T09:49:11.5117368Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.5117981Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.5118485Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.5118795Z -2025-11-24T09:49:11.5119311Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Templates list] *** -2025-11-24T09:49:11.5325672Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.5594085Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.5594656Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.5595050Z -2025-11-24T09:49:11.5595558Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Create manifests] *** -2025-11-24T09:49:11.6030035Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.6287663Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.6288260Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.6288592Z -2025-11-24T09:49:11.6289143Z TASK [kubernetes-apps/external_provisioner/local_volume_provisioner : Local Volume Provisioner | Apply manifests] *** -2025-11-24T09:49:11.6627295Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.7106855Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.7107507Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.7107870Z -2025-11-24T09:49:11.7108503Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Remove legacy addon dir and manifests] *** -2025-11-24T09:49:11.7436608Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.7728206Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.7728766Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.7729082Z -2025-11-24T09:49:11.7729569Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Remove legacy namespace] *** -2025-11-24T09:49:11.8107001Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.8337296Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.8337909Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.8338230Z -2025-11-24T09:49:11.8338721Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Remove legacy storageclass] *** -2025-11-24T09:49:11.8659205Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.8925489Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.8926132Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.8926502Z -2025-11-24T09:49:11.8927039Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Create addon dir] *** -2025-11-24T09:49:11.9514560Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:11.9515209Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:11.9515784Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:11.9516139Z -2025-11-24T09:49:11.9516674Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Templates list] *** -2025-11-24T09:49:11.9767430Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.0009404Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.0010524Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.0010935Z -2025-11-24T09:49:12.0011501Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Create manifests] *** -2025-11-24T09:49:12.0343275Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.0707723Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.0708476Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.0708892Z -2025-11-24T09:49:12.0709518Z TASK [kubernetes-apps/external_provisioner/cephfs_provisioner : CephFS Provisioner | Apply manifests] *** -2025-11-24T09:49:12.1009742Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.1467712Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.1468310Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.1468630Z -2025-11-24T09:49:12.1469163Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Remove legacy addon dir and manifests] *** -2025-11-24T09:49:12.2000050Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.2000698Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.2001247Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.2001582Z -2025-11-24T09:49:12.2002089Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Remove legacy namespace] *** -2025-11-24T09:49:12.2346223Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.2555663Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.2556429Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.2556829Z -2025-11-24T09:49:12.2557462Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Remove legacy storageclass] *** -2025-11-24T09:49:12.2835573Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.3057849Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.3058506Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.3058906Z -2025-11-24T09:49:12.3059461Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Create addon dir] *** -2025-11-24T09:49:12.3365795Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.3576570Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.3577151Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.3577478Z -2025-11-24T09:49:12.3577919Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Templates list] *** -2025-11-24T09:49:12.3838099Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.4030699Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.4031323Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.4031691Z -2025-11-24T09:49:12.4032188Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Create manifests] *** -2025-11-24T09:49:12.4334031Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.4561102Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.4561781Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.4562128Z -2025-11-24T09:49:12.4562905Z TASK [kubernetes-apps/external_provisioner/rbd_provisioner : RBD Provisioner | Apply manifests] *** -2025-11-24T09:49:12.5228377Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.5228989Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.5229506Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.5229822Z -2025-11-24T09:49:12.5230338Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Create addon dir] *** -2025-11-24T09:49:12.5521591Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.5808079Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.5808665Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.5809008Z -2025-11-24T09:49:12.5809505Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Create claim root dir] *** -2025-11-24T09:49:12.6154708Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.6451162Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.6451874Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.6452264Z -2025-11-24T09:49:12.6453621Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Render Template] *** -2025-11-24T09:49:12.6710726Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.6914578Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.6915201Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.6915535Z -2025-11-24T09:49:12.6916047Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Create manifests] *** -2025-11-24T09:49:12.7421011Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.7421982Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.7422520Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.7423111Z -2025-11-24T09:49:12.7423674Z TASK [kubernetes-apps/external_provisioner/local_path_provisioner : Local Path Provisioner | Apply manifests] *** -2025-11-24T09:49:12.7779140Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:12.9343166Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:12.9343800Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:12.9344184Z -2025-11-24T09:49:12.9344567Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Wait for kube-apiserver] ***** -2025-11-24T09:49:13.2944681Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:13.2945325Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:13.2945879Z ok: [kubenode-super-marlin] -2025-11-24T09:49:13.2946170Z -2025-11-24T09:49:13.2946575Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down CoreDNS templates] *** -2025-11-24T09:49:13.3412878Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:18.5910086Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:18.5911493Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-config.yml', 'type': 'configmap'}) -2025-11-24T09:49:18.5913020Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-deployment.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.5914147Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:18.5915291Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:18.5916865Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-svc.yml', 'type': 'svc'}) -2025-11-24T09:49:18.5917981Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:18.5919160Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.5920289Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:18.5921420Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-config.yml', 'type': 'configmap'}) -2025-11-24T09:49:18.5923004Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:18.5924410Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-deployment.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.5925825Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'file': 'coredns-poddisruptionbudget.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) -2025-11-24T09:49:18.5927122Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:18.5928017Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:18.5928713Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:18.5929585Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-svc.yml', 'type': 'svc'}) -2025-11-24T09:49:18.5930535Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.5931576Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:18.5932840Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:18.5934233Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'file': 'coredns-poddisruptionbudget.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) -2025-11-24T09:49:18.5935420Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:18.5936163Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:18.5936880Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:18.5937850Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:18.5938794Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-config.yml', 'type': 'configmap'}) -2025-11-24T09:49:18.5939684Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-deployment.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.5940547Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:18.5941368Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-svc.yml', 'type': 'svc'}) -2025-11-24T09:49:18.5942240Z changed: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.5943323Z changed: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrole.yml', 'type': 'clusterrole'}) -2025-11-24T09:49:18.5944388Z changed: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-clusterrolebinding.yml', 'type': 'clusterrolebinding'}) -2025-11-24T09:49:18.5945688Z changed: [kubenode-super-marlin] => (item={'name': 'coredns', 'file': 'coredns-poddisruptionbudget.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) -2025-11-24T09:49:18.5946815Z changed: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'file': 'dns-autoscaler-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:18.5947318Z -2025-11-24T09:49:18.5947692Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down Secondary CoreDNS Template] *** -2025-11-24T09:49:18.6936673Z skipping: [kubenode-super-marlin] => (item={'name': 'coredns', 'src': 'coredns-deployment.yml', 'file': 'coredns-deployment-secondary.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.6938286Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'src': 'coredns-deployment.yml', 'file': 'coredns-deployment-secondary.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.6939698Z skipping: [kubenode-super-marlin] => (item={'name': 'coredns', 'src': 'coredns-svc.yml', 'file': 'coredns-svc-secondary.yml', 'type': 'svc'}) -2025-11-24T09:49:18.6940988Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'src': 'coredns-svc.yml', 'file': 'coredns-svc-secondary.yml', 'type': 'svc'}) -2025-11-24T09:49:18.6942379Z skipping: [kubenode-super-marlin] => (item={'name': 'dns-autoscaler', 'src': 'dns-autoscaler.yml', 'file': 'coredns-autoscaler-secondary.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.6944210Z skipping: [kubenode-renewed-asp] => (item={'name': 'dns-autoscaler', 'src': 'dns-autoscaler.yml', 'file': 'coredns-autoscaler-secondary.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.6946129Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'src': 'coredns-deployment.yml', 'file': 'coredns-deployment-secondary.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.6948012Z skipping: [kubenode-renewed-asp] => (item={'name': 'coredns', 'src': 'coredns-poddisruptionbudget.yml', 'file': 'coredns-poddisruptionbudget-secondary.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) -2025-11-24T09:49:18.6950028Z skipping: [kubenode-super-marlin] => (item={'name': 'coredns', 'src': 'coredns-poddisruptionbudget.yml', 'file': 'coredns-poddisruptionbudget-secondary.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) -2025-11-24T09:49:18.6951244Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:18.6951718Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:18.6952497Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'src': 'coredns-svc.yml', 'file': 'coredns-svc-secondary.yml', 'type': 'svc'}) -2025-11-24T09:49:18.6953836Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'dns-autoscaler', 'src': 'dns-autoscaler.yml', 'file': 'coredns-autoscaler-secondary.yml', 'type': 'deployment'}) -2025-11-24T09:49:18.6955334Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'coredns', 'src': 'coredns-poddisruptionbudget.yml', 'file': 'coredns-poddisruptionbudget-secondary.yml', 'type': 'poddisruptionbudget', 'condition': 'coredns_pod_disruption_budget'}) -2025-11-24T09:49:18.6956454Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:18.6956757Z -2025-11-24T09:49:18.6957144Z TASK [kubernetes-apps/ansible : Kubernetes Apps | set up necessary nodelocaldns parameters] *** -2025-11-24T09:49:18.8003120Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:18.8003884Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:18.8004570Z ok: [kubenode-super-marlin] -2025-11-24T09:49:18.8004923Z -2025-11-24T09:49:18.8005447Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down nodelocaldns Template] *** -2025-11-24T09:49:20.1936736Z skipping: [kubenode-renewed-asp] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-config.yml', 'type': 'configmap'}) -2025-11-24T09:49:20.1937928Z skipping: [kubenode-renewed-asp] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:20.1939037Z skipping: [kubenode-renewed-asp] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:20.1940211Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:20.1941068Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-config.yml', 'type': 'configmap'}) -2025-11-24T09:49:20.1942205Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:20.1943657Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:20.1944549Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:20.1945382Z changed: [kubenode-super-marlin] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-config.yml', 'type': 'configmap'}) -2025-11-24T09:49:20.1946465Z changed: [kubenode-super-marlin] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-sa.yml', 'type': 'sa'}) -2025-11-24T09:49:20.1947535Z changed: [kubenode-super-marlin] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:20.1948066Z -2025-11-24T09:49:20.1948449Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down nodelocaldns-secondary Template] *** -2025-11-24T09:49:20.2279833Z skipping: [kubenode-super-marlin] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-second-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:20.2608016Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:20.2609134Z skipping: [kubenode-renewed-asp] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-second-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:20.2610108Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:20.2611511Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nodelocaldns', 'file': 'nodelocaldns-second-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:20.2612545Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:20.2613279Z -2025-11-24T09:49:20.2613694Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Start Resources] ************* -2025-11-24T09:49:20.3287008Z Still deploying... -2025-11-24T09:49:24.9768412Z skipping: [kubenode-renewed-asp] => (item=coredns-clusterrole.yml) -2025-11-24T09:49:24.9769828Z skipping: [kubenode-renewed-asp] => (item=coredns-clusterrolebinding.yml) -2025-11-24T09:49:24.9770613Z skipping: [kubenode-renewed-asp] => (item=coredns-config.yml) -2025-11-24T09:49:24.9771370Z skipping: [kubenode-renewed-asp] => (item=coredns-deployment.yml) -2025-11-24T09:49:24.9772085Z skipping: [kubenode-renewed-asp] => (item=coredns-sa.yml) -2025-11-24T09:49:24.9772989Z skipping: [kubenode-renewed-asp] => (item=coredns-svc.yml) -2025-11-24T09:49:24.9773698Z skipping: [kubenode-renewed-asp] => (item=dns-autoscaler.yml) -2025-11-24T09:49:24.9774460Z skipping: [kubenode-teaching-gobbler] => (item=coredns-clusterrole.yml) -2025-11-24T09:49:24.9775262Z skipping: [kubenode-renewed-asp] => (item=dns-autoscaler-clusterrole.yml) -2025-11-24T09:49:24.9776116Z skipping: [kubenode-teaching-gobbler] => (item=coredns-clusterrolebinding.yml) -2025-11-24T09:49:24.9777028Z skipping: [kubenode-renewed-asp] => (item=dns-autoscaler-clusterrolebinding.yml) -2025-11-24T09:49:24.9777834Z skipping: [kubenode-teaching-gobbler] => (item=coredns-config.yml) -2025-11-24T09:49:24.9778550Z skipping: [kubenode-renewed-asp] => (item=coredns-poddisruptionbudget.yml) -2025-11-24T09:49:24.9779269Z skipping: [kubenode-teaching-gobbler] => (item=coredns-deployment.yml) -2025-11-24T09:49:24.9779922Z skipping: [kubenode-teaching-gobbler] => (item=coredns-sa.yml) -2025-11-24T09:49:24.9780554Z skipping: [kubenode-renewed-asp] => (item=dns-autoscaler-sa.yml) -2025-11-24T09:49:24.9781209Z skipping: [kubenode-teaching-gobbler] => (item=coredns-svc.yml) -2025-11-24T09:49:24.9781893Z skipping: [kubenode-renewed-asp] => (item=coredns-deployment-secondary.yml) -2025-11-24T09:49:24.9782596Z skipping: [kubenode-teaching-gobbler] => (item=dns-autoscaler.yml) -2025-11-24T09:49:24.9783396Z skipping: [kubenode-renewed-asp] => (item=coredns-svc-secondary.yml) -2025-11-24T09:49:24.9784286Z skipping: [kubenode-teaching-gobbler] => (item=dns-autoscaler-clusterrole.yml) -2025-11-24T09:49:24.9785071Z skipping: [kubenode-teaching-gobbler] => (item=dns-autoscaler-clusterrolebinding.yml) -2025-11-24T09:49:24.9785842Z skipping: [kubenode-renewed-asp] => (item=coredns-autoscaler-secondary.yml) -2025-11-24T09:49:24.9786588Z skipping: [kubenode-teaching-gobbler] => (item=coredns-poddisruptionbudget.yml) -2025-11-24T09:49:24.9787375Z skipping: [kubenode-renewed-asp] => (item=coredns-poddisruptionbudget-secondary.yml) -2025-11-24T09:49:24.9788123Z skipping: [kubenode-teaching-gobbler] => (item=dns-autoscaler-sa.yml) -2025-11-24T09:49:24.9788802Z skipping: [kubenode-renewed-asp] => (item=nodelocaldns-config.yml) -2025-11-24T09:49:24.9789513Z skipping: [kubenode-teaching-gobbler] => (item=coredns-deployment-secondary.yml) -2025-11-24T09:49:24.9790199Z skipping: [kubenode-renewed-asp] => (item=nodelocaldns-sa.yml) -2025-11-24T09:49:24.9790875Z skipping: [kubenode-teaching-gobbler] => (item=coredns-svc-secondary.yml) -2025-11-24T09:49:24.9791581Z skipping: [kubenode-renewed-asp] => (item=nodelocaldns-daemonset.yml) -2025-11-24T09:49:24.9792291Z skipping: [kubenode-teaching-gobbler] => (item=coredns-autoscaler-secondary.yml) -2025-11-24T09:49:24.9793207Z skipping: [kubenode-teaching-gobbler] => (item=coredns-poddisruptionbudget-secondary.yml) -2025-11-24T09:49:24.9793972Z skipping: [kubenode-renewed-asp] => (item=nodelocaldns-second-daemonset.yml) -2025-11-24T09:49:24.9794680Z skipping: [kubenode-teaching-gobbler] => (item=nodelocaldns-config.yml) -2025-11-24T09:49:24.9795261Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:24.9796009Z skipping: [kubenode-teaching-gobbler] => (item=nodelocaldns-sa.yml) -2025-11-24T09:49:24.9796748Z skipping: [kubenode-teaching-gobbler] => (item=nodelocaldns-daemonset.yml) -2025-11-24T09:49:24.9797486Z skipping: [kubenode-teaching-gobbler] => (item=nodelocaldns-second-daemonset.yml) -2025-11-24T09:49:24.9798115Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:24.9798656Z ok: [kubenode-super-marlin] => (item=coredns-clusterrole.yml) -2025-11-24T09:49:24.9799290Z ok: [kubenode-super-marlin] => (item=coredns-clusterrolebinding.yml) -2025-11-24T09:49:24.9800004Z ok: [kubenode-super-marlin] => (item=coredns-config.yml) -2025-11-24T09:49:24.9800586Z ok: [kubenode-super-marlin] => (item=coredns-deployment.yml) -2025-11-24T09:49:24.9801152Z ok: [kubenode-super-marlin] => (item=coredns-sa.yml) -2025-11-24T09:49:24.9801691Z ok: [kubenode-super-marlin] => (item=coredns-svc.yml) -2025-11-24T09:49:24.9802244Z ok: [kubenode-super-marlin] => (item=dns-autoscaler.yml) -2025-11-24T09:49:24.9802991Z ok: [kubenode-super-marlin] => (item=dns-autoscaler-clusterrole.yml) -2025-11-24T09:49:24.9803677Z ok: [kubenode-super-marlin] => (item=dns-autoscaler-clusterrolebinding.yml) -2025-11-24T09:49:24.9804360Z ok: [kubenode-super-marlin] => (item=coredns-poddisruptionbudget.yml) -2025-11-24T09:49:24.9804974Z ok: [kubenode-super-marlin] => (item=dns-autoscaler-sa.yml) -2025-11-24T09:49:24.9805641Z skipping: [kubenode-super-marlin] => (item=coredns-deployment-secondary.yml) -2025-11-24T09:49:24.9806372Z skipping: [kubenode-super-marlin] => (item=coredns-svc-secondary.yml) -2025-11-24T09:49:24.9813226Z skipping: [kubenode-super-marlin] => (item=coredns-autoscaler-secondary.yml) -2025-11-24T09:49:24.9814044Z skipping: [kubenode-super-marlin] => (item=coredns-poddisruptionbudget-secondary.yml) -2025-11-24T09:49:24.9814779Z ok: [kubenode-super-marlin] => (item=nodelocaldns-config.yml) -2025-11-24T09:49:24.9815394Z ok: [kubenode-super-marlin] => (item=nodelocaldns-sa.yml) -2025-11-24T09:49:24.9816037Z ok: [kubenode-super-marlin] => (item=nodelocaldns-daemonset.yml) -2025-11-24T09:49:24.9816730Z skipping: [kubenode-super-marlin] => (item=nodelocaldns-second-daemonset.yml) -2025-11-24T09:49:24.9817170Z -2025-11-24T09:49:24.9817539Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay down etcd_metrics templates] *** -2025-11-24T09:49:25.0644272Z skipping: [kubenode-super-marlin] => (item={'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}) -2025-11-24T09:49:25.0645958Z skipping: [kubenode-renewed-asp] => (item={'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}) -2025-11-24T09:49:25.0647133Z skipping: [kubenode-renewed-asp] => (item={'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}) -2025-11-24T09:49:25.0648238Z skipping: [kubenode-super-marlin] => (item={'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}) -2025-11-24T09:49:25.0649067Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.0649599Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.0650476Z skipping: [kubenode-teaching-gobbler] => (item={'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}) -2025-11-24T09:49:25.0651655Z skipping: [kubenode-teaching-gobbler] => (item={'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}) -2025-11-24T09:49:25.0652526Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.0653020Z -2025-11-24T09:49:25.0653393Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Start etcd_metrics] ********** -2025-11-24T09:49:25.1473407Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'etcd_metrics_port is defined and etcd_metrics_service_labels is defined', 'item': {'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.1476460Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.1478941Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'etcd_metrics_port is defined and etcd_metrics_service_labels is defined', 'item': {'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.1481443Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.1482915Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.1483432Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.1484841Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'etcd_metrics-endpoints.yml', 'type': 'endpoints', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.1487130Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'etcd_metrics-service.yml', 'type': 'service', 'name': 'etcd-metrics'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.1488533Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.1488846Z -2025-11-24T09:49:25.1489193Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Check AppArmor status] ******* -2025-11-24T09:49:25.1824898Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.2103530Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.2104277Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.2104623Z -2025-11-24T09:49:25.2105012Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Set apparmor_enabled] ******** -2025-11-24T09:49:25.2666531Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.2667314Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.2668247Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.2668610Z -2025-11-24T09:49:25.2669018Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Netchecker Templates list] *** -2025-11-24T09:49:25.3189469Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.3190228Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.3190774Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.3191113Z -2025-11-24T09:49:25.3191509Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay Down Netchecker Template] *** -2025-11-24T09:49:25.3836351Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.3837162Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.3837702Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.3838035Z -2025-11-24T09:49:25.3838416Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Start Netchecker Resources] *** -2025-11-24T09:49:25.4366475Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.4367219Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.4367783Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.4368114Z -2025-11-24T09:49:25.4368500Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Lay down dashboard template] *** -2025-11-24T09:49:25.4713582Z skipping: [kubenode-super-marlin] => (item={'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}) -2025-11-24T09:49:25.4714775Z skipping: [kubenode-renewed-asp] => (item={'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}) -2025-11-24T09:49:25.4986658Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.4987421Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.4988686Z skipping: [kubenode-teaching-gobbler] => (item={'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}) -2025-11-24T09:49:25.4989714Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.4990054Z -2025-11-24T09:49:25.4990426Z TASK [kubernetes-apps/ansible : Kubernetes Apps | Start dashboard] ************* -2025-11-24T09:49:25.5258738Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'dashboard_enabled', 'item': {'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.5775430Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.5777318Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.5778913Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.5780497Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': "inventory_hostname == groups['kube_control_plane'][0]", 'item': {'file': 'dashboard.yml', 'type': 'deploy', 'name': 'kubernetes-dashboard'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:25.5782084Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.5782441Z -2025-11-24T09:49:25.5783157Z TASK [kubernetes-apps/helm : Helm | Gather os specific variables] ************** -2025-11-24T09:49:25.6091795Z skipping: [kubenode-super-marlin] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:25.6489087Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.6490331Z skipping: [kubenode-renewed-asp] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:25.6491339Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.6492327Z skipping: [kubenode-teaching-gobbler] => (item=/wire-server-deploy/ansible/roles-external/kubespray/roles/kubernetes-apps/helm/vars/../vars/ubuntu.yml) -2025-11-24T09:49:25.6493575Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.6494243Z -2025-11-24T09:49:25.6494606Z TASK [kubernetes-apps/helm : Helm | Install PyYaml] **************************** -2025-11-24T09:49:25.6848987Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.7073023Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.7073949Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.7074348Z -2025-11-24T09:49:25.7074756Z TASK [kubernetes-apps/helm : Helm | Install PyYaml [flatcar]] ****************** -2025-11-24T09:49:25.7662530Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.7663492Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.7664002Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.7664347Z -2025-11-24T09:49:25.7664684Z TASK [kubernetes-apps/helm : Helm | Download helm] ***************************** -2025-11-24T09:49:25.8016169Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.8311058Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.8311714Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.8312043Z -2025-11-24T09:49:25.8312409Z TASK [kubernetes-apps/helm : Helm | Copy helm binary from download dir] ******** -2025-11-24T09:49:25.8818943Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.8819660Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.8820231Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.8820542Z -2025-11-24T09:49:25.8820878Z TASK [kubernetes-apps/helm : Helm | Get helm completion] *********************** -2025-11-24T09:49:25.9087157Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.9292570Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.9293801Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.9294210Z -2025-11-24T09:49:25.9295059Z TASK [kubernetes-apps/helm : Helm | Install helm completion] ******************* -2025-11-24T09:49:25.9990665Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:25.9991333Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:25.9991847Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:25.9992162Z -2025-11-24T09:49:25.9992493Z TASK [kubernetes-apps/krew : Krew | Download krew] ***************************** -2025-11-24T09:49:26.0282907Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.0513473Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.0514583Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.0514951Z -2025-11-24T09:49:26.0515307Z TASK [kubernetes-apps/krew : Krew | krew env] ********************************** -2025-11-24T09:49:26.0976060Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.0976761Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.0977278Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.0977599Z -2025-11-24T09:49:26.0977953Z TASK [kubernetes-apps/krew : Krew | Copy krew manifest] ************************ -2025-11-24T09:49:26.1451169Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.1452030Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.1452543Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.1453042Z -2025-11-24T09:49:26.1453381Z TASK [kubernetes-apps/krew : Krew | Install krew] ****************************** -2025-11-24T09:49:26.1779463Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.2059694Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.2060394Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.2060786Z -2025-11-24T09:49:26.2061201Z TASK [kubernetes-apps/krew : Krew | Get krew completion] *********************** -2025-11-24T09:49:26.2386119Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.2748958Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.2749636Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.2749988Z -2025-11-24T09:49:26.2750399Z TASK [kubernetes-apps/krew : Krew | Install krew completion] ******************* -2025-11-24T09:49:26.3031907Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.3283729Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.3284310Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.3284642Z -2025-11-24T09:49:26.3284978Z TASK [kubernetes-apps/krew : Krew | Download krew] ***************************** -2025-11-24T09:49:26.3643076Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.3643556Z -2025-11-24T09:49:26.3643971Z TASK [kubernetes-apps/krew : Krew | krew env] ********************************** -2025-11-24T09:49:26.3822410Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.3823074Z -2025-11-24T09:49:26.3823450Z TASK [kubernetes-apps/krew : Krew | Copy krew manifest] ************************ -2025-11-24T09:49:26.4079613Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.4080022Z -2025-11-24T09:49:26.4080373Z TASK [kubernetes-apps/krew : Krew | Install krew] ****************************** -2025-11-24T09:49:26.4354094Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.4354494Z -2025-11-24T09:49:26.4354867Z TASK [kubernetes-apps/krew : Krew | Get krew completion] *********************** -2025-11-24T09:49:26.4620511Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.4620966Z -2025-11-24T09:49:26.4621387Z TASK [kubernetes-apps/krew : Krew | Install krew completion] ******************* -2025-11-24T09:49:26.5035132Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.5035558Z -2025-11-24T09:49:26.5035997Z TASK [kubernetes-apps/registry : Registry | check registry_service_type value] *** -2025-11-24T09:49:26.5311140Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.5522529Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.5523481Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.5523887Z -2025-11-24T09:49:26.5524557Z TASK [kubernetes-apps/registry : Registry | Stop if registry_service_cluster_ip is defined when registry_service_type is not 'ClusterIP'] *** -2025-11-24T09:49:26.6017444Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.6018540Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.6019162Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.6019536Z -2025-11-24T09:49:26.6020243Z TASK [kubernetes-apps/registry : Registry | Stop if registry_service_loadbalancer_ip is defined when registry_service_type is not 'LoadBalancer'] *** -2025-11-24T09:49:26.6375437Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.6615333Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.6616195Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.6616914Z -2025-11-24T09:49:26.6617542Z TASK [kubernetes-apps/registry : Registry | Stop if registry_service_nodeport is defined when registry_service_type is not 'NodePort'] *** -2025-11-24T09:49:26.7183844Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.7184459Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.7184990Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.7185322Z -2025-11-24T09:49:26.7185712Z TASK [kubernetes-apps/registry : Registry | Create addon dir] ****************** -2025-11-24T09:49:26.7764568Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.7765154Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.7765653Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.7765965Z -2025-11-24T09:49:26.7766306Z TASK [kubernetes-apps/registry : Registry | Templates list] ******************** -2025-11-24T09:49:26.8305357Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.8305965Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.8306502Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.8306855Z -2025-11-24T09:49:26.8307429Z TASK [kubernetes-apps/registry : Registry | Append nginx ingress templates to Registry Templates list when ingress enabled] *** -2025-11-24T09:49:26.8550198Z skipping: [kubenode-super-marlin] => (item={'name': 'registry-ing', 'file': 'registry-ing.yml', 'type': 'ing'}) -2025-11-24T09:49:26.8732042Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.9075352Z skipping: [kubenode-renewed-asp] => (item={'name': 'registry-ing', 'file': 'registry-ing.yml', 'type': 'ing'}) -2025-11-24T09:49:26.9076243Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.9077050Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'registry-ing', 'file': 'registry-ing.yml', 'type': 'ing'}) -2025-11-24T09:49:26.9078052Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.9078859Z -2025-11-24T09:49:26.9079269Z TASK [kubernetes-apps/registry : Registry | Create manifests] ****************** -2025-11-24T09:49:26.9361676Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:26.9576289Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:26.9576896Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:26.9577225Z -2025-11-24T09:49:26.9577576Z TASK [kubernetes-apps/registry : Registry | Apply manifests] ******************* -2025-11-24T09:49:26.9889704Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.0169399Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.0170021Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.0170389Z -2025-11-24T09:49:27.0170777Z TASK [kubernetes-apps/registry : Registry | Create PVC manifests] ************** -2025-11-24T09:49:27.0315745Z skipping: [kubenode-super-marlin] => (item={'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}) -2025-11-24T09:49:27.0465349Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.0466187Z skipping: [kubenode-renewed-asp] => (item={'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}) -2025-11-24T09:49:27.0705881Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.0706984Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}) -2025-11-24T09:49:27.0707888Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.0708249Z -2025-11-24T09:49:27.0708647Z TASK [kubernetes-apps/registry : Registry | Apply PVC manifests] *************** -2025-11-24T09:49:27.1073134Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'registry_enabled', 'item': {'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:27.1075399Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'registry_enabled', 'item': {'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:27.1491982Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.1493254Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.1494522Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'registry_enabled', 'item': {'name': 'registry-pvc', 'file': 'registry-pvc.yml', 'type': 'pvc'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:27.1495818Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.1496146Z -2025-11-24T09:49:27.1496516Z TASK [kubernetes-apps/metrics_server : Check all masters are node or not] ****** -2025-11-24T09:49:27.1785610Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.2037806Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.2038411Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.2038756Z -2025-11-24T09:49:27.2039138Z TASK [kubernetes-apps/metrics_server : Metrics Server | Delete addon dir] ****** -2025-11-24T09:49:27.2598746Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.2599377Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.2599939Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.2600282Z -2025-11-24T09:49:27.2600651Z TASK [kubernetes-apps/metrics_server : Metrics Server | Create addon dir] ****** -2025-11-24T09:49:27.3160146Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.3160805Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.3161457Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.3161869Z -2025-11-24T09:49:27.3162367Z TASK [kubernetes-apps/metrics_server : Metrics Server | Templates list] ******** -2025-11-24T09:49:27.3711302Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.3711887Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.3712383Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.3712909Z -2025-11-24T09:49:27.3713263Z TASK [kubernetes-apps/metrics_server : Metrics Server | Create manifests] ****** -2025-11-24T09:49:27.4266786Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.4267384Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.4267900Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.4268250Z -2025-11-24T09:49:27.4268609Z TASK [kubernetes-apps/metrics_server : Metrics Server | Apply manifests] ******* -2025-11-24T09:49:27.4556245Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.4990939Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.4991623Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.4992012Z -2025-11-24T09:49:27.4992458Z TASK [kubernetes-apps/csi_driver/csi_crd : CSI CRD | Generate Manifests] ******* -2025-11-24T09:49:27.5311016Z skipping: [kubenode-super-marlin] => (item={'name': 'volumesnapshotclasses', 'file': 'volumesnapshotclasses.yml'}) -2025-11-24T09:49:27.5312244Z skipping: [kubenode-super-marlin] => (item={'name': 'volumesnapshotcontents', 'file': 'volumesnapshotcontents.yml'}) -2025-11-24T09:49:27.5313575Z skipping: [kubenode-super-marlin] => (item={'name': 'volumesnapshots', 'file': 'volumesnapshots.yml'}) -2025-11-24T09:49:27.5705369Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.5706242Z skipping: [kubenode-renewed-asp] => (item={'name': 'volumesnapshotclasses', 'file': 'volumesnapshotclasses.yml'}) -2025-11-24T09:49:27.5707484Z skipping: [kubenode-renewed-asp] => (item={'name': 'volumesnapshotcontents', 'file': 'volumesnapshotcontents.yml'}) -2025-11-24T09:49:27.5708657Z skipping: [kubenode-renewed-asp] => (item={'name': 'volumesnapshots', 'file': 'volumesnapshots.yml'}) -2025-11-24T09:49:27.5709509Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.5710921Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'volumesnapshotclasses', 'file': 'volumesnapshotclasses.yml'}) -2025-11-24T09:49:27.5712241Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'volumesnapshotcontents', 'file': 'volumesnapshotcontents.yml'}) -2025-11-24T09:49:27.5713658Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'volumesnapshots', 'file': 'volumesnapshots.yml'}) -2025-11-24T09:49:27.5714518Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.5714893Z -2025-11-24T09:49:27.5715293Z TASK [kubernetes-apps/csi_driver/csi_crd : CSI CRD | Apply Manifests] ********** -2025-11-24T09:49:27.6057437Z skipping: [kubenode-super-marlin] => (item=volumesnapshotclasses.yml) -2025-11-24T09:49:27.6058409Z skipping: [kubenode-super-marlin] => (item=volumesnapshotcontents.yml) -2025-11-24T09:49:27.6059205Z skipping: [kubenode-super-marlin] => (item=volumesnapshots.yml) -2025-11-24T09:49:27.6658869Z skipping: [kubenode-renewed-asp] => (item=volumesnapshotclasses.yml) -2025-11-24T09:49:27.6659673Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.6660338Z skipping: [kubenode-renewed-asp] => (item=volumesnapshotcontents.yml) -2025-11-24T09:49:27.6661036Z skipping: [kubenode-renewed-asp] => (item=volumesnapshots.yml) -2025-11-24T09:49:27.6661642Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.6662245Z skipping: [kubenode-teaching-gobbler] => (item=volumesnapshotclasses.yml) -2025-11-24T09:49:27.6663402Z skipping: [kubenode-teaching-gobbler] => (item=volumesnapshotcontents.yml) -2025-11-24T09:49:27.6664173Z skipping: [kubenode-teaching-gobbler] => (item=volumesnapshots.yml) -2025-11-24T09:49:27.6664822Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.6665117Z -2025-11-24T09:49:27.6665512Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Check Cinder credentials] *** -2025-11-24T09:49:27.7095818Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.7236985Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.7237590Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.7237945Z -2025-11-24T09:49:27.7238334Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Write cacert file] *** -2025-11-24T09:49:27.7503540Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:49:27.7504402Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:27.7505478Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:49:27.7506102Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.7506396Z -2025-11-24T09:49:27.7506802Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Write Cinder cloud-config] *** -2025-11-24T09:49:27.8048700Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.8049350Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.8049887Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.8050202Z -2025-11-24T09:49:27.8050606Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Get base64 cloud-config] *** -2025-11-24T09:49:27.8335899Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.8542235Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.8543145Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.8543482Z -2025-11-24T09:49:27.8543879Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Generate Manifests] *** -2025-11-24T09:49:27.8692201Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-driver', 'file': 'cinder-csi-driver.yml'}) -2025-11-24T09:49:27.8899719Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-cloud-config-secret', 'file': 'cinder-csi-cloud-config-secret.yml'}) -2025-11-24T09:49:27.8901000Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin-rbac.yml'}) -2025-11-24T09:49:27.8902199Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin.yml'}) -2025-11-24T09:49:27.8903897Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin-rbac.yml'}) -2025-11-24T09:49:27.8904948Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin.yml'}) -2025-11-24T09:49:27.8911917Z skipping: [kubenode-super-marlin] => (item={'name': 'cinder-csi-poddisruptionbudget', 'file': 'cinder-csi-poddisruptionbudget.yml'}) -2025-11-24T09:49:27.8913438Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-driver', 'file': 'cinder-csi-driver.yml'}) -2025-11-24T09:49:27.9468459Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:27.9469777Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-cloud-config-secret', 'file': 'cinder-csi-cloud-config-secret.yml'}) -2025-11-24T09:49:27.9471067Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin-rbac.yml'}) -2025-11-24T09:49:27.9472288Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin.yml'}) -2025-11-24T09:49:27.9473667Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-driver', 'file': 'cinder-csi-driver.yml'}) -2025-11-24T09:49:27.9474847Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-cloud-config-secret', 'file': 'cinder-csi-cloud-config-secret.yml'}) -2025-11-24T09:49:27.9476080Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin-rbac.yml'}) -2025-11-24T09:49:27.9477328Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin-rbac.yml'}) -2025-11-24T09:49:27.9478538Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin.yml'}) -2025-11-24T09:49:27.9479705Z skipping: [kubenode-renewed-asp] => (item={'name': 'cinder-csi-poddisruptionbudget', 'file': 'cinder-csi-poddisruptionbudget.yml'}) -2025-11-24T09:49:27.9480610Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:27.9481503Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-controllerplugin', 'file': 'cinder-csi-controllerplugin.yml'}) -2025-11-24T09:49:27.9482837Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin-rbac.yml'}) -2025-11-24T09:49:27.9483967Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-nodeplugin', 'file': 'cinder-csi-nodeplugin.yml'}) -2025-11-24T09:49:27.9485163Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cinder-csi-poddisruptionbudget', 'file': 'cinder-csi-poddisruptionbudget.yml'}) -2025-11-24T09:49:27.9485982Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:27.9486295Z -2025-11-24T09:49:27.9486636Z TASK [kubernetes-apps/csi_driver/cinder : Cinder CSI Driver | Apply Manifests] *** -2025-11-24T09:49:27.9860203Z skipping: [kubenode-super-marlin] => (item=cinder-csi-driver.yml) -2025-11-24T09:49:27.9861235Z skipping: [kubenode-super-marlin] => (item=cinder-csi-cloud-config-secret.yml) -2025-11-24T09:49:27.9862271Z skipping: [kubenode-super-marlin] => (item=cinder-csi-controllerplugin-rbac.yml) -2025-11-24T09:49:27.9863607Z skipping: [kubenode-super-marlin] => (item=cinder-csi-controllerplugin.yml) -2025-11-24T09:49:27.9864514Z skipping: [kubenode-super-marlin] => (item=cinder-csi-nodeplugin-rbac.yml) -2025-11-24T09:49:27.9865330Z skipping: [kubenode-super-marlin] => (item=cinder-csi-nodeplugin.yml) -2025-11-24T09:49:28.0529982Z skipping: [kubenode-super-marlin] => (item=cinder-csi-poddisruptionbudget.yml) -2025-11-24T09:49:28.0530788Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.0531390Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-driver.yml) -2025-11-24T09:49:28.0532155Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-cloud-config-secret.yml) -2025-11-24T09:49:28.0533168Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-driver.yml) -2025-11-24T09:49:28.0533995Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-cloud-config-secret.yml) -2025-11-24T09:49:28.0535229Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-controllerplugin-rbac.yml) -2025-11-24T09:49:28.0536074Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-controllerplugin-rbac.yml) -2025-11-24T09:49:28.0536902Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-controllerplugin.yml) -2025-11-24T09:49:28.0537688Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-controllerplugin.yml) -2025-11-24T09:49:28.0538510Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-nodeplugin-rbac.yml) -2025-11-24T09:49:28.0539395Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-nodeplugin.yml) -2025-11-24T09:49:28.0540159Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-nodeplugin-rbac.yml) -2025-11-24T09:49:28.0540953Z skipping: [kubenode-teaching-gobbler] => (item=cinder-csi-poddisruptionbudget.yml) -2025-11-24T09:49:28.0541671Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.0542282Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-nodeplugin.yml) -2025-11-24T09:49:28.0543190Z skipping: [kubenode-renewed-asp] => (item=cinder-csi-poddisruptionbudget.yml) -2025-11-24T09:49:28.0543844Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.0544130Z -2025-11-24T09:49:28.0544480Z TASK [kubernetes-apps/csi_driver/aws_ebs : AWS CSI Driver | Generate Manifests] *** -2025-11-24T09:49:28.0671340Z skipping: [kubenode-super-marlin] => (item={'name': 'aws-ebs-csi-driver', 'file': 'aws-ebs-csi-driver.yml'}) -2025-11-24T09:49:28.0897051Z skipping: [kubenode-super-marlin] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice-rbac.yml'}) -2025-11-24T09:49:28.0898414Z skipping: [kubenode-super-marlin] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice.yml'}) -2025-11-24T09:49:28.0899649Z skipping: [kubenode-super-marlin] => (item={'name': 'aws-ebs-csi-nodeservice', 'file': 'aws-ebs-csi-nodeservice.yml'}) -2025-11-24T09:49:28.1236836Z skipping: [kubenode-renewed-asp] => (item={'name': 'aws-ebs-csi-driver', 'file': 'aws-ebs-csi-driver.yml'}) -2025-11-24T09:49:28.1237735Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.1238580Z skipping: [kubenode-renewed-asp] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice-rbac.yml'}) -2025-11-24T09:49:28.1239777Z skipping: [kubenode-renewed-asp] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice.yml'}) -2025-11-24T09:49:28.1241174Z skipping: [kubenode-renewed-asp] => (item={'name': 'aws-ebs-csi-nodeservice', 'file': 'aws-ebs-csi-nodeservice.yml'}) -2025-11-24T09:49:28.1241980Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.1242967Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'aws-ebs-csi-driver', 'file': 'aws-ebs-csi-driver.yml'}) -2025-11-24T09:49:28.1244066Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice-rbac.yml'}) -2025-11-24T09:49:28.1245258Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'aws-ebs-csi-controllerservice', 'file': 'aws-ebs-csi-controllerservice.yml'}) -2025-11-24T09:49:28.1246367Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'aws-ebs-csi-nodeservice', 'file': 'aws-ebs-csi-nodeservice.yml'}) -2025-11-24T09:49:28.1247155Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.1247452Z -2025-11-24T09:49:28.1247782Z TASK [kubernetes-apps/csi_driver/aws_ebs : AWS CSI Driver | Apply Manifests] *** -2025-11-24T09:49:28.1411928Z skipping: [kubenode-super-marlin] => (item=aws-ebs-csi-driver.yml) -2025-11-24T09:49:28.1413330Z skipping: [kubenode-super-marlin] => (item=aws-ebs-csi-controllerservice-rbac.yml) -2025-11-24T09:49:28.1603351Z skipping: [kubenode-super-marlin] => (item=aws-ebs-csi-controllerservice.yml) -2025-11-24T09:49:28.1604415Z skipping: [kubenode-super-marlin] => (item=aws-ebs-csi-nodeservice.yml) -2025-11-24T09:49:28.1605322Z skipping: [kubenode-renewed-asp] => (item=aws-ebs-csi-driver.yml) -2025-11-24T09:49:28.1606686Z skipping: [kubenode-renewed-asp] => (item=aws-ebs-csi-controllerservice-rbac.yml) -2025-11-24T09:49:28.1607657Z skipping: [kubenode-renewed-asp] => (item=aws-ebs-csi-controllerservice.yml) -2025-11-24T09:49:28.2131381Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.2132135Z skipping: [kubenode-renewed-asp] => (item=aws-ebs-csi-nodeservice.yml) -2025-11-24T09:49:28.2133123Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.2133814Z skipping: [kubenode-teaching-gobbler] => (item=aws-ebs-csi-driver.yml) -2025-11-24T09:49:28.2134725Z skipping: [kubenode-teaching-gobbler] => (item=aws-ebs-csi-controllerservice-rbac.yml) -2025-11-24T09:49:28.2136000Z skipping: [kubenode-teaching-gobbler] => (item=aws-ebs-csi-controllerservice.yml) -2025-11-24T09:49:28.2136885Z skipping: [kubenode-teaching-gobbler] => (item=aws-ebs-csi-nodeservice.yml) -2025-11-24T09:49:28.2137588Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.2137918Z -2025-11-24T09:49:28.2138359Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Check Azure credentials] *** -2025-11-24T09:49:28.2398920Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.2597911Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.2598520Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.2598845Z -2025-11-24T09:49:28.2599288Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Write Azure CSI cloud-config] *** -2025-11-24T09:49:28.2867902Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.3077018Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.3077611Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.3077962Z -2025-11-24T09:49:28.3078382Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Get base64 cloud-config] *** -2025-11-24T09:49:28.3348075Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.3612281Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.3613329Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.3613660Z -2025-11-24T09:49:28.3614082Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Generate Manifests] *** -2025-11-24T09:49:28.3924845Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-driver', 'file': 'azure-csi-azuredisk-driver.yml'}) -2025-11-24T09:49:28.3926134Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-cloud-config-secret', 'file': 'azure-csi-cloud-config-secret.yml'}) -2025-11-24T09:49:28.4366327Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller-rbac.yml'}) -2025-11-24T09:49:28.4367589Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-driver', 'file': 'azure-csi-azuredisk-driver.yml'}) -2025-11-24T09:49:28.4368762Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller.yml'}) -2025-11-24T09:49:28.4369915Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-cloud-config-secret', 'file': 'azure-csi-cloud-config-secret.yml'}) -2025-11-24T09:49:28.4371071Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-node-rbac', 'file': 'azure-csi-azuredisk-node-rbac.yml'}) -2025-11-24T09:49:28.4372227Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller-rbac.yml'}) -2025-11-24T09:49:28.4373665Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller.yml'}) -2025-11-24T09:49:28.4374706Z skipping: [kubenode-super-marlin] => (item={'name': 'azure-csi-azuredisk-node', 'file': 'azure-csi-azuredisk-node.yml'}) -2025-11-24T09:49:28.4375731Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-node-rbac', 'file': 'azure-csi-azuredisk-node-rbac.yml'}) -2025-11-24T09:49:28.4376498Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.4377234Z skipping: [kubenode-renewed-asp] => (item={'name': 'azure-csi-azuredisk-node', 'file': 'azure-csi-azuredisk-node.yml'}) -2025-11-24T09:49:28.4378370Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.4379166Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-driver', 'file': 'azure-csi-azuredisk-driver.yml'}) -2025-11-24T09:49:28.4380274Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-cloud-config-secret', 'file': 'azure-csi-cloud-config-secret.yml'}) -2025-11-24T09:49:28.4381410Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller-rbac.yml'}) -2025-11-24T09:49:28.4382543Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-controller', 'file': 'azure-csi-azuredisk-controller.yml'}) -2025-11-24T09:49:28.4383883Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-node-rbac', 'file': 'azure-csi-azuredisk-node-rbac.yml'}) -2025-11-24T09:49:28.4384935Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'azure-csi-azuredisk-node', 'file': 'azure-csi-azuredisk-node.yml'}) -2025-11-24T09:49:28.4385694Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.4385995Z -2025-11-24T09:49:28.4386347Z TASK [kubernetes-apps/csi_driver/azuredisk : Azure CSI Driver | Apply Manifests] *** -2025-11-24T09:49:28.4968584Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-driver.yml) -2025-11-24T09:49:28.4969663Z skipping: [kubenode-super-marlin] => (item=azure-csi-cloud-config-secret.yml) -2025-11-24T09:49:28.4970692Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-controller-rbac.yml) -2025-11-24T09:49:28.4971664Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-controller.yml) -2025-11-24T09:49:28.4972586Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-node-rbac.yml) -2025-11-24T09:49:28.4973811Z skipping: [kubenode-super-marlin] => (item=azure-csi-azuredisk-node.yml) -2025-11-24T09:49:28.4974568Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-driver.yml) -2025-11-24T09:49:28.4975342Z skipping: [kubenode-renewed-asp] => (item=azure-csi-cloud-config-secret.yml) -2025-11-24T09:49:28.5515498Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.5516367Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-controller-rbac.yml) -2025-11-24T09:49:28.5517268Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-controller.yml) -2025-11-24T09:49:28.5518135Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-node-rbac.yml) -2025-11-24T09:49:28.5519336Z skipping: [kubenode-renewed-asp] => (item=azure-csi-azuredisk-node.yml) -2025-11-24T09:49:28.5520024Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.5520700Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-driver.yml) -2025-11-24T09:49:28.5521565Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-cloud-config-secret.yml) -2025-11-24T09:49:28.5522483Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-controller-rbac.yml) -2025-11-24T09:49:28.5523661Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-controller.yml) -2025-11-24T09:49:28.5524552Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-node-rbac.yml) -2025-11-24T09:49:28.5525393Z skipping: [kubenode-teaching-gobbler] => (item=azure-csi-azuredisk-node.yml) -2025-11-24T09:49:28.5526006Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.5526302Z -2025-11-24T09:49:28.5526690Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Check if cloud-sa.json exists] *** -2025-11-24T09:49:28.6100831Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.6101487Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.6102144Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.6102458Z -2025-11-24T09:49:28.6103144Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Copy GCP credentials file] *** -2025-11-24T09:49:28.6576878Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.6577592Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.6578143Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.6578477Z -2025-11-24T09:49:28.6579321Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Get base64 cloud-sa.json] *** -2025-11-24T09:49:28.7152993Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.7153719Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.7154268Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.7154622Z -2025-11-24T09:49:28.7155050Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Generate Manifests] *** -2025-11-24T09:49:28.7440292Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-cred-secret', 'file': 'gcp-pd-csi-cred-secret.yml'}) -2025-11-24T09:49:28.7441758Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-setup', 'file': 'gcp-pd-csi-setup.yml'}) -2025-11-24T09:49:28.7443027Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-controller', 'file': 'gcp-pd-csi-controller.yml'}) -2025-11-24T09:49:28.7855827Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-node', 'file': 'gcp-pd-csi-node.yml'}) -2025-11-24T09:49:28.7856925Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-cred-secret', 'file': 'gcp-pd-csi-cred-secret.yml'}) -2025-11-24T09:49:28.7857955Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-sc-regional', 'file': 'gcp-pd-csi-sc-regional.yml'}) -2025-11-24T09:49:28.7858949Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-setup', 'file': 'gcp-pd-csi-setup.yml'}) -2025-11-24T09:49:28.7859989Z skipping: [kubenode-super-marlin] => (item={'name': 'gcp-pd-csi-sc-zonal', 'file': 'gcp-pd-csi-sc-zonal.yml'}) -2025-11-24T09:49:28.7860801Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:28.7861613Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-controller', 'file': 'gcp-pd-csi-controller.yml'}) -2025-11-24T09:49:28.7862972Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-cred-secret', 'file': 'gcp-pd-csi-cred-secret.yml'}) -2025-11-24T09:49:28.7864081Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-setup', 'file': 'gcp-pd-csi-setup.yml'}) -2025-11-24T09:49:28.7865081Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-node', 'file': 'gcp-pd-csi-node.yml'}) -2025-11-24T09:49:28.7866118Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-controller', 'file': 'gcp-pd-csi-controller.yml'}) -2025-11-24T09:49:28.7867184Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-node', 'file': 'gcp-pd-csi-node.yml'}) -2025-11-24T09:49:28.7868572Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-sc-regional', 'file': 'gcp-pd-csi-sc-regional.yml'}) -2025-11-24T09:49:28.7869680Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-sc-regional', 'file': 'gcp-pd-csi-sc-regional.yml'}) -2025-11-24T09:49:28.7870597Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'gcp-pd-csi-sc-zonal', 'file': 'gcp-pd-csi-sc-zonal.yml'}) -2025-11-24T09:49:28.7871330Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:28.7872033Z skipping: [kubenode-renewed-asp] => (item={'name': 'gcp-pd-csi-sc-zonal', 'file': 'gcp-pd-csi-sc-zonal.yml'}) -2025-11-24T09:49:28.7872831Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:28.7873110Z -2025-11-24T09:49:28.7873448Z TASK [kubernetes-apps/csi_driver/gcp_pd : GCP PD CSI Driver | Apply Manifests] *** -2025-11-24T09:49:28.8182071Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-cred-secret.yml) -2025-11-24T09:49:28.8183251Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-setup.yml) -2025-11-24T09:49:28.8183978Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-controller.yml) -2025-11-24T09:49:28.8184668Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-node.yml) -2025-11-24T09:49:28.8185347Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-sc-regional.yml) -2025-11-24T09:49:29.0092566Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-cred-secret.yml) -2025-11-24T09:49:29.0093790Z skipping: [kubenode-super-marlin] => (item=gcp-pd-csi-sc-zonal.yml) -2025-11-24T09:49:29.0095065Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-setup.yml) -2025-11-24T09:49:29.0095798Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.0096526Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-controller.yml) -2025-11-24T09:49:29.0097371Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-node.yml) -2025-11-24T09:49:29.0098207Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-sc-regional.yml) -2025-11-24T09:49:29.0099093Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-cred-secret.yml) -2025-11-24T09:49:29.0099961Z skipping: [kubenode-renewed-asp] => (item=gcp-pd-csi-sc-zonal.yml) -2025-11-24T09:49:29.0100797Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.0101497Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-setup.yml) -2025-11-24T09:49:29.0102367Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-controller.yml) -2025-11-24T09:49:29.0103363Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-node.yml) -2025-11-24T09:49:29.0104075Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-sc-regional.yml) -2025-11-24T09:49:29.0104787Z skipping: [kubenode-teaching-gobbler] => (item=gcp-pd-csi-sc-zonal.yml) -2025-11-24T09:49:29.0105390Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.0105685Z -2025-11-24T09:49:29.0106087Z TASK [kubernetes-apps/csi_driver/upcloud : UpCloud CSI Driver | Check if UPCLOUD_USERNAME exists] *** -2025-11-24T09:49:29.0662204Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.0663364Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.0664036Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.0664445Z -2025-11-24T09:49:29.0664960Z TASK [kubernetes-apps/csi_driver/upcloud : UpCloud CSI Driver | Check if UPCLOUD_PASSWORD exists] *** -2025-11-24T09:49:29.1207929Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.1208626Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.1209137Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.1209455Z -2025-11-24T09:49:29.1209872Z TASK [kubernetes-apps/csi_driver/upcloud : UpCloud CSI Driver | Generate Manifests] *** -2025-11-24T09:49:29.1667212Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-cred-secret', 'file': 'upcloud-csi-cred-secret.yml'}) -2025-11-24T09:49:29.1668606Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-setup', 'file': 'upcloud-csi-setup.yml'}) -2025-11-24T09:49:29.1669888Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-controller', 'file': 'upcloud-csi-controller.yml'}) -2025-11-24T09:49:29.1671577Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-node', 'file': 'upcloud-csi-node.yml'}) -2025-11-24T09:49:29.1673149Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-cred-secret', 'file': 'upcloud-csi-cred-secret.yml'}) -2025-11-24T09:49:29.1674383Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-setup', 'file': 'upcloud-csi-setup.yml'}) -2025-11-24T09:49:29.1675556Z skipping: [kubenode-super-marlin] => (item={'name': 'upcloud-csi-driver', 'file': 'upcloud-csi-driver.yml'}) -2025-11-24T09:49:29.1676663Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-controller', 'file': 'upcloud-csi-controller.yml'}) -2025-11-24T09:49:29.1677623Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-node', 'file': 'upcloud-csi-node.yml'}) -2025-11-24T09:49:29.1678549Z skipping: [kubenode-renewed-asp] => (item={'name': 'upcloud-csi-driver', 'file': 'upcloud-csi-driver.yml'}) -2025-11-24T09:49:29.2149136Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.2150014Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.2151112Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-cred-secret', 'file': 'upcloud-csi-cred-secret.yml'}) -2025-11-24T09:49:29.2152528Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-setup', 'file': 'upcloud-csi-setup.yml'}) -2025-11-24T09:49:29.2154195Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-controller', 'file': 'upcloud-csi-controller.yml'}) -2025-11-24T09:49:29.2155953Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-node', 'file': 'upcloud-csi-node.yml'}) -2025-11-24T09:49:29.2157229Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'upcloud-csi-driver', 'file': 'upcloud-csi-driver.yml'}) -2025-11-24T09:49:29.2158038Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.2158365Z -2025-11-24T09:49:29.2158766Z TASK [kubernetes-apps/csi_driver/upcloud : UpCloud CSI Driver | Apply Manifests] *** -2025-11-24T09:49:29.2496096Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-cred-secret.yml) -2025-11-24T09:49:29.2497239Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-setup.yml) -2025-11-24T09:49:29.2497975Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-controller.yml) -2025-11-24T09:49:29.2498713Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-node.yml) -2025-11-24T09:49:29.2499440Z skipping: [kubenode-super-marlin] => (item=upcloud-csi-driver.yml) -2025-11-24T09:49:29.2668844Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.2669713Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-cred-secret.yml) -2025-11-24T09:49:29.3391128Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-setup.yml) -2025-11-24T09:49:29.3392083Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-controller.yml) -2025-11-24T09:49:29.3393049Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-node.yml) -2025-11-24T09:49:29.3393771Z skipping: [kubenode-renewed-asp] => (item=upcloud-csi-driver.yml) -2025-11-24T09:49:29.3394382Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.3395009Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-cred-secret.yml) -2025-11-24T09:49:29.3395767Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-setup.yml) -2025-11-24T09:49:29.3396522Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-controller.yml) -2025-11-24T09:49:29.3397272Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-node.yml) -2025-11-24T09:49:29.3398048Z skipping: [kubenode-teaching-gobbler] => (item=upcloud-csi-driver.yml) -2025-11-24T09:49:29.3398676Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.3398982Z -2025-11-24T09:49:29.3399390Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Check vsphare credentials] *** -2025-11-24T09:49:29.3732315Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.3946057Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.3947034Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.3947357Z -2025-11-24T09:49:29.3947818Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Generate CSI cloud-config] *** -2025-11-24T09:49:29.4105598Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-cloud-config) -2025-11-24T09:49:29.4258557Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.4259425Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-cloud-config) -2025-11-24T09:49:29.4490809Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.4491852Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-cloud-config) -2025-11-24T09:49:29.4492959Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.4493353Z -2025-11-24T09:49:29.4493826Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Generate Manifests] *** -2025-11-24T09:49:29.4699338Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-namespace.yml) -2025-11-24T09:49:29.4700498Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-driver.yml) -2025-11-24T09:49:29.4901465Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-rbac.yml) -2025-11-24T09:49:29.4902534Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-node-rbac.yml) -2025-11-24T09:49:29.4903804Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-config.yml) -2025-11-24T09:49:29.4904745Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-deployment.yml) -2025-11-24T09:49:29.5515976Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-namespace.yml) -2025-11-24T09:49:29.5516926Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-driver.yml) -2025-11-24T09:49:29.5518093Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-service.yml) -2025-11-24T09:49:29.5518894Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-rbac.yml) -2025-11-24T09:49:29.5519628Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-node.yml) -2025-11-24T09:49:29.5520351Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-node-rbac.yml) -2025-11-24T09:49:29.5527138Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.5527926Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-config.yml) -2025-11-24T09:49:29.5528869Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-deployment.yml) -2025-11-24T09:49:29.5529671Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-service.yml) -2025-11-24T09:49:29.5530386Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-node.yml) -2025-11-24T09:49:29.5530968Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.5531568Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-namespace.yml) -2025-11-24T09:49:29.5532281Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-driver.yml) -2025-11-24T09:49:29.5533161Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-rbac.yml) -2025-11-24T09:49:29.5533910Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-node-rbac.yml) -2025-11-24T09:49:29.5534659Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-config.yml) -2025-11-24T09:49:29.5535458Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-deployment.yml) -2025-11-24T09:49:29.5536257Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-service.yml) -2025-11-24T09:49:29.5537005Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-node.yml) -2025-11-24T09:49:29.5537600Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.5537898Z -2025-11-24T09:49:29.5538253Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Apply Manifests] *** -2025-11-24T09:49:29.5726210Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-namespace.yml) -2025-11-24T09:49:29.5727323Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-driver.yml) -2025-11-24T09:49:29.5728230Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-rbac.yml) -2025-11-24T09:49:29.5729134Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-node-rbac.yml) -2025-11-24T09:49:29.5939440Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-config.yml) -2025-11-24T09:49:29.5940451Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-deployment.yml) -2025-11-24T09:49:29.5941303Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-controller-service.yml) -2025-11-24T09:49:29.5942060Z skipping: [kubenode-super-marlin] => (item=vsphere-csi-node.yml) -2025-11-24T09:49:29.6417233Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-namespace.yml) -2025-11-24T09:49:29.6418017Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.6418646Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-driver.yml) -2025-11-24T09:49:29.6419421Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-rbac.yml) -2025-11-24T09:49:29.6420176Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-node-rbac.yml) -2025-11-24T09:49:29.6420924Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-config.yml) -2025-11-24T09:49:29.6421699Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-namespace.yml) -2025-11-24T09:49:29.6422438Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-driver.yml) -2025-11-24T09:49:29.6423472Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-deployment.yml) -2025-11-24T09:49:29.6424278Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-rbac.yml) -2025-11-24T09:49:29.6425067Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-controller-service.yml) -2025-11-24T09:49:29.6425837Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-node-rbac.yml) -2025-11-24T09:49:29.6426926Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-config.yml) -2025-11-24T09:49:29.6427651Z skipping: [kubenode-renewed-asp] => (item=vsphere-csi-node.yml) -2025-11-24T09:49:29.6428413Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-deployment.yml) -2025-11-24T09:49:29.6429067Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.6429681Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-controller-service.yml) -2025-11-24T09:49:29.6430425Z skipping: [kubenode-teaching-gobbler] => (item=vsphere-csi-node.yml) -2025-11-24T09:49:29.6431123Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.6431416Z -2025-11-24T09:49:29.6431814Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Generate a CSI secret manifest] *** -2025-11-24T09:49:29.6805507Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.7137770Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.7138522Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.7138848Z -2025-11-24T09:49:29.7139287Z TASK [kubernetes-apps/csi_driver/vsphere : VSphere CSI Driver | Apply a CSI secret manifest] *** -2025-11-24T09:49:29.7491896Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.8014563Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.8015260Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.8015588Z -2025-11-24T09:49:29.8016192Z TASK [kubernetes-apps/persistent_volumes/openstack : Kubernetes Persistent Volumes | Lay down OpenStack Cinder Storage Class template] *** -2025-11-24T09:49:29.8291525Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.8507688Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.8508358Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.8508679Z -2025-11-24T09:49:29.8509237Z TASK [kubernetes-apps/persistent_volumes/openstack : Kubernetes Persistent Volumes | Add OpenStack Cinder Storage Class] *** -2025-11-24T09:49:29.8847018Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.9284349Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.9285107Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.9285425Z -2025-11-24T09:49:29.9285962Z TASK [kubernetes-apps/persistent_volumes/cinder-csi : Kubernetes Persistent Volumes | Copy Cinder CSI Storage Class template] *** -2025-11-24T09:49:29.9669307Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:29.9873632Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:29.9874566Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:29.9874895Z -2025-11-24T09:49:29.9875431Z TASK [kubernetes-apps/persistent_volumes/cinder-csi : Kubernetes Persistent Volumes | Add Cinder CSI Storage Class] *** -2025-11-24T09:49:30.0192406Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.0663168Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.0663896Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.0664248Z -2025-11-24T09:49:30.0664860Z TASK [kubernetes-apps/persistent_volumes/aws-ebs-csi : Kubernetes Persistent Volumes | Copy AWS EBS CSI Storage Class template] *** -2025-11-24T09:49:30.1131118Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.1131945Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.1132450Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.1132978Z -2025-11-24T09:49:30.1133518Z TASK [kubernetes-apps/persistent_volumes/aws-ebs-csi : Kubernetes Persistent Volumes | Add AWS EBS CSI Storage Class] *** -2025-11-24T09:49:30.1483128Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.1897707Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.1898593Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.1898990Z -2025-11-24T09:49:30.1899682Z TASK [kubernetes-apps/persistent_volumes/azuredisk-csi : Kubernetes Persistent Volumes | Copy Azure CSI Storage Class template] *** -2025-11-24T09:49:30.2470777Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.2471626Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.2472226Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.2472606Z -2025-11-24T09:49:30.3282501Z TASK [kubernetes-apps/persistent_volumes/azuredisk-csi : Kubernetes Persistent Volumes | Add Azure CSI Storage Class] *** -2025-11-24T09:49:30.3283902Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.3284524Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.3285110Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.3285485Z -2025-11-24T09:49:30.3286127Z TASK [kubernetes-apps/persistent_volumes/gcp-pd-csi : Kubernetes Persistent Volumes | Copy GCP PD CSI Storage Class template] *** -2025-11-24T09:49:30.3299021Z Still deploying... -2025-11-24T09:49:30.3801481Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.3802967Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.3803594Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.3803964Z -2025-11-24T09:49:30.3804583Z TASK [kubernetes-apps/persistent_volumes/gcp-pd-csi : Kubernetes Persistent Volumes | Add GCP PD CSI Storage Class] *** -2025-11-24T09:49:30.4511837Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.4512570Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.4513375Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.4513700Z -2025-11-24T09:49:30.4514272Z TASK [kubernetes-apps/persistent_volumes/upcloud-csi : Kubernetes Persistent Volumes | Copy UpCloud CSI Storage Class template] *** -2025-11-24T09:49:30.4871368Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.5133290Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.5134371Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.5134798Z -2025-11-24T09:49:30.5135478Z TASK [kubernetes-apps/persistent_volumes/upcloud-csi : Kubernetes Persistent Volumes | Add UpCloud CSI Storage Class] *** -2025-11-24T09:49:30.5429538Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.6045154Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.6045913Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.6046258Z -2025-11-24T09:49:30.6046723Z TASK [kubernetes-apps/snapshots/snapshot-controller : Check if snapshot namespace exists] *** -2025-11-24T09:49:30.6416564Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.6689553Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.6690474Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.6690865Z -2025-11-24T09:49:30.6691399Z TASK [kubernetes-apps/snapshots/snapshot-controller : Snapshot Controller | Generate Manifests] *** -2025-11-24T09:49:30.7281367Z skipping: [kubenode-super-marlin] => (item={'name': 'snapshot-ns', 'file': 'snapshot-ns.yml', 'apply': 'not snapshot_namespace_exists'}) -2025-11-24T09:49:30.7283302Z skipping: [kubenode-renewed-asp] => (item={'name': 'snapshot-ns', 'file': 'snapshot-ns.yml', 'apply': 'not snapshot_namespace_exists'}) -2025-11-24T09:49:30.7284515Z skipping: [kubenode-renewed-asp] => (item={'name': 'rbac-snapshot-controller', 'file': 'rbac-snapshot-controller.yml'}) -2025-11-24T09:49:30.7285599Z skipping: [kubenode-renewed-asp] => (item={'name': 'snapshot-controller', 'file': 'snapshot-controller.yml'}) -2025-11-24T09:49:30.7286720Z skipping: [kubenode-super-marlin] => (item={'name': 'rbac-snapshot-controller', 'file': 'rbac-snapshot-controller.yml'}) -2025-11-24T09:49:30.7287565Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.7288349Z skipping: [kubenode-super-marlin] => (item={'name': 'snapshot-controller', 'file': 'snapshot-controller.yml'}) -2025-11-24T09:49:30.7289488Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'snapshot-ns', 'file': 'snapshot-ns.yml', 'apply': 'not snapshot_namespace_exists'}) -2025-11-24T09:49:30.7290380Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.7291219Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'rbac-snapshot-controller', 'file': 'rbac-snapshot-controller.yml'}) -2025-11-24T09:49:30.7292613Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'snapshot-controller', 'file': 'snapshot-controller.yml'}) -2025-11-24T09:49:30.7293661Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.7294000Z -2025-11-24T09:49:30.7294474Z TASK [kubernetes-apps/snapshots/snapshot-controller : Snapshot Controller | Apply Manifests] *** -2025-11-24T09:49:30.8165444Z skipping: [kubenode-super-marlin] => (item=snapshot-ns.yml) -2025-11-24T09:49:30.8166407Z skipping: [kubenode-super-marlin] => (item=rbac-snapshot-controller.yml) -2025-11-24T09:49:30.8167240Z skipping: [kubenode-renewed-asp] => (item=snapshot-ns.yml) -2025-11-24T09:49:30.8168034Z skipping: [kubenode-super-marlin] => (item=snapshot-controller.yml) -2025-11-24T09:49:30.8168747Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.8169451Z skipping: [kubenode-renewed-asp] => (item=rbac-snapshot-controller.yml) -2025-11-24T09:49:30.8170307Z skipping: [kubenode-renewed-asp] => (item=snapshot-controller.yml) -2025-11-24T09:49:30.8171166Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.8171830Z skipping: [kubenode-teaching-gobbler] => (item=snapshot-ns.yml) -2025-11-24T09:49:30.8172885Z skipping: [kubenode-teaching-gobbler] => (item=rbac-snapshot-controller.yml) -2025-11-24T09:49:30.8173796Z skipping: [kubenode-teaching-gobbler] => (item=snapshot-controller.yml) -2025-11-24T09:49:30.8174519Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.8174875Z -2025-11-24T09:49:30.8175426Z TASK [kubernetes-apps/snapshots/cinder-csi : Kubernetes Snapshots | Copy Cinder CSI Snapshot Class template] *** -2025-11-24T09:49:30.8763800Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.8764544Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.8765087Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.8765438Z -2025-11-24T09:49:30.8765928Z TASK [kubernetes-apps/snapshots/cinder-csi : Kubernetes Snapshots | Add Cinder CSI Snapshot Class] *** -2025-11-24T09:49:30.9635092Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:30.9635802Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:30.9636307Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:30.9636623Z -2025-11-24T09:49:30.9637064Z TASK [kubernetes-apps/container_runtimes/kata_containers : Kata Containers | Create addon dir] *** -2025-11-24T09:49:30.9998288Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.0222540Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.0223568Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.0223898Z -2025-11-24T09:49:31.0224307Z TASK [kubernetes-apps/container_runtimes/kata_containers : Kata Containers | Templates list] *** -2025-11-24T09:49:31.0767824Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.0768561Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.0769110Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.0769769Z -2025-11-24T09:49:31.0770247Z TASK [kubernetes-apps/container_runtimes/kata_containers : Kata Containers | Create manifests] *** -2025-11-24T09:49:31.1066245Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.1309602Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.1310348Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.1310681Z -2025-11-24T09:49:31.1311120Z TASK [kubernetes-apps/container_runtimes/kata_containers : Kata Containers | Apply manifests] *** -2025-11-24T09:49:31.1670171Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.2137207Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.2138052Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.2138390Z -2025-11-24T09:49:31.2138749Z TASK [kubernetes-apps/container_runtimes/gvisor : GVisor | Create addon dir] *** -2025-11-24T09:49:31.2675822Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.2676555Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.2677078Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.2677392Z -2025-11-24T09:49:31.2677746Z TASK [kubernetes-apps/container_runtimes/gvisor : GVisor | Templates List] ***** -2025-11-24T09:49:31.3213577Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.3214529Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.3215121Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.3215494Z -2025-11-24T09:49:31.3215919Z TASK [kubernetes-apps/container_runtimes/gvisor : GVisort | Create manifests] *** -2025-11-24T09:49:31.3488277Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.3711599Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.3713268Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.3713697Z -2025-11-24T09:49:31.3714135Z TASK [kubernetes-apps/container_runtimes/gvisor : GVisor | Apply manifests] **** -2025-11-24T09:49:31.4450628Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.4451536Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.4452134Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.4452533Z -2025-11-24T09:49:31.4453303Z TASK [kubernetes-apps/container_runtimes/crun : Crun | Copy runtime class manifest] *** -2025-11-24T09:49:31.5015148Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.5016120Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.5016622Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.5016936Z -2025-11-24T09:49:31.5017291Z TASK [kubernetes-apps/container_runtimes/crun : Crun | Apply manifests] ******** -2025-11-24T09:49:31.5767276Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.5768235Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.5768884Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.5769282Z -2025-11-24T09:49:31.5769792Z TASK [kubernetes-apps/container_runtimes/youki : Youki | Copy runtime class manifest] *** -2025-11-24T09:49:31.6049666Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.6262888Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.6263785Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.6264186Z -2025-11-24T09:49:31.6264609Z TASK [kubernetes-apps/container_runtimes/youki : Youki | Apply manifests] ****** -2025-11-24T09:49:31.7166335Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.7167264Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.7167801Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.7168131Z -2025-11-24T09:49:31.7168767Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | gather os specific variables] *** -2025-11-24T09:49:31.7725491Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.7726170Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.7726727Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.7727017Z -2025-11-24T09:49:31.7727625Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Set fact of download url Tesla] *** -2025-11-24T09:49:31.8205265Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.8206003Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.8206985Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.8207358Z -2025-11-24T09:49:31.8208045Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Set fact of download url GTX] *** -2025-11-24T09:49:31.8495776Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.8692191Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.8693137Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.8693463Z -2025-11-24T09:49:31.8694020Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Create addon dir] *** -2025-11-24T09:49:31.9079622Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.9298825Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.9299580Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.9299897Z -2025-11-24T09:49:31.9300500Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Create manifests for nvidia accelerators] *** -2025-11-24T09:49:31.9606681Z skipping: [kubenode-super-marlin] => (item={'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:31.9608369Z skipping: [kubenode-super-marlin] => (item={'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:31.9892133Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:31.9894253Z skipping: [kubenode-renewed-asp] => (item={'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:31.9895853Z skipping: [kubenode-renewed-asp] => (item={'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:31.9896933Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:31.9898001Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:31.9899587Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}) -2025-11-24T09:49:31.9900607Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:31.9900910Z -2025-11-24T09:49:31.9901501Z TASK [kubernetes-apps/container_engine_accelerator/nvidia_gpu : Container Engine Acceleration Nvidia GPU | Apply manifests for nvidia accelerators] *** -2025-11-24T09:49:32.0058568Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:32.0228739Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:32.0231296Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:32.1002316Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.1004289Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:32.1006001Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.1007450Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'nvidia-driver-install-daemonset', 'file': 'nvidia-driver-install-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:32.1009859Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'nvidia_accelerator_enabled', 'item': {'name': 'k8s-device-plugin-nvidia-daemonset', 'file': 'k8s-device-plugin-nvidia-daemonset.yml', 'type': 'daemonset'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:32.1011318Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.1011638Z -2025-11-24T09:49:32.1012072Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_private_key] *** -2025-11-24T09:49:32.1618869Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.1619771Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.1620393Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.1620802Z -2025-11-24T09:49:32.1621370Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_region_id] *** -2025-11-24T09:49:32.2266467Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.2267340Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.2267968Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.2268361Z -2025-11-24T09:49:32.2269344Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_tenancy_id] *** -2025-11-24T09:49:32.2846181Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.2847073Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.2847690Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.2848074Z -2025-11-24T09:49:32.2848629Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_user_id] *** -2025-11-24T09:49:32.3495628Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.3496368Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.3497249Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.3497583Z -2025-11-24T09:49:32.3498135Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_user_fingerprint] *** -2025-11-24T09:49:32.4093565Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.4094261Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.4094766Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.4095079Z -2025-11-24T09:49:32.4095578Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_compartment_id] *** -2025-11-24T09:49:32.4659501Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.4660393Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.4660998Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.4661368Z -2025-11-24T09:49:32.4661906Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_vnc_id] *** -2025-11-24T09:49:32.5239648Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.5240558Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.5241348Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.5241836Z -2025-11-24T09:49:32.5242501Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_subnet1_id] *** -2025-11-24T09:49:32.5865890Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.5866558Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.5867050Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.5867373Z -2025-11-24T09:49:32.5867815Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_subnet2_id] *** -2025-11-24T09:49:32.6449511Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.6450291Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.6450810Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.6451449Z -2025-11-24T09:49:32.6451967Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Credentials Check | oci_security_list_management] *** -2025-11-24T09:49:32.7064477Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.7065441Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.7066076Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.7066476Z -2025-11-24T09:49:32.7067076Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Generate Cloud Provider Configuration] *** -2025-11-24T09:49:32.7679695Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.7680547Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.7681161Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.7681536Z -2025-11-24T09:49:32.7682042Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Slurp Configuration] *** -2025-11-24T09:49:32.8106759Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.8529002Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.8529696Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.8530025Z -2025-11-24T09:49:32.8530460Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Encode Configuration] *** -2025-11-24T09:49:32.9160548Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.9161276Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.9161817Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.9162157Z -2025-11-24T09:49:32.9162600Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Generate Manifests] *** -2025-11-24T09:49:32.9760534Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:32.9761933Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:32.9762579Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:32.9763237Z -2025-11-24T09:49:32.9763742Z TASK [kubernetes-apps/cloud_controller/oci : OCI Cloud Controller | Apply Manifests] *** -2025-11-24T09:49:33.0618732Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.0619639Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.0620477Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.0620986Z -2025-11-24T09:49:33.0621633Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Check cluster settings for MetalLB] *** -2025-11-24T09:49:33.1285575Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.1286474Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.1287099Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.1287493Z -2025-11-24T09:49:33.1288176Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Check that the deprecated 'matallb_auto_assign' variable is not used anymore] *** -2025-11-24T09:49:33.1599191Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.1818186Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.1819009Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.1819388Z -2025-11-24T09:49:33.1819798Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Lay Down MetalLB] ************ -2025-11-24T09:49:33.2133276Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.2345740Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.2346695Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.2347096Z -2025-11-24T09:49:33.2347546Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Install and configure MetalLB] *** -2025-11-24T09:49:33.4306652Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.4307532Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.4308153Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.4308536Z -2025-11-24T09:49:33.4309055Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Wait for MetalLB controller to be running] *** -2025-11-24T09:49:33.4654739Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.4917642Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.4918568Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.4918965Z -2025-11-24T09:49:33.4919387Z TASK [kubernetes-apps/metallb : MetalLB | Layout address pools template] ******* -2025-11-24T09:49:33.5221084Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.5424204Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.5425383Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.5425778Z -2025-11-24T09:49:33.5426231Z TASK [kubernetes-apps/metallb : MetalLB | Create address pools configuration] *** -2025-11-24T09:49:33.5704887Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.5909925Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.5910771Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.5911155Z -2025-11-24T09:49:33.5911561Z TASK [kubernetes-apps/metallb : MetalLB | Layout layer2 template] ************** -2025-11-24T09:49:33.6239344Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.6449863Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.6450587Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.6450959Z -2025-11-24T09:49:33.6451402Z TASK [kubernetes-apps/metallb : MetalLB | Create layer2 configuration] ********* -2025-11-24T09:49:33.6767404Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.6974588Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.6975368Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.6975714Z -2025-11-24T09:49:33.6976087Z TASK [kubernetes-apps/metallb : MetalLB | Layout layer3 template] ************** -2025-11-24T09:49:33.7521141Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.7521933Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.7522437Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.7522985Z -2025-11-24T09:49:33.7523348Z TASK [kubernetes-apps/metallb : MetalLB | Create layer3 configuration] ********* -2025-11-24T09:49:33.7864298Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.8117740Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.8119014Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.8119350Z -2025-11-24T09:49:33.8119708Z TASK [kubernetes-apps/metallb : Kubernetes Apps | Delete MetalLB ConfigMap] **** -2025-11-24T09:49:33.8435846Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.8861250Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.8861847Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.8862192Z -2025-11-24T09:49:33.8862537Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Download yq] ****************** -2025-11-24T09:49:33.9196862Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:33.9514234Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:33.9515101Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:33.9515510Z -2025-11-24T09:49:33.9515999Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Copy yq binary from download dir] *** -2025-11-24T09:49:34.0129340Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.0130039Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.0130571Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.0130885Z -2025-11-24T09:49:34.0131264Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Set ArgoCD template list] ***** -2025-11-24T09:49:34.0497746Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.0715578Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.0716303Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.0716646Z -2025-11-24T09:49:34.0717021Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Download ArgoCD remote manifests] *** -2025-11-24T09:49:34.1355223Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.1355900Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.1356410Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.1356719Z -2025-11-24T09:49:34.1357149Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Copy ArgoCD remote manifests from download dir] *** -2025-11-24T09:49:34.2070429Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.2071135Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.2071662Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.2071978Z -2025-11-24T09:49:34.2072394Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Set ArgoCD namespace for remote manifests] *** -2025-11-24T09:49:34.2658098Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.2658844Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.2659350Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.2660020Z -2025-11-24T09:49:34.2660432Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Create ArgoCD manifests from templates] *** -2025-11-24T09:49:34.3146164Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.3538844Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.3539574Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.3539896Z -2025-11-24T09:49:34.3540239Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Install ArgoCD] *************** -2025-11-24T09:49:34.4142515Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.4143537Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.4144146Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.4144501Z -2025-11-24T09:49:34.4144917Z TASK [kubernetes-apps/argocd : Kubernetes Apps | Set ArgoCD custom admin password] *** -2025-11-24T09:49:34.4423764Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.4796632Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.4797606Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.4798086Z -2025-11-24T09:49:34.4798562Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Ensure dir exists] *** -2025-11-24T09:49:34.5372218Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.5373456Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.5374067Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.5374441Z -2025-11-24T09:49:34.5374883Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Create manifests] *** -2025-11-24T09:49:34.5721339Z skipping: [kubenode-super-marlin] => (item={'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.5723826Z skipping: [kubenode-super-marlin] => (item={'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.5725397Z skipping: [kubenode-renewed-asp] => (item={'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.5726844Z skipping: [kubenode-renewed-asp] => (item={'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6286306Z skipping: [kubenode-super-marlin] => (item={'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6287704Z skipping: [kubenode-renewed-asp] => (item={'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6288764Z skipping: [kubenode-super-marlin] => (item={'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6289861Z skipping: [kubenode-renewed-asp] => (item={'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6291046Z skipping: [kubenode-renewed-asp] => (item={'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6292189Z skipping: [kubenode-renewed-asp] => (item={'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}) -2025-11-24T09:49:34.6293581Z skipping: [kubenode-super-marlin] => (item={'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6294735Z skipping: [kubenode-renewed-asp] => (item={'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}) -2025-11-24T09:49:34.6295717Z skipping: [kubenode-renewed-asp] => (item={'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}) -2025-11-24T09:49:34.6296682Z skipping: [kubenode-super-marlin] => (item={'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}) -2025-11-24T09:49:34.6297659Z skipping: [kubenode-renewed-asp] => (item={'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}) -2025-11-24T09:49:34.6298641Z skipping: [kubenode-super-marlin] => (item={'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}) -2025-11-24T09:49:34.6299799Z skipping: [kubenode-renewed-asp] => (item={'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}) -2025-11-24T09:49:34.6300730Z skipping: [kubenode-super-marlin] => (item={'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}) -2025-11-24T09:49:34.6301705Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6302792Z skipping: [kubenode-super-marlin] => (item={'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}) -2025-11-24T09:49:34.6303573Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.6304418Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6305509Z skipping: [kubenode-super-marlin] => (item={'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}) -2025-11-24T09:49:34.6306518Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6307293Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.6308036Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6309148Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}) -2025-11-24T09:49:34.6310399Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}) -2025-11-24T09:49:34.6311349Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}) -2025-11-24T09:49:34.6312282Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}) -2025-11-24T09:49:34.6313318Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}) -2025-11-24T09:49:34.6314281Z skipping: [kubenode-teaching-gobbler] => (item={'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}) -2025-11-24T09:49:34.6315143Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.6315442Z -2025-11-24T09:49:34.6315788Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Apply manifests] *** -2025-11-24T09:49:34.6514843Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6517557Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6520033Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6763777Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6766122Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6769167Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6771185Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6773413Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6775441Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6777657Z skipping: [kubenode-super-marlin] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6779750Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6781837Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6784065Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.6786035Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7393781Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.7395808Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7398409Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7400772Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7403354Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7405356Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7407369Z skipping: [kubenode-renewed-asp] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7408658Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.7409967Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'appgroup', 'file': 'appgroup.diktyo.x-k8s.io_appgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7412346Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'networktopology', 'file': 'networktopology.diktyo.x-k8s.io_networktopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7414542Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'elasticquotas', 'file': 'scheduling.x-k8s.io_elasticquotas.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7416506Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'podgroups', 'file': 'scheduling.x-k8s.io_podgroups.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7418669Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'noderesourcetopologies', 'file': 'topology.node.k8s.io_noderesourcetopologies.yaml', 'type': 'crd'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7420659Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'namespace', 'file': 'namespace.yaml', 'type': 'namespace'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7422534Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'sa', 'file': 'sa-scheduler-plugins.yaml', 'type': 'serviceaccount'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7424530Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'rbac', 'file': 'rbac-scheduler-plugins.yaml', 'type': 'rbac'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7426389Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'cm', 'file': 'cm-scheduler-plugins.yaml', 'type': 'configmap'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7428271Z skipping: [kubenode-teaching-gobbler] => (item={'changed': False, 'skipped': True, 'skip_reason': 'Conditional result was False', 'false_condition': 'scheduler_plugins_enabled', 'item': {'name': 'deploy', 'file': 'deploy-scheduler-plugins.yaml', 'type': 'deployment'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:49:34.7429566Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.7429862Z -2025-11-24T09:49:34.7430273Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Wait for controller pods to be ready] *** -2025-11-24T09:49:34.7564597Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.7784319Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.7785213Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.7785720Z -2025-11-24T09:49:34.7786423Z TASK [kubernetes-apps/scheduler_plugins : Scheduler Plugins | Wait for scheduler pods to be ready] *** -2025-11-24T09:49:34.8073593Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.8557743Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.8558612Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.8559032Z -2025-11-24T09:49:34.8559519Z TASK [kubernetes-apps/node_feature_discovery : Node Feature Discovery | Create addon dir] *** -2025-11-24T09:49:34.8901567Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.9127240Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.9128188Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.9128597Z -2025-11-24T09:49:34.9129110Z TASK [kubernetes-apps/node_feature_discovery : Node Feature Discovery | Templates list] *** -2025-11-24T09:49:34.9490552Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:34.9720658Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:34.9721996Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:34.9722393Z -2025-11-24T09:49:34.9723188Z TASK [kubernetes-apps/node_feature_discovery : Node Feature Discovery | Create manifests] *** -2025-11-24T09:49:35.0235004Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:35.0235663Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:35.0236223Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:35.0236566Z -2025-11-24T09:49:35.0236982Z TASK [kubernetes-apps/node_feature_discovery : Node Feature Discovery | Apply manifests] *** -2025-11-24T09:49:35.0534150Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:35.2792224Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:35.2793409Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:35.2793800Z -2025-11-24T09:49:35.2794199Z PLAY [Apply resolv.conf changes now that cluster DNS is up] ******************** -2025-11-24T09:49:35.2794718Z -2025-11-24T09:49:35.2795123Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:49:35.3615909Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:49:35.3616783Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:35.3617525Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:49:35.3618147Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:35.3618437Z -2025-11-24T09:49:35.3618775Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:49:35.4091515Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:35.4092008Z -2025-11-24T09:49:35.4092372Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:49:35.4746867Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:35.4747581Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:35.4748146Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:35.4748455Z -2025-11-24T09:49:35.4748854Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:49:35.5139696Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:35.5140156Z -2025-11-24T09:49:35.5140538Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:49:35.5715738Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:35.5716396Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:35.5716933Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:35.5717556Z -2025-11-24T09:49:35.5718005Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:49:35.6352328Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:35.6353335Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:35.6353971Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:35.6354326Z -2025-11-24T09:49:35.6354698Z TASK [adduser : User | Create User Group] ************************************** -2025-11-24T09:49:35.8910163Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:35.8910995Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:35.8911627Z ok: [kubenode-super-marlin] -2025-11-24T09:49:35.8911967Z -2025-11-24T09:49:35.8912344Z TASK [adduser : User | Create User] ******************************************** -2025-11-24T09:49:36.2253298Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:36.2253915Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:36.2254401Z ok: [kubenode-super-marlin] -2025-11-24T09:49:36.2254688Z -2025-11-24T09:49:36.2255037Z TASK [kubernetes/preinstall : Check if /etc/fstab exists] ********************** -2025-11-24T09:49:36.2712226Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:36.2713268Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:36.2713840Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:36.2714166Z -2025-11-24T09:49:36.2714539Z TASK [kubernetes/preinstall : Remove swapfile from /etc/fstab] ***************** -2025-11-24T09:49:36.2994811Z skipping: [kubenode-renewed-asp] => (item=swap) -2025-11-24T09:49:36.2995735Z skipping: [kubenode-renewed-asp] => (item=none) -2025-11-24T09:49:36.2996966Z skipping: [kubenode-teaching-gobbler] => (item=swap) -2025-11-24T09:49:36.3361426Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:36.3362161Z skipping: [kubenode-teaching-gobbler] => (item=none) -2025-11-24T09:49:36.3362966Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:36.3363526Z skipping: [kubenode-super-marlin] => (item=swap) -2025-11-24T09:49:36.3364097Z skipping: [kubenode-super-marlin] => (item=none) -2025-11-24T09:49:36.3364656Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:36.3364946Z -2025-11-24T09:49:36.3365294Z TASK [kubernetes/preinstall : Mask swap.target (persist swapoff)] ************** -2025-11-24T09:49:36.3665218Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:36.3883898Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:36.3884625Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:36.3884950Z -2025-11-24T09:49:36.3885315Z TASK [kubernetes/preinstall : Disable swap] ************************************ -2025-11-24T09:49:36.4402906Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:36.4403822Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:36.4404388Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:36.4404704Z -2025-11-24T09:49:36.4405149Z TASK [kubernetes/preinstall : Set os_family fact for other redhat-based operating systems] *** -2025-11-24T09:49:36.4949479Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:36.4950221Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:36.4950780Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:36.4951083Z -2025-11-24T09:49:36.4951432Z TASK [kubernetes/preinstall : Check resolvconf] ******************************** -2025-11-24T09:49:36.7350966Z ok: [kubenode-super-marlin] -2025-11-24T09:49:36.7351646Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:36.7352151Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:36.7352456Z -2025-11-24T09:49:36.7353080Z TASK [kubernetes/preinstall : Check existence of /etc/resolvconf/resolv.conf.d] *** -2025-11-24T09:49:37.0072340Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:37.0073357Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:37.0073955Z ok: [kubenode-super-marlin] -2025-11-24T09:49:37.0074231Z -2025-11-24T09:49:37.0074571Z TASK [kubernetes/preinstall : Check status of /etc/resolv.conf] **************** -2025-11-24T09:49:37.2575470Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:37.2576288Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:37.2576855Z ok: [kubenode-super-marlin] -2025-11-24T09:49:37.2577521Z -2025-11-24T09:49:37.2577934Z TASK [kubernetes/preinstall : Get content of /etc/resolv.conf] ***************** -2025-11-24T09:49:37.5379093Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:37.5379934Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:37.5380571Z ok: [kubenode-super-marlin] -2025-11-24T09:49:37.5380896Z -2025-11-24T09:49:37.5381332Z TASK [kubernetes/preinstall : Get currently configured nameservers] ************ -2025-11-24T09:49:37.6723511Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:37.6724223Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:37.6724698Z ok: [kubenode-super-marlin] -2025-11-24T09:49:37.6724967Z -2025-11-24T09:49:37.6725391Z TASK [kubernetes/preinstall : Stop if /etc/resolv.conf not configured nameservers] *** -2025-11-24T09:49:37.7341993Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:37.7343179Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:37.7343816Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:37.7344202Z -2025-11-24T09:49:37.7344677Z TASK [kubernetes/preinstall : NetworkManager | Check if host has NetworkManager] *** -2025-11-24T09:49:37.9964927Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:37.9965714Z ok: [kubenode-super-marlin] -2025-11-24T09:49:37.9966214Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:37.9966488Z -2025-11-24T09:49:37.9966846Z TASK [kubernetes/preinstall : Check systemd-resolved] ************************** -2025-11-24T09:49:38.2686651Z ok: [kubenode-super-marlin] -2025-11-24T09:49:38.2687491Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:38.2688105Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:38.2688373Z -2025-11-24T09:49:38.2689205Z TASK [kubernetes/preinstall : Set default dns if remove_default_searchdomains is false] *** -2025-11-24T09:49:38.3648501Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:38.3649368Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:38.3649907Z ok: [kubenode-super-marlin] -2025-11-24T09:49:38.3650170Z -2025-11-24T09:49:38.3650509Z TASK [kubernetes/preinstall : Set dns facts] *********************************** -2025-11-24T09:49:38.4855948Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:38.4856607Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:38.4857058Z ok: [kubenode-super-marlin] -2025-11-24T09:49:38.4857657Z -2025-11-24T09:49:38.4857991Z TASK [kubernetes/preinstall : Check if kubelet is configured] ****************** -2025-11-24T09:49:38.7508546Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:38.7509215Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:38.7509708Z ok: [kubenode-super-marlin] -2025-11-24T09:49:38.7509974Z -2025-11-24T09:49:38.7510336Z TASK [kubernetes/preinstall : Check if early DNS configuration stage] ********** -2025-11-24T09:49:38.8326608Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:38.8327449Z ok: [kubenode-super-marlin] -2025-11-24T09:49:38.8328119Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:38.8328461Z -2025-11-24T09:49:38.8328795Z TASK [kubernetes/preinstall : Target resolv.conf files] ************************ -2025-11-24T09:49:38.9407417Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:38.9408273Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:38.9408873Z ok: [kubenode-super-marlin] -2025-11-24T09:49:38.9409196Z -2025-11-24T09:49:38.9409849Z TASK [kubernetes/preinstall : Target temporary resolvconf cloud init file (Flatcar Container Linux by Kinvolk / Fedora CoreOS)] *** -2025-11-24T09:49:38.9820800Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:39.0053094Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:39.0053852Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:39.0054152Z -2025-11-24T09:49:39.0054525Z TASK [kubernetes/preinstall : Check if /etc/dhclient.conf exists] ************** -2025-11-24T09:49:39.2698029Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:39.2698839Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:39.2699403Z ok: [kubenode-super-marlin] -2025-11-24T09:49:39.2699715Z -2025-11-24T09:49:39.2700155Z TASK [kubernetes/preinstall : Target dhclient conf file for /etc/dhclient.conf] *** -2025-11-24T09:49:39.3391025Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:39.3392172Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:39.3393087Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:39.3393466Z -2025-11-24T09:49:39.3393883Z TASK [kubernetes/preinstall : Check if /etc/dhcp/dhclient.conf exists] ********* -2025-11-24T09:49:39.5922901Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:39.5923629Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:39.5924099Z ok: [kubenode-super-marlin] -2025-11-24T09:49:39.5924353Z -2025-11-24T09:49:39.5924739Z TASK [kubernetes/preinstall : Target dhclient conf file for /etc/dhcp/dhclient.conf] *** -2025-11-24T09:49:39.6915620Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:39.6916303Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:39.6916825Z ok: [kubenode-super-marlin] -2025-11-24T09:49:39.6917114Z -2025-11-24T09:49:39.6917496Z TASK [kubernetes/preinstall : Target dhclient hook file for Red Hat family] **** -2025-11-24T09:49:39.7503441Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:39.7504046Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:39.7504599Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:39.7504897Z -2025-11-24T09:49:39.7505250Z TASK [kubernetes/preinstall : Target dhclient hook file for Debian family] ***** -2025-11-24T09:49:39.8294155Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:39.8294714Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:39.8295192Z ok: [kubenode-super-marlin] -2025-11-24T09:49:39.8295451Z -2025-11-24T09:49:39.8295803Z TASK [kubernetes/preinstall : Generate search domains to resolvconf] *********** -2025-11-24T09:49:39.8991281Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:39.8991922Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:39.8993236Z ok: [kubenode-super-marlin] -2025-11-24T09:49:39.8993630Z -2025-11-24T09:49:39.8994076Z TASK [kubernetes/preinstall : Pick coredns cluster IP or default resolver] ***** -2025-11-24T09:49:40.0381789Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:40.0382339Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.0383127Z ok: [kubenode-super-marlin] -2025-11-24T09:49:40.0383413Z -2025-11-24T09:49:40.0383841Z TASK [kubernetes/preinstall : Generate nameservers for resolvconf, including cluster DNS] *** -2025-11-24T09:49:40.1183926Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:40.1184772Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.1185333Z ok: [kubenode-super-marlin] -2025-11-24T09:49:40.1185607Z -2025-11-24T09:49:40.1186044Z TASK [kubernetes/preinstall : Generate nameservers for resolvconf, not including cluster DNS] *** -2025-11-24T09:49:40.1647866Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.1648434Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.1648948Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.1649263Z -2025-11-24T09:49:40.1649609Z TASK [kubernetes/preinstall : Set etcd vars if using kubeadm mode] ************* -2025-11-24T09:49:40.2104947Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.2105511Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.2106015Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.2106302Z -2025-11-24T09:49:40.2106643Z TASK [kubernetes/preinstall : Check /usr readonly] ***************************** -2025-11-24T09:49:40.3319145Z Still deploying... -2025-11-24T09:49:40.4397649Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.4398214Z ok: [kubenode-super-marlin] -2025-11-24T09:49:40.4398755Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:40.4399076Z -2025-11-24T09:49:40.4399490Z TASK [kubernetes/preinstall : Set alternate flexvolume path] ******************* -2025-11-24T09:49:40.4809569Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.4810285Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.4810932Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.4811319Z -2025-11-24T09:49:40.4811845Z TASK [kubernetes/preinstall : Stop if either kube_control_plane or kube_node group is empty] *** -2025-11-24T09:49:40.5057038Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.5057458Z -2025-11-24T09:49:40.5057916Z TASK [kubernetes/preinstall : Stop if etcd group is empty in external etcd mode] *** -2025-11-24T09:49:40.5325058Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.5325407Z -2025-11-24T09:49:40.5325766Z TASK [kubernetes/preinstall : Stop if non systemd OS type] ********************* -2025-11-24T09:49:40.5637990Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.5851076Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.5851805Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.5852165Z -2025-11-24T09:49:40.5852575Z TASK [kubernetes/preinstall : Stop if the os does not support] ***************** -2025-11-24T09:49:40.6086087Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.6382466Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.6383383Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.6383740Z -2025-11-24T09:49:40.6384158Z TASK [kubernetes/preinstall : Stop if unknown network plugin] ****************** -2025-11-24T09:49:40.6928948Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.6929577Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.6930161Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.6930481Z -2025-11-24T09:49:40.6930862Z TASK [kubernetes/preinstall : Stop if unsupported version of Kubernetes] ******* -2025-11-24T09:49:40.7366461Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.7367143Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.7367663Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.7367957Z -2025-11-24T09:49:40.7368475Z TASK [kubernetes/preinstall : Stop if known booleans are set as strings (Use JSON format on CLI: -e "{'key': true }")] *** -2025-11-24T09:49:40.7759251Z skipping: [kubenode-renewed-asp] => (item={'name': 'download_run_once', 'value': False}) -2025-11-24T09:49:40.7760608Z skipping: [kubenode-renewed-asp] => (item={'name': 'deploy_netchecker', 'value': False}) -2025-11-24T09:49:40.7761476Z skipping: [kubenode-renewed-asp] => (item={'name': 'download_always_pull', 'value': False}) -2025-11-24T09:49:40.7762305Z skipping: [kubenode-renewed-asp] => (item={'name': 'helm_enabled', 'value': False}) -2025-11-24T09:49:40.7763446Z skipping: [kubenode-renewed-asp] => (item={'name': 'openstack_lbaas_enabled', 'value': False}) -2025-11-24T09:49:40.7764133Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.7764537Z -2025-11-24T09:49:40.7764890Z TASK [kubernetes/preinstall : Stop if even number of etcd hosts] *************** -2025-11-24T09:49:40.8197999Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.8198905Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.8199547Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.8199902Z -2025-11-24T09:49:40.8200315Z TASK [kubernetes/preinstall : Stop if memory is too small for masters] ********* -2025-11-24T09:49:40.9871069Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:40.9871794Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:40.9872337Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:40.9872881Z -2025-11-24T09:49:40.9873258Z TASK [kubernetes/preinstall : Stop if memory is too small for nodes] *********** -2025-11-24T09:49:41.0442091Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.0443290Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.0443991Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.0444378Z -2025-11-24T09:49:41.0444841Z TASK [kubernetes/preinstall : Stop if cgroups are not enabled on nodes] ******** -2025-11-24T09:49:41.0911984Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.0913154Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.0913785Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.0914128Z -2025-11-24T09:49:41.0914655Z TASK [kubernetes/preinstall : Guarantee that enough network address space is available for all pods] *** -2025-11-24T09:49:41.1414375Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.1415112Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.1415642Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.1415935Z -2025-11-24T09:49:41.1416286Z TASK [kubernetes/preinstall : Stop if ip var does not match local ips] ********* -2025-11-24T09:49:41.1931034Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.1932048Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.1932575Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.1933144Z -2025-11-24T09:49:41.1933503Z TASK [kubernetes/preinstall : Ensure ping package] ***************************** -2025-11-24T09:49:41.2444020Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.2444913Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.2445549Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.2445892Z -2025-11-24T09:49:41.2446307Z TASK [kubernetes/preinstall : Stop if access_ip is not pingable] *************** -2025-11-24T09:49:41.2897376Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.2898260Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.2898906Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.2899266Z -2025-11-24T09:49:41.2899755Z TASK [kubernetes/preinstall : Stop if RBAC is not enabled when dashboard is enabled] *** -2025-11-24T09:49:41.3365039Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.3365924Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.3366577Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.3366936Z -2025-11-24T09:49:41.3367465Z TASK [kubernetes/preinstall : Stop if RBAC is not enabled when OCI cloud controller is enabled] *** -2025-11-24T09:49:41.3886344Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.3887242Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.3887879Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.3888241Z -2025-11-24T09:49:41.3888663Z TASK [kubernetes/preinstall : Stop if kernel version is too low] *************** -2025-11-24T09:49:41.4371062Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.4371785Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.4372418Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.4373088Z -2025-11-24T09:49:41.4373506Z TASK [kubernetes/preinstall : Stop if bad hostname] **************************** -2025-11-24T09:49:41.4624530Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.4846880Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.4847788Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.4848175Z -2025-11-24T09:49:41.4848535Z TASK [kubernetes/preinstall : Check cloud_provider value] ********************** -2025-11-24T09:49:41.5313940Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.5314807Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.5315469Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.5315834Z -2025-11-24T09:49:41.5316325Z TASK [kubernetes/preinstall : Check that kube_service_addresses is a network range] *** -2025-11-24T09:49:41.5541941Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.5542905Z -2025-11-24T09:49:41.5543378Z TASK [kubernetes/preinstall : Check that kube_pods_subnet is a network range] *** -2025-11-24T09:49:41.5766906Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.5767548Z -2025-11-24T09:49:41.5768163Z TASK [kubernetes/preinstall : Check that kube_pods_subnet does not collide with kube_service_addresses] *** -2025-11-24T09:49:41.6031867Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.6032378Z -2025-11-24T09:49:41.6033007Z TASK [kubernetes/preinstall : Check that IP range is enough for the nodes] ***** -2025-11-24T09:49:41.6229277Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.6229912Z -2025-11-24T09:49:41.6230369Z TASK [kubernetes/preinstall : Stop if unknown dns mode] ************************ -2025-11-24T09:49:41.6461637Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.6462271Z -2025-11-24T09:49:41.6462939Z TASK [kubernetes/preinstall : Stop if unknown kube proxy mode] ***************** -2025-11-24T09:49:41.6728685Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.6729346Z -2025-11-24T09:49:41.6729794Z TASK [kubernetes/preinstall : Stop if unknown cert_management] ***************** -2025-11-24T09:49:41.6997937Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.6998546Z -2025-11-24T09:49:41.6998964Z TASK [kubernetes/preinstall : Stop if unknown resolvconf_mode] ***************** -2025-11-24T09:49:41.7298032Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.7298652Z -2025-11-24T09:49:41.7299182Z TASK [kubernetes/preinstall : Stop if etcd deployment type is not host, docker or kubeadm] *** -2025-11-24T09:49:41.7903328Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.7903999Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.7904535Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.7904833Z -2025-11-24T09:49:41.7905250Z TASK [kubernetes/preinstall : Stop if container manager is not docker, crio or containerd] *** -2025-11-24T09:49:41.8135421Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.8136047Z -2025-11-24T09:49:41.8136742Z TASK [kubernetes/preinstall : Stop if etcd deployment type is not host or kubeadm when container_manager != docker] *** -2025-11-24T09:49:41.8641896Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.8643058Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.8643722Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.8644086Z -2025-11-24T09:49:41.8644610Z TASK [kubernetes/preinstall : Warn the user if they are still using `etcd_kubeadm_enabled`] *** -2025-11-24T09:49:41.8939264Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.8939891Z -2025-11-24T09:49:41.8940612Z TASK [kubernetes/preinstall : Stop if `etcd_kubeadm_enabled` is defined and `etcd_deployment_type` is not `kubeadm` or `host`] *** -2025-11-24T09:49:41.9159798Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.9160472Z -2025-11-24T09:49:41.9161079Z TASK [kubernetes/preinstall : Stop if download_localhost is enabled but download_run_once is not] *** -2025-11-24T09:49:41.9608321Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:41.9609585Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:41.9610225Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:41.9610572Z -2025-11-24T09:49:41.9611120Z TASK [kubernetes/preinstall : Stop if kata_containers_enabled is enabled when container_manager is docker] *** -2025-11-24T09:49:42.0089539Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.0090384Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.0091018Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.0091368Z -2025-11-24T09:49:42.0091919Z TASK [kubernetes/preinstall : Stop if gvisor_enabled is enabled when container_manager is not containerd] *** -2025-11-24T09:49:42.0531600Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.0532352Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.0533116Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.0533417Z -2025-11-24T09:49:42.0533870Z TASK [kubernetes/preinstall : Stop if download_localhost is enabled for Flatcar Container Linux] *** -2025-11-24T09:49:42.0906456Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.1140160Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.1141139Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.1141503Z -2025-11-24T09:49:42.1141917Z TASK [kubernetes/preinstall : Ensure minimum containerd version] *************** -2025-11-24T09:49:42.1422540Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.1423418Z -2025-11-24T09:49:42.1423901Z TASK [kubernetes/preinstall : Stop if using deprecated containerd_config variable] *** -2025-11-24T09:49:42.1911175Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.1912012Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.1912544Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.1913041Z -2025-11-24T09:49:42.1913674Z TASK [kubernetes/preinstall : Stop if auto_renew_certificates is enabled when certificates are managed externally (kube_external_ca_mode is true)] *** -2025-11-24T09:49:42.2413253Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.2419679Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.2420236Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.2420534Z -2025-11-24T09:49:42.2420983Z TASK [kubernetes/preinstall : Stop if using deprecated comma separated list for admission plugins] *** -2025-11-24T09:49:42.2998375Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.2999052Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.3000099Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.3000450Z -2025-11-24T09:49:42.3000893Z TASK [kubernetes/preinstall : Verify that the packages list structure is valid] *** -2025-11-24T09:49:42.3304565Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.3493144Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.3494009Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.3494398Z -2025-11-24T09:49:42.3494783Z TASK [kubernetes/preinstall : Verify that the packages list is sorted] ********* -2025-11-24T09:49:42.3940814Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.3941565Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.3942215Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.3942576Z -2025-11-24T09:49:42.3943317Z TASK [kubernetes/preinstall : Check if kubernetes kubeadm compat cert dir exists] *** -2025-11-24T09:49:42.4416905Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.4417696Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.4418235Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.4418519Z -2025-11-24T09:49:42.4418968Z TASK [kubernetes/preinstall : Create kubernetes kubeadm compat cert dir (kubernetes/kubeadm issue 1498)] *** -2025-11-24T09:49:42.4984410Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.4985146Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.4985829Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.4986240Z -2025-11-24T09:49:42.4986684Z TASK [kubernetes/preinstall : Create local volume provisioner directories] ***** -2025-11-24T09:49:42.5258949Z skipping: [kubenode-renewed-asp] => (item=local-storage) -2025-11-24T09:49:42.5933346Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:42.5934198Z skipping: [kubenode-teaching-gobbler] => (item=local-storage) -2025-11-24T09:49:42.5934940Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:42.5935671Z skipping: [kubenode-super-marlin] => (item=local-storage) -2025-11-24T09:49:42.5936381Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:42.5936731Z -2025-11-24T09:49:42.5937126Z TASK [kubernetes/preinstall : Flush handlers] ********************************** -2025-11-24T09:49:42.5937630Z -2025-11-24T09:49:42.5938139Z TASK [kubernetes/preinstall : Flush handlers] ********************************** -2025-11-24T09:49:42.5938648Z -2025-11-24T09:49:42.5939043Z TASK [kubernetes/preinstall : Flush handlers] ********************************** -2025-11-24T09:49:42.5939537Z -2025-11-24T09:49:42.5939811Z TASK [Run calico checks] ******************************************************* -2025-11-24T09:49:42.8761799Z -2025-11-24T09:49:42.8762616Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (ipip)] *** -2025-11-24T09:49:42.9247122Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:42.9247836Z "changed": false, -2025-11-24T09:49:42.9248315Z "msg": "All assertions passed" -2025-11-24T09:49:42.9248816Z } -2025-11-24T09:49:42.9249031Z -2025-11-24T09:49:42.9249479Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (ipip_mode)] *** -2025-11-24T09:49:42.9892423Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:42.9893306Z "changed": false, -2025-11-24T09:49:42.9893737Z "msg": "All assertions passed" -2025-11-24T09:49:42.9894187Z } -2025-11-24T09:49:42.9894379Z -2025-11-24T09:49:42.9894858Z TASK [network_plugin/calico : Stop if legacy encapsulation variables are detected (calcio_ipam_autoallocateblocks)] *** -2025-11-24T09:49:43.0382917Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:43.0383696Z "changed": false, -2025-11-24T09:49:43.0384246Z "msg": "All assertions passed" -2025-11-24T09:49:43.0384805Z } -2025-11-24T09:49:43.0385043Z -2025-11-24T09:49:43.0385501Z TASK [network_plugin/calico : Stop if incompatible network plugin and cloudprovider] *** -2025-11-24T09:49:43.0711183Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:43.0711604Z -2025-11-24T09:49:43.0712368Z TASK [network_plugin/calico : Stop if supported Calico versions] *************** -2025-11-24T09:49:43.1213879Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:43.1214650Z "changed": false, -2025-11-24T09:49:43.1215174Z "msg": "All assertions passed" -2025-11-24T09:49:43.1215735Z } -2025-11-24T09:49:43.1215972Z -2025-11-24T09:49:43.1216366Z TASK [network_plugin/calico : Check if calicoctl.sh exists] ******************** -2025-11-24T09:49:43.3714262Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:49:43.3714745Z -2025-11-24T09:49:43.3715097Z TASK [network_plugin/calico : Check if calico ready] *************************** -2025-11-24T09:49:43.6347607Z changed: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:49:43.6348168Z -2025-11-24T09:49:43.6348572Z TASK [network_plugin/calico : Get current calico version] ********************** -2025-11-24T09:49:43.9234659Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:49:43.9235262Z -2025-11-24T09:49:43.9235739Z TASK [network_plugin/calico : Assert that current calico version is enough for upgrade] *** -2025-11-24T09:49:44.0163373Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:44.0164212Z "changed": false, -2025-11-24T09:49:44.0164749Z "msg": "All assertions passed" -2025-11-24T09:49:44.0165299Z } -2025-11-24T09:49:44.0165539Z -2025-11-24T09:49:44.0166123Z TASK [network_plugin/calico : Check that cluster_id is set and a valid IPv4 address if calico_rr enabled] *** -2025-11-24T09:49:44.0617733Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:44.0618185Z -2025-11-24T09:49:44.0619082Z TASK [network_plugin/calico : Check that calico_rr nodes are in k8s_cluster group] *** -2025-11-24T09:49:44.1028575Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:44.1029191Z -2025-11-24T09:49:44.1029675Z TASK [network_plugin/calico : Check vars defined correctly] ******************** -2025-11-24T09:49:44.1667922Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:44.1668841Z "changed": false, -2025-11-24T09:49:44.1669388Z "msg": "All assertions passed" -2025-11-24T09:49:44.1669938Z } -2025-11-24T09:49:44.1670499Z -2025-11-24T09:49:44.1670915Z TASK [network_plugin/calico : Check calico network backend defined correctly] *** -2025-11-24T09:49:44.2130865Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:44.2131537Z "changed": false, -2025-11-24T09:49:44.2132023Z "msg": "All assertions passed" -2025-11-24T09:49:44.2132496Z } -2025-11-24T09:49:44.2132920Z -2025-11-24T09:49:44.2133298Z TASK [network_plugin/calico : Check ipip and vxlan mode defined correctly] ***** -2025-11-24T09:49:44.2556030Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:44.2556791Z "changed": false, -2025-11-24T09:49:44.2557324Z "msg": "All assertions passed" -2025-11-24T09:49:44.2557875Z } -2025-11-24T09:49:44.2558111Z -2025-11-24T09:49:44.2558552Z TASK [network_plugin/calico : Check ipip and vxlan mode if simultaneously enabled] *** -2025-11-24T09:49:44.2913807Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:44.2914242Z -2025-11-24T09:49:44.2914710Z TASK [network_plugin/calico : Check ipip and vxlan mode if simultaneously enabled] *** -2025-11-24T09:49:44.3445265Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:44.3446160Z "changed": false, -2025-11-24T09:49:44.3446684Z "msg": "All assertions passed" -2025-11-24T09:49:44.3447234Z } -2025-11-24T09:49:44.3447470Z -2025-11-24T09:49:44.3447871Z TASK [network_plugin/calico : Get Calico default-pool configuration] *********** -2025-11-24T09:49:44.5835989Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:49:44.5836558Z -2025-11-24T09:49:44.5836890Z TASK [network_plugin/calico : Set calico_pool_conf] **************************** -2025-11-24T09:49:44.6331404Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] -2025-11-24T09:49:44.6331960Z -2025-11-24T09:49:44.6333017Z TASK [network_plugin/calico : Check if inventory match current cluster configuration] *** -2025-11-24T09:49:44.6919087Z ok: [kubenode-renewed-asp -> kubenode-super-marlin(10.1.1.8)] => { -2025-11-24T09:49:44.6919807Z "changed": false, -2025-11-24T09:49:44.6920260Z "msg": "All assertions passed" -2025-11-24T09:49:44.6920730Z } -2025-11-24T09:49:44.6920933Z -2025-11-24T09:49:44.6921321Z TASK [network_plugin/calico : Check kdd calico_datastore if calico_apiserver_enabled] *** -2025-11-24T09:49:44.7216719Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:44.7217106Z -2025-11-24T09:49:44.7217504Z TASK [network_plugin/calico : Check kdd calico_datastore if typha_enabled] ***** -2025-11-24T09:49:44.7488755Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:44.7489163Z -2025-11-24T09:49:44.7489581Z TASK [network_plugin/calico : Check ipip mode is Never for calico ipv6] ******** -2025-11-24T09:49:44.8934376Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:44.8934809Z -2025-11-24T09:49:44.8935193Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:49:44.8935661Z -2025-11-24T09:49:44.8935995Z TASK [Annotate nodes] ********************************************************** -2025-11-24T09:49:45.0111900Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:45.0112892Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:45.0113591Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:45.0113990Z -2025-11-24T09:49:45.0114340Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:49:45.0114817Z -2025-11-24T09:49:45.0115543Z TASK [logrotate : nickhammond.logrotate | Install logrotate] ******************* -2025-11-24T09:49:45.6944331Z ok: [kubenode-super-marlin] -2025-11-24T09:49:45.6944976Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:45.6945536Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:45.6945854Z -2025-11-24T09:49:45.6946267Z TASK [logrotate : nickhammond.logrotate | Setup logrotate.d scripts] *********** -2025-11-24T09:49:46.3717992Z changed: [kubenode-super-marlin] => (item={'name': 'podlogs', 'path': '/var/lib/docker/containers/*/*.log', 'options': ['daily', 'missingok', 'rotate 2', 'maxage 1', 'copytruncate', 'nocreate', 'nocompress']}) -2025-11-24T09:49:46.3720303Z changed: [kubenode-renewed-asp] => (item={'name': 'podlogs', 'path': '/var/lib/docker/containers/*/*.log', 'options': ['daily', 'missingok', 'rotate 2', 'maxage 1', 'copytruncate', 'nocreate', 'nocompress']}) -2025-11-24T09:49:46.3721870Z changed: [kubenode-teaching-gobbler] => (item={'name': 'podlogs', 'path': '/var/lib/docker/containers/*/*.log', 'options': ['daily', 'missingok', 'rotate 2', 'maxage 1', 'copytruncate', 'nocreate', 'nocompress']}) -2025-11-24T09:49:46.3722976Z -2025-11-24T09:49:46.3723304Z PLAY [Bringing kubeconfig in place] ******************************************** -2025-11-24T09:49:46.3723737Z -2025-11-24T09:49:46.3724074Z TASK [Checking if 'kubeconfig' file already exists] **************************** -2025-11-24T09:49:46.6974325Z ok: [kubenode-renewed-asp -> localhost] -2025-11-24T09:49:46.6975101Z ok: [kubenode-super-marlin -> localhost] -2025-11-24T09:49:46.6975756Z ok: [kubenode-teaching-gobbler -> localhost] -2025-11-24T09:49:46.6976158Z -2025-11-24T09:49:46.6976531Z TASK [Renaming kubeconfig file provided by Kubespray] ************************** -2025-11-24T09:49:47.2155728Z changed: [kubenode-super-marlin -> localhost] -2025-11-24T09:49:47.2156489Z ok: [kubenode-teaching-gobbler -> localhost] -2025-11-24T09:49:47.2157178Z ok: [kubenode-renewed-asp -> localhost] -2025-11-24T09:49:47.2157570Z -2025-11-24T09:49:47.3406895Z TASK [debug] ******************************************************************* -2025-11-24T09:49:47.3407682Z ok: [kubenode-renewed-asp -> localhost] => { -2025-11-24T09:49:47.3408619Z "msg": "TODO: Encrypt /wire-server-deploy/ansible/inventory/offline/../kubeconfig.dec with sops" -2025-11-24T09:49:47.3409468Z } -2025-11-24T09:49:47.3409988Z ok: [kubenode-super-marlin -> localhost] => { -2025-11-24T09:49:47.3410883Z "msg": "TODO: Encrypt /wire-server-deploy/ansible/inventory/offline/../kubeconfig.dec with sops" -2025-11-24T09:49:47.3412092Z } -2025-11-24T09:49:47.3412617Z ok: [kubenode-teaching-gobbler -> localhost] => { -2025-11-24T09:49:47.3413769Z "msg": "TODO: Encrypt /wire-server-deploy/ansible/inventory/offline/../kubeconfig.dec with sops" -2025-11-24T09:49:47.3414592Z } -2025-11-24T09:49:47.3414840Z -2025-11-24T09:49:47.3415177Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:49:47.3415646Z -2025-11-24T09:49:47.3416045Z TASK [systemd-coredump : Install systemd-coredump] ***************************** -2025-11-24T09:49:47.5011592Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:47.5012149Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:47.5012826Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:47.5013132Z -2025-11-24T09:49:47.5013376Z PLAY [etcd] ******************************************************************** -2025-11-24T09:49:47.5013716Z -2025-11-24T09:49:47.5014020Z TASK [etcd-helpers : Add etcd helper scripts] ********************************** -2025-11-24T09:49:48.7453842Z changed: [kubenode-super-marlin] => (item=etcd-health.sh) -2025-11-24T09:49:48.7454732Z changed: [kubenode-renewed-asp] => (item=etcd-health.sh) -2025-11-24T09:49:48.7455526Z changed: [kubenode-teaching-gobbler] => (item=etcd-health.sh) -2025-11-24T09:49:48.7456313Z changed: [kubenode-super-marlin] => (item=etcdctl3.sh) -2025-11-24T09:49:48.7457060Z changed: [kubenode-teaching-gobbler] => (item=etcdctl3.sh) -2025-11-24T09:49:48.7457816Z changed: [kubenode-renewed-asp] => (item=etcdctl3.sh) -2025-11-24T09:49:48.7458250Z -2025-11-24T09:49:48.7458989Z PLAY RECAP ********************************************************************* -2025-11-24T09:49:48.7459939Z adminhost : ok=3 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:49:48.7461107Z kubenode-renewed-asp : ok=442 changed=80 unreachable=0 failed=0 skipped=780 rescued=0 ignored=3 -2025-11-24T09:49:48.7462298Z kubenode-super-marlin : ok=447 changed=82 unreachable=0 failed=0 skipped=699 rescued=0 ignored=6 -2025-11-24T09:49:48.7463719Z kubenode-teaching-gobbler : ok=413 changed=75 unreachable=0 failed=0 skipped=686 rescued=0 ignored=3 -2025-11-24T09:49:48.7464524Z -2025-11-24T09:49:49.0346264Z ++ dirname /wire-server-deploy/ansible/inventory/offline/inventory.yml -2025-11-24T09:49:49.0359458Z + INVENTORY_DIR=/wire-server-deploy/ansible/inventory/offline -2025-11-24T09:49:49.0367007Z ++ yq eval '."k8s-cluster".vars.kube_vip_address // ""' /wire-server-deploy/ansible/inventory/offline/inventory.yml -2025-11-24T09:49:49.0703548Z + VIP_ADDRESS=10.1.1.254 -2025-11-24T09:49:49.0704345Z Deploying kube-vip with VIP: 10.1.1.254 -2025-11-24T09:49:49.0705145Z + '[' -z 10.1.1.254 ']' -2025-11-24T09:49:49.0705814Z + '[' 10.1.1.254 = null ']' -2025-11-24T09:49:49.0706485Z + '[' -n 10.1.1.254 ']' -2025-11-24T09:49:49.0707146Z + '[' 10.1.1.254 '!=' null ']' -2025-11-24T09:49:49.0707909Z + echo 'Deploying kube-vip with VIP: 10.1.1.254' -2025-11-24T09:49:49.0709686Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/kubernetes.yml --tags kube-vip,client -e '{"loadbalancer_apiserver": {"address": "10.1.1.254", "port": 6443}}' -e apiserver_loadbalancer_domain_name=10.1.1.254 -e loadbalancer_apiserver_localhost=false -e '{"supplementary_addresses_in_ssl_keys": ["10.1.1.254"]}' -2025-11-24T09:49:49.5207771Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:49:49.5208624Z -vvvv to see details -2025-11-24T09:49:49.5211079Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:49:49.5212135Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:49:49.7723712Z [WARNING]: While constructing a mapping from /wire-server-deploy/ansible/roles- -2025-11-24T09:49:49.7724899Z external/kubespray/roles/bootstrap-os/tasks/main.yml, line 29, column 7, found -2025-11-24T09:49:49.7726181Z a duplicate dict key (paths). Using last defined value only. -2025-11-24T09:49:50.3332917Z Still deploying... -2025-11-24T09:49:51.4247463Z -2025-11-24T09:49:51.4248132Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:49:51.4248682Z -2025-11-24T09:49:51.4249039Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:49:53.1433873Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:53.1434773Z ok: [kubenode-super-marlin] -2025-11-24T09:49:53.1435349Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:53.1435663Z -2025-11-24T09:49:53.1436058Z PLAY [Check Ansible version] *************************************************** -2025-11-24T09:49:53.1436538Z -2025-11-24T09:49:53.1436914Z TASK [Check 2.16.4 <= Ansible version < 2.17.0] ******************************** -2025-11-24T09:49:53.1930567Z ok: [adminhost] => { -2025-11-24T09:49:53.1931226Z "changed": false, -2025-11-24T09:49:53.1931709Z "msg": "All assertions passed" -2025-11-24T09:49:53.1932202Z } -2025-11-24T09:49:53.1932405Z -2025-11-24T09:49:53.1932957Z TASK [Check that python netaddr is installed] ********************************** -2025-11-24T09:49:53.3145822Z ok: [adminhost] => { -2025-11-24T09:49:53.3146600Z "changed": false, -2025-11-24T09:49:53.3147156Z "msg": "All assertions passed" -2025-11-24T09:49:53.3147744Z } -2025-11-24T09:49:53.3147991Z -2025-11-24T09:49:53.3148384Z TASK [Check that jinja is not too old (install via pip)] *********************** -2025-11-24T09:49:53.4855677Z ok: [adminhost] => { -2025-11-24T09:49:53.4856301Z "changed": false, -2025-11-24T09:49:53.4857285Z "msg": "All assertions passed" -2025-11-24T09:49:53.4857775Z } -2025-11-24T09:49:53.4857979Z -2025-11-24T09:49:53.4858320Z PLAY [Add kube-master nodes to kube_control_plane] ***************************** -2025-11-24T09:49:53.4858769Z -2025-11-24T09:49:53.4859079Z TASK [Add nodes to kube_control_plane group] *********************************** -2025-11-24T09:49:53.6639356Z changed: [kubenode-renewed-asp] -2025-11-24T09:49:53.6640090Z changed: [kubenode-super-marlin] -2025-11-24T09:49:53.6640608Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:49:53.6641278Z -2025-11-24T09:49:53.6641601Z PLAY [Add kube-node nodes to kube_node] **************************************** -2025-11-24T09:49:53.6642023Z -2025-11-24T09:49:53.6642313Z TASK [Add nodes to kube_node group] ******************************************** -2025-11-24T09:49:53.8369738Z changed: [kubenode-renewed-asp] -2025-11-24T09:49:53.8370639Z changed: [kubenode-super-marlin] -2025-11-24T09:49:53.8371165Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:49:53.8371497Z -2025-11-24T09:49:53.8371823Z PLAY [Add k8s-cluster nodes to k8s_cluster] ************************************ -2025-11-24T09:49:53.8372255Z -2025-11-24T09:49:53.8372556Z TASK [Add nodes to k8s_cluster group] ****************************************** -2025-11-24T09:49:53.9571988Z [WARNING]: Could not match supplied host pattern, ignoring: calico-rr -2025-11-24T09:49:53.9573146Z [WARNING]: Could not match supplied host pattern, ignoring: no-floating -2025-11-24T09:49:53.9574022Z [WARNING]: Could not match supplied host pattern, ignoring: bastion -2025-11-24T09:49:53.9575609Z [WARNING]: Could not match supplied host pattern, ignoring: calico_rr -2025-11-24T09:49:53.9991583Z changed: [kubenode-super-marlin] -2025-11-24T09:49:53.9992532Z changed: [kubenode-renewed-asp] -2025-11-24T09:49:53.9993414Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:49:53.9993801Z -2025-11-24T09:49:53.9994119Z PLAY [Add calico-rr nodes to calico_rr] **************************************** -2025-11-24T09:49:53.9994764Z skipping: no hosts matched -2025-11-24T09:49:53.9995028Z -2025-11-24T09:49:53.9995343Z PLAY [Add no-floating nodes to no_floating] ************************************ -2025-11-24T09:49:53.9995952Z skipping: no hosts matched -2025-11-24T09:49:53.9996205Z -2025-11-24T09:49:53.9996505Z PLAY [Install bastion ssh config] ********************************************** -2025-11-24T09:49:53.9997457Z skipping: no hosts matched -2025-11-24T09:49:53.9997709Z -2025-11-24T09:49:53.9998016Z PLAY [Bootstrap hosts for Ansible] ********************************************* -2025-11-24T09:49:53.9998438Z -2025-11-24T09:49:53.9998766Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:49:54.0825593Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:49:54.0826636Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:49:54.0827503Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:54.0828267Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:54.0828608Z -2025-11-24T09:49:54.0829006Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:49:54.1383179Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:54.1383871Z -2025-11-24T09:49:54.1384286Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:49:54.2229294Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:54.2229987Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:54.2230492Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:54.2230826Z -2025-11-24T09:49:54.2231200Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:49:54.2632376Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:54.2633309Z -2025-11-24T09:49:54.2633800Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:49:54.3467395Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:54.3468261Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:54.3469280Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:54.3469665Z -2025-11-24T09:49:54.3470211Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:49:54.5279604Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:54.5280551Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:54.5281190Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:54.5281570Z -2025-11-24T09:49:54.5288123Z PLAY [Gather facts] ************************************************************ -2025-11-24T09:49:54.5288919Z -2025-11-24T09:49:54.5289245Z TASK [Gather minimal facts] **************************************************** -2025-11-24T09:49:55.2121293Z ok: [kubenode-super-marlin] -2025-11-24T09:49:55.2122170Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:55.2123018Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:55.2123360Z -2025-11-24T09:49:55.2123741Z TASK [Gather necessary facts (network)] **************************************** -2025-11-24T09:49:55.7755743Z ok: [kubenode-super-marlin] -2025-11-24T09:49:55.7756401Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:55.7756944Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:55.7757226Z -2025-11-24T09:49:55.7757553Z TASK [Gather necessary facts (hardware)] *************************************** -2025-11-24T09:49:56.9173032Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:56.9173886Z ok: [kubenode-super-marlin] -2025-11-24T09:49:56.9174450Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:56.9174767Z -2025-11-24T09:49:56.9175141Z PLAY [Prepare for etcd install] ************************************************ -2025-11-24T09:49:56.9175645Z -2025-11-24T09:49:56.9176052Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:49:57.0437107Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:49:57.0437941Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:49:57.0438755Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:57.0439396Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:57.0439688Z -2025-11-24T09:49:57.0440024Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:49:57.1145772Z ok: [kubenode-super-marlin -> localhost] -2025-11-24T09:49:57.1146457Z -2025-11-24T09:49:57.2036925Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:49:57.2037819Z ok: [kubenode-super-marlin] -2025-11-24T09:49:57.2038409Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:49:57.2039008Z ok: [kubenode-renewed-asp] -2025-11-24T09:49:57.2039330Z -2025-11-24T09:49:57.2039783Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:49:57.2647623Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:57.2648080Z -2025-11-24T09:49:57.2648445Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:49:57.3475211Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:57.3476106Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:57.3476741Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:57.3477120Z -2025-11-24T09:49:57.3477566Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:49:58.2130575Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:58.2131459Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:58.2132098Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:58.2132488Z -2025-11-24T09:49:58.2133224Z PLAY [Add worker nodes to the etcd play if needed] ***************************** -2025-11-24T09:49:58.2133730Z -2025-11-24T09:49:58.2134072Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:49:58.3320693Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:49:58.3321719Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:49:58.3323315Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:58.3324136Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:58.3324496Z -2025-11-24T09:49:58.3324915Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:49:58.3790176Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:58.3790651Z -2025-11-24T09:49:58.3791021Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:49:58.4763789Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:58.4764737Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:58.4765720Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:58.4766119Z -2025-11-24T09:49:58.4766583Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:49:58.5361590Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:58.5362198Z -2025-11-24T09:49:58.5362888Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:49:58.6364165Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:58.6365028Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:58.6365635Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:58.6366016Z -2025-11-24T09:49:58.6366532Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:49:58.7802514Z [WARNING]: Could not match supplied host pattern, ignoring: -2025-11-24T09:49:58.7803533Z _kubespray_needs_etcd -2025-11-24T09:49:58.8290950Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:58.8291853Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:58.8292489Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:58.8293162Z -2025-11-24T09:49:58.8293501Z PLAY [Install etcd] ************************************************************ -2025-11-24T09:49:58.8293951Z -2025-11-24T09:49:58.8294349Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:49:58.9519829Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:49:58.9520912Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:49:58.9521851Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:58.9522463Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:58.9522968Z -2025-11-24T09:49:58.9523443Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:49:59.0025122Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:59.0025603Z -2025-11-24T09:49:59.0025954Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:49:59.0875527Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:59.0876392Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:59.0877000Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:59.0877377Z -2025-11-24T09:49:59.0877832Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:49:59.1499097Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:59.1499565Z -2025-11-24T09:49:59.1499953Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:49:59.2536043Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:59.2536778Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:59.2537311Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:59.2537630Z -2025-11-24T09:49:59.2538092Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:49:59.2863598Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:59.5137682Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:59.5138466Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:59.5138804Z -2025-11-24T09:49:59.5139121Z PLAY [Install Kubernetes nodes] ************************************************ -2025-11-24T09:49:59.5139546Z -2025-11-24T09:49:59.5139892Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:49:59.6278647Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:49:59.6279581Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:49:59.6280398Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:49:59.6281029Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:59.6281317Z -2025-11-24T09:49:59.6281649Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:49:59.6924368Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:59.6924831Z -2025-11-24T09:49:59.6925255Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:49:59.7898210Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:59.7898928Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:59.7899559Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:59.7899941Z -2025-11-24T09:49:59.7900408Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:49:59.8463973Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:59.8464358Z -2025-11-24T09:49:59.8464732Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:49:59.9361157Z skipping: [kubenode-super-marlin] -2025-11-24T09:49:59.9361859Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:49:59.9362482Z skipping: [kubenode-renewed-asp] -2025-11-24T09:49:59.9363121Z -2025-11-24T09:49:59.9363675Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:50:00.0059104Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:00.0059866Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:00.0060473Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:00.0060848Z -2025-11-24T09:50:00.0061243Z TASK [kubernetes/node : Kube-vip | Check cluster settings for kube-vip] ******* -2025-11-24T09:50:00.0605168Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:00.0605909Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:00.0606608Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:00.0607051Z -2025-11-24T09:50:00.0607503Z TASK [kubernetes/node : Kube-vip | Check if super-admin.conf exists] *********** -2025-11-24T09:50:00.3353649Z Still deploying... -2025-11-24T09:50:00.6704179Z ok: [kubenode-super-marlin] -2025-11-24T09:50:00.6704761Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:00.6705266Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:00.6705945Z -2025-11-24T09:50:00.6706311Z TASK [kubernetes/node : Kube-vip | Check if kubeadm has already run] *********** -2025-11-24T09:50:00.9689592Z ok: [kubenode-super-marlin] -2025-11-24T09:50:00.9690151Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:00.9690607Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:00.9690902Z -2025-11-24T09:50:00.9691212Z TASK [kubernetes/node : Kube-vip | Set admin.conf] ***************************** -2025-11-24T09:50:01.0969248Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:01.0969933Z ok: [kubenode-super-marlin] -2025-11-24T09:50:01.0970521Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:01.0970862Z -2025-11-24T09:50:01.0971320Z TASK [kubernetes/node : Kube-vip | Set admin.conf for first Control Plane] ***** -2025-11-24T09:50:01.2106189Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:01.2106901Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:01.2107546Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:01.2107930Z -2025-11-24T09:50:01.2108330Z TASK [kubernetes/node : Kube-vip | Write static pod] *************************** -2025-11-24T09:50:02.0174972Z changed: [kubenode-teaching-gobbler] -2025-11-24T09:50:02.0175751Z changed: [kubenode-super-marlin] -2025-11-24T09:50:02.0176351Z changed: [kubenode-renewed-asp] -2025-11-24T09:50:02.0176672Z -2025-11-24T09:50:02.0177038Z PLAY [Install the control plane] *********************************************** -2025-11-24T09:50:02.0177519Z -2025-11-24T09:50:02.0177908Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:50:02.1241347Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:50:02.1242510Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:50:02.1243582Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:50:02.1244266Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:02.1244568Z -2025-11-24T09:50:02.1244922Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:50:02.1720271Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:02.1720730Z -2025-11-24T09:50:02.1721181Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:50:02.2519284Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:02.2519972Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:02.2520604Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:02.2520950Z -2025-11-24T09:50:02.2521395Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:50:02.3122354Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:02.3123039Z -2025-11-24T09:50:02.3123488Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:50:02.3981824Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:02.3982481Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:02.3983360Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:02.3983735Z -2025-11-24T09:50:02.3984244Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:50:02.5345032Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:02.5345612Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:02.5346144Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:02.5346458Z -2025-11-24T09:50:02.5346801Z TASK [kubernetes/client : Set external kube-apiserver endpoint] **************** -2025-11-24T09:50:02.6376977Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:02.6377609Z ok: [kubenode-super-marlin] -2025-11-24T09:50:02.6378167Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:02.6378490Z -2025-11-24T09:50:02.6378962Z TASK [kubernetes/client : Create kube config dir for current/ansible become user] *** -2025-11-24T09:50:03.1141789Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:03.1142393Z ok: [kubenode-super-marlin] -2025-11-24T09:50:03.1143062Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:03.1143334Z -2025-11-24T09:50:03.1143725Z TASK [kubernetes/client : Copy admin kubeconfig to current/ansible become user home] *** -2025-11-24T09:50:03.4206297Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:03.4206948Z ok: [kubenode-super-marlin] -2025-11-24T09:50:03.4207513Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:03.4207869Z -2025-11-24T09:50:03.4208280Z TASK [kubernetes/client : Create kube artifacts dir] *************************** -2025-11-24T09:50:03.7812301Z ok: [kubenode-renewed-asp -> localhost] -2025-11-24T09:50:03.7813020Z -2025-11-24T09:50:03.7813400Z TASK [kubernetes/client : Wait for k8s apiserver] ****************************** -2025-11-24T09:50:04.2629240Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:04.2629850Z ok: [kubenode-super-marlin] -2025-11-24T09:50:04.2630389Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:04.2630684Z -2025-11-24T09:50:04.2631047Z TASK [kubernetes/client : Get admin kubeconfig from remote host] *************** -2025-11-24T09:50:04.7467099Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:04.7467469Z -2025-11-24T09:50:04.7467850Z TASK [kubernetes/client : Convert kubeconfig to YAML] ************************** -2025-11-24T09:50:04.8739440Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:04.8740039Z ok: [kubenode-super-marlin] -2025-11-24T09:50:04.8740555Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:04.8740875Z -2025-11-24T09:50:04.8741248Z TASK [kubernetes/client : Override username in kubeconfig] ********************* -2025-11-24T09:50:04.9843564Z ok: [kubenode-renewed-asp] -2025-11-24T09:50:04.9844141Z ok: [kubenode-super-marlin] -2025-11-24T09:50:04.9844646Z ok: [kubenode-teaching-gobbler] -2025-11-24T09:50:04.9844937Z -2025-11-24T09:50:04.9845304Z TASK [kubernetes/client : Write admin kubeconfig on ansible host] ************** -2025-11-24T09:50:05.5186522Z changed: [kubenode-renewed-asp -> localhost] -2025-11-24T09:50:05.5187002Z -2025-11-24T09:50:05.5187379Z TASK [kubernetes/client : Copy kubectl binary to ansible host] ***************** -2025-11-24T09:50:05.5374971Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:05.5375373Z -2025-11-24T09:50:05.5375741Z TASK [kubernetes/client : Create helper script kubectl.sh on ansible host] ***** -2025-11-24T09:50:05.7443783Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:05.7444177Z -2025-11-24T09:50:05.7444513Z PLAY [Invoke kubeadm and install a CNI] **************************************** -2025-11-24T09:50:05.7445336Z -2025-11-24T09:50:05.7445758Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:50:05.8516812Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:50:05.8517735Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:50:05.8518556Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:50:05.8519231Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:05.8519540Z -2025-11-24T09:50:05.8519918Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:50:05.9075022Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:05.9075462Z -2025-11-24T09:50:05.9075863Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:50:06.0332356Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:06.0333278Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:06.0333852Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:06.0334184Z -2025-11-24T09:50:06.0334586Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:50:06.0947190Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:06.0947658Z -2025-11-24T09:50:06.0948091Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:50:06.1841320Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:06.1842021Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:06.1842606Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:06.1843264Z -2025-11-24T09:50:06.1843776Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:50:06.5930520Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:06.5931684Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:06.5932195Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:06.5932506Z -2025-11-24T09:50:06.5933198Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** -2025-11-24T09:50:06.7570035Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:06.7570840Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:06.7571424Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:06.7571786Z -2025-11-24T09:50:06.7572290Z TASK [helm-apps : Validating arguments against arg spec 'main' - Install a list of Helm charts.] *** -2025-11-24T09:50:06.9329726Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:06.9330488Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:06.9331039Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:06.9331376Z -2025-11-24T09:50:06.9331724Z PLAY [Install Calico Route Reflector] ****************************************** -2025-11-24T09:50:06.9332392Z skipping: no hosts matched -2025-11-24T09:50:06.9333016Z -2025-11-24T09:50:06.9333365Z PLAY [Patch Kubernetes for Windows] ******************************************** -2025-11-24T09:50:06.9333819Z -2025-11-24T09:50:06.9334189Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:50:07.0303887Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:50:07.0304987Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:50:07.0305872Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:50:07.0306609Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.0306948Z -2025-11-24T09:50:07.0307766Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:50:07.0842997Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.0843441Z -2025-11-24T09:50:07.0843849Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:50:07.1508799Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.1509204Z -2025-11-24T09:50:07.1509618Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:50:07.2081142Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.2081984Z -2025-11-24T09:50:07.2082376Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:50:07.2659909Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.2660293Z -2025-11-24T09:50:07.2660780Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:50:07.4646263Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.4646661Z -2025-11-24T09:50:07.4646989Z PLAY [Install Kubernetes apps] ************************************************* -2025-11-24T09:50:07.4647443Z -2025-11-24T09:50:07.4647804Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:50:07.5725453Z skipping: [kubenode-renewed-asp] => (item=kubenode-super-marlin) -2025-11-24T09:50:07.5726305Z skipping: [kubenode-renewed-asp] => (item=kubenode-renewed-asp) -2025-11-24T09:50:07.5727091Z skipping: [kubenode-renewed-asp] => (item=kubenode-teaching-gobbler) -2025-11-24T09:50:07.5727820Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.5728174Z -2025-11-24T09:50:07.5728536Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:50:07.6462505Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.6463115Z -2025-11-24T09:50:07.6463469Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:50:07.7566244Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.7566902Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:07.7567476Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:07.7574484Z -2025-11-24T09:50:07.7575010Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:50:07.9664756Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:07.9665607Z -2025-11-24T09:50:07.9666054Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:50:08.3583900Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:08.3584510Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:08.3585067Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:08.3585390Z -2025-11-24T09:50:08.3585849Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:50:09.7466023Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:09.7466867Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:09.7467537Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:09.7468035Z -2025-11-24T09:50:09.7468575Z PLAY [Apply resolv.conf changes now that cluster DNS is up] ******************** -2025-11-24T09:50:09.7469264Z -2025-11-24T09:50:09.7469876Z TASK [kubespray-defaults : Gather ansible_default_ipv4 from all hosts] ********* -2025-11-24T09:50:09.8764613Z skipping: [kubenode-super-marlin] => (item=kubenode-super-marlin) -2025-11-24T09:50:09.8765507Z skipping: [kubenode-super-marlin] => (item=kubenode-renewed-asp) -2025-11-24T09:50:09.8766308Z skipping: [kubenode-super-marlin] => (item=kubenode-teaching-gobbler) -2025-11-24T09:50:09.8767007Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:09.8767343Z -2025-11-24T09:50:09.8767714Z TASK [kubespray-defaults : Create fallback_ips_base] *************************** -2025-11-24T09:50:09.9281253Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:09.9281633Z -2025-11-24T09:50:09.9281973Z TASK [kubespray-defaults : Set fallback_ips] *********************************** -2025-11-24T09:50:10.0215639Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:10.0216290Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:10.0216836Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:10.0217179Z -2025-11-24T09:50:10.0217579Z TASK [kubespray-defaults : Set no_proxy to all assigned cluster IPs and hostnames] *** -2025-11-24T09:50:10.0857899Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:10.0858370Z -2025-11-24T09:50:10.0858779Z TASK [kubespray-defaults : Populates no_proxy to all hosts] ******************** -2025-11-24T09:50:10.1727694Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:10.1728680Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:10.1729201Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:10.1729515Z -2025-11-24T09:50:10.1729990Z TASK [kubespray-defaults : Set `etcd_deployment_type` to "kubeadm" if `etcd_kubeadm_enabled` is true] *** -2025-11-24T09:50:10.3369160Z Still deploying... -2025-11-24T09:50:10.8315948Z skipping: [kubenode-super-marlin] -2025-11-24T09:50:10.8316845Z skipping: [kubenode-renewed-asp] -2025-11-24T09:50:10.8317427Z skipping: [kubenode-teaching-gobbler] -2025-11-24T09:50:10.8317761Z -2025-11-24T09:50:10.8318062Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:50:10.8318491Z -2025-11-24T09:50:10.8318786Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:50:10.8319207Z -2025-11-24T09:50:10.8319542Z PLAY [Bringing kubeconfig in place] ******************************************** -2025-11-24T09:50:10.8319986Z -2025-11-24T09:50:10.8320264Z PLAY [k8s-cluster] ************************************************************* -2025-11-24T09:50:10.8320663Z -2025-11-24T09:50:10.8320920Z PLAY [etcd] ******************************************************************** -2025-11-24T09:50:10.8321301Z -2025-11-24T09:50:10.8321561Z PLAY RECAP ********************************************************************* -2025-11-24T09:50:10.8322398Z adminhost : ok=3 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 -2025-11-24T09:50:10.8323709Z kubenode-renewed-asp : ok=21 changed=5 unreachable=0 failed=0 skipped=50 rescued=0 ignored=0 -2025-11-24T09:50:10.8324733Z kubenode-super-marlin : ok=19 changed=4 unreachable=0 failed=0 skipped=44 rescued=0 ignored=0 -2025-11-24T09:50:10.8326173Z kubenode-teaching-gobbler : ok=18 changed=4 unreachable=0 failed=0 skipped=30 rescued=0 ignored=0 -2025-11-24T09:50:10.8326765Z -2025-11-24T09:50:11.1329663Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/cassandra.yml -2025-11-24T09:50:11.6278215Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:50:11.6278942Z -vvvv to see details -2025-11-24T09:50:11.6284759Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:50:11.6285481Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:50:11.8858735Z -2025-11-24T09:50:11.8859474Z PLAY [cassandra] *************************************************************** -2025-11-24T09:50:11.8859937Z -2025-11-24T09:50:11.8860233Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:50:15.9211465Z ok: [cassandra-improved-teal] -2025-11-24T09:50:15.9212068Z ok: [cassandra-noted-manatee] -2025-11-24T09:50:15.9212601Z ok: [cassandra-tops-fowl] -2025-11-24T09:50:15.9213130Z -2025-11-24T09:50:15.9213509Z TASK [ansible-role-ntp : Include OS-specific variables.] *********************** -2025-11-24T09:50:15.9727167Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:15.9727786Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:15.9728289Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:15.9728559Z -2025-11-24T09:50:15.9728904Z TASK [ansible-role-ntp : Ensure NTP-related packages are installed.] *********** -2025-11-24T09:50:16.0233382Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.0234007Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.0234983Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.0235300Z -2025-11-24T09:50:16.0235673Z TASK [ansible-role-ntp : Ensure tzdata package is installed (Linux).] ********** -2025-11-24T09:50:16.0856738Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.0857373Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.0857938Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.0858234Z -2025-11-24T09:50:16.0858587Z TASK [ansible-role-ntp : include_tasks] **************************************** -2025-11-24T09:50:16.1733976Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.1734622Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.1735175Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.1735476Z -2025-11-24T09:50:16.1735818Z TASK [ansible-role-ntp : Set timezone] ***************************************** -2025-11-24T09:50:16.2364421Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.2365051Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.2365601Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.2365887Z -2025-11-24T09:50:16.2366268Z TASK [ansible-role-ntp : Ensure NTP is running and enabled as configured.] ***** -2025-11-24T09:50:16.2931226Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.2931896Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.2932450Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.2933078Z -2025-11-24T09:50:16.2933475Z TASK [ansible-role-ntp : Ensure NTP is stopped and disabled as configured.] **** -2025-11-24T09:50:16.3496426Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.3497157Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.3497777Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.3498107Z -2025-11-24T09:50:16.3498503Z TASK [ansible-role-ntp : Generate ntp.conf file] ******************************* -2025-11-24T09:50:16.4305964Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.4306633Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.4307158Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.4307463Z -2025-11-24T09:50:16.4307827Z TASK [ansible-role-java : Include OS-specific variables for Fedora or FreeBSD.] *** -2025-11-24T09:50:16.4632804Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.4633420Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.4633948Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.4634577Z -2025-11-24T09:50:16.4634937Z TASK [ansible-role-java : Include version-specific variables for CentOS/RHEL.] *** -2025-11-24T09:50:16.5029589Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.5030214Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.5030730Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.5031012Z -2025-11-24T09:50:16.5031353Z TASK [ansible-role-java : Include version-specific variables for Ubuntu.] ****** -2025-11-24T09:50:16.6312381Z ok: [cassandra-improved-teal] -2025-11-24T09:50:16.6313202Z ok: [cassandra-noted-manatee] -2025-11-24T09:50:16.6313711Z ok: [cassandra-tops-fowl] -2025-11-24T09:50:16.6314000Z -2025-11-24T09:50:16.6314417Z TASK [ansible-role-java : Include version-specific variables for Debian.] ****** -2025-11-24T09:50:16.7228337Z ok: [cassandra-improved-teal] -2025-11-24T09:50:16.7228936Z ok: [cassandra-noted-manatee] -2025-11-24T09:50:16.7229438Z ok: [cassandra-tops-fowl] -2025-11-24T09:50:16.7229717Z -2025-11-24T09:50:16.7230080Z TASK [ansible-role-java : Define java_packages.] ******************************* -2025-11-24T09:50:16.7750363Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.7750993Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.7751534Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.7751813Z -2025-11-24T09:50:16.7752139Z TASK [ansible-role-java : include_tasks] *************************************** -2025-11-24T09:50:16.8131701Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:16.8132315Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:16.8133063Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:16.8133354Z -2025-11-24T09:50:16.8134123Z TASK [ansible-role-java : include_tasks] *************************************** -2025-11-24T09:50:16.8762144Z included: /wire-server-deploy/ansible/roles-external/ansible-role-java/tasks/setup-Debian.yml for cassandra-improved-teal, cassandra-noted-manatee, cassandra-tops-fowl -2025-11-24T09:50:16.8763517Z -2025-11-24T09:50:16.8763939Z TASK [ansible-role-java : Ensure 'man' directory exists.] ********************** -2025-11-24T09:50:17.3728161Z ok: [cassandra-tops-fowl] -2025-11-24T09:50:17.3728742Z ok: [cassandra-noted-manatee] -2025-11-24T09:50:17.3729217Z ok: [cassandra-improved-teal] -2025-11-24T09:50:17.3729840Z -2025-11-24T09:50:17.3730185Z TASK [ansible-role-java : Ensure Java is installed.] *************************** -2025-11-24T09:50:20.3385550Z Still deploying... -2025-11-24T09:50:28.7294276Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:28.7294908Z changed: [cassandra-improved-teal] -2025-11-24T09:50:28.7295461Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:28.7295790Z -2025-11-24T09:50:28.7296169Z TASK [ansible-role-java : include_tasks] *************************************** -2025-11-24T09:50:28.7756256Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:28.7756976Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:28.7757581Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:28.7757912Z -2025-11-24T09:50:28.7758324Z TASK [ansible-role-java : Set JAVA_HOME if configured.] ************************ -2025-11-24T09:50:28.8423176Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:28.8423832Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:28.8424350Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:28.8424649Z -2025-11-24T09:50:28.8424990Z TASK [ansible-cassandra : Ensure apt cache is updated] ************************* -2025-11-24T09:50:29.9687173Z ok: [cassandra-tops-fowl] -2025-11-24T09:50:29.9687972Z ok: [cassandra-noted-manatee] -2025-11-24T09:50:29.9688569Z ok: [cassandra-improved-teal] -2025-11-24T09:50:29.9688853Z -2025-11-24T09:50:29.9689207Z TASK [ansible-cassandra : install iproute2] ************************************ -2025-11-24T09:50:30.3403655Z Still deploying... -2025-11-24T09:50:30.6045352Z ok: [cassandra-noted-manatee] -2025-11-24T09:50:30.6045904Z ok: [cassandra-tops-fowl] -2025-11-24T09:50:30.6046373Z ok: [cassandra-improved-teal] -2025-11-24T09:50:30.6046645Z -2025-11-24T09:50:30.6047001Z TASK [ansible-cassandra : populate 'ansible_default_ipv4'] ********************* -2025-11-24T09:50:30.6653548Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:30.6654273Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:30.6654900Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:30.6655285Z -2025-11-24T09:50:30.6655699Z TASK [ansible-cassandra : Check if inside AWS.] ******************************** -2025-11-24T09:50:30.7163865Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:30.7164601Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:30.7165239Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:30.7165597Z -2025-11-24T09:50:30.7166007Z TASK [ansible-cassandra : set is_aws_environment] ****************************** -2025-11-24T09:50:30.7654946Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:30.7655533Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:30.7656043Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:30.7656321Z -2025-11-24T09:50:30.7656661Z TASK [ansible-cassandra : Remove swapfile from /etc/fstab] ********************* -2025-11-24T09:50:31.2493856Z ok: [cassandra-tops-fowl] -2025-11-24T09:50:31.2494414Z ok: [cassandra-improved-teal] -2025-11-24T09:50:31.2494891Z ok: [cassandra-noted-manatee] -2025-11-24T09:50:31.2495159Z -2025-11-24T09:50:31.2495506Z TASK [ansible-cassandra : Disable swap] **************************************** -2025-11-24T09:50:31.2793442Z skipping: [cassandra-improved-teal] -2025-11-24T09:50:31.2993731Z skipping: [cassandra-noted-manatee] -2025-11-24T09:50:31.2994378Z skipping: [cassandra-tops-fowl] -2025-11-24T09:50:31.2994661Z -2025-11-24T09:50:31.2994995Z TASK [ansible-cassandra : add cassandra binaries to default login shell] ******* -2025-11-24T09:50:32.3513783Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:32.3514415Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:32.3514908Z changed: [cassandra-improved-teal] -2025-11-24T09:50:32.3515212Z -2025-11-24T09:50:32.3515556Z TASK [ansible-cassandra : resolve platform specific vars] ********************** -2025-11-24T09:50:32.4842339Z ok: [cassandra-improved-teal] => (item=/wire-server-deploy/ansible/roles-external/ansible-cassandra/defaults/Ubuntu-jammy.yml) -2025-11-24T09:50:32.4844216Z ok: [cassandra-noted-manatee] => (item=/wire-server-deploy/ansible/roles-external/ansible-cassandra/defaults/Ubuntu-jammy.yml) -2025-11-24T09:50:32.4845888Z ok: [cassandra-tops-fowl] => (item=/wire-server-deploy/ansible/roles-external/ansible-cassandra/defaults/Ubuntu-jammy.yml) -2025-11-24T09:50:32.4846576Z -2025-11-24T09:50:32.4847090Z TASK [ansible-cassandra : install OS dependent packages ['procps', 'libjemalloc2', 'python3-pip']] *** -2025-11-24T09:50:40.0780761Z ok: [cassandra-tops-fowl] => (item=procps) -2025-11-24T09:50:40.0781471Z ok: [cassandra-improved-teal] => (item=procps) -2025-11-24T09:50:40.0782065Z ok: [cassandra-noted-manatee] => (item=procps) -2025-11-24T09:50:40.0782905Z changed: [cassandra-tops-fowl] => (item=libjemalloc2) -2025-11-24T09:50:40.0783577Z changed: [cassandra-improved-teal] => (item=libjemalloc2) -2025-11-24T09:50:40.0784276Z changed: [cassandra-noted-manatee] => (item=libjemalloc2) -2025-11-24T09:50:40.0784928Z changed: [cassandra-tops-fowl] => (item=python3-pip) -2025-11-24T09:50:40.0785578Z changed: [cassandra-noted-manatee] => (item=python3-pip) -2025-11-24T09:50:40.0786242Z changed: [cassandra-improved-teal] => (item=python3-pip) -2025-11-24T09:50:40.0786660Z -2025-11-24T09:50:40.0787004Z TASK [ansible-cassandra : set vm.max_map_count=1048575] ************************ -2025-11-24T09:50:40.3421789Z Still deploying... -2025-11-24T09:50:40.6099139Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:40.6099809Z changed: [cassandra-improved-teal] -2025-11-24T09:50:40.6100403Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:40.6100738Z -2025-11-24T09:50:40.6101192Z TASK [ansible-cassandra : set net.ipv4.tcp_keepalive_time=300] ***************** -2025-11-24T09:50:41.9389131Z changed: [cassandra-improved-teal] -2025-11-24T09:50:41.9389836Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:41.9390434Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:41.9390770Z -2025-11-24T09:50:41.9391579Z TASK [ansible-cassandra : ensure group cassandra exists] *********************** -2025-11-24T09:50:42.4771758Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:42.4772420Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:42.4773363Z changed: [cassandra-improved-teal] -2025-11-24T09:50:42.4773718Z -2025-11-24T09:50:42.4774122Z TASK [ansible-cassandra : ensure user cassandra exists] ************************ -2025-11-24T09:50:43.0781385Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:43.0781960Z changed: [cassandra-improved-teal] -2025-11-24T09:50:43.0782470Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:43.0783017Z -2025-11-24T09:50:43.0783393Z TASK [ansible-cassandra : check for install] *********************************** -2025-11-24T09:50:43.4698371Z ok: [cassandra-improved-teal] -2025-11-24T09:50:43.4699006Z ok: [cassandra-noted-manatee] -2025-11-24T09:50:43.4699562Z ok: [cassandra-tops-fowl] -2025-11-24T09:50:43.4699874Z -2025-11-24T09:50:43.4700261Z TASK [ansible-cassandra : grab tarball] **************************************** -2025-11-24T09:50:44.5112187Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:44.5113182Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:44.5113848Z changed: [cassandra-improved-teal] -2025-11-24T09:50:44.5114254Z -2025-11-24T09:50:44.5114666Z TASK [ansible-cassandra : unpack tarball] ************************************** -2025-11-24T09:50:46.8423182Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:46.8424084Z changed: [cassandra-improved-teal] -2025-11-24T09:50:46.8424813Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:46.8425228Z -2025-11-24T09:50:46.8426043Z TASK [ansible-cassandra : chown tree] ****************************************** -2025-11-24T09:50:47.2387505Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:47.2388219Z changed: [cassandra-improved-teal] -2025-11-24T09:50:47.2388836Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:47.2389177Z -2025-11-24T09:50:47.2389573Z TASK [ansible-cassandra : cleanup] ********************************************* -2025-11-24T09:50:47.6315386Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:47.6316037Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:47.6316655Z changed: [cassandra-improved-teal] -2025-11-24T09:50:47.6317332Z -2025-11-24T09:50:47.6317737Z TASK [ansible-cassandra : symlink home] **************************************** -2025-11-24T09:50:48.0404693Z changed: [cassandra-improved-teal] -2025-11-24T09:50:48.0405283Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:48.0405761Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:48.0406050Z -2025-11-24T09:50:48.0406381Z TASK [ansible-cassandra : create a handy nodetool in path] ********************* -2025-11-24T09:50:48.8023984Z changed: [cassandra-improved-teal] -2025-11-24T09:50:48.8024702Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:48.8025264Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:48.8025613Z -2025-11-24T09:50:48.8026029Z TASK [ansible-cassandra : create a handy cqlsh in path] ************************ -2025-11-24T09:50:49.5600158Z changed: [cassandra-improved-teal] -2025-11-24T09:50:49.5600794Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:49.5601284Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:49.5601584Z -2025-11-24T09:50:49.5601930Z TASK [ansible-cassandra : create data directories under /mnt/cassandra] ******** -2025-11-24T09:50:50.3440492Z Still deploying... -2025-11-24T09:50:50.8570207Z changed: [cassandra-tops-fowl] => (item=data) -2025-11-24T09:50:50.8570845Z changed: [cassandra-improved-teal] => (item=data) -2025-11-24T09:50:50.8571420Z changed: [cassandra-noted-manatee] => (item=data) -2025-11-24T09:50:50.8572013Z changed: [cassandra-tops-fowl] => (item=commitlog) -2025-11-24T09:50:50.8572857Z changed: [cassandra-improved-teal] => (item=commitlog) -2025-11-24T09:50:50.8573474Z changed: [cassandra-noted-manatee] => (item=commitlog) -2025-11-24T09:50:50.8574059Z changed: [cassandra-tops-fowl] => (item=saved_caches) -2025-11-24T09:50:50.8580231Z changed: [cassandra-improved-teal] => (item=saved_caches) -2025-11-24T09:50:50.8580957Z changed: [cassandra-noted-manatee] => (item=saved_caches) -2025-11-24T09:50:50.8581866Z changed: [cassandra-tops-fowl] => (item=hints) -2025-11-24T09:50:50.8582429Z changed: [cassandra-improved-teal] => (item=hints) -2025-11-24T09:50:50.8583334Z changed: [cassandra-noted-manatee] => (item=hints) -2025-11-24T09:50:50.8583687Z -2025-11-24T09:50:50.8584024Z TASK [ansible-cassandra : create gc log directory] ***************************** -2025-11-24T09:50:51.2375035Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:51.2375655Z changed: [cassandra-improved-teal] -2025-11-24T09:50:51.2376162Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:51.2376442Z -2025-11-24T09:50:51.2376813Z TASK [ansible-cassandra : install logback.xml] ********************************* -2025-11-24T09:50:52.0400791Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:52.0401347Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:52.0401862Z changed: [cassandra-improved-teal] -2025-11-24T09:50:52.0402165Z -2025-11-24T09:50:52.0402527Z TASK [ansible-cassandra : download prometheus jmx exporter jar] **************** -2025-11-24T09:50:52.5715202Z changed: [cassandra-improved-teal] -2025-11-24T09:50:52.5715902Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:52.5716526Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:52.5716839Z -2025-11-24T09:50:52.5717180Z TASK [ansible-cassandra : prometheus jmx config] ******************************* -2025-11-24T09:50:53.3759112Z changed: [cassandra-improved-teal] -2025-11-24T09:50:53.3759821Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:53.3760391Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:53.3760748Z -2025-11-24T09:50:53.3761617Z TASK [ansible-cassandra : main configuration (cassandra.yaml)] ***************** -2025-11-24T09:50:54.1524630Z changed: [cassandra-improved-teal] -2025-11-24T09:50:54.1525251Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:54.1525764Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:54.1526077Z -2025-11-24T09:50:54.1526452Z TASK [ansible-cassandra : extra environment variables file for systemd unit] *** -2025-11-24T09:50:55.0853938Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:55.0854564Z changed: [cassandra-improved-teal] -2025-11-24T09:50:55.0855103Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:55.0855738Z -2025-11-24T09:50:55.0856107Z TASK [ansible-cassandra : install systemd cassandra.service unit] ************** -2025-11-24T09:50:55.8504043Z changed: [cassandra-improved-teal] => (item=cassandra.service) -2025-11-24T09:50:55.8504903Z changed: [cassandra-tops-fowl] => (item=cassandra.service) -2025-11-24T09:50:55.8505685Z changed: [cassandra-noted-manatee] => (item=cassandra.service) -2025-11-24T09:50:55.8506160Z -2025-11-24T09:50:55.8506585Z TASK [ansible-cassandra : enable and start cassandra systemd service] ********** -2025-11-24T09:50:57.7543459Z changed: [cassandra-improved-teal] -2025-11-24T09:50:57.7544185Z changed: [cassandra-tops-fowl] -2025-11-24T09:50:57.7544665Z changed: [cassandra-noted-manatee] -2025-11-24T09:50:57.7544959Z -2025-11-24T09:50:57.7545301Z TASK [ansible-cassandra : Wait for cassandra to startup] *********************** -2025-11-24T09:51:00.3460659Z Still deploying... -2025-11-24T09:51:10.3478413Z Still deploying... -2025-11-24T09:51:20.3496394Z Still deploying... -2025-11-24T09:51:30.3514758Z Still deploying... -2025-11-24T09:51:40.3534121Z Still deploying... -2025-11-24T09:51:50.3573553Z Still deploying... -2025-11-24T09:52:00.3569965Z Still deploying... -2025-11-24T09:52:10.3587727Z Still deploying... -2025-11-24T09:52:20.3610484Z Still deploying... -2025-11-24T09:52:30.3628495Z Still deploying... -2025-11-24T09:52:40.3655271Z Still deploying... -2025-11-24T09:52:46.5868028Z ok: [cassandra-tops-fowl] => (item=9042) -2025-11-24T09:52:46.5868784Z ok: [cassandra-improved-teal] => (item=9042) -2025-11-24T09:52:46.5869419Z ok: [cassandra-noted-manatee] => (item=9042) -2025-11-24T09:52:46.5869802Z -2025-11-24T09:52:46.5870194Z TASK [ansible-cassandra : install awscli] ************************************** -2025-11-24T09:52:46.6064275Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:46.6214737Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:46.6215345Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:46.6215633Z -2025-11-24T09:52:46.6215972Z TASK [ansible-cassandra : render repair script] ******************************** -2025-11-24T09:52:48.8227404Z changed: [cassandra-noted-manatee] -2025-11-24T09:52:48.8228108Z changed: [cassandra-improved-teal] -2025-11-24T09:52:48.8228702Z changed: [cassandra-tops-fowl] -2025-11-24T09:52:48.8229015Z -2025-11-24T09:52:48.8229415Z TASK [ansible-cassandra : render backup script] ******************************** -2025-11-24T09:52:48.8681810Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:48.8682873Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:48.8683524Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:48.8684232Z -2025-11-24T09:52:48.8684574Z TASK [ansible-cassandra : render restore script] ******************************* -2025-11-24T09:52:48.9261884Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:48.9262482Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:48.9263252Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:48.9263526Z -2025-11-24T09:52:48.9263875Z TASK [ansible-cassandra : render incremental backup script] ******************** -2025-11-24T09:52:48.9613689Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:48.9614369Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:48.9614966Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:48.9615288Z -2025-11-24T09:52:48.9615669Z TASK [ansible-cassandra : set up cron job for daily backup] ******************** -2025-11-24T09:52:48.9797879Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:49.0042132Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:49.0043421Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:49.0043950Z -2025-11-24T09:52:49.0044286Z TASK [ansible-cassandra : set up cron job for incremental backup] ************** -2025-11-24T09:52:49.0411003Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:49.0411585Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:49.0412120Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:49.0412397Z -2025-11-24T09:52:49.0412963Z TASK [ansible-cassandra : set up cron job for repair] ************************** -2025-11-24T09:52:49.0833165Z [DEPRECATION WARNING]: "listify_lookup_plugin_terms" does not use "dataloader" -2025-11-24T09:52:49.0834132Z anymore, the ability to pass it in will be removed in future versions. This -2025-11-24T09:52:49.0834897Z feature will be removed in version 2.18. Deprecation warnings can be disabled -2025-11-24T09:52:49.0835577Z by setting deprecation_warnings=False in ansible.cfg. -2025-11-24T09:52:49.5442093Z skipping: [cassandra-improved-teal] => (item=['cassandra-tops-fowl', {'weekday': '0', 'hour': '0'}]) -2025-11-24T09:52:49.5443436Z skipping: [cassandra-noted-manatee] => (item=['cassandra-tops-fowl', {'weekday': '0', 'hour': '0'}]) -2025-11-24T09:52:49.5444355Z skipping: [cassandra-noted-manatee] => (item=['cassandra-improved-teal', {'weekday': '1', 'hour': '0'}]) -2025-11-24T09:52:49.5445234Z changed: [cassandra-tops-fowl] => (item=['cassandra-tops-fowl', {'weekday': '0', 'hour': '0'}]) -2025-11-24T09:52:49.5446093Z skipping: [cassandra-tops-fowl] => (item=['cassandra-improved-teal', {'weekday': '1', 'hour': '0'}]) -2025-11-24T09:52:49.5447001Z skipping: [cassandra-tops-fowl] => (item=['cassandra-noted-manatee', {'weekday': '2', 'hour': '0'}]) -2025-11-24T09:52:49.5447897Z changed: [cassandra-improved-teal] => (item=['cassandra-improved-teal', {'weekday': '1', 'hour': '0'}]) -2025-11-24T09:52:49.5448785Z skipping: [cassandra-improved-teal] => (item=['cassandra-noted-manatee', {'weekday': '2', 'hour': '0'}]) -2025-11-24T09:52:49.5449682Z changed: [cassandra-noted-manatee] => (item=['cassandra-noted-manatee', {'weekday': '2', 'hour': '0'}]) -2025-11-24T09:52:49.5450178Z -2025-11-24T09:52:49.5450531Z TASK [ansible-ntp-verify : Ensure NTP daemon is running] *********************** -2025-11-24T09:52:49.6253741Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:49.6254479Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:49.6255312Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:49.6255581Z -2025-11-24T09:52:49.6255887Z TASK [ansible-ntp-verify : shell] ********************************************** -2025-11-24T09:52:49.6835082Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:49.6836011Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:49.6836632Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:49.6836965Z -2025-11-24T09:52:49.6837342Z TASK [ansible-ntp-verify : debug] ********************************************** -2025-11-24T09:52:49.7434169Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:49.7434860Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:49.7435437Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:49.7435709Z -2025-11-24T09:52:49.7436011Z TASK [ansible-ntp-verify : fail] *********************************************** -2025-11-24T09:52:49.8073414Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:49.8074135Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:49.8074695Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:49.8074986Z -2025-11-24T09:52:49.8075294Z TASK [ansible-ntp-verify : shell] ********************************************** -2025-11-24T09:52:49.8646660Z skipping: [cassandra-noted-manatee] -2025-11-24T09:52:49.8647364Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:49.8647888Z skipping: [cassandra-tops-fowl] -2025-11-24T09:52:49.8648171Z -2025-11-24T09:52:49.8648484Z TASK [ansible-ntp-verify : assert] ********************************************* -2025-11-24T09:52:49.9386548Z skipping: [cassandra-improved-teal] => (item=cassandra-improved-teal) -2025-11-24T09:52:49.9388074Z skipping: [cassandra-improved-teal] => (item=cassandra-noted-manatee) -2025-11-24T09:52:49.9389026Z skipping: [cassandra-improved-teal] => (item=cassandra-tops-fowl) -2025-11-24T09:52:49.9389776Z skipping: [cassandra-improved-teal] -2025-11-24T09:52:49.9390142Z -2025-11-24T09:52:49.9390444Z TASK [shell] ******************************************************************* -2025-11-24T09:52:50.3663718Z Still deploying... -2025-11-24T09:52:52.4474418Z changed: [cassandra-tops-fowl] -2025-11-24T09:52:52.4475367Z changed: [cassandra-improved-teal] -2025-11-24T09:52:52.4475983Z changed: [cassandra-noted-manatee] -2025-11-24T09:52:52.4476720Z -2025-11-24T09:52:52.4477028Z TASK [debug] ******************************************************************* -2025-11-24T09:52:52.5766751Z ok: [cassandra-noted-manatee] => { -2025-11-24T09:52:52.5767643Z "nodetool_status.stdout_lines": [ -2025-11-24T09:52:52.5768250Z "Datacenter: datacenter1", -2025-11-24T09:52:52.5768805Z "=======================", -2025-11-24T09:52:52.5769349Z "Status=Up/Down", -2025-11-24T09:52:52.5769914Z "|/ State=Normal/Leaving/Joining/Moving", -2025-11-24T09:52:52.5770725Z "-- Address Load Tokens Owns (effective) Host ID Rack", -2025-11-24T09:52:52.5771643Z "UN 10.1.1.5 75.92 KiB 256 100.0% 087718e4-71e1-4602-a6c5-05b9da92b773 rack1", -2025-11-24T09:52:52.5772497Z "UN 10.1.1.15 87.88 KiB 256 100.0% 9e50ddb2-4b70-40f2-9c23-138179d2d513 rack1" -2025-11-24T09:52:52.5773392Z ] -2025-11-24T09:52:52.5773829Z } -2025-11-24T09:52:52.5774218Z ok: [cassandra-tops-fowl] => { -2025-11-24T09:52:52.5774675Z "nodetool_status.stdout_lines": [ -2025-11-24T09:52:52.5775144Z "Datacenter: datacenter1", -2025-11-24T09:52:52.5775589Z "=======================", -2025-11-24T09:52:52.5776023Z "Status=Up/Down", -2025-11-24T09:52:52.5776463Z "|/ State=Normal/Leaving/Joining/Moving", -2025-11-24T09:52:52.5777108Z "-- Address Load Tokens Owns (effective) Host ID Rack", -2025-11-24T09:52:52.5777864Z "UN 10.1.1.5 75.92 KiB 256 100.0% 087718e4-71e1-4602-a6c5-05b9da92b773 rack1", -2025-11-24T09:52:52.5778539Z "UN 10.1.1.14 70.9 KiB 256 100.0% 11c4f8d0-36e7-4779-a918-c53edc8823d0 rack1" -2025-11-24T09:52:52.5779379Z ] -2025-11-24T09:52:52.5779735Z } -2025-11-24T09:52:52.5780121Z ok: [cassandra-improved-teal] => { -2025-11-24T09:52:52.5780593Z "nodetool_status.stdout_lines": [ -2025-11-24T09:52:52.5781062Z "Datacenter: datacenter1", -2025-11-24T09:52:52.5781495Z "=======================", -2025-11-24T09:52:52.5781926Z "Status=Up/Down", -2025-11-24T09:52:52.5782364Z "|/ State=Normal/Leaving/Joining/Moving", -2025-11-24T09:52:52.5783098Z "-- Address Load Tokens Owns (effective) Host ID Rack", -2025-11-24T09:52:52.5783830Z "UN 10.1.1.5 75.92 KiB 256 100.0% 087718e4-71e1-4602-a6c5-05b9da92b773 rack1", -2025-11-24T09:52:52.5784482Z "UN 10.1.1.14 70.9 KiB 256 100.0% 11c4f8d0-36e7-4779-a918-c53edc8823d0 rack1" -2025-11-24T09:52:52.5785010Z ] -2025-11-24T09:52:52.5785361Z } -2025-11-24T09:52:52.5785551Z -2025-11-24T09:52:52.5785796Z PLAY RECAP ********************************************************************* -2025-11-24T09:52:52.5786547Z cassandra-improved-teal : ok=38 changed=26 unreachable=0 failed=0 skipped=30 rescued=0 ignored=0 -2025-11-24T09:52:52.5787442Z cassandra-noted-manatee : ok=38 changed=26 unreachable=0 failed=0 skipped=29 rescued=0 ignored=0 -2025-11-24T09:52:52.5788312Z cassandra-tops-fowl : ok=38 changed=26 unreachable=0 failed=0 skipped=29 rescued=0 ignored=0 -2025-11-24T09:52:52.5788777Z -2025-11-24T09:52:52.6996696Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/elasticsearch.yml -2025-11-24T09:52:53.1738595Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:52:53.1739321Z -vvvv to see details -2025-11-24T09:52:53.1743729Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:52:53.1744617Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:52:53.3501307Z -2025-11-24T09:52:53.3502167Z PLAY [elasticsearch] *********************************************************** -2025-11-24T09:52:53.3502852Z -2025-11-24T09:52:53.3503141Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:52:56.2948238Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:56.2948951Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:56.2949315Z -2025-11-24T09:52:56.2949631Z TASK [debug] ******************************************************************* -2025-11-24T09:52:56.3834366Z ok: [elasticsearch-renewing-bear] => { -2025-11-24T09:52:56.3835044Z "es_config": { -2025-11-24T09:52:56.3835538Z "cluster.name": "elasticsearch-directory", -2025-11-24T09:52:56.3836102Z "discovery.zen.minimum_master_nodes": "2", -2025-11-24T09:52:56.3836723Z "discovery.zen.ping.unicast.hosts": "10.1.1.3:9300,10.1.1.12:9300", -2025-11-24T09:52:56.3837365Z "http.port": 9200, -2025-11-24T09:52:56.3837811Z "network.bind_host": [ -2025-11-24T09:52:56.3838251Z "_enp7s0_", -2025-11-24T09:52:56.3838670Z "_local_" -2025-11-24T09:52:56.3839075Z ], -2025-11-24T09:52:56.3839484Z "network.publish_host": "_enp7s0_", -2025-11-24T09:52:56.3839983Z "node.data": true, -2025-11-24T09:52:56.3840423Z "node.master": true, -2025-11-24T09:52:56.3840875Z "transport.tcp.port": 9300 -2025-11-24T09:52:56.3841337Z } -2025-11-24T09:52:56.3841712Z } -2025-11-24T09:52:56.3842116Z ok: [elasticsearch-amusing-pup] => { -2025-11-24T09:52:56.3842600Z "es_config": { -2025-11-24T09:52:56.3843322Z "cluster.name": "elasticsearch-directory", -2025-11-24T09:52:56.3843873Z "discovery.zen.minimum_master_nodes": "2", -2025-11-24T09:52:56.3844490Z "discovery.zen.ping.unicast.hosts": "10.1.1.3:9300,10.1.1.12:9300", -2025-11-24T09:52:56.3845092Z "http.port": 9200, -2025-11-24T09:52:56.3845525Z "network.bind_host": [ -2025-11-24T09:52:56.3845948Z "_enp7s0_", -2025-11-24T09:52:56.3846704Z "_local_" -2025-11-24T09:52:56.3847089Z ], -2025-11-24T09:52:56.3847472Z "network.publish_host": "_enp7s0_", -2025-11-24T09:52:56.3847934Z "node.data": true, -2025-11-24T09:52:56.3848347Z "node.master": true, -2025-11-24T09:52:56.3848772Z "transport.tcp.port": 9300 -2025-11-24T09:52:56.3849202Z } -2025-11-24T09:52:56.3849559Z } -2025-11-24T09:52:56.3849746Z -2025-11-24T09:52:56.3850035Z TASK [ensure man directory exist] ********************************************** -2025-11-24T09:52:56.8716404Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:56.8716974Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:56.8717276Z -2025-11-24T09:52:56.8717573Z TASK [elasticsearch : set_fact] ************************************************ -2025-11-24T09:52:56.9418204Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:56.9418786Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:56.9419065Z -2025-11-24T09:52:56.9419381Z TASK [elasticsearch : os-specific vars] **************************************** -2025-11-24T09:52:57.0227640Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.0228205Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.0228527Z -2025-11-24T09:52:57.0228867Z TASK [elasticsearch : Set fact oss_version when using es_enable_xpack] ********* -2025-11-24T09:52:57.1041923Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.1049931Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.1050279Z -2025-11-24T09:52:57.1050641Z TASK [elasticsearch : Warn about deprecated es_enable_xpack variable] ********** -2025-11-24T09:52:57.1790508Z ok: [elasticsearch-amusing-pup] => { -2025-11-24T09:52:57.1791932Z "msg": "WARNING: es_enable_xpack variable is now deprecated. You should use oss_version instead" -2025-11-24T09:52:57.1793050Z } -2025-11-24T09:52:57.1793563Z ok: [elasticsearch-renewing-bear] => { -2025-11-24T09:52:57.1794399Z "msg": "WARNING: es_enable_xpack variable is now deprecated. You should use oss_version instead" -2025-11-24T09:52:57.1795172Z } -2025-11-24T09:52:57.1795413Z -2025-11-24T09:52:57.1795985Z TASK [elasticsearch : Set the defaults here otherwise they can't be overriden in the same play if the role is called twice] *** -2025-11-24T09:52:57.2425333Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.2425996Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.2426364Z -2025-11-24T09:52:57.2426757Z TASK [elasticsearch : Use the oss repo and package] **************************** -2025-11-24T09:52:57.3137401Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.3138060Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.3138419Z -2025-11-24T09:52:57.3138848Z TASK [elasticsearch : Set the URL scheme to https if SSL/TLS is enabled] ******* -2025-11-24T09:52:57.3609684Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.3610309Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.3610655Z -2025-11-24T09:52:57.3610988Z TASK [elasticsearch : Warn about deprecated es_xpack_features variable] ******* -2025-11-24T09:52:57.3879843Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.3880552Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.3880952Z -2025-11-24T09:52:57.3881356Z TASK [elasticsearch : fail when es_proxy_port is not defined or is blank] ****** -2025-11-24T09:52:57.4264525Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.4265215Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.4265611Z -2025-11-24T09:52:57.4266054Z TASK [elasticsearch : fail when heap size is not specified when using memory lock] *** -2025-11-24T09:52:57.5120135Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.5120781Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.5121124Z -2025-11-24T09:52:57.5121502Z TASK [elasticsearch : fail when api credentials are not declared when using security] *** -2025-11-24T09:52:57.5385725Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.5386314Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.5386645Z -2025-11-24T09:52:57.5387019Z TASK [elasticsearch : fail when ssl enabled without defining a key and certificate] *** -2025-11-24T09:52:57.5724867Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.5725583Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.5725993Z -2025-11-24T09:52:57.5726374Z TASK [elasticsearch : set fact file_reserved_users] **************************** -2025-11-24T09:52:57.6516162Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.6516896Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.6517291Z -2025-11-24T09:52:57.6517695Z TASK [elasticsearch : fail when changing users through file realm] ************* -2025-11-24T09:52:57.7080067Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.7080794Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.7081182Z -2025-11-24T09:52:57.7081568Z TASK [elasticsearch : set fact m_lock_enabled] ********************************* -2025-11-24T09:52:57.8009945Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.8010544Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.8010863Z -2025-11-24T09:52:57.8011190Z TASK [elasticsearch : set fact use_system_d] *********************************** -2025-11-24T09:52:57.8736782Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.8737477Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.8737861Z -2025-11-24T09:52:57.8738251Z TASK [elasticsearch : use snapshot release] ************************************ -2025-11-24T09:52:57.8997739Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:57.8998462Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:57.8998844Z -2025-11-24T09:52:57.8999669Z TASK [elasticsearch : include java.yml] **************************************** -2025-11-24T09:52:58.0345998Z included: /wire-server-deploy/ansible/roles-external/elasticsearch/tasks/java.yml for elasticsearch-amusing-pup, elasticsearch-renewing-bear -2025-11-24T09:52:58.0346787Z -2025-11-24T09:52:58.0347122Z TASK [elasticsearch : set fact java_state to present] ************************** -2025-11-24T09:52:58.0962190Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:58.0963138Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:58.0963484Z -2025-11-24T09:52:58.0963870Z TASK [elasticsearch : set fact java_state to latest] *************************** -2025-11-24T09:52:58.1288413Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:58.1289002Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:58.1289316Z -2025-11-24T09:52:58.1289646Z TASK [elasticsearch : RedHat - Ensure Java is installed] *********************** -2025-11-24T09:52:58.1616479Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:58.1617080Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:58.1617424Z -2025-11-24T09:52:58.1617738Z TASK [elasticsearch : Get the installed java path] ***************************** -2025-11-24T09:52:58.1843156Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:58.1843863Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:58.1844247Z -2025-11-24T09:52:58.1844631Z TASK [elasticsearch : correct java version selected] *************************** -2025-11-24T09:52:58.2180916Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:52:58.2181533Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:52:58.2181875Z -2025-11-24T09:52:58.2182198Z TASK [elasticsearch : Refresh java repo] *************************************** -2025-11-24T09:52:59.4100590Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:52:59.4101277Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:52:59.4101617Z -2025-11-24T09:52:59.4102023Z TASK [elasticsearch : Debian - Ensure Java is installed] *********************** -2025-11-24T09:53:00.3679960Z Still deploying... -2025-11-24T09:53:10.3696233Z Still deploying... -2025-11-24T09:53:11.6147414Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:11.6148061Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:11.6148410Z -2025-11-24T09:53:11.6148736Z TASK [elasticsearch : register open_jdk version] ******************************* -2025-11-24T09:53:12.0982596Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:12.0983808Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:12.0984108Z -2025-11-24T09:53:12.0984448Z TASK [elasticsearch : refresh the java ca-certificates] ************************ -2025-11-24T09:53:13.7816262Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:13.7816852Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:13.7817141Z -2025-11-24T09:53:13.7817514Z TASK [elasticsearch : Include specific Elasticsearch] ************************** -2025-11-24T09:53:13.8440736Z included: /wire-server-deploy/ansible/roles-external/elasticsearch/tasks/elasticsearch-Debian.yml for elasticsearch-amusing-pup, elasticsearch-renewing-bear -2025-11-24T09:53:13.8441673Z -2025-11-24T09:53:13.8442062Z TASK [elasticsearch : set fact force_install to no] **************************** -2025-11-24T09:53:13.9180207Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:13.9180922Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:13.9181264Z -2025-11-24T09:53:13.9181651Z TASK [elasticsearch : set fact force_install to yes] *************************** -2025-11-24T09:53:13.9425615Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:13.9426327Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:13.9426710Z -2025-11-24T09:53:13.9427141Z TASK [elasticsearch : Check if the elasticsearch package is installed] ********* -2025-11-24T09:53:14.2624922Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.2625507Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.2625810Z -2025-11-24T09:53:14.2626254Z TASK [elasticsearch : unhold elasticsearch package when switching to a different package type] *** -2025-11-24T09:53:14.2986027Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.2987095Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.2987457Z -2025-11-24T09:53:14.2987849Z TASK [elasticsearch : stop elasticsearch] ************************************** -2025-11-24T09:53:14.3342397Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.3343237Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.3343600Z -2025-11-24T09:53:14.3344106Z TASK [elasticsearch : Debian - Remove elasticsearch package if we are switching to a different package type] *** -2025-11-24T09:53:14.3776125Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.3777072Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.3777401Z -2025-11-24T09:53:14.3777832Z TASK [elasticsearch : Debian - Install apt-transport-https to support https APT downloads] *** -2025-11-24T09:53:14.4222578Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.4223388Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.4223742Z -2025-11-24T09:53:14.4224161Z TASK [elasticsearch : Debian - Add Elasticsearch repository key] *************** -2025-11-24T09:53:14.4537789Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.4538428Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.4538752Z -2025-11-24T09:53:14.4539103Z TASK [elasticsearch : Debian - Add elasticsearch repository] ******************* -2025-11-24T09:53:14.5111116Z skipping: [elasticsearch-amusing-pup] => (item={'repo': 'deb http://packages.elastic.co/elasticsearch/oss-6.x/debian stable main', 'state': 'absent'}) -2025-11-24T09:53:14.5112502Z skipping: [elasticsearch-amusing-pup] => (item={'repo': 'deb https://artifacts.elastic.co/packages/oss-6.x/apt stable main', 'state': 'present'}) -2025-11-24T09:53:14.5113956Z skipping: [elasticsearch-amusing-pup] => (item={'repo': 'deb https://artifacts.elastic.co/packages/6.x/apt stable main', 'state': 'absent'}) -2025-11-24T09:53:14.5114818Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.5115745Z skipping: [elasticsearch-renewing-bear] => (item={'repo': 'deb http://packages.elastic.co/elasticsearch/oss-6.x/debian stable main', 'state': 'absent'}) -2025-11-24T09:53:14.5117020Z skipping: [elasticsearch-renewing-bear] => (item={'repo': 'deb https://artifacts.elastic.co/packages/oss-6.x/apt stable main', 'state': 'present'}) -2025-11-24T09:53:14.5118245Z skipping: [elasticsearch-renewing-bear] => (item={'repo': 'deb https://artifacts.elastic.co/packages/6.x/apt stable main', 'state': 'absent'}) -2025-11-24T09:53:14.5119427Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.5119772Z -2025-11-24T09:53:14.5120111Z TASK [elasticsearch : Include optional user and group creation.] *************** -2025-11-24T09:53:14.5503401Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.5504014Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.5504350Z -2025-11-24T09:53:14.5504710Z TASK [elasticsearch : Debian - Get installed elasticsearch version] ************ -2025-11-24T09:53:14.8646984Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.8647613Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.8647942Z -2025-11-24T09:53:14.8648286Z TASK [elasticsearch : Debian - unhold elasticsearch version] ******************* -2025-11-24T09:53:14.9095873Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.9096528Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.9096861Z -2025-11-24T09:53:14.9097207Z TASK [elasticsearch : Debian - Ensure elasticsearch is installed] ************** -2025-11-24T09:53:14.9448544Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:14.9449265Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:14.9449676Z -2025-11-24T09:53:14.9450077Z TASK [elasticsearch : Debian - Download elasticsearch from url] **************** -2025-11-24T09:53:16.0233598Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:16.0234248Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:16.0234582Z -2025-11-24T09:53:16.0235038Z TASK [elasticsearch : Debian - Ensure elasticsearch is installed from downloaded package] *** -2025-11-24T09:53:19.4043734Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:19.4044424Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:19.4044794Z -2025-11-24T09:53:19.4045135Z TASK [elasticsearch : Include specific Elasticsearch] ************************** -2025-11-24T09:53:19.4459195Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:19.4459970Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:19.4460325Z -2025-11-24T09:53:19.4460666Z TASK [elasticsearch : Create Configuration Directory] ************************** -2025-11-24T09:53:19.7783743Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:19.7784790Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:19.7785107Z -2025-11-24T09:53:19.7785444Z TASK [elasticsearch : Create PID Directory] ************************************ -2025-11-24T09:53:20.1058748Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:20.1059323Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:20.1059638Z -2025-11-24T09:53:20.1059985Z TASK [elasticsearch : Create Others Directories] ******************************* -2025-11-24T09:53:20.3709026Z Still deploying... -2025-11-24T09:53:20.7995308Z ok: [elasticsearch-renewing-bear] => (item=/var/log/elasticsearch) -2025-11-24T09:53:20.7996223Z ok: [elasticsearch-amusing-pup] => (item=/var/log/elasticsearch) -2025-11-24T09:53:20.7997017Z ok: [elasticsearch-renewing-bear] => (item=/var/lib/elasticsearch) -2025-11-24T09:53:20.7997805Z ok: [elasticsearch-amusing-pup] => (item=/var/lib/elasticsearch) -2025-11-24T09:53:20.7998267Z -2025-11-24T09:53:20.7998611Z TASK [elasticsearch : Copy Configuration File] ********************************* -2025-11-24T09:53:21.8869761Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:21.8870530Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:21.8870854Z -2025-11-24T09:53:21.8871176Z TASK [elasticsearch : Copy Default File] *************************************** -2025-11-24T09:53:22.7040521Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:22.7041372Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:22.7041719Z -2025-11-24T09:53:22.7042104Z TASK [elasticsearch : Make sure destination dir exists] ************************ -2025-11-24T09:53:23.1057975Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:23.1058911Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:23.1059301Z -2025-11-24T09:53:23.1059716Z TASK [elasticsearch : Copy specific ElasticSearch Systemd config file] ********* -2025-11-24T09:53:23.8757848Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:23.8758565Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:23.8758882Z -2025-11-24T09:53:23.8759240Z TASK [elasticsearch : Copy jvm.options File] *********************************** -2025-11-24T09:53:24.6825993Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:24.6826779Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:24.6827153Z -2025-11-24T09:53:24.6827534Z TASK [elasticsearch : Copy log4j2.properties File] ***************************** -2025-11-24T09:53:24.7316748Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:24.7317517Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:24.7317875Z -2025-11-24T09:53:24.7318245Z TASK [elasticsearch : include elasticsearch-plugins.yml] *********************** -2025-11-24T09:53:24.7928642Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:24.7929443Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:24.7929792Z -2025-11-24T09:53:24.7930190Z TASK [elasticsearch : include security/elasticsearch-security.yml] ************* -2025-11-24T09:53:24.8243841Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:24.8244594Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:24.8244944Z -2025-11-24T09:53:24.8245288Z TASK [elasticsearch : Set elasticsearch.keystore Permissions] ****************** -2025-11-24T09:53:25.1886768Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:25.1887495Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:25.1887802Z -2025-11-24T09:53:25.1888135Z TASK [elasticsearch : include elasticsearch-ssl.yml] *************************** -2025-11-24T09:53:25.2626251Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:25.2627061Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:25.2627499Z -2025-11-24T09:53:25.2627881Z TASK [elasticsearch : flush handlers] ****************************************** -2025-11-24T09:53:25.2628315Z -2025-11-24T09:53:25.2628621Z TASK [elasticsearch : flush handlers] ****************************************** -2025-11-24T09:53:25.2629050Z -2025-11-24T09:53:25.2629380Z RUNNING HANDLER [elasticsearch : reload systemd configuration] ***************** -2025-11-24T09:53:26.5201990Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:26.5203359Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:26.5203670Z -2025-11-24T09:53:26.5204031Z RUNNING HANDLER [elasticsearch : restart elasticsearch] ************************ -2025-11-24T09:53:28.2413961Z changed: [elasticsearch-renewing-bear] -2025-11-24T09:53:28.2414906Z changed: [elasticsearch-amusing-pup] -2025-11-24T09:53:28.2415289Z -2025-11-24T09:53:28.2415744Z TASK [elasticsearch : Make sure elasticsearch is started] ********************** -2025-11-24T09:53:28.8326947Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:28.8327639Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:28.8327924Z -2025-11-24T09:53:28.8328250Z TASK [elasticsearch : Wait for elasticsearch to startup] *********************** -2025-11-24T09:53:30.3730285Z Still deploying... -2025-11-24T09:53:40.3743295Z Still deploying... -2025-11-24T09:53:45.3567660Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:45.3568370Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:45.3568718Z -2025-11-24T09:53:45.3577488Z TASK [elasticsearch : set fact manage_native_realm to false] ******************* -2025-11-24T09:53:45.4331958Z ok: [elasticsearch-renewing-bear] -2025-11-24T09:53:45.4332526Z ok: [elasticsearch-amusing-pup] -2025-11-24T09:53:45.4333004Z -2025-11-24T09:53:45.4333333Z TASK [elasticsearch : set fact manage_native_realm to true] ******************** -2025-11-24T09:53:45.4712392Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:45.4713342Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:45.4713752Z -2025-11-24T09:53:45.4714298Z TASK [elasticsearch : Wait 15 seconds for the Native Realm to come up] ********* -2025-11-24T09:53:45.5339682Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:45.5340413Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:45.5340810Z -2025-11-24T09:53:45.5341235Z TASK [elasticsearch : activate-license] **************************************** -2025-11-24T09:53:45.5658691Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:45.5659088Z -2025-11-24T09:53:45.5659455Z TASK [elasticsearch : activate-trial] ****************************************** -2025-11-24T09:53:45.5848076Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:45.5848526Z -2025-11-24T09:53:45.5848982Z TASK [elasticsearch : include xpack/security/elasticsearch-security-native.yml] *** -2025-11-24T09:53:45.6323331Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:45.6323746Z -2025-11-24T09:53:45.6324127Z TASK [elasticsearch : include elasticsearch-template.yml] ********************** -2025-11-24T09:53:45.7497196Z skipping: [elasticsearch-renewing-bear] -2025-11-24T09:53:45.7497837Z skipping: [elasticsearch-amusing-pup] -2025-11-24T09:53:45.7498167Z -2025-11-24T09:53:45.7498459Z PLAY RECAP ********************************************************************* -2025-11-24T09:53:45.7499299Z elasticsearch-amusing-pup : ok=37 changed=9 unreachable=0 failed=0 skipped=34 rescued=0 ignored=0 -2025-11-24T09:53:45.7500311Z elasticsearch-renewing-bear : ok=37 changed=9 unreachable=0 failed=0 skipped=31 rescued=0 ignored=0 -2025-11-24T09:53:45.7500892Z -2025-11-24T09:53:45.8545696Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/minio.yml -2025-11-24T09:53:46.3171862Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:53:46.3173375Z -vvvv to see details -2025-11-24T09:53:46.3174403Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:53:46.3175184Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:53:46.4724612Z -2025-11-24T09:53:46.4725431Z PLAY [minio] ******************************************************************* -2025-11-24T09:53:46.4725922Z -2025-11-24T09:53:46.4726289Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:53:49.6538989Z ok: [minio-striking-malamute] -2025-11-24T09:53:49.6539532Z ok: [minio-aware-zebra] -2025-11-24T09:53:49.6539791Z -2025-11-24T09:53:49.6540488Z TASK [ansible-minio : Add sni support to legacy python installations] ********** -2025-11-24T09:53:49.6935130Z skipping: [minio-aware-zebra] -2025-11-24T09:53:49.6935682Z skipping: [minio-striking-malamute] -2025-11-24T09:53:49.6935985Z -2025-11-24T09:53:49.6936287Z TASK [ansible-minio : include_tasks] ******************************************* -2025-11-24T09:53:49.7430836Z included: /wire-server-deploy/ansible/roles-external/ansible-minio/tasks/install-server.yml for minio-aware-zebra, minio-striking-malamute -2025-11-24T09:53:49.7432096Z -2025-11-24T09:53:49.7432521Z TASK [ansible-minio : Determine format files of existing deployments] ********** -2025-11-24T09:53:49.8035022Z ok: [minio-striking-malamute] -2025-11-24T09:53:49.8035702Z ok: [minio-aware-zebra] -2025-11-24T09:53:49.8035959Z -2025-11-24T09:53:49.8036575Z TASK [ansible-minio : Stat format files·] ************************************** -2025-11-24T09:53:50.3760618Z Still deploying... -2025-11-24T09:53:50.5717557Z ok: [minio-aware-zebra] => (item=/var/lib/minio-server1/.minio.sys/format.json) -2025-11-24T09:53:50.5718598Z ok: [minio-striking-malamute] => (item=/var/lib/minio-server1/.minio.sys/format.json) -2025-11-24T09:53:50.5719505Z ok: [minio-aware-zebra] => (item=/var/lib/minio-server2/.minio.sys/format.json) -2025-11-24T09:53:50.5720382Z ok: [minio-striking-malamute] => (item=/var/lib/minio-server2/.minio.sys/format.json) -2025-11-24T09:53:50.5720909Z -2025-11-24T09:53:50.5721303Z TASK [ansible-minio : Read format files] *************************************** -2025-11-24T09:53:50.6346239Z skipping: [minio-aware-zebra] => (item=/var/lib/minio-server1/.minio.sys/format.json) -2025-11-24T09:53:50.6347291Z skipping: [minio-aware-zebra] => (item=/var/lib/minio-server2/.minio.sys/format.json) -2025-11-24T09:53:50.6348085Z skipping: [minio-aware-zebra] -2025-11-24T09:53:50.6348870Z skipping: [minio-striking-malamute] => (item=/var/lib/minio-server1/.minio.sys/format.json) -2025-11-24T09:53:50.6349925Z skipping: [minio-striking-malamute] => (item=/var/lib/minio-server2/.minio.sys/format.json) -2025-11-24T09:53:50.6350766Z skipping: [minio-striking-malamute] -2025-11-24T09:53:50.6351128Z -2025-11-24T09:53:50.6351487Z TASK [ansible-minio : Read format] ********************************************* -2025-11-24T09:53:50.7100088Z ok: [minio-striking-malamute] -2025-11-24T09:53:50.7100689Z ok: [minio-aware-zebra] -2025-11-24T09:53:50.7100992Z -2025-11-24T09:53:50.7101395Z TASK [ansible-minio : Assert xl format] **************************************** -2025-11-24T09:53:50.7373376Z skipping: [minio-aware-zebra] -2025-11-24T09:53:50.7373983Z skipping: [minio-striking-malamute] -2025-11-24T09:53:50.7374310Z -2025-11-24T09:53:50.7374665Z TASK [ansible-minio : Set the Minio server download url to default] ************ -2025-11-24T09:53:50.7965741Z ok: [minio-striking-malamute] -2025-11-24T09:53:50.7966487Z ok: [minio-aware-zebra] -2025-11-24T09:53:50.7966827Z -2025-11-24T09:53:50.7967287Z TASK [ansible-minio : Compose the Minio server download url with release] ****** -2025-11-24T09:53:50.8403311Z skipping: [minio-aware-zebra] -2025-11-24T09:53:50.8403899Z skipping: [minio-striking-malamute] -2025-11-24T09:53:50.8404216Z -2025-11-24T09:53:50.8404549Z TASK [ansible-minio : Override the Minio server download url] ****************** -2025-11-24T09:53:50.9635591Z ok: [minio-aware-zebra] -2025-11-24T09:53:50.9636230Z ok: [minio-striking-malamute] -2025-11-24T09:53:50.9636600Z -2025-11-24T09:53:50.9637431Z TASK [ansible-minio : Get the Minio server checksum for amd64 architecture] **** -2025-11-24T09:53:50.9968134Z skipping: [minio-aware-zebra] -2025-11-24T09:53:50.9968784Z skipping: [minio-striking-malamute] -2025-11-24T09:53:50.9969171Z -2025-11-24T09:53:50.9969585Z TASK [ansible-minio : Override the Minio server checksum] ********************** -2025-11-24T09:53:51.0462457Z ok: [minio-aware-zebra] -2025-11-24T09:53:51.0463362Z ok: [minio-striking-malamute] -2025-11-24T09:53:51.0463703Z -2025-11-24T09:53:51.0464092Z TASK [ansible-minio : Stat existing server binary] ***************************** -2025-11-24T09:53:51.4003730Z ok: [minio-aware-zebra] -2025-11-24T09:53:51.4004260Z ok: [minio-striking-malamute] -2025-11-24T09:53:51.4004550Z -2025-11-24T09:53:51.4004885Z TASK [ansible-minio : Check existing server binary] **************************** -2025-11-24T09:53:51.4407224Z skipping: [minio-aware-zebra] -2025-11-24T09:53:51.4407799Z skipping: [minio-striking-malamute] -2025-11-24T09:53:51.4408112Z -2025-11-24T09:53:51.4408462Z TASK [ansible-minio : Set service name] **************************************** -2025-11-24T09:53:51.4907990Z ok: [minio-striking-malamute] -2025-11-24T09:53:51.6157758Z ok: [minio-aware-zebra] -2025-11-24T09:53:51.6158096Z -2025-11-24T09:53:51.6158480Z TASK [ansible-minio : Override cluster nodes based on given layouts] *********** -2025-11-24T09:53:51.6159169Z ok: [minio-aware-zebra] -2025-11-24T09:53:51.6159638Z ok: [minio-striking-malamute] -2025-11-24T09:53:51.6159922Z -2025-11-24T09:53:51.6160283Z TASK [ansible-minio : Override environment file if layout name is defined] ***** -2025-11-24T09:53:51.6570062Z ok: [minio-aware-zebra] -2025-11-24T09:53:51.6570601Z ok: [minio-striking-malamute] -2025-11-24T09:53:51.6570882Z -2025-11-24T09:53:51.6571227Z TASK [ansible-minio : Override server address if layout name is defined] ******* -2025-11-24T09:53:51.7015339Z ok: [minio-aware-zebra] -2025-11-24T09:53:51.7015884Z ok: [minio-striking-malamute] -2025-11-24T09:53:51.7016170Z -2025-11-24T09:53:51.7016536Z TASK [ansible-minio : Override data directories if layout name is defined] ***** -2025-11-24T09:53:51.7442469Z ok: [minio-aware-zebra] -2025-11-24T09:53:51.7443572Z ok: [minio-striking-malamute] -2025-11-24T09:53:51.7443935Z -2025-11-24T09:53:51.7444346Z TASK [ansible-minio : Check whether minio runs in distributed mode] ************ -2025-11-24T09:53:51.8061937Z ok: [minio-aware-zebra] => { -2025-11-24T09:53:51.8063095Z "changed": false, -2025-11-24T09:53:51.8063666Z "msg": "All assertions passed" -2025-11-24T09:53:51.8064257Z } -2025-11-24T09:53:51.8064757Z ok: [minio-striking-malamute] => { -2025-11-24T09:53:51.8065369Z "changed": false, -2025-11-24T09:53:51.8065902Z "msg": "All assertions passed" -2025-11-24T09:53:51.8066479Z } -2025-11-24T09:53:51.8066719Z -2025-11-24T09:53:51.8067052Z TASK [ansible-minio : Create Minio group] ************************************** -2025-11-24T09:53:52.2710439Z changed: [minio-aware-zebra] -2025-11-24T09:53:52.2711292Z changed: [minio-striking-malamute] -2025-11-24T09:53:52.2711657Z -2025-11-24T09:53:52.2712061Z TASK [ansible-minio : Create Minio user] *************************************** -2025-11-24T09:53:52.8640799Z changed: [minio-striking-malamute] -2025-11-24T09:53:52.8641479Z changed: [minio-aware-zebra] -2025-11-24T09:53:52.8641767Z -2025-11-24T09:53:52.8642108Z TASK [ansible-minio : Create the Minio data storage directories] *************** -2025-11-24T09:53:53.3890617Z changed: [minio-aware-zebra] => (item=/var/lib/minio-server1) -2025-11-24T09:53:53.3891600Z changed: [minio-striking-malamute] => (item=/var/lib/minio-server1) -2025-11-24T09:53:53.3892314Z -2025-11-24T09:53:53.3893023Z TASK [ansible-minio : Download the Minio server] ******************************* -2025-11-24T09:53:55.0549661Z changed: [minio-striking-malamute] -2025-11-24T09:53:55.0550541Z changed: [minio-aware-zebra] -2025-11-24T09:53:55.0550874Z -2025-11-24T09:53:55.0551265Z TASK [ansible-minio : cluster dump] ******************************************** -2025-11-24T09:53:55.1080120Z ok: [minio-aware-zebra] => { -2025-11-24T09:53:55.1082112Z "msg": "using cluster map ['http://10.1.1.6:9000/var/lib/minio-server1', 'http://10.1.1.7:9000/var/lib/minio-server1', 'http://10.1.1.6:9092/var/lib/minio-server2', 'http://10.1.1.7:9092/var/lib/minio-server2']." -2025-11-24T09:53:55.1083576Z } -2025-11-24T09:53:55.1084053Z ok: [minio-striking-malamute] => { -2025-11-24T09:53:55.1085242Z "msg": "using cluster map ['http://10.1.1.6:9000/var/lib/minio-server1', 'http://10.1.1.7:9000/var/lib/minio-server1', 'http://10.1.1.6:9092/var/lib/minio-server2', 'http://10.1.1.7:9092/var/lib/minio-server2']." -2025-11-24T09:53:55.1086501Z } -2025-11-24T09:53:55.1086760Z -2025-11-24T09:53:55.1087142Z TASK [ansible-minio : Generate the Minio server envfile] *********************** -2025-11-24T09:53:55.9595469Z changed: [minio-striking-malamute] -2025-11-24T09:53:55.9596206Z changed: [minio-aware-zebra] -2025-11-24T09:53:55.9596497Z -2025-11-24T09:53:55.9596835Z TASK [ansible-minio : Create the Minio server systemd config] ****************** -2025-11-24T09:53:56.6579656Z changed: [minio-aware-zebra] -2025-11-24T09:53:56.6580525Z changed: [minio-striking-malamute] -2025-11-24T09:53:56.6581299Z -2025-11-24T09:53:56.6581715Z TASK [ansible-minio : Create the Minio server init.d config] ******************* -2025-11-24T09:53:56.6848537Z skipping: [minio-aware-zebra] -2025-11-24T09:53:56.6849315Z skipping: [minio-striking-malamute] -2025-11-24T09:53:56.6849643Z -2025-11-24T09:53:56.6849983Z TASK [ansible-minio : Enable and start the Minio service] ********************** -2025-11-24T09:53:58.0423087Z changed: [minio-aware-zebra] -2025-11-24T09:53:58.0423828Z changed: [minio-striking-malamute] -2025-11-24T09:53:58.0424141Z -2025-11-24T09:53:58.0424458Z TASK [ansible-minio : include_tasks] ******************************************* -2025-11-24T09:53:58.1067685Z included: /wire-server-deploy/ansible/roles-external/ansible-minio/tasks/install-client.yml for minio-aware-zebra, minio-striking-malamute -2025-11-24T09:53:58.1068615Z -2025-11-24T09:53:58.1069052Z TASK [ansible-minio : Set the Minio client download url to default] ************ -2025-11-24T09:53:58.1604667Z ok: [minio-aware-zebra] -2025-11-24T09:53:58.1605499Z ok: [minio-striking-malamute] -2025-11-24T09:53:58.1605882Z -2025-11-24T09:53:58.1606340Z TASK [ansible-minio : Compose the Minio client download url with release] ****** -2025-11-24T09:53:58.1856279Z skipping: [minio-aware-zebra] -2025-11-24T09:53:58.1857055Z skipping: [minio-striking-malamute] -2025-11-24T09:53:58.1857441Z -2025-11-24T09:53:58.1857841Z TASK [ansible-minio : Override the Minio client download url] ****************** -2025-11-24T09:53:58.2585444Z ok: [minio-aware-zebra] -2025-11-24T09:53:58.2586265Z ok: [minio-striking-malamute] -2025-11-24T09:53:58.2586598Z -2025-11-24T09:53:58.2586992Z TASK [ansible-minio : Get the Minio client checksum for amd64 architecture] **** -2025-11-24T09:53:58.2917664Z skipping: [minio-aware-zebra] -2025-11-24T09:53:58.2918545Z skipping: [minio-striking-malamute] -2025-11-24T09:53:58.2918935Z -2025-11-24T09:53:58.2919372Z TASK [ansible-minio : Override the Minio client checksum] ********************* -2025-11-24T09:53:58.3380950Z ok: [minio-aware-zebra] -2025-11-24T09:53:58.3381662Z ok: [minio-striking-malamute] -2025-11-24T09:53:58.3381949Z -2025-11-24T09:53:58.3382283Z TASK [ansible-minio : Stat existing client binary] ***************************** -2025-11-24T09:53:58.6250161Z ok: [minio-striking-malamute] -2025-11-24T09:53:58.6250977Z ok: [minio-aware-zebra] -2025-11-24T09:53:58.6251285Z -2025-11-24T09:53:58.6251691Z TASK [ansible-minio : Check existing client binary] **************************** -2025-11-24T09:53:58.6627378Z skipping: [minio-aware-zebra] -2025-11-24T09:53:58.6628231Z skipping: [minio-striking-malamute] -2025-11-24T09:53:58.6628608Z -2025-11-24T09:53:58.6629025Z TASK [ansible-minio : Download the Minio client] ******************************* -2025-11-24T09:53:59.5180293Z changed: [minio-striking-malamute] -2025-11-24T09:53:59.5181264Z changed: [minio-aware-zebra] -2025-11-24T09:53:59.5181602Z -2025-11-24T09:53:59.5182331Z TASK [ansible-minio : meta] **************************************************** -2025-11-24T09:53:59.5183024Z -2025-11-24T09:53:59.5183322Z TASK [ansible-minio : meta] **************************************************** -2025-11-24T09:53:59.5183727Z -2025-11-24T09:53:59.5184051Z RUNNING HANDLER [ansible-minio : reload minio systemd] ************************* -2025-11-24T09:54:00.3776463Z Still deploying... -2025-11-24T09:54:00.4303634Z ok: [minio-striking-malamute] -2025-11-24T09:54:00.4304503Z ok: [minio-aware-zebra] -2025-11-24T09:54:00.4304813Z -2025-11-24T09:54:00.4305210Z RUNNING HANDLER [ansible-minio : restart minio] ******************************** -2025-11-24T09:54:01.5156290Z changed: [minio-aware-zebra] -2025-11-24T09:54:01.5156984Z changed: [minio-striking-malamute] -2025-11-24T09:54:01.5157316Z -2025-11-24T09:54:01.5157662Z RUNNING HANDLER [ansible-minio : verify minio is responsive] ******************* -2025-11-24T09:54:02.1797799Z ok: [minio-striking-malamute] -2025-11-24T09:54:02.1798681Z ok: [minio-aware-zebra] -2025-11-24T09:54:02.1798988Z -2025-11-24T09:54:02.1799424Z RUNNING HANDLER [ansible-minio : rewrite previous credentials] ***************** -2025-11-24T09:54:02.8728931Z changed: [minio-striking-malamute] -2025-11-24T09:54:02.8729793Z changed: [minio-aware-zebra] -2025-11-24T09:54:02.8730175Z -2025-11-24T09:54:02.8730630Z TASK [ansible-minio : Add sni support to legacy python installations] ********** -2025-11-24T09:54:02.9250201Z skipping: [minio-aware-zebra] -2025-11-24T09:54:02.9251096Z skipping: [minio-striking-malamute] -2025-11-24T09:54:02.9251486Z -2025-11-24T09:54:02.9251878Z TASK [ansible-minio : include_tasks] ******************************************* -2025-11-24T09:54:02.9776113Z included: /wire-server-deploy/ansible/roles-external/ansible-minio/tasks/install-server.yml for minio-aware-zebra, minio-striking-malamute -2025-11-24T09:54:02.9777031Z -2025-11-24T09:54:02.9777463Z TASK [ansible-minio : Determine format files of existing deployments] ********** -2025-11-24T09:54:03.0325543Z ok: [minio-aware-zebra] -2025-11-24T09:54:03.0326213Z ok: [minio-striking-malamute] -2025-11-24T09:54:03.0326504Z -2025-11-24T09:54:03.0327134Z TASK [ansible-minio : Stat format files·] ************************************** -2025-11-24T09:54:03.5588332Z ok: [minio-striking-malamute] => (item=/var/lib/minio-server1/.minio.sys/format.json) -2025-11-24T09:54:03.5589307Z ok: [minio-aware-zebra] => (item=/var/lib/minio-server1/.minio.sys/format.json) -2025-11-24T09:54:03.5590104Z ok: [minio-striking-malamute] => (item=/var/lib/minio-server2/.minio.sys/format.json) -2025-11-24T09:54:03.5590865Z ok: [minio-aware-zebra] => (item=/var/lib/minio-server2/.minio.sys/format.json) -2025-11-24T09:54:03.5591301Z -2025-11-24T09:54:03.5591613Z TASK [ansible-minio : Read format files] *************************************** -2025-11-24T09:54:03.6035230Z skipping: [minio-aware-zebra] => (item=/var/lib/minio-server1/.minio.sys/format.json) -2025-11-24T09:54:03.6036228Z skipping: [minio-aware-zebra] => (item=/var/lib/minio-server2/.minio.sys/format.json) -2025-11-24T09:54:03.6036946Z skipping: [minio-aware-zebra] -2025-11-24T09:54:03.6037620Z skipping: [minio-striking-malamute] => (item=/var/lib/minio-server1/.minio.sys/format.json) -2025-11-24T09:54:03.6038497Z skipping: [minio-striking-malamute] => (item=/var/lib/minio-server2/.minio.sys/format.json) -2025-11-24T09:54:03.6039194Z skipping: [minio-striking-malamute] -2025-11-24T09:54:03.6039498Z -2025-11-24T09:54:03.6039803Z TASK [ansible-minio : Read format] ********************************************* -2025-11-24T09:54:03.6566413Z ok: [minio-striking-malamute] -2025-11-24T09:54:03.6567317Z ok: [minio-aware-zebra] -2025-11-24T09:54:03.6567633Z -2025-11-24T09:54:03.6568057Z TASK [ansible-minio : Assert xl format] **************************************** -2025-11-24T09:54:03.6849448Z skipping: [minio-aware-zebra] -2025-11-24T09:54:03.6850181Z skipping: [minio-striking-malamute] -2025-11-24T09:54:03.6850495Z -2025-11-24T09:54:03.6850818Z TASK [ansible-minio : Set the Minio server download url to default] ************ -2025-11-24T09:54:03.7430358Z ok: [minio-aware-zebra] -2025-11-24T09:54:03.7430972Z ok: [minio-striking-malamute] -2025-11-24T09:54:03.7431284Z -2025-11-24T09:54:03.7431655Z TASK [ansible-minio : Compose the Minio server download url with release] ****** -2025-11-24T09:54:03.7751425Z skipping: [minio-aware-zebra] -2025-11-24T09:54:03.7752127Z skipping: [minio-striking-malamute] -2025-11-24T09:54:03.7752445Z -2025-11-24T09:54:03.7752975Z TASK [ansible-minio : Override the Minio server download url] ****************** -2025-11-24T09:54:03.8313413Z ok: [minio-striking-malamute] -2025-11-24T09:54:03.8314395Z ok: [minio-aware-zebra] -2025-11-24T09:54:03.8314675Z -2025-11-24T09:54:03.8315036Z TASK [ansible-minio : Get the Minio server checksum for amd64 architecture] **** -2025-11-24T09:54:03.8623441Z skipping: [minio-aware-zebra] -2025-11-24T09:54:03.8624133Z skipping: [minio-striking-malamute] -2025-11-24T09:54:03.8624444Z -2025-11-24T09:54:03.8624764Z TASK [ansible-minio : Override the Minio server checksum] ********************** -2025-11-24T09:54:03.9197626Z ok: [minio-aware-zebra] -2025-11-24T09:54:03.9198271Z ok: [minio-striking-malamute] -2025-11-24T09:54:03.9198888Z -2025-11-24T09:54:03.9199239Z TASK [ansible-minio : Stat existing server binary] ***************************** -2025-11-24T09:54:04.6088550Z ok: [minio-striking-malamute] -2025-11-24T09:54:04.6089216Z ok: [minio-aware-zebra] -2025-11-24T09:54:04.6089484Z -2025-11-24T09:54:04.6089824Z TASK [ansible-minio : Check existing server binary] **************************** -2025-11-24T09:54:04.6567849Z ok: [minio-aware-zebra] => { -2025-11-24T09:54:04.6568555Z "changed": false, -2025-11-24T09:54:04.6569055Z "msg": "Installed servery binary may be upgraded from." -2025-11-24T09:54:04.6569610Z } -2025-11-24T09:54:04.6570019Z ok: [minio-striking-malamute] => { -2025-11-24T09:54:04.6570509Z "changed": false, -2025-11-24T09:54:04.6570983Z "msg": "Installed servery binary may be upgraded from." -2025-11-24T09:54:04.6571523Z } -2025-11-24T09:54:04.6571727Z -2025-11-24T09:54:04.6572065Z TASK [ansible-minio : Set service name] **************************************** -2025-11-24T09:54:04.6965651Z ok: [minio-aware-zebra] -2025-11-24T09:54:04.6966433Z ok: [minio-striking-malamute] -2025-11-24T09:54:04.6966771Z -2025-11-24T09:54:04.6967151Z TASK [ansible-minio : Override cluster nodes based on given layouts] *********** -2025-11-24T09:54:04.8336877Z ok: [minio-aware-zebra] -2025-11-24T09:54:04.8337559Z ok: [minio-striking-malamute] -2025-11-24T09:54:04.8337856Z -2025-11-24T09:54:04.8338217Z TASK [ansible-minio : Override environment file if layout name is defined] ***** -2025-11-24T09:54:04.8786584Z ok: [minio-aware-zebra] -2025-11-24T09:54:04.8787247Z ok: [minio-striking-malamute] -2025-11-24T09:54:04.8787533Z -2025-11-24T09:54:04.8787877Z TASK [ansible-minio : Override server address if layout name is defined] ******* -2025-11-24T09:54:04.9300390Z ok: [minio-aware-zebra] -2025-11-24T09:54:04.9301048Z ok: [minio-striking-malamute] -2025-11-24T09:54:04.9301342Z -2025-11-24T09:54:04.9301720Z TASK [ansible-minio : Override data directories if layout name is defined] ***** -2025-11-24T09:54:04.9808957Z ok: [minio-aware-zebra] -2025-11-24T09:54:04.9816828Z ok: [minio-striking-malamute] -2025-11-24T09:54:04.9817198Z -2025-11-24T09:54:04.9817562Z TASK [ansible-minio : Check whether minio runs in distributed mode] ************ -2025-11-24T09:54:05.0343090Z ok: [minio-aware-zebra] => { -2025-11-24T09:54:05.0343761Z "changed": false, -2025-11-24T09:54:05.0344222Z "msg": "All assertions passed" -2025-11-24T09:54:05.0344710Z } -2025-11-24T09:54:05.0345115Z ok: [minio-striking-malamute] => { -2025-11-24T09:54:05.0345627Z "changed": false, -2025-11-24T09:54:05.0346076Z "msg": "All assertions passed" -2025-11-24T09:54:05.0346533Z } -2025-11-24T09:54:05.0346737Z -2025-11-24T09:54:05.0347059Z TASK [ansible-minio : Create Minio group] ************************************** -2025-11-24T09:54:05.2935890Z ok: [minio-striking-malamute] -2025-11-24T09:54:05.2936574Z ok: [minio-aware-zebra] -2025-11-24T09:54:05.2936855Z -2025-11-24T09:54:05.2937594Z TASK [ansible-minio : Create Minio user] *************************************** -2025-11-24T09:54:05.6460328Z ok: [minio-aware-zebra] -2025-11-24T09:54:05.6461126Z ok: [minio-striking-malamute] -2025-11-24T09:54:05.6461453Z -2025-11-24T09:54:05.6461823Z TASK [ansible-minio : Create the Minio data storage directories] *************** -2025-11-24T09:54:05.9848053Z changed: [minio-aware-zebra] => (item=/var/lib/minio-server2) -2025-11-24T09:54:05.9848920Z changed: [minio-striking-malamute] => (item=/var/lib/minio-server2) -2025-11-24T09:54:05.9849349Z -2025-11-24T09:54:05.9850041Z TASK [ansible-minio : Download the Minio server] ******************************* -2025-11-24T09:54:06.7432273Z ok: [minio-aware-zebra] -2025-11-24T09:54:06.7433526Z ok: [minio-striking-malamute] -2025-11-24T09:54:06.7433894Z -2025-11-24T09:54:06.7434280Z TASK [ansible-minio : cluster dump] ******************************************** -2025-11-24T09:54:06.7944434Z ok: [minio-aware-zebra] => { -2025-11-24T09:54:06.7945721Z "msg": "using cluster map ['http://10.1.1.6:9000/var/lib/minio-server1', 'http://10.1.1.7:9000/var/lib/minio-server1', 'http://10.1.1.6:9092/var/lib/minio-server2', 'http://10.1.1.7:9092/var/lib/minio-server2']." -2025-11-24T09:54:06.7947100Z } -2025-11-24T09:54:06.7947494Z ok: [minio-striking-malamute] => { -2025-11-24T09:54:06.7948460Z "msg": "using cluster map ['http://10.1.1.6:9000/var/lib/minio-server1', 'http://10.1.1.7:9000/var/lib/minio-server1', 'http://10.1.1.6:9092/var/lib/minio-server2', 'http://10.1.1.7:9092/var/lib/minio-server2']." -2025-11-24T09:54:06.7949396Z } -2025-11-24T09:54:06.7949586Z -2025-11-24T09:54:06.7949902Z TASK [ansible-minio : Generate the Minio server envfile] *********************** -2025-11-24T09:54:07.5320537Z changed: [minio-striking-malamute] -2025-11-24T09:54:07.5321210Z changed: [minio-aware-zebra] -2025-11-24T09:54:07.5321488Z -2025-11-24T09:54:07.5321864Z TASK [ansible-minio : Create the Minio server systemd config] ****************** -2025-11-24T09:54:08.2477337Z changed: [minio-striking-malamute] -2025-11-24T09:54:08.2478036Z changed: [minio-aware-zebra] -2025-11-24T09:54:08.2478333Z -2025-11-24T09:54:08.2478694Z TASK [ansible-minio : Create the Minio server init.d config] ******************* -2025-11-24T09:54:08.2835235Z skipping: [minio-aware-zebra] -2025-11-24T09:54:08.2836140Z skipping: [minio-striking-malamute] -2025-11-24T09:54:08.2836528Z -2025-11-24T09:54:08.2836925Z TASK [ansible-minio : Enable and start the Minio service] ********************** -2025-11-24T09:54:09.2627220Z changed: [minio-striking-malamute] -2025-11-24T09:54:09.2628124Z changed: [minio-aware-zebra] -2025-11-24T09:54:09.2628463Z -2025-11-24T09:54:09.2628843Z TASK [ansible-minio : include_tasks] ******************************************* -2025-11-24T09:54:09.3579620Z included: /wire-server-deploy/ansible/roles-external/ansible-minio/tasks/install-client.yml for minio-aware-zebra, minio-striking-malamute -2025-11-24T09:54:09.3580571Z -2025-11-24T09:54:09.3581028Z TASK [ansible-minio : Set the Minio client download url to default] ************ -2025-11-24T09:54:09.4046644Z ok: [minio-aware-zebra] -2025-11-24T09:54:09.4047402Z ok: [minio-striking-malamute] -2025-11-24T09:54:09.4047762Z -2025-11-24T09:54:09.4048174Z TASK [ansible-minio : Compose the Minio client download url with release] ****** -2025-11-24T09:54:09.4338002Z skipping: [minio-aware-zebra] -2025-11-24T09:54:09.4338693Z skipping: [minio-striking-malamute] -2025-11-24T09:54:09.4339016Z -2025-11-24T09:54:09.4339361Z TASK [ansible-minio : Override the Minio client download url] ****************** -2025-11-24T09:54:09.4901294Z ok: [minio-striking-malamute] -2025-11-24T09:54:09.4901986Z ok: [minio-aware-zebra] -2025-11-24T09:54:09.4902261Z -2025-11-24T09:54:09.4902868Z TASK [ansible-minio : Get the Minio client checksum for amd64 architecture] **** -2025-11-24T09:54:09.5196152Z skipping: [minio-aware-zebra] -2025-11-24T09:54:09.5196910Z skipping: [minio-striking-malamute] -2025-11-24T09:54:09.5197247Z -2025-11-24T09:54:09.5198048Z TASK [ansible-minio : Override the Minio client checksum] ********************* -2025-11-24T09:54:09.5612893Z ok: [minio-aware-zebra] -2025-11-24T09:54:09.5613591Z ok: [minio-striking-malamute] -2025-11-24T09:54:09.5613931Z -2025-11-24T09:54:09.5614271Z TASK [ansible-minio : Stat existing client binary] ***************************** -2025-11-24T09:54:09.9602011Z ok: [minio-aware-zebra] -2025-11-24T09:54:09.9602846Z ok: [minio-striking-malamute] -2025-11-24T09:54:09.9603159Z -2025-11-24T09:54:09.9603507Z TASK [ansible-minio : Check existing client binary] **************************** -2025-11-24T09:54:10.0300719Z ok: [minio-aware-zebra] => { -2025-11-24T09:54:10.0301445Z "changed": false, -2025-11-24T09:54:10.0301975Z "msg": "Installed client binary may be upgraded from." -2025-11-24T09:54:10.0302569Z } -2025-11-24T09:54:10.0303224Z ok: [minio-striking-malamute] => { -2025-11-24T09:54:10.0303729Z "changed": false, -2025-11-24T09:54:10.0304234Z "msg": "Installed client binary may be upgraded from." -2025-11-24T09:54:10.0304803Z } -2025-11-24T09:54:10.0305018Z -2025-11-24T09:54:10.0305426Z TASK [ansible-minio : Download the Minio client] ******************************* -2025-11-24T09:54:10.3792085Z Still deploying... -2025-11-24T09:54:10.6306986Z ok: [minio-aware-zebra] -2025-11-24T09:54:10.6307703Z ok: [minio-striking-malamute] -2025-11-24T09:54:10.6308028Z -2025-11-24T09:54:10.6308371Z TASK [ansible-minio : meta] **************************************************** -2025-11-24T09:54:10.6308838Z -2025-11-24T09:54:10.6309170Z TASK [ansible-minio : meta] **************************************************** -2025-11-24T09:54:10.6309643Z -2025-11-24T09:54:10.6310023Z RUNNING HANDLER [ansible-minio : reload minio systemd] ************************* -2025-11-24T09:54:11.6653784Z ok: [minio-aware-zebra] -2025-11-24T09:54:11.6654448Z ok: [minio-striking-malamute] -2025-11-24T09:54:11.6654757Z -2025-11-24T09:54:11.6655119Z RUNNING HANDLER [ansible-minio : restart minio] ******************************** -2025-11-24T09:54:12.7369685Z changed: [minio-aware-zebra] -2025-11-24T09:54:12.7370305Z changed: [minio-striking-malamute] -2025-11-24T09:54:12.7370620Z -2025-11-24T09:54:13.2451202Z RUNNING HANDLER [ansible-minio : verify minio is responsive] ******************* -2025-11-24T09:54:13.2452082Z ok: [minio-striking-malamute] -2025-11-24T09:54:13.2452963Z ok: [minio-aware-zebra] -2025-11-24T09:54:13.2453306Z -2025-11-24T09:54:13.2453727Z RUNNING HANDLER [ansible-minio : rewrite previous credentials] ***************** -2025-11-24T09:54:13.9667687Z changed: [minio-aware-zebra] -2025-11-24T09:54:13.9668270Z changed: [minio-striking-malamute] -2025-11-24T09:54:13.9668606Z -2025-11-24T09:54:13.9668924Z TASK [check which buckets exists] ********************************************** -2025-11-24T09:54:14.8747797Z changed: [minio-aware-zebra] -2025-11-24T09:54:14.8748172Z -2025-11-24T09:54:14.8748473Z TASK [create bucket] *********************************************************** -2025-11-24T09:54:16.7180776Z changed: [minio-aware-zebra] => (item=dummy-bucket) -2025-11-24T09:54:16.7181495Z changed: [minio-aware-zebra] => (item=assets) -2025-11-24T09:54:16.7182054Z changed: [minio-aware-zebra] => (item=public) -2025-11-24T09:54:16.7182819Z changed: [minio-aware-zebra] => (item=k8ssandra-backups) -2025-11-24T09:54:16.7183211Z -2025-11-24T09:54:16.7183540Z TASK [add 'local' mc config alias with correct credentials] ******************** -2025-11-24T09:54:17.1987595Z changed: [minio-aware-zebra] -2025-11-24T09:54:17.1988469Z changed: [minio-striking-malamute] -2025-11-24T09:54:17.1988844Z -2025-11-24T09:54:17.1989237Z TASK [make the 'public' bucket world-accessible] ******************************* -2025-11-24T09:54:17.5624829Z changed: [minio-aware-zebra] -2025-11-24T09:54:17.5625308Z -2025-11-24T09:54:17.5625659Z TASK [Create cargohold policy file] ******************************************** -2025-11-24T09:54:18.2056974Z changed: [minio-aware-zebra] -2025-11-24T09:54:18.2057452Z -2025-11-24T09:54:18.2057814Z TASK [Add cargohold policy to MinIO] ******************************************* -2025-11-24T09:54:18.5845217Z changed: [minio-aware-zebra] -2025-11-24T09:54:18.5845628Z -2025-11-24T09:54:18.5846024Z TASK [Generate random password for cargohold user] ***************************** -2025-11-24T09:54:18.6254106Z ok: [minio-aware-zebra] -2025-11-24T09:54:18.6254602Z -2025-11-24T09:54:18.6254938Z TASK [Create cargohold IAM user] *********************************************** -2025-11-24T09:54:19.4292892Z changed: [minio-aware-zebra] -2025-11-24T09:54:19.4293512Z -2025-11-24T09:54:19.4293926Z TASK [Attach policy to cargohold user] ***************************************** -2025-11-24T09:54:20.3816820Z Still deploying... -2025-11-24T09:54:20.7038934Z changed: [minio-aware-zebra] -2025-11-24T09:54:20.7039450Z -2025-11-24T09:54:20.7039842Z TASK [Create service account for cargohold with specific access key] *********** -2025-11-24T09:54:21.7999166Z changed: [minio-aware-zebra] -2025-11-24T09:54:21.7999649Z -2025-11-24T09:54:21.8000036Z TASK [Verify cargohold service account] **************************************** -2025-11-24T09:54:22.4281844Z changed: [minio-aware-zebra] -2025-11-24T09:54:22.4282461Z -2025-11-24T09:54:22.4283530Z TASK [List cargohold service accounts] ***************************************** -2025-11-24T09:54:22.4734152Z ok: [minio-aware-zebra] => { -2025-11-24T09:54:22.4735229Z "cargohold_svcacct_list.stdout": " Access Key | Expiry \nJLT27ronrGCtJFFz6jRc | no-expiry " -2025-11-24T09:54:22.4736053Z } -2025-11-24T09:54:22.4736483Z ok: [minio-striking-malamute] => { -2025-11-24T09:54:22.4737333Z "cargohold_svcacct_list.stdout": " Access Key | Expiry \nJLT27ronrGCtJFFz6jRc | no-expiry " -2025-11-24T09:54:22.4738139Z } -2025-11-24T09:54:22.4738354Z -2025-11-24T09:54:22.4738702Z TASK [remove unneeded config aliases added by default] ************************* -2025-11-24T09:54:23.7487374Z changed: [minio-aware-zebra] => (item=gcs) -2025-11-24T09:54:23.7488145Z changed: [minio-striking-malamute] => (item=gcs) -2025-11-24T09:54:23.7488759Z changed: [minio-aware-zebra] => (item=s3) -2025-11-24T09:54:23.7489348Z changed: [minio-striking-malamute] => (item=s3) -2025-11-24T09:54:23.7489958Z changed: [minio-aware-zebra] => (item=play) -2025-11-24T09:54:23.7490545Z changed: [minio-striking-malamute] => (item=play) -2025-11-24T09:54:23.7490903Z -2025-11-24T09:54:23.7491171Z PLAY [minio] ******************************************************************* -2025-11-24T09:54:23.7491560Z -2025-11-24T09:54:23.7491908Z TASK [minio-static-files : create deeplink template files] ********************* -2025-11-24T09:54:25.0954552Z changed: [minio-aware-zebra] => (item=deeplink.html) -2025-11-24T09:54:25.0955278Z changed: [minio-aware-zebra] => (item=deeplink.json) -2025-11-24T09:54:25.0955706Z -2025-11-24T09:54:25.0956070Z TASK [minio-static-files : Add deeplink files to minio] ************************ -2025-11-24T09:54:25.9706974Z changed: [minio-aware-zebra] => (item=deeplink.html) -2025-11-24T09:54:25.9707834Z changed: [minio-aware-zebra] => (item=deeplink.json) -2025-11-24T09:54:25.9708311Z -2025-11-24T09:54:25.9708645Z TASK [minio-static-files : copy blacklist files] ******************************* -2025-11-24T09:54:27.2769080Z changed: [minio-aware-zebra] => (item=android.json) -2025-11-24T09:54:27.2769722Z changed: [minio-aware-zebra] => (item=ios.json) -2025-11-24T09:54:27.2770052Z -2025-11-24T09:54:27.2770387Z TASK [minio-static-files : Add blacklist files to minio] *********************** -2025-11-24T09:54:28.2298782Z changed: [minio-aware-zebra] => (item=android.json) -2025-11-24T09:54:28.2299438Z changed: [minio-aware-zebra] => (item=ios.json) -2025-11-24T09:54:28.2299773Z -2025-11-24T09:54:28.2300026Z PLAY RECAP ********************************************************************* -2025-11-24T09:54:28.2300810Z minio-aware-zebra : ok=84 changed=31 unreachable=0 failed=0 skipped=18 rescued=0 ignored=0 -2025-11-24T09:54:28.2301929Z minio-striking-malamute : ok=70 changed=18 unreachable=0 failed=0 skipped=18 rescued=0 ignored=0 -2025-11-24T09:54:28.2303239Z -2025-11-24T09:54:28.3552422Z + ansible-playbook -i /wire-server-deploy/ansible/inventory/offline/inventory.yml /wire-server-deploy/ansible/postgresql-deploy.yml -2025-11-24T09:54:28.8326069Z [WARNING]: Invalid characters were found in group names but not replaced, use -2025-11-24T09:54:28.8326798Z -vvvv to see details -2025-11-24T09:54:28.8333979Z [WARNING]: Found both group and host with same name: assethost -2025-11-24T09:54:28.8334670Z [WARNING]: Found both group and host with same name: adminhost -2025-11-24T09:54:29.0824891Z -2025-11-24T09:54:29.0826106Z PLAY [Clean previous deployment state] ***************************************** -2025-11-24T09:54:29.0826694Z -2025-11-24T09:54:29.0827043Z TASK [Gathering Facts] ********************************************************* -2025-11-24T09:54:30.3826425Z Still deploying... -2025-11-24T09:54:32.5769603Z ok: [postgresql3] -2025-11-24T09:54:32.5770103Z ok: [postgresql1] -2025-11-24T09:54:32.5770529Z ok: [postgresql2] -2025-11-24T09:54:32.5770764Z -2025-11-24T09:54:32.5771119Z TASK [Check if PostgreSQL is installed] **************************************** -2025-11-24T09:54:33.0685673Z ok: [postgresql3] -2025-11-24T09:54:33.0686167Z ok: [postgresql1] -2025-11-24T09:54:33.0686594Z ok: [postgresql2] -2025-11-24T09:54:33.0686830Z -2025-11-24T09:54:33.0687176Z TASK [Check if PostgreSQL data directory exists] ******************************* -2025-11-24T09:54:33.4675631Z ok: [postgresql1] -2025-11-24T09:54:33.4676194Z ok: [postgresql3] -2025-11-24T09:54:33.4676683Z ok: [postgresql2] -2025-11-24T09:54:33.4676981Z -2025-11-24T09:54:33.4677383Z TASK [Check if repmgr configuration exists] ************************************ -2025-11-24T09:54:33.8022447Z ok: [postgresql3] -2025-11-24T09:54:33.8023163Z ok: [postgresql1] -2025-11-24T09:54:33.8023589Z ok: [postgresql2] -2025-11-24T09:54:33.8023819Z -2025-11-24T09:54:33.8024150Z TASK [Determine if this is a fresh installation] ******************************* -2025-11-24T09:54:33.8763735Z ok: [postgresql1] -2025-11-24T09:54:33.8764377Z ok: [postgresql2] -2025-11-24T09:54:33.8764879Z ok: [postgresql3] -2025-11-24T09:54:33.8765160Z -2025-11-24T09:54:33.8765549Z TASK [Display installation type] *********************************************** -2025-11-24T09:54:33.9447923Z ok: [postgresql1] => { -2025-11-24T09:54:33.9448645Z "msg": "postgresql1: Fresh installation detected - skipping most cleanup tasks\n" -2025-11-24T09:54:33.9449333Z } -2025-11-24T09:54:33.9449726Z ok: [postgresql3] => { -2025-11-24T09:54:33.9450324Z "msg": "postgresql3: Fresh installation detected - skipping most cleanup tasks\n" -2025-11-24T09:54:33.9450968Z } -2025-11-24T09:54:33.9451350Z ok: [postgresql2] => { -2025-11-24T09:54:33.9451928Z "msg": "postgresql2: Fresh installation detected - skipping most cleanup tasks\n" -2025-11-24T09:54:33.9452546Z } -2025-11-24T09:54:33.9453006Z -2025-11-24T09:54:33.9453342Z TASK [Ensure basic directories exist for fresh install] ************************ -2025-11-24T09:54:33.9732838Z skipping: [postgresql1] => (item=/etc/repmgr/17-main) -2025-11-24T09:54:33.9733677Z skipping: [postgresql1] => (item=/opt/repmgr/scripts) -2025-11-24T09:54:33.9734424Z skipping: [postgresql1] => (item=/var/log/postgresql) -2025-11-24T09:54:33.9735110Z skipping: [postgresql2] => (item=/etc/repmgr/17-main) -2025-11-24T09:54:33.9735770Z skipping: [postgresql2] => (item=/opt/repmgr/scripts) -2025-11-24T09:54:33.9736427Z skipping: [postgresql2] => (item=/var/log/postgresql) -2025-11-24T09:54:33.9994867Z skipping: [postgresql1] -2025-11-24T09:54:33.9995406Z skipping: [postgresql2] -2025-11-24T09:54:33.9995924Z skipping: [postgresql3] => (item=/etc/repmgr/17-main) -2025-11-24T09:54:33.9996540Z skipping: [postgresql3] => (item=/opt/repmgr/scripts) -2025-11-24T09:54:33.9997133Z skipping: [postgresql3] => (item=/var/log/postgresql) -2025-11-24T09:54:33.9997682Z skipping: [postgresql3] -2025-11-24T09:54:33.9997932Z -2025-11-24T09:54:33.9998254Z TASK [Skip cleanup message for fresh install] ********************************** -2025-11-24T09:54:34.0526858Z ok: [postgresql1] => { -2025-11-24T09:54:34.0527883Z "msg": "Fresh installation - cleanup tasks skipped" -2025-11-24T09:54:34.0528440Z } -2025-11-24T09:54:34.0528828Z ok: [postgresql2] => { -2025-11-24T09:54:34.0529307Z "msg": "Fresh installation - cleanup tasks skipped" -2025-11-24T09:54:34.0529823Z } -2025-11-24T09:54:34.0530210Z ok: [postgresql3] => { -2025-11-24T09:54:34.0530664Z "msg": "Fresh installation - cleanup tasks skipped" -2025-11-24T09:54:34.0531166Z } -2025-11-24T09:54:34.0531368Z -2025-11-24T09:54:34.0531697Z TASK [Check if PostgreSQL service exists] ************************************** -2025-11-24T09:54:34.0697309Z skipping: [postgresql1] -2025-11-24T09:54:34.0855655Z skipping: [postgresql2] -2025-11-24T09:54:34.0856253Z skipping: [postgresql3] -2025-11-24T09:54:34.0856566Z -2025-11-24T09:54:34.0856961Z TASK [Check if repmgr database exists] ***************************************** -2025-11-24T09:54:34.1298794Z skipping: [postgresql1] -2025-11-24T09:54:34.1299394Z skipping: [postgresql2] -2025-11-24T09:54:34.1299955Z skipping: [postgresql3] -2025-11-24T09:54:34.1300244Z -2025-11-24T09:54:34.1300980Z TASK [Drop repmgr database completely (if exists)] ***************************** -2025-11-24T09:54:34.1726095Z skipping: [postgresql1] -2025-11-24T09:54:34.1726615Z skipping: [postgresql2] -2025-11-24T09:54:34.1727040Z skipping: [postgresql3] -2025-11-24T09:54:34.1727275Z -2025-11-24T09:54:34.1727599Z TASK [Stop any existing split-brain monitoring timer] ************************** -2025-11-24T09:54:34.1949672Z skipping: [postgresql1] -2025-11-24T09:54:34.2134713Z skipping: [postgresql2] -2025-11-24T09:54:34.2135317Z skipping: [postgresql3] -2025-11-24T09:54:34.2135617Z -2025-11-24T09:54:34.2136020Z TASK [Stop any existing split-brain monitoring service] ************************ -2025-11-24T09:54:34.2490723Z skipping: [postgresql1] -2025-11-24T09:54:34.2491212Z skipping: [postgresql2] -2025-11-24T09:54:34.2491643Z skipping: [postgresql3] -2025-11-24T09:54:34.2491877Z -2025-11-24T09:54:34.2492208Z TASK [Stop any existing repmgrd service] *************************************** -2025-11-24T09:54:34.2862259Z skipping: [postgresql1] -2025-11-24T09:54:34.2862895Z skipping: [postgresql2] -2025-11-24T09:54:34.2863340Z skipping: [postgresql3] -2025-11-24T09:54:34.2863583Z -2025-11-24T09:54:34.2863933Z TASK [Unmask PostgreSQL services from previous deployments] ******************** -2025-11-24T09:54:34.3043861Z skipping: [postgresql1] -2025-11-24T09:54:34.3218624Z skipping: [postgresql2] -2025-11-24T09:54:34.3219218Z skipping: [postgresql3] -2025-11-24T09:54:34.3219523Z -2025-11-24T09:54:34.3219950Z TASK [Stop PostgreSQL service for clean state] ********************************* -2025-11-24T09:54:34.3544139Z skipping: [postgresql1] -2025-11-24T09:54:34.3550478Z skipping: [postgresql2] -2025-11-24T09:54:34.3550954Z skipping: [postgresql3] -2025-11-24T09:54:34.3551213Z -2025-11-24T09:54:34.3551570Z TASK [Remove repmgr configuration files, scripts, and systemd units] *********** -2025-11-24T09:54:34.3732553Z skipping: [postgresql1] => (item=/etc/repmgr/17-main/repmgr.conf) -2025-11-24T09:54:34.3733531Z skipping: [postgresql1] => (item=/etc/repmgr/17) -2025-11-24T09:54:34.3734246Z skipping: [postgresql1] => (item=/etc/repmgr/17-main) -2025-11-24T09:54:34.4281193Z skipping: [postgresql1] => (item=/var/lib/postgresql/17/main/recovery.conf) -2025-11-24T09:54:34.4283130Z skipping: [postgresql2] => (item=/etc/repmgr/17-main/repmgr.conf) -2025-11-24T09:54:34.4284015Z skipping: [postgresql1] => (item=/var/lib/postgresql/17/main/standby.signal) -2025-11-24T09:54:34.4284982Z skipping: [postgresql2] => (item=/etc/repmgr/17) -2025-11-24T09:54:34.4286088Z skipping: [postgresql1] => (item=/opt/repmgr/scripts) -2025-11-24T09:54:34.4286785Z skipping: [postgresql2] => (item=/etc/repmgr/17-main) -2025-11-24T09:54:34.4287485Z skipping: [postgresql1] => (item=/usr/local/bin/repmgr) -2025-11-24T09:54:34.4288142Z skipping: [postgresql2] => (item=/var/lib/postgresql/17/main/recovery.conf) -2025-11-24T09:54:34.4288796Z skipping: [postgresql1] => (item=/usr/local/bin/repmgrd) -2025-11-24T09:54:34.4289806Z skipping: [postgresql2] => (item=/var/lib/postgresql/17/main/standby.signal) -2025-11-24T09:54:34.4290523Z skipping: [postgresql1] => (item=/usr/local/bin/detect_rogue_primary.sh) -2025-11-24T09:54:34.4291157Z skipping: [postgresql2] => (item=/opt/repmgr/scripts) -2025-11-24T09:54:34.4291828Z skipping: [postgresql1] => (item=/etc/systemd/system/detect-rogue-primary.service) -2025-11-24T09:54:34.4292546Z skipping: [postgresql3] => (item=/etc/repmgr/17-main/repmgr.conf) -2025-11-24T09:54:34.4293291Z skipping: [postgresql2] => (item=/usr/local/bin/repmgr) -2025-11-24T09:54:34.4299739Z skipping: [postgresql1] => (item=/etc/systemd/system/detect-rogue-primary.timer) -2025-11-24T09:54:34.4300426Z skipping: [postgresql3] => (item=/etc/repmgr/17) -2025-11-24T09:54:34.4300998Z skipping: [postgresql2] => (item=/usr/local/bin/repmgrd) -2025-11-24T09:54:34.4301648Z skipping: [postgresql1] => (item=/etc/systemd/system/repmgrd@.service) -2025-11-24T09:54:34.4302366Z skipping: [postgresql2] => (item=/usr/local/bin/detect_rogue_primary.sh) -2025-11-24T09:54:34.4303134Z skipping: [postgresql3] => (item=/etc/repmgr/17-main) -2025-11-24T09:54:34.4303883Z skipping: [postgresql1] => (item=/etc/systemd/system/repmgrd@17-main.service) -2025-11-24T09:54:34.4304597Z skipping: [postgresql2] => (item=/etc/systemd/system/detect-rogue-primary.service) -2025-11-24T09:54:34.4305318Z skipping: [postgresql3] => (item=/var/lib/postgresql/17/main/recovery.conf) -2025-11-24T09:54:34.4305989Z skipping: [postgresql1] => (item=/etc/systemd/system/repmgrd@17.service) -2025-11-24T09:54:34.4306687Z skipping: [postgresql2] => (item=/etc/systemd/system/detect-rogue-primary.timer) -2025-11-24T09:54:34.4307423Z skipping: [postgresql1] => (item=/etc/sudoers.d/postgres-postgresql-management) -2025-11-24T09:54:34.4308131Z skipping: [postgresql3] => (item=/var/lib/postgresql/17/main/standby.signal) -2025-11-24T09:54:34.4308799Z skipping: [postgresql2] => (item=/etc/systemd/system/repmgrd@.service) -2025-11-24T09:54:34.4309484Z skipping: [postgresql1] => (item=/etc/sudoers.d/postgres-postgresql-service) -2025-11-24T09:54:34.4310114Z skipping: [postgresql3] => (item=/opt/repmgr/scripts) -2025-11-24T09:54:34.4310738Z skipping: [postgresql2] => (item=/etc/systemd/system/repmgrd@17-main.service) -2025-11-24T09:54:34.4311412Z skipping: [postgresql2] => (item=/etc/systemd/system/repmgrd@17.service) -2025-11-24T09:54:34.4312030Z skipping: [postgresql3] => (item=/usr/local/bin/repmgr) -2025-11-24T09:54:34.4312555Z skipping: [postgresql1] -2025-11-24T09:54:34.4313202Z skipping: [postgresql2] => (item=/etc/sudoers.d/postgres-postgresql-management) -2025-11-24T09:54:34.4313846Z skipping: [postgresql3] => (item=/usr/local/bin/repmgrd) -2025-11-24T09:54:34.4314478Z skipping: [postgresql3] => (item=/usr/local/bin/detect_rogue_primary.sh) -2025-11-24T09:54:34.4315157Z skipping: [postgresql2] => (item=/etc/sudoers.d/postgres-postgresql-service) -2025-11-24T09:54:34.4315731Z skipping: [postgresql2] -2025-11-24T09:54:34.4316284Z skipping: [postgresql3] => (item=/etc/systemd/system/detect-rogue-primary.service) -2025-11-24T09:54:34.4317016Z skipping: [postgresql3] => (item=/etc/systemd/system/detect-rogue-primary.timer) -2025-11-24T09:54:34.4317706Z skipping: [postgresql3] => (item=/etc/systemd/system/repmgrd@.service) -2025-11-24T09:54:34.4318373Z skipping: [postgresql3] => (item=/etc/systemd/system/repmgrd@17-main.service) -2025-11-24T09:54:34.4319038Z skipping: [postgresql3] => (item=/etc/systemd/system/repmgrd@17.service) -2025-11-24T09:54:34.4319722Z skipping: [postgresql3] => (item=/etc/sudoers.d/postgres-postgresql-management) -2025-11-24T09:54:34.4320427Z skipping: [postgresql3] => (item=/etc/sudoers.d/postgres-postgresql-service) -2025-11-24T09:54:34.4321001Z skipping: [postgresql3] -2025-11-24T09:54:34.4321234Z -2025-11-24T09:54:34.4321532Z TASK [Find rogue split-brain service files] ************************************ -2025-11-24T09:54:34.4713867Z skipping: [postgresql1] -2025-11-24T09:54:34.4714465Z skipping: [postgresql2] -2025-11-24T09:54:34.4715360Z skipping: [postgresql3] -2025-11-24T09:54:34.4715660Z -2025-11-24T09:54:34.4716059Z TASK [Remove rogue split-brain service files] ********************************** -2025-11-24T09:54:34.5075854Z skipping: [postgresql1] -2025-11-24T09:54:34.5076462Z skipping: [postgresql2] -2025-11-24T09:54:34.5076985Z skipping: [postgresql3] -2025-11-24T09:54:34.5077263Z -2025-11-24T09:54:34.5077652Z TASK [Reload systemd daemon after cleanup] ************************************* -2025-11-24T09:54:35.8783670Z ok: [postgresql1] -2025-11-24T09:54:35.8784256Z ok: [postgresql3] -2025-11-24T09:54:35.8785124Z ok: [postgresql2] -2025-11-24T09:54:35.8785390Z -2025-11-24T09:54:35.8785762Z TASK [Display cleanup status] ************************************************** -2025-11-24T09:54:36.0408330Z ok: [postgresql1] => { -2025-11-24T09:54:36.0409995Z "msg": "Cleanup completed for postgresql1:\n- Installation type: Fresh\n- PostgreSQL installed: False\n- PostgreSQL data exists: False\n- repmgr config exists: False\n- Action taken: Minimal setup (directories created)\n- Ready for deployment: ✅\n" -2025-11-24T09:54:36.0411214Z } -2025-11-24T09:54:36.0411929Z ok: [postgresql2] => { -2025-11-24T09:54:36.0413535Z "msg": "Cleanup completed for postgresql2:\n- Installation type: Fresh\n- PostgreSQL installed: False\n- PostgreSQL data exists: False\n- repmgr config exists: False\n- Action taken: Minimal setup (directories created)\n- Ready for deployment: ✅\n" -2025-11-24T09:54:36.0414754Z } -2025-11-24T09:54:36.0415140Z ok: [postgresql3] => { -2025-11-24T09:54:36.0416454Z "msg": "Cleanup completed for postgresql3:\n- Installation type: Fresh\n- PostgreSQL installed: False\n- PostgreSQL data exists: False\n- repmgr config exists: False\n- Action taken: Minimal setup (directories created)\n- Ready for deployment: ✅\n" -2025-11-24T09:54:36.0417638Z } -2025-11-24T09:54:36.0417834Z -2025-11-24T09:54:36.0418158Z PLAY [Install PostgreSQL packages] ********************************************* -2025-11-24T09:54:36.0418556Z -2025-11-24T09:54:36.0418857Z TASK [Install system dependencies] ********************************************* -2025-11-24T09:54:40.3840680Z Still deploying... -2025-11-24T09:54:50.3862516Z Still deploying... -2025-11-24T09:54:52.1953923Z changed: [postgresql1] -2025-11-24T09:54:52.1954528Z changed: [postgresql3] -2025-11-24T09:54:52.1955044Z changed: [postgresql2] -2025-11-24T09:54:52.1955321Z -2025-11-24T09:54:52.1955725Z TASK [Install PostgreSQL from repository] ************************************** -2025-11-24T09:54:52.2435769Z skipping: [postgresql1] -2025-11-24T09:54:52.2436274Z skipping: [postgresql2] -2025-11-24T09:54:52.2436730Z skipping: [postgresql3] -2025-11-24T09:54:52.2436971Z -2025-11-24T09:54:52.2437321Z TASK [Check PostgreSQL package installation status] **************************** -2025-11-24T09:54:54.6826999Z ok: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:54:54.6829860Z ok: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:54:54.6831895Z ok: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:54:54.6834274Z ok: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:54:54.6836417Z ok: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:54:54.6838710Z ok: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:54:54.6840371Z ok: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:54:54.6841978Z ok: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:54:54.6843970Z ok: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:54:54.6845558Z ok: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:54:54.6847225Z ok: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:54:54.6848788Z ok: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:54:54.6850350Z ok: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:54:54.6851927Z ok: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:54:54.6853694Z ok: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:54:54.6855218Z ok: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:54:54.6856698Z ok: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:54:54.6858163Z ok: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:54:54.6859680Z ok: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:54:54.6861275Z ok: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:54:54.6863234Z ok: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:54:54.6864147Z -2025-11-24T09:54:54.6864487Z TASK [Identify PostgreSQL packages to install] ********************************* -2025-11-24T09:54:54.7998827Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.285767', 'end': '2025-11-24 09:54:52.305303', 'delta': '0:00:00.019536', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8007047Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.579203', 'end': '2025-11-24 09:54:52.596455', 'delta': '0:00:00.017252', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8014225Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.860341', 'end': '2025-11-24 09:54:52.884707', 'delta': '0:00:00.024366', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8020842Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:51.892663', 'end': '2025-11-24 09:54:51.920881', 'delta': '0:00:00.028218', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8027422Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.137564', 'end': '2025-11-24 09:54:53.164730', 'delta': '0:00:00.027166', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8033938Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.721110', 'end': '2025-11-24 09:54:52.744068', 'delta': '0:00:00.022958', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' libpq5 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8040563Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.240555', 'end': '2025-11-24 09:54:52.260025', 'delta': '0:00:00.019470', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8047360Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.440088', 'end': '2025-11-24 09:54:53.465967', 'delta': '0:00:00.025879', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8871782Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.009700', 'end': '2025-11-24 09:54:53.034784', 'delta': '0:00:00.025084', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8879994Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.572823', 'end': '2025-11-24 09:54:52.596153', 'delta': '0:00:00.023330', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8887370Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.728342', 'end': '2025-11-24 09:54:53.749075', 'delta': '0:00:00.020733', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8894172Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.285533', 'end': '2025-11-24 09:54:53.301438', 'delta': '0:00:00.015905', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common-dev 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8900903Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:52.890574', 'end': '2025-11-24 09:54:52.909289', 'delta': '0:00:00.018715', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8907726Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.989651', 'end': '2025-11-24 09:54:54.004455', 'delta': '0:00:00.014804', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8914441Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.547236', 'end': '2025-11-24 09:54:53.570848', 'delta': '0:00:00.023612', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8921153Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.229245', 'end': '2025-11-24 09:54:53.246569', 'delta': '0:00:00.017324', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8927895Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.846879', 'end': '2025-11-24 09:54:53.870220', 'delta': '0:00:00.023341', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-client-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8934622Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.520719', 'end': '2025-11-24 09:54:53.538707', 'delta': '0:00:00.017988', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8941080Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:54.121488', 'end': '2025-11-24 09:54:54.138283', 'delta': '0:00:00.016795', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8947613Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:53.819967', 'end': '2025-11-24 09:54:53.846954', 'delta': '0:00:00.026987', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8954362Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:54:54.424390', 'end': '2025-11-24 09:54:54.449504', 'delta': '0:00:00.025114', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' python3-psycopg2 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:54:54.8957846Z -2025-11-24T09:54:54.8958162Z TASK [Display PostgreSQL installation plan] ************************************ -2025-11-24T09:54:54.9444525Z ok: [postgresql2] => { -2025-11-24T09:54:54.9445653Z "msg": "PostgreSQL Installation Plan:\n- Total packages: 7\n- Already installed: 0\n- To install: 7\n" -2025-11-24T09:54:54.9446527Z } -2025-11-24T09:54:54.9447029Z ok: [postgresql1] => { -2025-11-24T09:54:54.9447850Z "msg": "PostgreSQL Installation Plan:\n- Total packages: 7\n- Already installed: 0\n- To install: 7\n" -2025-11-24T09:54:54.9449010Z } -2025-11-24T09:54:54.9449495Z ok: [postgresql3] => { -2025-11-24T09:54:54.9450298Z "msg": "PostgreSQL Installation Plan:\n- Total packages: 7\n- Already installed: 0\n- To install: 7\n" -2025-11-24T09:54:54.9451141Z } -2025-11-24T09:54:54.9451387Z -2025-11-24T09:54:54.9451783Z TASK [Download PostgreSQL packages] ******************************************** -2025-11-24T09:54:58.5938301Z changed: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:54:58.5940527Z changed: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:54:58.5942386Z changed: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:54:58.5944442Z changed: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:54:58.5946437Z changed: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:54:58.5948413Z changed: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:54:58.5950360Z changed: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:54:58.5952192Z changed: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:54:58.5953934Z changed: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:54:58.5955934Z changed: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:54:58.5957554Z changed: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:54:58.5959119Z changed: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:54:58.5960821Z changed: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:54:58.5962525Z changed: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:54:58.5964342Z changed: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:54:58.5965910Z changed: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:54:58.5967440Z changed: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:54:58.5968962Z changed: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:54:58.5970531Z changed: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:54:58.5972133Z changed: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:54:58.5973820Z changed: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:54:58.5974661Z -2025-11-24T09:54:58.5974967Z TASK [Install PostgreSQL packages] ********************************************* -2025-11-24T09:55:00.3881826Z Still deploying... -2025-11-24T09:55:10.3906636Z Still deploying... -2025-11-24T09:55:18.8142228Z changed: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:18.8144574Z changed: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:18.8146137Z changed: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:18.8148149Z changed: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:18.8149898Z changed: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:18.8151598Z changed: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:18.8153537Z changed: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:18.8155182Z changed: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:18.8156964Z changed: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:18.8158584Z changed: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:18.8160167Z changed: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:18.8161765Z changed: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:18.8163510Z changed: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:18.8165137Z changed: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:18.8166750Z changed: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:18.8168310Z changed: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:18.8169825Z changed: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:18.8171388Z changed: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:18.8173224Z changed: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:18.8174784Z changed: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:18.8176332Z changed: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:18.8177252Z -2025-11-24T09:55:18.8177560Z TASK [Clean up PostgreSQL package files] *************************************** -2025-11-24T09:55:20.3930436Z Still deploying... -2025-11-24T09:55:21.1160671Z changed: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:21.1162450Z changed: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:21.1164702Z changed: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:21.1166534Z changed: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:21.1168552Z changed: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:21.1170536Z changed: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:21.1172493Z changed: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:21.1174569Z changed: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:21.1176211Z changed: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:21.1178261Z changed: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:21.1180221Z changed: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:21.1182107Z changed: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:21.1184615Z changed: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:21.1186327Z changed: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:21.1187966Z changed: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:21.1189784Z changed: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:21.1191336Z changed: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:21.1193093Z changed: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:21.1194678Z changed: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:21.1196279Z changed: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:21.1197875Z changed: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:21.1198725Z -2025-11-24T09:55:21.1199032Z TASK [Install repmgr from repository] ****************************************** -2025-11-24T09:55:21.1524055Z skipping: [postgresql1] -2025-11-24T09:55:21.1524596Z skipping: [postgresql2] -2025-11-24T09:55:21.1525045Z skipping: [postgresql3] -2025-11-24T09:55:21.1525290Z -2025-11-24T09:55:21.1525621Z TASK [Get repmgr packages in correct order] ************************************ -2025-11-24T09:55:21.2875144Z skipping: [postgresql3] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:21.2877230Z skipping: [postgresql3] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:21.2878861Z skipping: [postgresql1] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:21.2880406Z skipping: [postgresql3] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:21.2882023Z skipping: [postgresql2] => (item={'name': 'libpq5', 'url': 'http://10.1.1.1:8080/binaries/libpq5_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:97cec98aa147de384066a027693e5a0864009e2209d170f891cb0d7583735936'}) -2025-11-24T09:55:21.2884181Z skipping: [postgresql1] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:21.2885876Z skipping: [postgresql3] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:21.2887576Z skipping: [postgresql2] => (item={'name': 'postgresql-client-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:c5ee58fea51a19753ac0496d06538c6a194705b11aef27683047e9c4ebff2c5e'}) -2025-11-24T09:55:21.2895796Z skipping: [postgresql1] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:21.2897529Z skipping: [postgresql3] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:21.2899366Z skipping: [postgresql2] => (item={'name': 'postgresql-common-dev', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common-dev_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:aa116b0861d149dcba5cbf0cb6af611d9d59bd83178ee9c66c60363ce6cf77d0'}) -2025-11-24T09:55:21.2901012Z skipping: [postgresql1] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:21.2902599Z skipping: [postgresql3] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:21.2904553Z skipping: [postgresql2] => (item={'name': 'postgresql-common', 'url': 'http://10.1.1.1:8080/binaries/postgresql-common_281.pgdg22.04+1_all.deb', 'checksum': 'sha256:317308f1eaeb8c3f93fdc3eaa5430290e5bce62b4bba3f78045ff339d6a8e7a1'}) -2025-11-24T09:55:21.2906205Z skipping: [postgresql1] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:21.2907863Z skipping: [postgresql3] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:21.2909445Z skipping: [postgresql1] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:21.2911061Z skipping: [postgresql2] => (item={'name': 'postgresql-client-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-client-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:1b3e96f9f488f234734266a7a212c7c3ac189ba763939a313906e3f2fe5492bb'}) -2025-11-24T09:55:21.2913263Z skipping: [postgresql1] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:21.2915066Z skipping: [postgresql2] => (item={'name': 'postgresql-17', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17_17.5-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:0ba8064cee5800f290485c3974081b399736feca050ad6ae06dd26d2c26cf167'}) -2025-11-24T09:55:21.2917053Z skipping: [postgresql2] => (item={'name': 'python3-psycopg2', 'url': 'http://10.1.1.1:8080/binaries/python3-psycopg2_2.9.10-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:cc2f749e3af292a67e012edeb4aa5d284f57f2d66a9a09fe5b81e5ffda73cab4'}) -2025-11-24T09:55:21.2918832Z ok: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:21.2920579Z ok: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:21.2922314Z ok: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:21.2924093Z ok: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:21.2925725Z ok: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:21.2927506Z ok: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:21.2929142Z ok: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:21.2930693Z ok: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:21.2932356Z ok: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:21.2933401Z -2025-11-24T09:55:21.2933717Z TASK [Sort repmgr packages by dependency order] ******************************** -2025-11-24T09:55:21.3569340Z ok: [postgresql1] -2025-11-24T09:55:21.3569862Z ok: [postgresql2] -2025-11-24T09:55:21.3570339Z ok: [postgresql3] -2025-11-24T09:55:21.3570582Z -2025-11-24T09:55:21.3570982Z TASK [Check repmgr package installation status] ******************************** -2025-11-24T09:55:22.2976951Z ok: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:22.2979096Z ok: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:22.2981089Z ok: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:22.2983450Z ok: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:22.2986029Z ok: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:22.2987800Z ok: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:22.2989401Z ok: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:22.2990965Z ok: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:22.2992412Z ok: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:22.2993300Z -2025-11-24T09:55:22.2993710Z TASK [Identify repmgr packages to install] ************************************* -2025-11-24T09:55:22.3736880Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:20.823059', 'end': '2025-11-24 09:55:20.842773', 'delta': '0:00:00.019714', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3744877Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.272862', 'end': '2025-11-24 09:55:21.289981', 'delta': '0:00:00.017119', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3752271Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.705346', 'end': '2025-11-24 09:55:21.729952', 'delta': '0:00:00.024606', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr-common 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3759110Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.137986', 'end': '2025-11-24 09:55:21.157380', 'delta': '0:00:00.019394', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3765981Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.970597', 'end': '2025-11-24 09:55:21.994682', 'delta': '0:00:00.024085', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3772987Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.544582', 'end': '2025-11-24 09:55:21.566854', 'delta': '0:00:00.022272', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' postgresql-17-repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3779617Z ok: [postgresql2] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.444336', 'end': '2025-11-24 09:55:21.468284', 'delta': '0:00:00.023948', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3786297Z ok: [postgresql3] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:22.236246', 'end': '2025-11-24 09:55:22.250477', 'delta': '0:00:00.014231', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3833043Z ok: [postgresql1] => (item={'changed': False, 'stdout': 'not_installed', 'stderr': '', 'rc': 0, 'cmd': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', 'start': '2025-11-24 09:55:21.832235', 'end': '2025-11-24 09:55:21.851157', 'delta': '0:00:00.018922', 'msg': '', 'invocation': {'module_args': {'_raw_params': 'if dpkg-query -W -f=\'${Package}\\t${Status}\\n\' repmgr 2>/dev/null | grep -q "install ok installed"; then\n echo "installed"\nelse\n echo "not_installed"\nfi\n', '_uses_shell': True, 'expand_argument_vars': True, 'stdin_add_newline': True, 'strip_empty_ends': True, 'argv': None, 'chdir': None, 'executable': None, 'creates': None, 'removes': None, 'stdin': None}}, 'stdout_lines': ['not_installed'], 'stderr_lines': [], 'failed': False, 'failed_when_result': False, 'item': {'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}, 'ansible_loop_var': 'item'}) -2025-11-24T09:55:22.3837233Z -2025-11-24T09:55:22.3837622Z TASK [Display repmgr installation plan] **************************************** -2025-11-24T09:55:22.4525337Z ok: [postgresql1] => { -2025-11-24T09:55:22.4527455Z "msg": "repmgr Installation Plan:\n- Installation order: repmgr-common → postgresql-17-repmgr → repmgr\n- To install: repmgr-common, postgresql-17-repmgr, repmgr\n" -2025-11-24T09:55:22.4528860Z } -2025-11-24T09:55:22.4529776Z ok: [postgresql2] => { -2025-11-24T09:55:22.4530897Z "msg": "repmgr Installation Plan:\n- Installation order: repmgr-common → postgresql-17-repmgr → repmgr\n- To install: repmgr-common, postgresql-17-repmgr, repmgr\n" -2025-11-24T09:55:22.4531986Z } -2025-11-24T09:55:22.4532385Z ok: [postgresql3] => { -2025-11-24T09:55:22.4533724Z "msg": "repmgr Installation Plan:\n- Installation order: repmgr-common → postgresql-17-repmgr → repmgr\n- To install: repmgr-common, postgresql-17-repmgr, repmgr\n" -2025-11-24T09:55:22.4534767Z } -2025-11-24T09:55:22.4534971Z -2025-11-24T09:55:22.4535301Z TASK [Download repmgr packages] ************************************************ -2025-11-24T09:55:23.8343155Z changed: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:23.8345102Z changed: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:23.8347088Z changed: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:23.8348770Z changed: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:23.8350612Z changed: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:23.8352391Z changed: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:23.8354208Z changed: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:23.8355708Z changed: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:23.8357174Z changed: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:23.8357965Z -2025-11-24T09:55:23.8358290Z TASK [Install repmgr packages in dependency order] ***************************** -2025-11-24T09:55:27.0639361Z changed: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:27.0641548Z changed: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:27.0643965Z changed: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:27.0646548Z changed: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:27.0648570Z changed: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:27.0650546Z changed: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:27.0652503Z changed: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:27.0654380Z changed: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:27.0656185Z changed: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:27.0657003Z -2025-11-24T09:55:27.0657318Z TASK [Clean up repmgr package files] ******************************************* -2025-11-24T09:55:28.0907753Z changed: [postgresql1] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:28.0909946Z changed: [postgresql2] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:28.0911967Z changed: [postgresql3] => (item={'name': 'repmgr-common', 'url': 'http://10.1.1.1:8080/binaries/repmgr-common_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:34c660c66a9710fd4f20a66cc932741d3399dbba7e7ae4b67468b3e18f65f61c'}) -2025-11-24T09:55:28.0914329Z changed: [postgresql1] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:28.0916470Z changed: [postgresql2] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:28.0918469Z changed: [postgresql3] => (item={'name': 'postgresql-17-repmgr', 'url': 'http://10.1.1.1:8080/binaries/postgresql-17-repmgr_5.5.0+debpgdg-1.pgdg22.04+1_amd64.deb', 'checksum': 'sha256:520d6ed4d540a2bb9174ac8276f8cb686c0268c13cccb89b28a9cdbd12049df8'}) -2025-11-24T09:55:28.0920353Z changed: [postgresql1] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:28.0922067Z changed: [postgresql2] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:28.0924046Z changed: [postgresql3] => (item={'name': 'repmgr', 'url': 'http://10.1.1.1:8080/binaries/repmgr_5.5.0+debpgdg-1.pgdg22.04+1_all.deb', 'checksum': 'sha256:20c280811e758106335df1eb9954b61aa552823d3129f1e38c488fbd5efe0567'}) -2025-11-24T09:55:28.0924961Z -2025-11-24T09:55:28.0925717Z TASK [Create repmgr directory structure] *************************************** -2025-11-24T09:55:29.3225206Z changed: [postgresql1] => (item={'path': '/etc/repmgr/17', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3226494Z changed: [postgresql3] => (item={'path': '/etc/repmgr/17', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3227604Z changed: [postgresql2] => (item={'path': '/etc/repmgr/17', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3229063Z changed: [postgresql1] => (item={'path': '/opt/repmgr/scripts', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3230075Z changed: [postgresql3] => (item={'path': '/opt/repmgr/scripts', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3231062Z changed: [postgresql2] => (item={'path': '/opt/repmgr/scripts', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3232054Z changed: [postgresql1] => (item={'path': '/var/log/postgresql', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3233392Z changed: [postgresql3] => (item={'path': '/var/log/postgresql', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3234370Z changed: [postgresql2] => (item={'path': '/var/log/postgresql', 'owner': 'postgres', 'group': 'postgres', 'mode': '0755'}) -2025-11-24T09:55:29.3235452Z changed: [postgresql1] => (item={'path': '/etc/systemd/system/postgresql@17-main.service.d', 'owner': 'root', 'group': 'root', 'mode': '0755'}) -2025-11-24T09:55:29.3236642Z changed: [postgresql3] => (item={'path': '/etc/systemd/system/postgresql@17-main.service.d', 'owner': 'root', 'group': 'root', 'mode': '0755'}) -2025-11-24T09:55:29.3237796Z changed: [postgresql2] => (item={'path': '/etc/systemd/system/postgresql@17-main.service.d', 'owner': 'root', 'group': 'root', 'mode': '0755'}) -2025-11-24T09:55:29.3238424Z -2025-11-24T09:55:29.3238753Z TASK [Deploy repmgrd systemd service template] ********************************* -2025-11-24T09:55:30.2385229Z changed: [postgresql1] -2025-11-24T09:55:30.2385851Z changed: [postgresql2] -2025-11-24T09:55:30.2386377Z changed: [postgresql3] -2025-11-24T09:55:30.2386683Z -2025-11-24T09:55:30.2387074Z TASK [Check PostgreSQL packages] *********************************************** -2025-11-24T09:55:30.3928514Z Still deploying... -2025-11-24T09:55:30.5866926Z ok: [postgresql2] -2025-11-24T09:55:30.5867522Z ok: [postgresql3] -2025-11-24T09:55:30.5868020Z ok: [postgresql1] -2025-11-24T09:55:30.5868325Z -2025-11-24T09:55:30.5868705Z TASK [Check repmgr packages] *************************************************** -2025-11-24T09:55:31.0789755Z ok: [postgresql3] -2025-11-24T09:55:31.0790463Z ok: [postgresql1] -2025-11-24T09:55:31.0790994Z ok: [postgresql2] -2025-11-24T09:55:31.0791241Z -2025-11-24T09:55:31.0791596Z TASK [Check PostgreSQL binaries] *********************************************** -2025-11-24T09:55:31.4467771Z ok: [postgresql3] -2025-11-24T09:55:31.4468363Z ok: [postgresql1] -2025-11-24T09:55:31.4468792Z ok: [postgresql2] -2025-11-24T09:55:31.4469021Z -2025-11-24T09:55:31.4469342Z TASK [Check repmgr binary] ***************************************************** -2025-11-24T09:55:31.8633587Z ok: [postgresql1] -2025-11-24T09:55:31.8634138Z ok: [postgresql3] -2025-11-24T09:55:31.8634622Z ok: [postgresql2] -2025-11-24T09:55:31.8634887Z -2025-11-24T09:55:31.8635286Z TASK [Display installation summary] ******************************************** -2025-11-24T09:55:32.0298825Z ok: [postgresql1] => { -2025-11-24T09:55:32.0302958Z "msg": "===== INSTALLATION COMPLETE =====\n\nPostgreSQL Packages:\n=== PostgreSQL Packages ===\npostgresql-17: ii\npostgresql-17-repmgr: ii\n\nrepmgr Packages:\n=== repmgr Packages ===\npostgresql-17-repmgr: ii\nrepmgr: ii\nrepmgr-common: ii\n\nBinaries:\n=== PostgreSQL Binaries ===\n-rwxr-xr-x 1 root root 11056864 May 6 2025 /usr/lib/postgresql/17/bin/postgres\npostgres: FOUND\n-rwxr-xr-x 1 root root 786008 May 6 2025 /usr/lib/postgresql/17/bin/psql\npsql: FOUND\n=== repmgr Binary ===\nlrwxrwxrwx 1 root root 37 Jan 2 2025 /usr/bin/repmgr -> ../share/postgresql-common/pg_wrapper\nrepmgr: FOUND\n\nNote: Version checks will work after cluster configuration.\nThis is an installation-only playbook; cluster setup comes next.\n" -2025-11-24T09:55:32.0306404Z } -2025-11-24T09:55:32.0306866Z ok: [postgresql2] => { -2025-11-24T09:55:32.0309893Z "msg": "===== INSTALLATION COMPLETE =====\n\nPostgreSQL Packages:\n=== PostgreSQL Packages ===\npostgresql-17: ii\npostgresql-17-repmgr: ii\n\nrepmgr Packages:\n=== repmgr Packages ===\npostgresql-17-repmgr: ii\nrepmgr: ii\nrepmgr-common: ii\n\nBinaries:\n=== PostgreSQL Binaries ===\n-rwxr-xr-x 1 root root 11056864 May 6 2025 /usr/lib/postgresql/17/bin/postgres\npostgres: FOUND\n-rwxr-xr-x 1 root root 786008 May 6 2025 /usr/lib/postgresql/17/bin/psql\npsql: FOUND\n=== repmgr Binary ===\nlrwxrwxrwx 1 root root 37 Jan 2 2025 /usr/bin/repmgr -> ../share/postgresql-common/pg_wrapper\nrepmgr: FOUND\n\nNote: Version checks will work after cluster configuration.\nThis is an installation-only playbook; cluster setup comes next.\n" -2025-11-24T09:55:32.0312878Z } -2025-11-24T09:55:32.0313269Z ok: [postgresql3] => { -2025-11-24T09:55:32.0315957Z "msg": "===== INSTALLATION COMPLETE =====\n\nPostgreSQL Packages:\n=== PostgreSQL Packages ===\npostgresql-17: ii\npostgresql-17-repmgr: ii\n\nrepmgr Packages:\n=== repmgr Packages ===\npostgresql-17-repmgr: ii\nrepmgr: ii\nrepmgr-common: ii\n\nBinaries:\n=== PostgreSQL Binaries ===\n-rwxr-xr-x 1 root root 11056864 May 6 2025 /usr/lib/postgresql/17/bin/postgres\npostgres: FOUND\n-rwxr-xr-x 1 root root 786008 May 6 2025 /usr/lib/postgresql/17/bin/psql\npsql: FOUND\n=== repmgr Binary ===\nlrwxrwxrwx 1 root root 37 Jan 2 2025 /usr/bin/repmgr -> ../share/postgresql-common/pg_wrapper\nrepmgr: FOUND\n\nNote: Version checks will work after cluster configuration.\nThis is an installation-only playbook; cluster setup comes next.\n" -2025-11-24T09:55:32.0318670Z } -2025-11-24T09:55:32.0318872Z -2025-11-24T09:55:32.0321214Z PLAY [Manage PostgreSQL passwords in Kubernetes Secrets] *********************** -2025-11-24T09:55:32.0321672Z -2025-11-24T09:55:32.0321983Z TASK [Validate kubectl is accessible] ****************************************** -2025-11-24T09:55:40.3945332Z Still deploying... -2025-11-24T09:55:50.4006075Z Still deploying... -2025-11-24T09:56:00.3978037Z Still deploying... -2025-11-24T09:56:10.3992015Z Still deploying... -2025-11-24T09:56:20.4004007Z Still deploying... -2025-11-24T09:56:30.4021996Z Still deploying... -2025-11-24T09:56:40.4042931Z Still deploying... -2025-11-24T09:56:50.4056863Z Still deploying... -2025-11-24T09:57:00.4072308Z Still deploying... -2025-11-24T09:57:10.4086268Z Still deploying... -2025-11-24T09:57:20.4115119Z Still deploying... -2025-11-24T09:57:30.4119578Z Still deploying... -2025-11-24T09:57:40.4134334Z Still deploying... -2025-11-24T09:57:50.4149920Z Still deploying... -2025-11-24T09:58:00.4168354Z Still deploying... -2025-11-24T09:58:02.5136716Z ok: [postgresql1 -> localhost] -2025-11-24T09:58:02.5138234Z -2025-11-24T09:58:02.5138995Z TASK [Fail if kubectl is not accessible] *************************************** -2025-11-24T09:58:02.5459762Z fatal: [postgresql1 -> localhost]: FAILED! => {"changed": false, "msg": "ERROR: Cannot access Kubernetes cluster!\n\nPlease ensure:\n1. kubectl is installed and accessible\n2. KUBECONFIG is set: export KUBECONFIG=/path/to/kubeconfig\n3. kubectl can connect: kubectl cluster-info\n\nCurrent KUBECONFIG: /wire-server-deploy/ansible/inventory/offline/artifacts/admin.conf\nError: E1124 09:56:02.388577 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nE1124 09:56:32.389206 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nE1124 09:57:02.389849 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nE1124 09:57:32.391151 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nE1124 09:58:02.392592 10216 memcache.go:265] couldn't get current server API group list: Get \"https://10.1.1.254:6443/api?timeout=32s\": dial tcp 10.1.1.254:6443: i/o timeout\nUnable to connect to the server: dial tcp 10.1.1.254:6443: i/o timeout\n"} -2025-11-24T09:58:02.5464855Z -2025-11-24T09:58:02.5465131Z NO MORE HOSTS LEFT ************************************************************* -2025-11-24T09:58:02.5465530Z -2025-11-24T09:58:02.5465783Z PLAY RECAP ********************************************************************* -2025-11-24T09:58:02.5466540Z postgresql1 : ok=32 changed=9 unreachable=0 failed=1 skipped=14 rescued=0 ignored=0 -2025-11-24T09:58:02.5467436Z postgresql2 : ok=31 changed=9 unreachable=0 failed=0 skipped=14 rescued=0 ignored=0 -2025-11-24T09:58:02.5468467Z postgresql3 : ok=31 changed=9 unreachable=0 failed=0 skipped=14 rescued=0 ignored=0 -2025-11-24T09:58:02.5468958Z -2025-11-24T09:58:11.0535265Z random_pet.adminhost: Refreshing state... [id=relative-moray] -2025-11-24T09:58:11.0538166Z tls_private_key.admin: Refreshing state... [id=9a5802b646d18231eda9b090be5144478e6bd632] -2025-11-24T09:58:11.0539979Z random_pet.minio[1]: Refreshing state... [id=striking-malamute] -2025-11-24T09:58:11.0543540Z random_pet.cassandra[2]: Refreshing state... [id=improved-teal] -2025-11-24T09:58:11.0553665Z random_pet.postgresql[0]: Refreshing state... [id=glorious-calf] -2025-11-24T09:58:11.0557319Z random_pet.assethost: Refreshing state... [id=settling-barnacle] -2025-11-24T09:58:11.0569860Z random_pet.postgresql[1]: Refreshing state... [id=hardy-glider] -2025-11-24T09:58:11.0605675Z random_pet.cassandra[1]: Refreshing state... [id=noted-manatee] -2025-11-24T09:58:11.0607461Z random_pet.cassandra[0]: Refreshing state... [id=tops-fowl] -2025-11-24T09:58:11.0611000Z random_pet.minio[0]: Refreshing state... [id=aware-zebra] -2025-11-24T09:58:11.0685130Z random_pet.postgresql[2]: Refreshing state... [id=sound-marten] -2025-11-24T09:58:11.0696573Z random_pet.kubenode[0]: Refreshing state... [id=super-marlin] -2025-11-24T09:58:11.0730426Z random_pet.elasticsearch[1]: Refreshing state... [id=renewing-bear] -2025-11-24T09:58:11.0732076Z random_pet.elasticsearch[0]: Refreshing state... [id=amusing-pup] -2025-11-24T09:58:11.0777050Z data.hcloud_datacenters.available: Reading... -2025-11-24T09:58:11.0811912Z random_pet.kubenode[1]: Refreshing state... [id=teaching-gobbler] -2025-11-24T09:58:11.0820787Z random_pet.kubenode[2]: Refreshing state... [id=renewed-asp] -2025-11-24T09:58:11.0849228Z data.hcloud_server_types.available: Reading... -2025-11-24T09:58:11.0863798Z hcloud_ssh_key.adminhost: Refreshing state... [id=104061702] -2025-11-24T09:58:11.6096396Z data.hcloud_datacenters.available: Read complete after 1s [id=5dd4ebdac62609c834f7768f02286b798bd82a38] -2025-11-24T09:58:11.7338545Z data.hcloud_server_types.available: Read complete after 1s [id=166277662d9b7990b1711b6545d691c4fc52eb3f] -2025-11-24T09:58:11.7412866Z null_resource.deployment_info: Refreshing state... [id=6097919591817865521] -2025-11-24T09:58:11.7463501Z random_pet.main: Refreshing state... [id=guided-octopus] -2025-11-24T09:58:11.7521449Z hcloud_network.main: Refreshing state... [id=11673781] -2025-11-24T09:58:11.8811966Z hcloud_network_subnet.main: Refreshing state... [id=11673781-10.1.1.0/24] -2025-11-24T09:58:12.0124178Z hcloud_server.assethost: Refreshing state... [id=113859098] -2025-11-24T09:58:12.0190915Z hcloud_server.adminhost: Refreshing state... [id=113859097] -2025-11-24T09:58:12.0192602Z hcloud_server.cassandra[2]: Refreshing state... [id=113859135] -2025-11-24T09:58:12.0194254Z hcloud_server.postgresql[0]: Refreshing state... [id=113859092] -2025-11-24T09:58:12.0195858Z hcloud_server.elasticsearch[1]: Refreshing state... [id=113859143] -2025-11-24T09:58:12.0197374Z hcloud_server.cassandra[0]: Refreshing state... [id=113859095] -2025-11-24T09:58:12.0198907Z hcloud_server.elasticsearch[0]: Refreshing state... [id=113859093] -2025-11-24T09:58:12.0200608Z hcloud_server.postgresql[2]: Refreshing state... [id=113859145] -2025-11-24T09:58:12.0215501Z hcloud_server.cassandra[1]: Refreshing state... [id=113859144] -2025-11-24T09:58:12.0221939Z hcloud_server.postgresql[1]: Refreshing state... [id=113859131] -2025-11-24T09:58:12.1632318Z hcloud_server.kubenode[0]: Refreshing state... [id=113859101] -2025-11-24T09:58:12.1767625Z hcloud_server.kubenode[2]: Refreshing state... [id=113859096] -2025-11-24T09:58:12.1805649Z hcloud_server.kubenode[1]: Refreshing state... [id=113859100] -2025-11-24T09:58:12.1815792Z hcloud_server.minio[0]: Refreshing state... [id=113859094] -2025-11-24T09:58:12.1826406Z hcloud_server.minio[1]: Refreshing state... [id=113859099] -2025-11-24T09:58:12.5365814Z -2025-11-24T09:58:12.5366965Z Terraform used the selected providers to generate the following execution -2025-11-24T09:58:12.5368564Z plan. Resource actions are indicated with the following symbols: -2025-11-24T09:58:12.5369818Z - destroy -2025-11-24T09:58:12.5370237Z -2025-11-24T09:58:12.5370609Z Terraform will perform the following actions: -2025-11-24T09:58:12.5371166Z -2025-11-24T09:58:12.5371704Z  # hcloud_network.main will be destroyed -2025-11-24T09:58:12.5373072Z  - resource "hcloud_network" "main" { -2025-11-24T09:58:12.5374242Z - delete_protection = false -> null -2025-11-24T09:58:12.5375452Z - expose_routes_to_vswitch = false -> null -2025-11-24T09:58:12.5376590Z - id = "11673781" -> null -2025-11-24T09:58:12.5377721Z - ip_range = "10.1.0.0/16" -> null -2025-11-24T09:58:12.5378858Z - labels = {} -> null -2025-11-24T09:58:12.5380058Z - name = "main-guided-octopus" -> null -2025-11-24T09:58:12.5380996Z } -2025-11-24T09:58:12.5381343Z -2025-11-24T09:58:12.5381938Z  # hcloud_network_subnet.main will be destroyed -2025-11-24T09:58:12.5383246Z  - resource "hcloud_network_subnet" "main" { -2025-11-24T09:58:12.5384361Z - gateway = "10.1.0.1" -> null -2025-11-24T09:58:12.5385481Z - id = "11673781-10.1.1.0/24" -> null -2025-11-24T09:58:12.5386592Z - ip_range = "10.1.1.0/24" -> null -2025-11-24T09:58:12.5387683Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5388789Z - network_zone = "eu-central" -> null -2025-11-24T09:58:12.5389880Z - type = "cloud" -> null -2025-11-24T09:58:12.5390732Z } -2025-11-24T09:58:12.5391162Z -2025-11-24T09:58:12.5391738Z  # hcloud_server.adminhost will be destroyed -2025-11-24T09:58:12.5393156Z  - resource "hcloud_server" "adminhost" { -2025-11-24T09:58:12.5394340Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5395516Z - backups = false -> null -2025-11-24T09:58:12.5397125Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5398356Z - delete_protection = false -> null -2025-11-24T09:58:12.5399520Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5400635Z - id = "113859097" -> null -2025-11-24T09:58:12.5401780Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5403157Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5404562Z - ipv4_address = "23.88.33.8" -> null -2025-11-24T09:58:12.5408665Z - ipv6_address = "2a01:4f8:c17:1e5a::1" -> null -2025-11-24T09:58:12.5410134Z - ipv6_network = "2a01:4f8:c17:1e5a::/64" -> null -2025-11-24T09:58:12.5411338Z - keep_disk = false -> null -2025-11-24T09:58:12.5412497Z - labels = {} -> null -2025-11-24T09:58:12.5414064Z - location = "fsn1" -> null -2025-11-24T09:58:12.5415316Z - name = "adminhost-relative-moray" -> null -2025-11-24T09:58:12.5416418Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5417590Z - primary_disk_size = 80 -> null -2025-11-24T09:58:12.5418763Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5419906Z - server_type = "cx33" -> null -2025-11-24T09:58:12.5421036Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5422086Z - ssh_keys = [ -2025-11-24T09:58:12.5423287Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5424230Z ] -> null -2025-11-24T09:58:12.5425190Z - status = "running" -> null -2025-11-24T09:58:12.5426210Z # (1 unchanged attribute hidden) -2025-11-24T09:58:12.5426747Z -2025-11-24T09:58:12.5427122Z - network { -2025-11-24T09:58:12.5427996Z - alias_ips = [] -> null -2025-11-24T09:58:12.5429048Z - ip = "10.1.1.10" -> null -2025-11-24T09:58:12.5430164Z - mac_address = "86:00:00:90:80:81" -> null -2025-11-24T09:58:12.5431266Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5432183Z } -2025-11-24T09:58:12.5432944Z } -2025-11-24T09:58:12.5433273Z -2025-11-24T09:58:12.5433796Z  # hcloud_server.assethost will be destroyed -2025-11-24T09:58:12.5434895Z  - resource "hcloud_server" "assethost" { -2025-11-24T09:58:12.5436023Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5437185Z - backups = false -> null -2025-11-24T09:58:12.5438357Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5439529Z - delete_protection = false -> null -2025-11-24T09:58:12.5440671Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5441785Z - id = "113859098" -> null -2025-11-24T09:58:12.5443098Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5444287Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5445434Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5446830Z - keep_disk = false -> null -2025-11-24T09:58:12.5447954Z - labels = {} -> null -2025-11-24T09:58:12.5449023Z - location = "fsn1" -> null -2025-11-24T09:58:12.5450248Z - name = "assethost-settling-barnacle" -> null -2025-11-24T09:58:12.5451399Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5452486Z - primary_disk_size = 80 -> null -2025-11-24T09:58:12.5453940Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5455091Z - server_type = "cx33" -> null -2025-11-24T09:58:12.5456241Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5457267Z - ssh_keys = [ -2025-11-24T09:58:12.5458197Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5459320Z ] -> null -2025-11-24T09:58:12.5460264Z - status = "running" -> null -2025-11-24T09:58:12.5461315Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5461852Z -2025-11-24T09:58:12.5462217Z - network { -2025-11-24T09:58:12.5463342Z - alias_ips = [] -> null -2025-11-24T09:58:12.5464396Z - ip = "10.1.1.1" -> null -2025-11-24T09:58:12.5465520Z - mac_address = "86:00:00:90:80:8a" -> null -2025-11-24T09:58:12.5466594Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5467447Z } -2025-11-24T09:58:12.5467783Z -2025-11-24T09:58:12.5468165Z - public_net { -2025-11-24T09:58:12.5469053Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5470088Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5471111Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5472134Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5473142Z } -2025-11-24T09:58:12.5473762Z } -2025-11-24T09:58:12.5474092Z -2025-11-24T09:58:12.5474676Z  # hcloud_server.cassandra[0] will be destroyed -2025-11-24T09:58:12.5475780Z  - resource "hcloud_server" "cassandra" { -2025-11-24T09:58:12.5476908Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5478051Z - backups = false -> null -2025-11-24T09:58:12.5479211Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5480376Z - delete_protection = false -> null -2025-11-24T09:58:12.5481505Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5482611Z - id = "113859095" -> null -2025-11-24T09:58:12.5483892Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5485086Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5486235Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5487361Z - keep_disk = false -> null -2025-11-24T09:58:12.5488457Z - labels = {} -> null -2025-11-24T09:58:12.5489572Z - location = "fsn1" -> null -2025-11-24T09:58:12.5490765Z - name = "cassandra-tops-fowl" -> null -2025-11-24T09:58:12.5492204Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5493519Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5494631Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5495784Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5496933Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5497957Z - ssh_keys = [ -2025-11-24T09:58:12.5499045Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5499946Z ] -> null -2025-11-24T09:58:12.5500892Z - status = "running" -> null -2025-11-24T09:58:12.5501928Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5502477Z -2025-11-24T09:58:12.5503108Z - network { -2025-11-24T09:58:12.5504016Z - alias_ips = [] -> null -2025-11-24T09:58:12.5505213Z - ip = "10.1.1.5" -> null -2025-11-24T09:58:12.5506277Z - mac_address = "86:00:00:90:80:86" -> null -2025-11-24T09:58:12.5507364Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5508222Z } -2025-11-24T09:58:12.5508564Z -2025-11-24T09:58:12.5508947Z - public_net { -2025-11-24T09:58:12.5509864Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5510915Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5511923Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5513120Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5513954Z } -2025-11-24T09:58:12.5514572Z } -2025-11-24T09:58:12.5514903Z -2025-11-24T09:58:12.5515484Z  # hcloud_server.cassandra[1] will be destroyed -2025-11-24T09:58:12.5516523Z  - resource "hcloud_server" "cassandra" { -2025-11-24T09:58:12.5517653Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5518802Z - backups = false -> null -2025-11-24T09:58:12.5519978Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5521145Z - delete_protection = false -> null -2025-11-24T09:58:12.5522006Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5522835Z - id = "113859144" -> null -2025-11-24T09:58:12.5523547Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5524235Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5524915Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5525568Z - keep_disk = false -> null -2025-11-24T09:58:12.5526202Z - labels = {} -> null -2025-11-24T09:58:12.5526843Z - location = "fsn1" -> null -2025-11-24T09:58:12.5527536Z - name = "cassandra-noted-manatee" -> null -2025-11-24T09:58:12.5528215Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5528863Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5529517Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5530176Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5531047Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5531660Z - ssh_keys = [ -2025-11-24T09:58:12.5532260Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5532983Z ] -> null -2025-11-24T09:58:12.5533550Z - status = "running" -> null -2025-11-24T09:58:12.5534159Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5534473Z -2025-11-24T09:58:12.5534686Z - network { -2025-11-24T09:58:12.5535287Z - alias_ips = [] -> null -2025-11-24T09:58:12.5535888Z - ip = "10.1.1.15" -> null -2025-11-24T09:58:12.5536524Z - mac_address = "86:00:00:90:80:68" -> null -2025-11-24T09:58:12.5537155Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5537655Z } -2025-11-24T09:58:12.5537853Z -2025-11-24T09:58:12.5538070Z - public_net { -2025-11-24T09:58:12.5538680Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5539278Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5539859Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5540433Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5540916Z } -2025-11-24T09:58:12.5541279Z } -2025-11-24T09:58:12.5541474Z -2025-11-24T09:58:12.5541804Z  # hcloud_server.cassandra[2] will be destroyed -2025-11-24T09:58:12.5542430Z  - resource "hcloud_server" "cassandra" { -2025-11-24T09:58:12.5543277Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5543947Z - backups = false -> null -2025-11-24T09:58:12.5544617Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5545284Z - delete_protection = false -> null -2025-11-24T09:58:12.5545935Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5546559Z - id = "113859135" -> null -2025-11-24T09:58:12.5547199Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5547859Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5548522Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5549150Z - keep_disk = false -> null -2025-11-24T09:58:12.5549769Z - labels = {} -> null -2025-11-24T09:58:12.5550393Z - location = "fsn1" -> null -2025-11-24T09:58:12.5551076Z - name = "cassandra-improved-teal" -> null -2025-11-24T09:58:12.5551750Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5552392Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5553213Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5553861Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5554505Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5555095Z - ssh_keys = [ -2025-11-24T09:58:12.5555643Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5556170Z ] -> null -2025-11-24T09:58:12.5556722Z - status = "running" -> null -2025-11-24T09:58:12.5557319Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5557777Z -2025-11-24T09:58:12.5557994Z - network { -2025-11-24T09:58:12.5558487Z - alias_ips = [] -> null -2025-11-24T09:58:12.5559090Z - ip = "10.1.1.14" -> null -2025-11-24T09:58:12.5559723Z - mac_address = "86:00:00:90:80:6c" -> null -2025-11-24T09:58:12.5560353Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5560838Z } -2025-11-24T09:58:12.5561035Z -2025-11-24T09:58:12.5561329Z - public_net { -2025-11-24T09:58:12.5561847Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5562436Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5563452Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5564441Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5565261Z } -2025-11-24T09:58:12.5565855Z } -2025-11-24T09:58:12.5566280Z -2025-11-24T09:58:12.5566865Z  # hcloud_server.elasticsearch[0] will be destroyed -2025-11-24T09:58:12.5567976Z  - resource "hcloud_server" "elasticsearch" { -2025-11-24T09:58:12.5569024Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5570082Z - backups = false -> null -2025-11-24T09:58:12.5571143Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5572235Z - delete_protection = false -> null -2025-11-24T09:58:12.5573444Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5574468Z - id = "113859093" -> null -2025-11-24T09:58:12.5575518Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5576638Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5577720Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5578772Z - keep_disk = false -> null -2025-11-24T09:58:12.5579789Z - labels = {} -> null -2025-11-24T09:58:12.5580820Z - location = "fsn1" -> null -2025-11-24T09:58:12.5581972Z - name = "elasticsearch-amusing-pup" -> null -2025-11-24T09:58:12.5583259Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5584328Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5585429Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5586551Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5587649Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5588665Z - ssh_keys = [ -2025-11-24T09:58:12.5589581Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5590462Z ] -> null -2025-11-24T09:58:12.5591359Z - status = "running" -> null -2025-11-24T09:58:12.5592338Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5593043Z -2025-11-24T09:58:12.5593402Z - network { -2025-11-24T09:58:12.5594205Z - alias_ips = [] -> null -2025-11-24T09:58:12.5595222Z - ip = "10.1.1.3" -> null -2025-11-24T09:58:12.5596298Z - mac_address = "86:00:00:90:80:88" -> null -2025-11-24T09:58:12.5597181Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5597862Z } -2025-11-24T09:58:12.5598098Z -2025-11-24T09:58:12.5598502Z - public_net { -2025-11-24T09:58:12.5599276Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5600171Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5601188Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5601922Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5602593Z } -2025-11-24T09:58:12.5603244Z } -2025-11-24T09:58:12.5603449Z -2025-11-24T09:58:12.5603933Z  # hcloud_server.elasticsearch[1] will be destroyed -2025-11-24T09:58:12.5604809Z  - resource "hcloud_server" "elasticsearch" { -2025-11-24T09:58:12.5605489Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5606156Z - backups = false -> null -2025-11-24T09:58:12.5606937Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5607613Z - delete_protection = false -> null -2025-11-24T09:58:12.5608264Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5608886Z - id = "113859143" -> null -2025-11-24T09:58:12.5609526Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5610202Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5611266Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5612091Z - keep_disk = false -> null -2025-11-24T09:58:12.5622947Z - labels = {} -> null -2025-11-24T09:58:12.5624155Z - location = "fsn1" -> null -2025-11-24T09:58:12.5625461Z - name = "elasticsearch-renewing-bear" -> null -2025-11-24T09:58:12.5626773Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5627934Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5629107Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5630355Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5631572Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5632823Z - ssh_keys = [ -2025-11-24T09:58:12.5633821Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5634782Z ] -> null -2025-11-24T09:58:12.5635779Z - status = "running" -> null -2025-11-24T09:58:12.5636836Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5637393Z -2025-11-24T09:58:12.5637775Z - network { -2025-11-24T09:58:12.5638615Z - alias_ips = [] -> null -2025-11-24T09:58:12.5639685Z - ip = "10.1.1.12" -> null -2025-11-24T09:58:12.5640794Z - mac_address = "86:00:00:90:80:70" -> null -2025-11-24T09:58:12.5641954Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5643010Z } -2025-11-24T09:58:12.5643394Z -2025-11-24T09:58:12.5643824Z - public_net { -2025-11-24T09:58:12.5644779Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5645867Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5647259Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5648372Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5649298Z } -2025-11-24T09:58:12.5649939Z } -2025-11-24T09:58:12.5650302Z -2025-11-24T09:58:12.5650887Z  # hcloud_server.kubenode[0] will be destroyed -2025-11-24T09:58:12.5652046Z  - resource "hcloud_server" "kubenode" { -2025-11-24T09:58:12.5653392Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5654557Z - backups = false -> null -2025-11-24T09:58:12.5655895Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5657080Z - delete_protection = false -> null -2025-11-24T09:58:12.5658262Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5659450Z - id = "113859101" -> null -2025-11-24T09:58:12.5660612Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5661917Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5663248Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5664379Z - keep_disk = false -> null -2025-11-24T09:58:12.5665547Z - labels = {} -> null -2025-11-24T09:58:12.5666726Z - location = "fsn1" -> null -2025-11-24T09:58:12.5667996Z - name = "kubenode-super-marlin" -> null -2025-11-24T09:58:12.5669196Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5670398Z - primary_disk_size = 80 -> null -2025-11-24T09:58:12.5671648Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5672983Z - server_type = "cx33" -> null -2025-11-24T09:58:12.5674150Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5675245Z - ssh_keys = [ -2025-11-24T09:58:12.5676232Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5677199Z ] -> null -2025-11-24T09:58:12.5678199Z - status = "running" -> null -2025-11-24T09:58:12.5679251Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5679787Z -2025-11-24T09:58:12.5680150Z - network { -2025-11-24T09:58:12.5681010Z - alias_ips = [] -> null -2025-11-24T09:58:12.5682123Z - ip = "10.1.1.8" -> null -2025-11-24T09:58:12.5683574Z - mac_address = "86:00:00:90:80:83" -> null -2025-11-24T09:58:12.5684785Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5685619Z } -2025-11-24T09:58:12.5685963Z -2025-11-24T09:58:12.5686364Z - public_net { -2025-11-24T09:58:12.5687313Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5688373Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5689362Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5690398Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5691235Z } -2025-11-24T09:58:12.5691833Z } -2025-11-24T09:58:12.5692158Z -2025-11-24T09:58:12.5692904Z  # hcloud_server.kubenode[1] will be destroyed -2025-11-24T09:58:12.5693994Z  - resource "hcloud_server" "kubenode" { -2025-11-24T09:58:12.5695383Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5696548Z - backups = false -> null -2025-11-24T09:58:12.5697673Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5698825Z - delete_protection = false -> null -2025-11-24T09:58:12.5699936Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5701012Z - id = "113859100" -> null -2025-11-24T09:58:12.5702224Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5703573Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5704706Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5705804Z - keep_disk = false -> null -2025-11-24T09:58:12.5706871Z - labels = {} -> null -2025-11-24T09:58:12.5708131Z - location = "fsn1" -> null -2025-11-24T09:58:12.5709359Z - name = "kubenode-teaching-gobbler" -> null -2025-11-24T09:58:12.5710524Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5711626Z - primary_disk_size = 80 -> null -2025-11-24T09:58:12.5712900Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5714044Z - server_type = "cx33" -> null -2025-11-24T09:58:12.5715166Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5716176Z - ssh_keys = [ -2025-11-24T09:58:12.5717097Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5717986Z ] -> null -2025-11-24T09:58:12.5718924Z - status = "running" -> null -2025-11-24T09:58:12.5719942Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5720472Z -2025-11-24T09:58:12.5720831Z - network { -2025-11-24T09:58:12.5721665Z - alias_ips = [] -> null -2025-11-24T09:58:12.5722818Z - ip = "10.1.1.9" -> null -2025-11-24T09:58:12.5723907Z - mac_address = "86:00:00:90:80:82" -> null -2025-11-24T09:58:12.5724973Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5725808Z } -2025-11-24T09:58:12.5726139Z -2025-11-24T09:58:12.5726504Z - public_net { -2025-11-24T09:58:12.5727367Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5728373Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5729363Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5730361Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5731185Z } -2025-11-24T09:58:12.5731781Z } -2025-11-24T09:58:12.5732301Z -2025-11-24T09:58:12.5733079Z  # hcloud_server.kubenode[2] will be destroyed -2025-11-24T09:58:12.5734157Z  - resource "hcloud_server" "kubenode" { -2025-11-24T09:58:12.5735273Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5736401Z - backups = false -> null -2025-11-24T09:58:12.5737534Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5738687Z - delete_protection = false -> null -2025-11-24T09:58:12.5740024Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5741109Z - id = "113859096" -> null -2025-11-24T09:58:12.5742209Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5743533Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5744657Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5745755Z - keep_disk = false -> null -2025-11-24T09:58:12.5746940Z - labels = {} -> null -2025-11-24T09:58:12.5748020Z - location = "fsn1" -> null -2025-11-24T09:58:12.5749182Z - name = "kubenode-renewed-asp" -> null -2025-11-24T09:58:12.5750311Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5751394Z - primary_disk_size = 80 -> null -2025-11-24T09:58:12.5752797Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5753899Z - server_type = "cx33" -> null -2025-11-24T09:58:12.5755003Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5756023Z - ssh_keys = [ -2025-11-24T09:58:12.5756957Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5757841Z ] -> null -2025-11-24T09:58:12.5758750Z - status = "running" -> null -2025-11-24T09:58:12.5759835Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5760419Z -2025-11-24T09:58:12.5760830Z - network { -2025-11-24T09:58:12.5761733Z - alias_ips = [] -> null -2025-11-24T09:58:12.5763015Z - ip = "10.1.1.4" -> null -2025-11-24T09:58:12.5764169Z - mac_address = "86:00:00:90:80:87" -> null -2025-11-24T09:58:12.5764906Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5765758Z } -2025-11-24T09:58:12.5766096Z -2025-11-24T09:58:12.5766425Z - public_net { -2025-11-24T09:58:12.5766968Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5767584Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5768180Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5768773Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5769264Z } -2025-11-24T09:58:12.5769632Z } -2025-11-24T09:58:12.5769832Z -2025-11-24T09:58:12.5770141Z  # hcloud_server.minio[0] will be destroyed -2025-11-24T09:58:12.5770766Z  - resource "hcloud_server" "minio" { -2025-11-24T09:58:12.5771416Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5772100Z - backups = false -> null -2025-11-24T09:58:12.5773010Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5773718Z - delete_protection = false -> null -2025-11-24T09:58:12.5774378Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5775020Z - id = "113859094" -> null -2025-11-24T09:58:12.5775671Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5776356Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5777204Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5777869Z - keep_disk = false -> null -2025-11-24T09:58:12.5778502Z - labels = {} -> null -2025-11-24T09:58:12.5779137Z - location = "fsn1" -> null -2025-11-24T09:58:12.5779807Z - name = "minio-aware-zebra" -> null -2025-11-24T09:58:12.5780474Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5781216Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5781870Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5782526Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5783403Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5784011Z - ssh_keys = [ -2025-11-24T09:58:12.5784572Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5785309Z ] -> null -2025-11-24T09:58:12.5785870Z - status = "running" -> null -2025-11-24T09:58:12.5786485Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5786802Z -2025-11-24T09:58:12.5787018Z - network { -2025-11-24T09:58:12.5787516Z - alias_ips = [] -> null -2025-11-24T09:58:12.5788135Z - ip = "10.1.1.6" -> null -2025-11-24T09:58:12.5788775Z - mac_address = "86:00:00:90:80:85" -> null -2025-11-24T09:58:12.5789413Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5789919Z } -2025-11-24T09:58:12.5790117Z -2025-11-24T09:58:12.5790338Z - public_net { -2025-11-24T09:58:12.5790864Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5791470Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5792058Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5792760Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5793265Z } -2025-11-24T09:58:12.5793634Z } -2025-11-24T09:58:12.5793836Z -2025-11-24T09:58:12.5794141Z  # hcloud_server.minio[1] will be destroyed -2025-11-24T09:58:12.5794756Z  - resource "hcloud_server" "minio" { -2025-11-24T09:58:12.5795399Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5796067Z - backups = false -> null -2025-11-24T09:58:12.5796729Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5797410Z - delete_protection = false -> null -2025-11-24T09:58:12.5798063Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5798699Z - id = "113859099" -> null -2025-11-24T09:58:12.5799348Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5800017Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5800684Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5801334Z - keep_disk = false -> null -2025-11-24T09:58:12.5801962Z - labels = {} -> null -2025-11-24T09:58:12.5802589Z - location = "fsn1" -> null -2025-11-24T09:58:12.5803381Z - name = "minio-striking-malamute" -> null -2025-11-24T09:58:12.5804202Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5804867Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5805518Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5806170Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5806831Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5807430Z - ssh_keys = [ -2025-11-24T09:58:12.5808055Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5808587Z ] -> null -2025-11-24T09:58:12.5809141Z - status = "running" -> null -2025-11-24T09:58:12.5809748Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5810070Z -2025-11-24T09:58:12.5810278Z - network { -2025-11-24T09:58:12.5810783Z - alias_ips = [] -> null -2025-11-24T09:58:12.5811476Z - ip = "10.1.1.7" -> null -2025-11-24T09:58:12.5812114Z - mac_address = "86:00:00:90:80:84" -> null -2025-11-24T09:58:12.5812954Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5813466Z } -2025-11-24T09:58:12.5813669Z -2025-11-24T09:58:12.5813896Z - public_net { -2025-11-24T09:58:12.5814423Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5815026Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5815608Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5816202Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5816701Z } -2025-11-24T09:58:12.5817064Z } -2025-11-24T09:58:12.5817261Z -2025-11-24T09:58:12.5817603Z  # hcloud_server.postgresql[0] will be destroyed -2025-11-24T09:58:12.5818251Z  - resource "hcloud_server" "postgresql" { -2025-11-24T09:58:12.5818903Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5819560Z - backups = false -> null -2025-11-24T09:58:12.5820223Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5820897Z - delete_protection = false -> null -2025-11-24T09:58:12.5821555Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5822182Z - id = "113859092" -> null -2025-11-24T09:58:12.5822949Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5823635Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5824303Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5824949Z - keep_disk = false -> null -2025-11-24T09:58:12.5825576Z - labels = {} -> null -2025-11-24T09:58:12.5826209Z - location = "fsn1" -> null -2025-11-24T09:58:12.5826907Z - name = "postgresql-glorious-calf" -> null -2025-11-24T09:58:12.5827595Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5828236Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5828886Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5829542Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5830336Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5830944Z - ssh_keys = [ -2025-11-24T09:58:12.5831493Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5832062Z ] -> null -2025-11-24T09:58:12.5832722Z - status = "running" -> null -2025-11-24T09:58:12.5833333Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5833654Z -2025-11-24T09:58:12.5833868Z - network { -2025-11-24T09:58:12.5834451Z - alias_ips = [] -> null -2025-11-24T09:58:12.5835063Z - ip = "10.1.1.2" -> null -2025-11-24T09:58:12.5835695Z - mac_address = "86:00:00:90:80:89" -> null -2025-11-24T09:58:12.5836327Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5836825Z } -2025-11-24T09:58:12.5837030Z -2025-11-24T09:58:12.5837251Z - public_net { -2025-11-24T09:58:12.5837846Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5838442Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5839024Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5839613Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5840100Z } -2025-11-24T09:58:12.5840468Z } -2025-11-24T09:58:12.5840665Z -2025-11-24T09:58:12.5841002Z  # hcloud_server.postgresql[1] will be destroyed -2025-11-24T09:58:12.5841646Z  - resource "hcloud_server" "postgresql" { -2025-11-24T09:58:12.5842293Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5843060Z - backups = false -> null -2025-11-24T09:58:12.5843728Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5844409Z - delete_protection = false -> null -2025-11-24T09:58:12.5845058Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5845689Z - id = "113859131" -> null -2025-11-24T09:58:12.5846335Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5853195Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5853960Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5854631Z - keep_disk = false -> null -2025-11-24T09:58:12.5855269Z - labels = {} -> null -2025-11-24T09:58:12.5856025Z - location = "fsn1" -> null -2025-11-24T09:58:12.5856988Z - name = "postgresql-hardy-glider" -> null -2025-11-24T09:58:12.5858161Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5859189Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5860082Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5861253Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5862370Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5863260Z - ssh_keys = [ -2025-11-24T09:58:12.5864001Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5864553Z ] -> null -2025-11-24T09:58:12.5865240Z - status = "running" -> null -2025-11-24T09:58:12.5866078Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5866419Z -2025-11-24T09:58:12.5866654Z - network { -2025-11-24T09:58:12.5867185Z - alias_ips = [] -> null -2025-11-24T09:58:12.5867812Z - ip = "10.1.1.11" -> null -2025-11-24T09:58:12.5868456Z - mac_address = "86:00:00:90:80:76" -> null -2025-11-24T09:58:12.5869099Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5869698Z } -2025-11-24T09:58:12.5869905Z -2025-11-24T09:58:12.5870133Z - public_net { -2025-11-24T09:58:12.5870663Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5871283Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5871878Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5872470Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5873310Z } -2025-11-24T09:58:12.5873788Z } -2025-11-24T09:58:12.5873992Z -2025-11-24T09:58:12.5874368Z  # hcloud_server.postgresql[2] will be destroyed -2025-11-24T09:58:12.5875037Z  - resource "hcloud_server" "postgresql" { -2025-11-24T09:58:12.5875707Z - allow_deprecated_images = false -> null -2025-11-24T09:58:12.5876805Z - backups = false -> null -2025-11-24T09:58:12.5877935Z - datacenter = "fsn1-dc14" -> null -2025-11-24T09:58:12.5879103Z - delete_protection = false -> null -2025-11-24T09:58:12.5880211Z - firewall_ids = [] -> null -2025-11-24T09:58:12.5881294Z - id = "113859145" -> null -2025-11-24T09:58:12.5882391Z - ignore_remote_firewall_ids = false -> null -2025-11-24T09:58:12.5883787Z - image = "ubuntu-22.04" -> null -2025-11-24T09:58:12.5884893Z - ipv6_network = "" -> null -2025-11-24T09:58:12.5885964Z - keep_disk = false -> null -2025-11-24T09:58:12.5886999Z - labels = {} -> null -2025-11-24T09:58:12.5888056Z - location = "fsn1" -> null -2025-11-24T09:58:12.5889230Z - name = "postgresql-sound-marten" -> null -2025-11-24T09:58:12.5890359Z - placement_group_id = 0 -> null -2025-11-24T09:58:12.5891431Z - primary_disk_size = 40 -> null -2025-11-24T09:58:12.5892527Z - rebuild_protection = false -> null -2025-11-24T09:58:12.5893894Z - server_type = "cx23" -> null -2025-11-24T09:58:12.5895026Z - shutdown_before_deletion = false -> null -2025-11-24T09:58:12.5896031Z - ssh_keys = [ -2025-11-24T09:58:12.5896945Z - "adminhost-relative-moray", -2025-11-24T09:58:12.5897826Z ] -> null -2025-11-24T09:58:12.5898753Z - status = "running" -> null -2025-11-24T09:58:12.5899783Z # (3 unchanged attributes hidden) -2025-11-24T09:58:12.5900308Z -2025-11-24T09:58:12.5900665Z - network { -2025-11-24T09:58:12.5901497Z - alias_ips = [] -> null -2025-11-24T09:58:12.5902521Z - ip = "10.1.1.13" -> null -2025-11-24T09:58:12.5903738Z - mac_address = "86:00:00:90:80:6f" -> null -2025-11-24T09:58:12.5905059Z - network_id = 11673781 -> null -2025-11-24T09:58:12.5905910Z } -2025-11-24T09:58:12.5906243Z -2025-11-24T09:58:12.5906623Z - public_net { -2025-11-24T09:58:12.5907501Z - ipv4 = 0 -> null -2025-11-24T09:58:12.5908502Z - ipv4_enabled = false -> null -2025-11-24T09:58:12.5909486Z - ipv6 = 0 -> null -2025-11-24T09:58:12.5910474Z - ipv6_enabled = false -> null -2025-11-24T09:58:12.5911521Z } -2025-11-24T09:58:12.5912115Z } -2025-11-24T09:58:12.5912439Z -2025-11-24T09:58:12.5913125Z  # hcloud_ssh_key.adminhost will be destroyed -2025-11-24T09:58:12.5914194Z  - resource "hcloud_ssh_key" "adminhost" { -2025-11-24T09:58:12.5915437Z - fingerprint = "60:2a:1d:30:36:ac:3d:7b:8c:ae:1a:fb:49:a6:91:45" -> null -2025-11-24T09:58:12.5916592Z - id = "104061702" -> null -2025-11-24T09:58:12.5917669Z - labels = {} -> null -2025-11-24T09:58:12.5918758Z - name = "adminhost-relative-moray" -> null -2025-11-24T09:58:12.5919776Z - public_key = <<-EOT -2025-11-24T09:58:12.5921602Z ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLr5tFcLJ4nkYuItFtaaJzbLYo62Fj6S2Vlk4/pLjLCw3TWyp1MRl2JE+JaGpfiZqSXj7Ua+TnJSN4kWe9VAtBM= -2025-11-24T09:58:12.5923599Z EOT -> null -2025-11-24T09:58:12.5924308Z } -2025-11-24T09:58:12.5924635Z -2025-11-24T09:58:12.5925211Z  # null_resource.deployment_info will be destroyed -2025-11-24T09:58:12.5926336Z  - resource "null_resource" "deployment_info" { -2025-11-24T09:58:12.5927390Z - id = "6097919591817865521" -> null -2025-11-24T09:58:12.5928217Z } -2025-11-24T09:58:12.5928550Z -2025-11-24T09:58:12.5929038Z  # random_pet.adminhost will be destroyed -2025-11-24T09:58:12.5930073Z  - resource "random_pet" "adminhost" { -2025-11-24T09:58:12.5931061Z - id = "relative-moray" -> null -2025-11-24T09:58:12.5932080Z - length = 2 -> null -2025-11-24T09:58:12.5933166Z - separator = "-" -> null -2025-11-24T09:58:12.5933969Z } -2025-11-24T09:58:12.5934279Z -2025-11-24T09:58:12.5934776Z  # random_pet.assethost will be destroyed -2025-11-24T09:58:12.5935771Z  - resource "random_pet" "assethost" { -2025-11-24T09:58:12.5936792Z - id = "settling-barnacle" -> null -2025-11-24T09:58:12.5937761Z - length = 2 -> null -2025-11-24T09:58:12.5938677Z - separator = "-" -> null -2025-11-24T09:58:12.5939468Z } -2025-11-24T09:58:12.5939791Z -2025-11-24T09:58:12.5940308Z  # random_pet.cassandra[0] will be destroyed -2025-11-24T09:58:12.5941344Z  - resource "random_pet" "cassandra" { -2025-11-24T09:58:12.5942322Z - id = "tops-fowl" -> null -2025-11-24T09:58:12.5943452Z - length = 2 -> null -2025-11-24T09:58:12.5944377Z - separator = "-" -> null -2025-11-24T09:58:12.5945197Z } -2025-11-24T09:58:12.5945515Z -2025-11-24T09:58:12.5946013Z  # random_pet.cassandra[1] will be destroyed -2025-11-24T09:58:12.5947015Z  - resource "random_pet" "cassandra" { -2025-11-24T09:58:12.5947834Z - id = "noted-manatee" -> null -2025-11-24T09:58:12.5948437Z - length = 2 -> null -2025-11-24T09:58:12.5948997Z - separator = "-" -> null -2025-11-24T09:58:12.5949710Z } -2025-11-24T09:58:12.5949917Z -2025-11-24T09:58:12.5950247Z  # random_pet.cassandra[2] will be destroyed -2025-11-24T09:58:12.5950876Z  - resource "random_pet" "cassandra" { -2025-11-24T09:58:12.5951503Z - id = "improved-teal" -> null -2025-11-24T09:58:12.5952098Z - length = 2 -> null -2025-11-24T09:58:12.5952946Z - separator = "-" -> null -2025-11-24T09:58:12.5953531Z } -2025-11-24T09:58:12.5953842Z -2025-11-24T09:58:12.5954206Z  # random_pet.elasticsearch[0] will be destroyed -2025-11-24T09:58:12.5954849Z  - resource "random_pet" "elasticsearch" { -2025-11-24T09:58:12.5955471Z - id = "amusing-pup" -> null -2025-11-24T09:58:12.5956060Z - length = 2 -> null -2025-11-24T09:58:12.5956617Z - separator = "-" -> null -2025-11-24T09:58:12.5957112Z } -2025-11-24T09:58:12.5957310Z -2025-11-24T09:58:12.5957733Z  # random_pet.elasticsearch[1] will be destroyed -2025-11-24T09:58:12.5958372Z  - resource "random_pet" "elasticsearch" { -2025-11-24T09:58:12.5958985Z - id = "renewing-bear" -> null -2025-11-24T09:58:12.5959570Z - length = 2 -> null -2025-11-24T09:58:12.5960124Z - separator = "-" -> null -2025-11-24T09:58:12.5960603Z } -2025-11-24T09:58:12.5960795Z -2025-11-24T09:58:12.5961102Z  # random_pet.kubenode[0] will be destroyed -2025-11-24T09:58:12.5961708Z  - resource "random_pet" "kubenode" { -2025-11-24T09:58:12.5962311Z - id = "super-marlin" -> null -2025-11-24T09:58:12.5963131Z - length = 2 -> null -2025-11-24T09:58:12.5963697Z - separator = "-" -> null -2025-11-24T09:58:12.5964180Z } -2025-11-24T09:58:12.5964378Z -2025-11-24T09:58:12.5964680Z  # random_pet.kubenode[1] will be destroyed -2025-11-24T09:58:12.5965286Z  - resource "random_pet" "kubenode" { -2025-11-24T09:58:12.5965907Z - id = "teaching-gobbler" -> null -2025-11-24T09:58:12.5966493Z - length = 2 -> null -2025-11-24T09:58:12.5967043Z - separator = "-" -> null -2025-11-24T09:58:12.5967526Z } -2025-11-24T09:58:12.5967718Z -2025-11-24T09:58:12.5968018Z  # random_pet.kubenode[2] will be destroyed -2025-11-24T09:58:12.5968622Z  - resource "random_pet" "kubenode" { -2025-11-24T09:58:12.5969216Z - id = "renewed-asp" -> null -2025-11-24T09:58:12.5969790Z - length = 2 -> null -2025-11-24T09:58:12.5970340Z - separator = "-" -> null -2025-11-24T09:58:12.5970819Z } -2025-11-24T09:58:12.5971018Z -2025-11-24T09:58:12.5971292Z  # random_pet.main will be destroyed -2025-11-24T09:58:12.5971869Z  - resource "random_pet" "main" { -2025-11-24T09:58:12.5972467Z - id = "guided-octopus" -> null -2025-11-24T09:58:12.5973277Z - length = 2 -> null -2025-11-24T09:58:12.5973842Z - separator = "-" -> null -2025-11-24T09:58:12.5974327Z } -2025-11-24T09:58:12.5974517Z -2025-11-24T09:58:12.5974805Z  # random_pet.minio[0] will be destroyed -2025-11-24T09:58:12.5975405Z  - resource "random_pet" "minio" { -2025-11-24T09:58:12.5976010Z - id = "aware-zebra" -> null -2025-11-24T09:58:12.5976591Z - length = 2 -> null -2025-11-24T09:58:12.5977292Z - separator = "-" -> null -2025-11-24T09:58:12.5977781Z } -2025-11-24T09:58:12.5978100Z -2025-11-24T09:58:12.5978588Z  # random_pet.minio[1] will be destroyed -2025-11-24T09:58:12.5979623Z  - resource "random_pet" "minio" { -2025-11-24T09:58:12.5980644Z - id = "striking-malamute" -> null -2025-11-24T09:58:12.5981482Z - length = 2 -> null -2025-11-24T09:58:12.5982353Z - separator = "-" -> null -2025-11-24T09:58:12.5983395Z } -2025-11-24T09:58:12.5983916Z -2025-11-24T09:58:12.5984495Z  # random_pet.postgresql[0] will be destroyed -2025-11-24T09:58:12.5985347Z  - resource "random_pet" "postgresql" { -2025-11-24T09:58:12.5986443Z - id = "glorious-calf" -> null -2025-11-24T09:58:12.5987441Z - length = 2 -> null -2025-11-24T09:58:12.5988424Z - separator = "-" -> null -2025-11-24T09:58:12.5989256Z } -2025-11-24T09:58:12.5989720Z -2025-11-24T09:58:12.5990260Z  # random_pet.postgresql[1] will be destroyed -2025-11-24T09:58:12.5991297Z  - resource "random_pet" "postgresql" { -2025-11-24T09:58:12.5992375Z - id = "hardy-glider" -> null -2025-11-24T09:58:12.5993597Z - length = 2 -> null -2025-11-24T09:58:12.5994531Z - separator = "-" -> null -2025-11-24T09:58:12.5995355Z } -2025-11-24T09:58:12.5995687Z -2025-11-24T09:58:12.5996258Z  # random_pet.postgresql[2] will be destroyed -2025-11-24T09:58:12.5997336Z  - resource "random_pet" "postgresql" { -2025-11-24T09:58:12.5998351Z - id = "sound-marten" -> null -2025-11-24T09:58:12.5999297Z - length = 2 -> null -2025-11-24T09:58:12.6000197Z - separator = "-" -> null -2025-11-24T09:58:12.6000977Z } -2025-11-24T09:58:12.6001285Z -2025-11-24T09:58:12.6001783Z  # tls_private_key.admin will be destroyed -2025-11-24T09:58:12.6003030Z  - resource "tls_private_key" "admin" { -2025-11-24T09:58:12.6004142Z - algorithm = "ECDSA" -> null -2025-11-24T09:58:12.6005350Z - ecdsa_curve = "P256" -> null -2025-11-24T09:58:12.6006198Z - id = "9a5802b646d18231eda9b090be5144478e6bd632" -> null -2025-11-24T09:58:12.6007013Z - private_key_openssh = (sensitive value) -> null -2025-11-24T09:58:12.6007762Z - private_key_pem = (sensitive value) -> null -2025-11-24T09:58:12.6008490Z - private_key_pem_pkcs8 = (sensitive value) -> null -2025-11-24T09:58:12.6009313Z - public_key_fingerprint_md5 = "60:2a:1d:30:36:ac:3d:7b:8c:ae:1a:fb:49:a6:91:45" -> null -2025-11-24T09:58:12.6010298Z - public_key_fingerprint_sha256 = "SHA256:ry6JtkVMwWncPeAIV+lcbFBnHpwkiOsy8ThYEvrwW9E" -> null -2025-11-24T09:58:12.6011091Z - public_key_openssh = <<-EOT -2025-11-24T09:58:12.6012165Z ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLr5tFcLJ4nkYuItFtaaJzbLYo62Fj6S2Vlk4/pLjLCw3TWyp1MRl2JE+JaGpfiZqSXj7Ua+TnJSN4kWe9VAtBM= -2025-11-24T09:58:12.6013483Z EOT -> null -2025-11-24T09:58:12.6014020Z - public_key_pem = <<-EOT -2025-11-24T09:58:12.6014552Z -----BEGIN PUBLIC KEY----- -2025-11-24T09:58:12.6015180Z MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuvm0VwsnieRi4i0W1ponNstijrYW -2025-11-24T09:58:12.6015925Z PpLZWWTj+kuMsLDdNbKnUxGXYkT4loal+JmpJePtRr5OclI3iRZ71UC0Ew== -2025-11-24T09:58:12.6016780Z -----END PUBLIC KEY----- -2025-11-24T09:58:12.6017317Z EOT -> null -2025-11-24T09:58:12.6017894Z - rsa_bits = 2048 -> null -2025-11-24T09:58:12.6018439Z } -2025-11-24T09:58:12.6018638Z -2025-11-24T09:58:12.6018922Z Plan: 0 to add, 0 to change, 36 to destroy. -2025-11-24T09:58:12.6019249Z -2025-11-24T09:58:12.6019438Z Changes to Outputs: -2025-11-24T09:58:12.6019993Z - adminhost = (sensitive value) -> null -2025-11-24T09:58:12.6020700Z - resource_fallback_info = { -2025-11-24T09:58:12.6021241Z - available_locations = [ -2025-11-24T09:58:12.6021752Z - "nbg1", -2025-11-24T09:58:12.6022212Z - "hel1", -2025-11-24T09:58:12.6022797Z - "fsn1", -2025-11-24T09:58:12.6023273Z - "ash", -2025-11-24T09:58:12.6023727Z - "hil", -2025-11-24T09:58:12.6024180Z - "sin", -2025-11-24T09:58:12.6024677Z ] -2025-11-24T09:58:12.6025121Z - available_medium_types = [ -2025-11-24T09:58:12.6025618Z - "cx33", -2025-11-24T09:58:12.6026070Z - "cx43", -2025-11-24T09:58:12.6026527Z - "cpx32", -2025-11-24T09:58:12.6026953Z ] -2025-11-24T09:58:12.6027383Z - available_small_types = [ -2025-11-24T09:58:12.6027875Z - "cx23", -2025-11-24T09:58:12.6028333Z - "cx33", -2025-11-24T09:58:12.6028783Z - "cpx22", -2025-11-24T09:58:12.6029205Z ] -2025-11-24T09:58:12.6029639Z - requested_locations = [ -2025-11-24T09:58:12.6030132Z - "fsn1", -2025-11-24T09:58:12.6030578Z - "hel1", -2025-11-24T09:58:12.6031030Z - "nbg1", -2025-11-24T09:58:12.6031444Z ] -2025-11-24T09:58:12.6032265Z - requested_medium_types = [ -2025-11-24T09:58:12.6032996Z - "cx33", -2025-11-24T09:58:12.6033468Z - "cx43", -2025-11-24T09:58:12.6033928Z - "cpx32", -2025-11-24T09:58:12.6034350Z ] -2025-11-24T09:58:12.6034789Z - requested_small_types = [ -2025-11-24T09:58:12.6035285Z - "cx23", -2025-11-24T09:58:12.6035740Z - "cx33", -2025-11-24T09:58:12.6036195Z - "cpx22", -2025-11-24T09:58:12.6036620Z ] -2025-11-24T09:58:12.6037067Z - selected_location = "fsn1" -2025-11-24T09:58:12.6037626Z - selected_medium_type = "cx33" -2025-11-24T09:58:12.6038173Z - selected_small_type = "cx23" -2025-11-24T09:58:12.6038682Z } -> null -2025-11-24T09:58:12.6039231Z - selected_location = "fsn1" -> null -2025-11-24T09:58:12.6039825Z - selected_server_types = { -2025-11-24T09:58:12.6040354Z - medium_server_type = "cx33" -2025-11-24T09:58:12.6040885Z - small_server_type = "cx23" -2025-11-24T09:58:12.6041377Z } -> null -2025-11-24T09:58:12.6041929Z - ssh_private_key = (sensitive value) -> null -2025-11-24T09:58:12.6042778Z - static-inventory = (sensitive value) -> null -2025-11-24T09:58:12.7174966Z hcloud_server.cassandra[1]: Destroying... [id=113859144] -2025-11-24T09:58:12.7176238Z hcloud_server.kubenode[0]: Destroying... [id=113859101] -2025-11-24T09:58:12.7177511Z hcloud_server.minio[1]: Destroying... [id=113859099] -2025-11-24T09:58:12.7178754Z hcloud_server.kubenode[2]: Destroying... [id=113859096] -2025-11-24T09:58:12.7180037Z hcloud_server.kubenode[1]: Destroying... [id=113859100] -2025-11-24T09:58:12.7181804Z hcloud_server.elasticsearch[0]: Destroying... [id=113859093] -2025-11-24T09:58:12.7183327Z hcloud_server.minio[0]: Destroying... [id=113859094] -2025-11-24T09:58:12.7184570Z hcloud_server.postgresql[2]: Destroying... [id=113859145] -2025-11-24T09:58:12.7185824Z hcloud_server.adminhost: Destroying... [id=113859097] -2025-11-24T09:58:12.7187060Z hcloud_server.postgresql[0]: Destroying... [id=113859092] -2025-11-24T09:58:22.7164450Z hcloud_server.elasticsearch[0]: Still destroying... [id=113859093, 00m10s elapsed] -2025-11-24T09:58:22.7166107Z hcloud_server.postgresql[2]: Still destroying... [id=113859145, 00m10s elapsed] -2025-11-24T09:58:22.7167323Z hcloud_server.kubenode[1]: Still destroying... [id=113859100, 00m10s elapsed] -2025-11-24T09:58:22.7168325Z hcloud_server.kubenode[0]: Still destroying... [id=113859101, 00m10s elapsed] -2025-11-24T09:58:22.7169325Z hcloud_server.cassandra[1]: Still destroying... [id=113859144, 00m10s elapsed] -2025-11-24T09:58:22.7170559Z hcloud_server.minio[1]: Still destroying... [id=113859099, 00m10s elapsed] -2025-11-24T09:58:22.7171511Z hcloud_server.adminhost: Still destroying... [id=113859097, 00m10s elapsed] -2025-11-24T09:58:22.7172869Z hcloud_server.kubenode[2]: Still destroying... [id=113859096, 00m10s elapsed] -2025-11-24T09:58:22.7174374Z hcloud_server.minio[0]: Still destroying... [id=113859094, 00m10s elapsed] -2025-11-24T09:58:22.7175413Z hcloud_server.postgresql[0]: Still destroying... [id=113859092, 00m10s elapsed] -2025-11-24T09:58:29.2961684Z hcloud_server.adminhost: Destruction complete after 16s -2025-11-24T09:58:29.3107170Z hcloud_server.assethost: Destroying... [id=113859098] -2025-11-24T09:58:32.7167983Z hcloud_server.kubenode[0]: Still destroying... [id=113859101, 00m20s elapsed] -2025-11-24T09:58:32.7169250Z hcloud_server.postgresql[2]: Still destroying... [id=113859145, 00m20s elapsed] -2025-11-24T09:58:32.7170359Z hcloud_server.kubenode[2]: Still destroying... [id=113859096, 00m20s elapsed] -2025-11-24T09:58:32.7171320Z hcloud_server.kubenode[1]: Still destroying... [id=113859100, 00m20s elapsed] -2025-11-24T09:58:32.7172229Z hcloud_server.elasticsearch[0]: Still destroying... [id=113859093, 00m20s elapsed] -2025-11-24T09:58:32.7173398Z hcloud_server.cassandra[1]: Still destroying... [id=113859144, 00m20s elapsed] -2025-11-24T09:58:32.7174253Z hcloud_server.minio[1]: Still destroying... [id=113859099, 00m20s elapsed] -2025-11-24T09:58:32.7175085Z hcloud_server.minio[0]: Still destroying... [id=113859094, 00m20s elapsed] -2025-11-24T09:58:32.7178224Z hcloud_server.postgresql[0]: Still destroying... [id=113859092, 00m20s elapsed] -2025-11-24T09:58:39.3120463Z hcloud_server.assethost: Still destroying... [id=113859098, 00m10s elapsed] -2025-11-24T09:58:42.7171362Z hcloud_server.cassandra[1]: Still destroying... [id=113859144, 00m30s elapsed] -2025-11-24T09:58:42.7173070Z hcloud_server.kubenode[2]: Still destroying... [id=113859096, 00m30s elapsed] -2025-11-24T09:58:42.7174714Z hcloud_server.postgresql[2]: Still destroying... [id=113859145, 00m30s elapsed] -2025-11-24T09:58:42.7175780Z hcloud_server.minio[1]: Still destroying... [id=113859099, 00m30s elapsed] -2025-11-24T09:58:42.7176850Z hcloud_server.kubenode[0]: Still destroying... [id=113859101, 00m30s elapsed] -2025-11-24T09:58:42.7177954Z hcloud_server.elasticsearch[0]: Still destroying... [id=113859093, 00m30s elapsed] -2025-11-24T09:58:42.7179025Z hcloud_server.kubenode[1]: Still destroying... [id=113859100, 00m30s elapsed] -2025-11-24T09:58:42.7180301Z hcloud_server.minio[0]: Still destroying... [id=113859094, 00m30s elapsed] -2025-11-24T09:58:42.7181620Z hcloud_server.postgresql[0]: Still destroying... [id=113859092, 00m30s elapsed] -2025-11-24T09:58:45.4174260Z hcloud_server.kubenode[1]: Destruction complete after 32s -2025-11-24T09:58:45.4220741Z hcloud_server.kubenode[2]: Destruction complete after 32s -2025-11-24T09:58:45.4267037Z hcloud_server.elasticsearch[0]: Destruction complete after 32s -2025-11-24T09:58:45.4291721Z hcloud_server.postgresql[1]: Destroying... [id=113859131] -2025-11-24T09:58:45.4296484Z hcloud_server.cassandra[0]: Destroying... [id=113859095] -2025-11-24T09:58:45.4344660Z hcloud_server.postgresql[2]: Destruction complete after 32s -2025-11-24T09:58:45.4387085Z hcloud_server.kubenode[0]: Destruction complete after 32s -2025-11-24T09:58:45.4400945Z hcloud_server.cassandra[2]: Destroying... [id=113859135] -2025-11-24T09:58:45.4407722Z hcloud_server.elasticsearch[1]: Destroying... [id=113859143] -2025-11-24T09:58:45.4448746Z random_pet.kubenode[1]: Destroying... [id=teaching-gobbler] -2025-11-24T09:58:45.4457765Z random_pet.kubenode[1]: Destruction complete after 0s -2025-11-24T09:58:45.4506845Z random_pet.kubenode[2]: Destroying... [id=renewed-asp] -2025-11-24T09:58:45.4517665Z random_pet.kubenode[2]: Destruction complete after 0s -2025-11-24T09:58:45.4562388Z random_pet.kubenode[0]: Destroying... [id=super-marlin] -2025-11-24T09:58:45.4567914Z random_pet.kubenode[0]: Destruction complete after 0s -2025-11-24T09:58:45.4883180Z hcloud_server.postgresql[0]: Destruction complete after 32s -2025-11-24T09:58:45.5263954Z hcloud_server.minio[0]: Destruction complete after 33s -2025-11-24T09:58:45.5315942Z hcloud_server.cassandra[1]: Destruction complete after 33s -2025-11-24T09:58:45.5355418Z hcloud_server.minio[1]: Destruction complete after 33s -2025-11-24T09:58:45.5402012Z random_pet.minio[1]: Destroying... [id=striking-malamute] -2025-11-24T09:58:45.5403452Z random_pet.minio[0]: Destroying... [id=aware-zebra] -2025-11-24T09:58:45.5408424Z random_pet.minio[1]: Destruction complete after 0s -2025-11-24T09:58:45.5469640Z random_pet.minio[0]: Destruction complete after 0s -2025-11-24T09:58:45.6377881Z hcloud_server.assethost: Destruction complete after 17s -2025-11-24T09:58:45.6423274Z random_pet.assethost: Destroying... [id=settling-barnacle] -2025-11-24T09:58:45.6430615Z random_pet.assethost: Destruction complete after 0s -2025-11-24T09:58:55.4299536Z hcloud_server.postgresql[1]: Still destroying... [id=113859131, 00m10s elapsed] -2025-11-24T09:58:55.4308968Z hcloud_server.cassandra[0]: Still destroying... [id=113859095, 00m10s elapsed] -2025-11-24T09:58:55.4412278Z hcloud_server.elasticsearch[1]: Still destroying... [id=113859143, 00m10s elapsed] -2025-11-24T09:58:55.4413531Z hcloud_server.cassandra[2]: Still destroying... [id=113859135, 00m10s elapsed] -2025-11-24T09:59:01.7772975Z hcloud_server.elasticsearch[1]: Destruction complete after 17s -2025-11-24T09:59:01.7819114Z random_pet.elasticsearch[0]: Destroying... [id=amusing-pup] -2025-11-24T09:59:01.7820512Z random_pet.elasticsearch[1]: Destroying... [id=renewing-bear] -2025-11-24T09:59:01.7827073Z random_pet.elasticsearch[1]: Destruction complete after 0s -2025-11-24T09:59:01.7828390Z random_pet.elasticsearch[0]: Destruction complete after 0s -2025-11-24T09:59:05.4320748Z hcloud_server.cassandra[0]: Still destroying... [id=113859095, 00m20s elapsed] -2025-11-24T09:59:05.4321850Z hcloud_server.postgresql[1]: Still destroying... [id=113859131, 00m20s elapsed] -2025-11-24T09:59:05.4422224Z hcloud_server.cassandra[2]: Still destroying... [id=113859135, 00m20s elapsed] -2025-11-24T09:59:15.4322956Z hcloud_server.cassandra[0]: Still destroying... [id=113859095, 00m30s elapsed] -2025-11-24T09:59:15.4324128Z hcloud_server.postgresql[1]: Still destroying... [id=113859131, 00m30s elapsed] -2025-11-24T09:59:15.4423293Z hcloud_server.cassandra[2]: Still destroying... [id=113859135, 00m30s elapsed] -2025-11-24T09:59:17.9024734Z hcloud_server.cassandra[0]: Destruction complete after 33s -2025-11-24T09:59:17.9065394Z hcloud_server.cassandra[2]: Destruction complete after 33s -2025-11-24T09:59:17.9100901Z hcloud_server.postgresql[1]: Destruction complete after 33s -2025-11-24T09:59:17.9157060Z hcloud_ssh_key.adminhost: Destroying... [id=104061702] -2025-11-24T09:59:17.9161212Z hcloud_network_subnet.main: Destroying... [id=11673781-10.1.1.0/24] -2025-11-24T09:59:17.9162823Z random_pet.cassandra[2]: Destroying... [id=improved-teal] -2025-11-24T09:59:17.9172590Z random_pet.postgresql[0]: Destroying... [id=glorious-calf] -2025-11-24T09:59:17.9174382Z random_pet.cassandra[0]: Destroying... [id=tops-fowl] -2025-11-24T09:59:17.9175690Z random_pet.postgresql[2]: Destroying... [id=sound-marten] -2025-11-24T09:59:17.9176968Z random_pet.postgresql[1]: Destroying... [id=hardy-glider] -2025-11-24T09:59:17.9178223Z random_pet.cassandra[1]: Destroying... [id=noted-manatee] -2025-11-24T09:59:17.9179538Z random_pet.postgresql[1]: Destruction complete after 0s -2025-11-24T09:59:17.9180753Z random_pet.cassandra[0]: Destruction complete after 0s -2025-11-24T09:59:17.9208413Z random_pet.postgresql[0]: Destruction complete after 0s -2025-11-24T09:59:17.9209268Z random_pet.postgresql[2]: Destruction complete after 0s -2025-11-24T09:59:17.9273366Z random_pet.cassandra[1]: Destruction complete after 0s -2025-11-24T09:59:17.9364466Z random_pet.cassandra[2]: Destruction complete after 0s -2025-11-24T09:59:18.0459614Z hcloud_ssh_key.adminhost: Destruction complete after 0s -2025-11-24T09:59:18.0521482Z random_pet.adminhost: Destroying... [id=relative-moray] -2025-11-24T09:59:18.0531652Z random_pet.adminhost: Destruction complete after 0s -2025-11-24T09:59:18.0535647Z tls_private_key.admin: Destroying... [id=9a5802b646d18231eda9b090be5144478e6bd632] -2025-11-24T09:59:18.0567425Z tls_private_key.admin: Destruction complete after 0s -2025-11-24T09:59:18.2081801Z hcloud_network_subnet.main: Destruction complete after 0s -2025-11-24T09:59:18.2158325Z hcloud_network.main: Destroying... [id=11673781] -2025-11-24T09:59:18.3985860Z hcloud_network.main: Destruction complete after 0s -2025-11-24T09:59:18.4060599Z random_pet.main: Destroying... [id=guided-octopus] -2025-11-24T09:59:18.4084810Z random_pet.main: Destruction complete after 0s -2025-11-24T09:59:18.4168437Z null_resource.deployment_info: Destroying... [id=6097919591817865521] -2025-11-24T09:59:18.4178123Z null_resource.deployment_info: Destruction complete after 0s -2025-11-24T09:59:18.4287166Z  -2025-11-24T09:59:18.4287831Z Destroy complete! Resources: 36 destroyed. -2025-11-24T09:59:18.4324730Z Cleanup completed -2025-11-24T09:59:18.4343908Z ##[error]Process completed with exit code 2. -2025-11-24T09:59:18.4398826Z ##[group]Run (cd terraform/examples/wire-server-deploy-offline-hetzner ; terraform init && terraform destroy -auto-approve) -2025-11-24T09:59:18.4399976Z (cd terraform/examples/wire-server-deploy-offline-hetzner ; terraform init && terraform destroy -auto-approve) -2025-11-24T09:59:18.4469462Z shell: /usr/bin/bash -e {0} -2025-11-24T09:59:18.4469925Z env: -2025-11-24T09:59:18.4470327Z TMPDIR: /home/runner/work/_temp -2025-11-24T09:59:18.4471183Z CACHIX_SIGNING_KEY: *** -2025-11-24T09:59:18.4471952Z NIX_USER_CONF_FILES: /home/runner/work/_temp/cachix-daemon-lB7wlJ/nix.conf:/home/runner/.config/nix/nix.conf:/etc/xdg/nix/nix.conf -2025-11-24T09:59:18.4473080Z CACHIX_DAEMON_DIR: /home/runner/work/_temp/cachix-daemon-lB7wlJ -2025-11-24T09:59:18.4473843Z HCLOUD_TOKEN: *** -2025-11-24T09:59:18.4474249Z ##[endgroup] -2025-11-24T09:59:18.4817504Z Initializing the backend... -2025-11-24T09:59:18.5400614Z Initializing provider plugins... -2025-11-24T09:59:18.5401439Z - Reusing previous version of hashicorp/random from the dependency lock file -2025-11-24T09:59:18.5790453Z - Reusing previous version of hashicorp/tls from the dependency lock file -2025-11-24T09:59:18.5911834Z - Reusing previous version of hetznercloud/hcloud from the dependency lock file -2025-11-24T09:59:18.6024977Z - Reusing previous version of hashicorp/null from the dependency lock file -2025-11-24T09:59:18.6249952Z - Using previously-installed hashicorp/random v3.7.2 -2025-11-24T09:59:18.6390216Z - Using previously-installed hashicorp/tls v4.1.0 -2025-11-24T09:59:18.6580734Z - Using previously-installed hetznercloud/hcloud v1.56.0 -2025-11-24T09:59:18.6696506Z - Using previously-installed hashicorp/null v3.2.4 -2025-11-24T09:59:18.6697180Z -2025-11-24T09:59:18.6697777Z Terraform has been successfully initialized! -2025-11-24T09:59:18.6698446Z  -2025-11-24T09:59:18.6699022Z You may now begin working with Terraform. Try running "terraform plan" to see -2025-11-24T09:59:18.6699855Z any changes that are required for your infrastructure. All Terraform commands -2025-11-24T09:59:18.6700510Z should now work. -2025-11-24T09:59:18.6700810Z -2025-11-24T09:59:18.6701141Z If you ever set or change modules or backend configuration for Terraform, -2025-11-24T09:59:18.6701931Z rerun this command to reinitialize your working directory. If you forget, other -2025-11-24T09:59:18.6703035Z commands will detect it and remind you to do so if necessary. -2025-11-24T09:59:19.1191649Z -2025-11-24T09:59:19.1194407Z No changes. No objects need to be destroyed. -2025-11-24T09:59:19.1195217Z -2025-11-24T09:59:19.1198164Z Either you have not created any objects yet or the existing objects were -2025-11-24T09:59:19.1199375Z already deleted outside of Terraform. -2025-11-24T09:59:19.1228448Z  -2025-11-24T09:59:19.1230385Z Destroy complete! Resources: 0 destroyed. -2025-11-24T09:59:19.1337276Z Post job cleanup. -2025-11-24T09:59:19.1796910Z ##[group]Cachix: push -2025-11-24T09:59:19.1857588Z [command]/home/runner/.nix-profile/bin/cachix daemon stop --socket /home/runner/work/_temp/cachix-daemon-lB7wlJ/daemon.sock -2025-11-24T09:59:19.1910600Z [2025-11-24 08:24:02][Info] Starting Cachix Daemon -2025-11-24T09:59:19.1911511Z [2025-11-24 08:24:02][Info] Configuration: -2025-11-24T09:59:19.1912306Z PID: 3680 -2025-11-24T09:59:19.1913304Z Socket: /home/runner/work/_temp/cachix-daemon-lB7wlJ/daemon.sock -2025-11-24T09:59:19.1914287Z Workers: 8 -2025-11-24T09:59:19.1914944Z Cache name: wire-server -2025-11-24T09:59:19.1915701Z Cache URI: https://wire-server.cachix.org -2025-11-24T09:59:19.1916909Z Cache public keys: ["wire-server.cachix.org-1:fVWmRcvdsqzKek3X5Ad8nYNsBSjKZ9Um2NMLfMLS77Y="] -2025-11-24T09:59:19.1918058Z Cache is public: True -2025-11-24T09:59:19.1918745Z Compression: ZSTD -2025-11-24T09:59:19.2677724Z [2025-11-24 09:59:19][Info] Shutting down daemon... -2025-11-24T09:59:19.2685049Z [2025-11-24 09:59:19][Info] Daemon shut down. Exiting. -2025-11-24T09:59:20.2892355Z ##[endgroup] -2025-11-24T09:59:20.2993733Z Post job cleanup. -2025-11-24T09:59:20.3968813Z [command]/usr/bin/git version -2025-11-24T09:59:20.4013574Z git version 2.51.2 -2025-11-24T09:59:20.4063484Z Temporarily overriding HOME='/home/runner/work/_temp/8477a919-a2c2-4ecb-8fc9-899a9202a326' before making global git config changes -2025-11-24T09:59:20.4064856Z Adding repository directory to the temporary git global config as a safe directory -2025-11-24T09:59:20.4068639Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/wire-server-deploy/wire-server-deploy -2025-11-24T09:59:20.4128216Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-11-24T09:59:20.4157932Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-11-24T09:59:20.4450454Z Entering 'ansible/roles-external/ANXS.apt' -2025-11-24T09:59:20.4504796Z Entering 'ansible/roles-external/admin_users' -2025-11-24T09:59:20.4556222Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' -2025-11-24T09:59:20.4605768Z Entering 'ansible/roles-external/ansible-cassandra' -2025-11-24T09:59:20.4655671Z Entering 'ansible/roles-external/ansible-minio' -2025-11-24T09:59:20.4705811Z Entering 'ansible/roles-external/ansible-ntp-verify' -2025-11-24T09:59:20.4757500Z Entering 'ansible/roles-external/ansible-role-java' -2025-11-24T09:59:20.4808868Z Entering 'ansible/roles-external/ansible-role-ntp' -2025-11-24T09:59:20.4860919Z Entering 'ansible/roles-external/ansible-tinc' -2025-11-24T09:59:20.4912376Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' -2025-11-24T09:59:20.4963834Z Entering 'ansible/roles-external/elasticsearch' -2025-11-24T09:59:20.5015674Z Entering 'ansible/roles-external/hostname' -2025-11-24T09:59:20.5069899Z Entering 'ansible/roles-external/kubespray' -2025-11-24T09:59:20.5130607Z Entering 'ansible/roles-external/logrotate' -2025-11-24T09:59:20.5181882Z Entering 'ansible/roles-external/sft' -2025-11-24T09:59:20.5254323Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-11-24T09:59:20.5285181Z http.https://github.com/.extraheader -2025-11-24T09:59:20.5300898Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-11-24T09:59:20.5339356Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-11-24T09:59:20.5601708Z Entering 'ansible/roles-external/ANXS.apt' -2025-11-24T09:59:20.5626585Z http.https://github.com/.extraheader -2025-11-24T09:59:20.5661789Z Entering 'ansible/roles-external/admin_users' -2025-11-24T09:59:20.5687586Z http.https://github.com/.extraheader -2025-11-24T09:59:20.5723687Z Entering 'ansible/roles-external/andrewrothstein.unarchive-deps' -2025-11-24T09:59:20.5762184Z http.https://github.com/.extraheader -2025-11-24T09:59:20.5802198Z Entering 'ansible/roles-external/ansible-cassandra' -2025-11-24T09:59:20.5827640Z http.https://github.com/.extraheader -2025-11-24T09:59:20.5861961Z Entering 'ansible/roles-external/ansible-minio' -2025-11-24T09:59:20.5887517Z http.https://github.com/.extraheader -2025-11-24T09:59:20.5923054Z Entering 'ansible/roles-external/ansible-ntp-verify' -2025-11-24T09:59:20.5948824Z http.https://github.com/.extraheader -2025-11-24T09:59:20.5984715Z Entering 'ansible/roles-external/ansible-role-java' -2025-11-24T09:59:20.6009609Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6045419Z Entering 'ansible/roles-external/ansible-role-ntp' -2025-11-24T09:59:20.6071151Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6106215Z Entering 'ansible/roles-external/ansible-tinc' -2025-11-24T09:59:20.6131287Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6165266Z Entering 'ansible/roles-external/cloudalchemy.node-exporter' -2025-11-24T09:59:20.6191701Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6227788Z Entering 'ansible/roles-external/elasticsearch' -2025-11-24T09:59:20.6254000Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6290079Z Entering 'ansible/roles-external/hostname' -2025-11-24T09:59:20.6320767Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6356562Z Entering 'ansible/roles-external/kubespray' -2025-11-24T09:59:20.6383034Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6423026Z Entering 'ansible/roles-external/logrotate' -2025-11-24T09:59:20.6448246Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6483191Z Entering 'ansible/roles-external/sft' -2025-11-24T09:59:20.6509387Z http.https://github.com/.extraheader -2025-11-24T09:59:20.6711410Z Evaluate and set job outputs -2025-11-24T09:59:20.6717070Z Set output 'upload_name' -2025-11-24T09:59:20.6719217Z Cleaning up orphan processes diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf index 4d438ff00..eac324f43 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf @@ -201,6 +201,9 @@ resource "hcloud_server" "kubenode" { network { network_id = hcloud_network.main.id ip = "" + # Pre-register VIP (10.1.1.100) as alias IP with Hetzner's backend + # This prevents DHCP conflicts and tells the gateway how to route VIP traffic + alias_ips = [cidrhost(hcloud_network_subnet.main.ip_range, 100)] } } diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index 5b9fd1891..3053785fa 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -101,7 +101,11 @@ output "static-inventory" { # kube-vip configuration for control plane HA # Network: 10.1.1.0/24 (Hetzner Cloud private network) - # VIP: 10.1.1.254 (second-to-last IP in subnet) + # VIP: 10.1.1.100 (pre-registered as alias IP) + # + # Solution: VIP is pre-registered via alias_ips in main.tf on all kubenodes + # This informs Hetzner's backend about the VIP, preventing DHCP conflicts + # and ensuring the gateway routes traffic correctly to the VIP. # # Note: No interface specified - kube-vip will auto-detect the interface # with an IP in the VIP's subnet (10.1.1.0/24) @@ -109,8 +113,8 @@ output "static-inventory" { kube_vip_controlplane_enabled = true kube_vip_arp_enabled = true kube_vip_services_enabled = false - # VIP within the Hetzner private network subnet (second-to-last IP) - kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, -2) + # VIP within the Hetzner private network subnet (10.1.1.100) + kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, 100) kube_proxy_strict_arp = true } } From ec4c1a049ddd6046160d296fa1ff424d31258b25 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Tue, 25 Nov 2025 15:27:32 +0100 Subject: [PATCH 16/23] drop alias --- .../examples/wire-server-deploy-offline-hetzner/main.tf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf index eac324f43..a09352e78 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf @@ -201,9 +201,8 @@ resource "hcloud_server" "kubenode" { network { network_id = hcloud_network.main.id ip = "" - # Pre-register VIP (10.1.1.100) as alias IP with Hetzner's backend - # This prevents DHCP conflicts and tells the gateway how to route VIP traffic - alias_ips = [cidrhost(hcloud_network_subnet.main.ip_range, 100)] + # No alias_ips needed - VIP is accessed within same subnet via Layer 2 + # kube-vip will use ARP to claim the VIP, and adminhost can reach it directly } } From ff1c347d314a6f403b9c2f388a2e4ca28a0022e8 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Tue, 25 Nov 2025 16:43:39 +0100 Subject: [PATCH 17/23] Add the right interface --- .../wire-server-deploy-offline-hetzner/outputs.tf | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index 3053785fa..74a84e2e0 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -101,19 +101,16 @@ output "static-inventory" { # kube-vip configuration for control plane HA # Network: 10.1.1.0/24 (Hetzner Cloud private network) - # VIP: 10.1.1.100 (pre-registered as alias IP) + # VIP: 10.1.1.100 # - # Solution: VIP is pre-registered via alias_ips in main.tf on all kubenodes - # This informs Hetzner's backend about the VIP, preventing DHCP conflicts - # and ensuring the gateway routes traffic correctly to the VIP. - # - # Note: No interface specified - kube-vip will auto-detect the interface - # with an IP in the VIP's subnet (10.1.1.0/24) + # IMPORTANT: kube_vip_interface MUST be specified for Hetzner Cloud + # Without it, kube-vip defaults to eth0, but Hetzner uses enp7s0 for private network + # This caused VIP to never attach, resulting in kubectl timeouts kube_vip_enabled = true kube_vip_controlplane_enabled = true kube_vip_arp_enabled = true kube_vip_services_enabled = false - # VIP within the Hetzner private network subnet (10.1.1.100) + kube_vip_interface = "enp7s0" # Hetzner Cloud private network interface kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, 100) kube_proxy_strict_arp = true } From 94c3b51af1ba65a966766fbf12017db25eeb598e Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Tue, 25 Nov 2025 19:48:25 +0100 Subject: [PATCH 18/23] try alias_ip with dterministic ips for the servers --- .../main.tf | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf index a09352e78..f379c9cfb 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf @@ -151,7 +151,8 @@ resource "hcloud_server" "adminhost" { server_type = local.medium_server_type network { network_id = hcloud_network.main.id - ip = "" + # Reserve .10 for adminhost so VIP (.100) stays free for kube-vip + ip = cidrhost(hcloud_network_subnet.main.ip_range, 10) } } @@ -175,7 +176,8 @@ resource "hcloud_server" "assethost" { } network { network_id = hcloud_network.main.id - ip = "" + # Reserve .11 for assethost to avoid consuming the kube-vip range + ip = cidrhost(hcloud_network_subnet.main.ip_range, 11) } } @@ -200,9 +202,10 @@ resource "hcloud_server" "kubenode" { } network { network_id = hcloud_network.main.id - ip = "" - # No alias_ips needed - VIP is accessed within same subnet via Layer 2 - # kube-vip will use ARP to claim the VIP, and adminhost can reach it directly + # Control-plane nodes get deterministic addresses starting at .20 + ip = cidrhost(hcloud_network_subnet.main.ip_range, 20 + count.index) + # Pre-register the kube-vip (10.1.1.100) so Hetzner routes it to the cluster + alias_ips = [cidrhost(hcloud_network_subnet.main.ip_range, 100)] } } @@ -227,7 +230,8 @@ resource "hcloud_server" "cassandra" { } network { network_id = hcloud_network.main.id - ip = "" + # Cassandra nodes occupy .40-.42 + ip = cidrhost(hcloud_network_subnet.main.ip_range, 40 + count.index) } } @@ -252,7 +256,8 @@ resource "hcloud_server" "elasticsearch" { } network { network_id = hcloud_network.main.id - ip = "" + # Elasticsearch nodes occupy .50-.51 + ip = cidrhost(hcloud_network_subnet.main.ip_range, 50 + count.index) } } @@ -277,7 +282,8 @@ resource "hcloud_server" "minio" { } network { network_id = hcloud_network.main.id - ip = "" + # Minio nodes occupy .60-.61 + ip = cidrhost(hcloud_network_subnet.main.ip_range, 60 + count.index) } } @@ -302,6 +308,7 @@ resource "hcloud_server" "postgresql" { } network { network_id = hcloud_network.main.id - ip = "" + # PostgreSQL nodes occupy .70-.72 + ip = cidrhost(hcloud_network_subnet.main.ip_range, 70 + count.index) } } From 909533df41b4e7e742d13e2211416b82b3c3002b Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Wed, 26 Nov 2025 16:11:29 +0100 Subject: [PATCH 19/23] fix variable precedence issue and add extended timeout on leader selection --- .../group_vars/k8s-cluster/k8s-cluster.yml | 21 ++++++++++++++++--- .../main.tf | 2 -- .../outputs.tf | 9 +++++++- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml index 7cdb9e728..a64b1f848 100644 --- a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml +++ b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml @@ -26,13 +26,19 @@ kube_vip_controlplane_enabled: true # - In the same subnet as your control plane nodes # - Unused and not in DHCP range # - Accessible from all nodes and external clients +# +# For Hetzner Cloud deployments: This is set via terraform-generated inventory.yml +# For other deployments: Uncomment and set the appropriate VIP address # Example: If control plane nodes are 192.168.122.21-23, use 192.168.122.100 -kube_vip_address: "192.168.122.100" +# kube_vip_address: "192.168.122.100" # Network interface to bind the VIP to # Find this by running: ssh kubenode1 "ip -br addr show" -# Example values: eth0, enp1s0 -kube_vip_interface: "enp1s0" +# +# For Hetzner Cloud: Use "enp7s0" (private network interface) +# For other environments: Check with "ip -br addr show" and uncomment below +# Common values: eth0, enp1s0, enp7s0 +# kube_vip_interface: "enp1s0" # Use ARP for Layer 2 VIP management (recommended for most deployments) # Set to false only if using BGP for Layer 3 routing @@ -47,6 +53,15 @@ kube_vip_services_enabled: false # Prevents kube-proxy from responding to ARP requests for the VIP kube_proxy_strict_arp: true +# Leader election timing (fix for kube-vip GitHub issue #453) +# Increased timeouts prevent "context deadline exceeded" errors during lease acquisition +# Default values are too aggressive for cloud environments with slower etcd/API responses +# These settings are particularly important for Hetzner Cloud and similar providers +kube_vip_leader_election_enabled: true +kube_vip_leaseduration: 30 # seconds (default: 15) +kube_vip_renewdeadline: 20 # seconds (default: 10) +kube_vip_retryperiod: 4 # seconds (default: 2) + # ============================================================================== # Bootstrap Strategy for kube-vip HA # ============================================================================== diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf index f379c9cfb..855847ff2 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf @@ -204,8 +204,6 @@ resource "hcloud_server" "kubenode" { network_id = hcloud_network.main.id # Control-plane nodes get deterministic addresses starting at .20 ip = cidrhost(hcloud_network_subnet.main.ip_range, 20 + count.index) - # Pre-register the kube-vip (10.1.1.100) so Hetzner routes it to the cluster - alias_ips = [cidrhost(hcloud_network_subnet.main.ip_range, 100)] } } diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index 74a84e2e0..aee3016cf 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -105,7 +105,6 @@ output "static-inventory" { # # IMPORTANT: kube_vip_interface MUST be specified for Hetzner Cloud # Without it, kube-vip defaults to eth0, but Hetzner uses enp7s0 for private network - # This caused VIP to never attach, resulting in kubectl timeouts kube_vip_enabled = true kube_vip_controlplane_enabled = true kube_vip_arp_enabled = true @@ -113,6 +112,14 @@ output "static-inventory" { kube_vip_interface = "enp7s0" # Hetzner Cloud private network interface kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, 100) kube_proxy_strict_arp = true + + # Leader election timing (fix for GitHub issue #453) + # Increased timeouts prevent "context deadline exceeded" during lease acquisition + # Default values are too aggressive for slower etcd/API responses + kube_vip_leader_election_enabled = true + kube_vip_leaseduration = 30 # seconds (default: 15) + kube_vip_renewdeadline = 20 # seconds (default: 10) + kube_vip_retryperiod = 4 # seconds (default: 2) } } cassandra = { From 56bea840867017f13e7479d10ff4ae655100dbbf Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Wed, 26 Nov 2025 17:58:51 +0100 Subject: [PATCH 20/23] clean up checks which was blocking the deployment --- bin/offline-cluster.sh | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index 3a2ed3858..e8966a925 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -77,39 +77,6 @@ if [ -n "$VIP_ADDRESS" ] && [ "$VIP_ADDRESS" != "null" ]; then -e "loadbalancer_apiserver_localhost=false" \ -e "{\"supplementary_addresses_in_ssl_keys\": [\"$VIP_ADDRESS\"]}" - # Wait for VIP to become reachable before continuing - echo "Waiting for VIP $VIP_ADDRESS:6443 to become reachable..." - MAX_WAIT=180 # 3 minutes - ELAPSED=0 - while ! timeout 2 bash -c "cat < /dev/null > /dev/tcp/$VIP_ADDRESS/6443" 2>/dev/null; do - if [ $ELAPSED -ge $MAX_WAIT ]; then - echo "ERROR: VIP $VIP_ADDRESS:6443 did not become reachable after ${MAX_WAIT}s" - echo "This may indicate:" - echo " 1. kube-vip pod failed to start - check: kubectl -n kube-system logs kube-vip-" - echo " 2. Network does not support ARP-based VIPs (e.g., Hetzner Cloud Layer 3 networks)" - echo " 3. VIP interface detection failed - check kube-vip pod logs" - exit 1 - fi - sleep 2 - ELAPSED=$((ELAPSED + 2)) - echo " Still waiting... (${ELAPSED}s/${MAX_WAIT}s)" - done - echo "✓ VIP $VIP_ADDRESS:6443 is reachable!" - - # Export KUBECONFIG and verify kubectl access - export KUBECONFIG="$ANSIBLE_DIR/inventory/offline/artifacts/admin.conf" - echo "Exported KUBECONFIG=$KUBECONFIG" - - # Verify kubectl can connect - echo "Verifying kubectl access to cluster..." - if kubectl cluster-info 2>/dev/null | head -1; then - echo "✓ kubectl successfully connected to cluster via VIP" - kubectl get nodes -o wide || true - else - echo "WARNING: kubectl cannot connect to cluster" - echo "KUBECONFIG content:" - grep "server:" "$KUBECONFIG" || true - fi else echo "No VIP configured, skipping kube-vip deployment" From 61484ffaadafeb309e81c825e93be14e8ee132bf Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Thu, 27 Nov 2025 09:23:16 +0100 Subject: [PATCH 21/23] Route the VIP address to the kubenode from adminhost --- bin/offline-cluster.sh | 45 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index e8966a925..067407be1 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -77,6 +77,51 @@ if [ -n "$VIP_ADDRESS" ] && [ "$VIP_ADDRESS" != "null" ]; then -e "loadbalancer_apiserver_localhost=false" \ -e "{\"supplementary_addresses_in_ssl_keys\": [\"$VIP_ADDRESS\"]}" + # ===== Configure VIP routing (if needed) ===== + # In some cloud environments, the adminhost cannot reach the VIP via ARP due to gateway routing. + # Add a static route to make VIP reachable from adminhost for kubectl commands. + echo "Checking if VIP routing configuration is needed..." + + # Test if VIP is reachable + if ! timeout 2 bash -c "cat < /dev/null > /dev/tcp/$VIP_ADDRESS/6443" 2>/dev/null; then + echo "VIP $VIP_ADDRESS is not reachable from adminhost, configuring static route..." + + # Get VIP interface and first kubenode IP from inventory + VIP_INTERFACE=$(yq eval '.[\"k8s-cluster\"].vars.kube_vip_interface // ""' "$INVENTORY_FILE" 2>/dev/null) + FIRST_KUBENODE=$(yq eval '.["kube-node"].hosts | keys | .[0]' "$INVENTORY_FILE" 2>/dev/null) + FIRST_KUBENODE_IP=$(yq eval ".all.hosts.\"$FIRST_KUBENODE\".ip" "$INVENTORY_FILE" 2>/dev/null) + + # Auto-detect interface if not specified in inventory + if [ -z "$VIP_INTERFACE" ] || [ "$VIP_INTERFACE" = "null" ]; then + echo "⚠ VIP interface not found in inventory, attempting auto-detection..." + # Find interface with route to first kubenode + VIP_INTERFACE=$(ip route get "$FIRST_KUBENODE_IP" 2>/dev/null | grep -oP 'dev \K\S+' | head -1) + fi + + if [ -n "$FIRST_KUBENODE_IP" ] && [ "$FIRST_KUBENODE_IP" != "null" ] && [ -n "$VIP_INTERFACE" ]; then + echo "Adding route: $VIP_ADDRESS via $FIRST_KUBENODE_IP dev $VIP_INTERFACE" + ip route add "$VIP_ADDRESS/32" via "$FIRST_KUBENODE_IP" dev "$VIP_INTERFACE" 2>/dev/null || true + + # Verify route was added + if ip route show | grep -q "$VIP_ADDRESS"; then + echo "✓ Static route configured successfully" + + # Test connectivity again + if timeout 2 bash -c "cat < /dev/null > /dev/tcp/$VIP_ADDRESS/6443" 2>/dev/null; then + echo "✓ VIP $VIP_ADDRESS:6443 is now reachable!" + else + echo "⚠ WARNING: VIP still not reachable after adding route" + fi + else + echo "⚠ WARNING: Failed to add static route" + fi + else + echo "⚠ WARNING: Could not determine first kubenode IP from inventory" + fi + else + echo "✓ VIP $VIP_ADDRESS:6443 is already reachable, no routing changes needed" + fi + else echo "No VIP configured, skipping kube-vip deployment" From bea385f75f6e835b7861e31a1ccc4f86f0b19d65 Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Fri, 28 Nov 2025 09:33:33 +0100 Subject: [PATCH 22/23] Disable kube-vip for CI deployment --- .../group_vars/k8s-cluster/k8s-cluster.yml | 13 ++- bin/offline-cluster.sh | 99 +++++++------------ .../main.tf | 4 +- .../outputs.tf | 26 +---- 4 files changed, 46 insertions(+), 96 deletions(-) diff --git a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml index a64b1f848..96a3e07a4 100644 --- a/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml +++ b/ansible/inventory/offline/group_vars/k8s-cluster/k8s-cluster.yml @@ -15,8 +15,8 @@ # # Reference: https://kube-vip.io/ -# Enable kube-vip -kube_vip_enabled: true +# Enable kube-vip (optional - set to true if you need HA control plane) +kube_vip_enabled: false # Enable control plane VIP (required for HA) kube_vip_controlplane_enabled: true @@ -27,18 +27,17 @@ kube_vip_controlplane_enabled: true # - Unused and not in DHCP range # - Accessible from all nodes and external clients # -# For Hetzner Cloud deployments: This is set via terraform-generated inventory.yml -# For other deployments: Uncomment and set the appropriate VIP address +# Set the appropriate VIP address for your environment # Example: If control plane nodes are 192.168.122.21-23, use 192.168.122.100 -# kube_vip_address: "192.168.122.100" +kube_vip_address: "192.168.122.100" # Network interface to bind the VIP to # Find this by running: ssh kubenode1 "ip -br addr show" # # For Hetzner Cloud: Use "enp7s0" (private network interface) -# For other environments: Check with "ip -br addr show" and uncomment below +# For other environments: Check with "ip -br addr show" # Common values: eth0, enp1s0, enp7s0 -# kube_vip_interface: "enp1s0" +kube_vip_interface: "enp1s0" # Use ARP for Layer 2 VIP management (recommended for most deployments) # Set to false only if using BGP for Layer 3 routing diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index 067407be1..4df79a066 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -49,85 +49,52 @@ ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/sync_time.yml -v ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip -# Phase 2: Deploy kube-vip AND configure loadbalancer_apiserver -# Now we define loadbalancer_apiserver via -e so kubeconfig gets updated to use VIP -# Extract VIP from inventory if defined, otherwise use a calculated value -# Handle different inventory formats by trying both paths: -# 1. YAML inventory with embedded vars: ."k8s-cluster".vars.kube_vip_address -# 2. INI inventory with group_vars: group_vars/k8s-cluster/k8s-cluster.yml +# Phase 2: Configure API endpoint (kube-vip or direct node IP) +# Check if kube-vip is enabled in the inventory INVENTORY_DIR="$(dirname "$INVENTORY_FILE")" -# Try to extract VIP from YAML inventory first (Terraform-generated format) -VIP_ADDRESS=$(yq eval '."k8s-cluster".vars.kube_vip_address // ""' "$INVENTORY_FILE" 2>/dev/null || echo "") - -# If not found, try group_vars file (static INI format) -if [ -z "$VIP_ADDRESS" ] || [ "$VIP_ADDRESS" = "null" ]; then +# Check kube_vip_enabled flag from inventory +KUBE_VIP_ENABLED=$(yq eval '.k8s-cluster.vars.kube_vip_enabled // ""' "$INVENTORY_FILE" 2>/dev/null || echo "") +if [ -z "$KUBE_VIP_ENABLED" ] || [ "$KUBE_VIP_ENABLED" = "null" ]; then GROUP_VARS_FILE="$INVENTORY_DIR/group_vars/k8s-cluster/k8s-cluster.yml" if [ -f "$GROUP_VARS_FILE" ]; then - VIP_ADDRESS=$(yq eval '.kube_vip_address // ""' "$GROUP_VARS_FILE" 2>/dev/null || echo "") + KUBE_VIP_ENABLED=$(yq eval '.kube_vip_enabled // ""' "$GROUP_VARS_FILE" 2>/dev/null || echo "") fi fi -if [ -n "$VIP_ADDRESS" ] && [ "$VIP_ADDRESS" != "null" ]; then - echo "Deploying kube-vip with VIP: $VIP_ADDRESS" - ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ - --tags kube-vip,client \ - -e "{\"loadbalancer_apiserver\": {\"address\": \"$VIP_ADDRESS\", \"port\": 6443}}" \ - -e "apiserver_loadbalancer_domain_name=$VIP_ADDRESS" \ - -e "loadbalancer_apiserver_localhost=false" \ - -e "{\"supplementary_addresses_in_ssl_keys\": [\"$VIP_ADDRESS\"]}" - - # ===== Configure VIP routing (if needed) ===== - # In some cloud environments, the adminhost cannot reach the VIP via ARP due to gateway routing. - # Add a static route to make VIP reachable from adminhost for kubectl commands. - echo "Checking if VIP routing configuration is needed..." - - # Test if VIP is reachable - if ! timeout 2 bash -c "cat < /dev/null > /dev/tcp/$VIP_ADDRESS/6443" 2>/dev/null; then - echo "VIP $VIP_ADDRESS is not reachable from adminhost, configuring static route..." - - # Get VIP interface and first kubenode IP from inventory - VIP_INTERFACE=$(yq eval '.[\"k8s-cluster\"].vars.kube_vip_interface // ""' "$INVENTORY_FILE" 2>/dev/null) - FIRST_KUBENODE=$(yq eval '.["kube-node"].hosts | keys | .[0]' "$INVENTORY_FILE" 2>/dev/null) - FIRST_KUBENODE_IP=$(yq eval ".all.hosts.\"$FIRST_KUBENODE\".ip" "$INVENTORY_FILE" 2>/dev/null) - - # Auto-detect interface if not specified in inventory - if [ -z "$VIP_INTERFACE" ] || [ "$VIP_INTERFACE" = "null" ]; then - echo "⚠ VIP interface not found in inventory, attempting auto-detection..." - # Find interface with route to first kubenode - VIP_INTERFACE=$(ip route get "$FIRST_KUBENODE_IP" 2>/dev/null | grep -oP 'dev \K\S+' | head -1) +if [ "$KUBE_VIP_ENABLED" = "true" ]; then + # ===== kube-vip HA Mode ===== + # Extract VIP address from inventory + VIP_ADDRESS=$(yq eval '.k8s-cluster.vars.kube_vip_address // ""' "$INVENTORY_FILE" 2>/dev/null || echo "") + if [ -z "$VIP_ADDRESS" ] || [ "$VIP_ADDRESS" = "null" ]; then + GROUP_VARS_FILE="$INVENTORY_DIR/group_vars/k8s-cluster/k8s-cluster.yml" + if [ -f "$GROUP_VARS_FILE" ]; then + VIP_ADDRESS=$(yq eval '.kube_vip_address // ""' "$GROUP_VARS_FILE" 2>/dev/null || echo "") fi + fi - if [ -n "$FIRST_KUBENODE_IP" ] && [ "$FIRST_KUBENODE_IP" != "null" ] && [ -n "$VIP_INTERFACE" ]; then - echo "Adding route: $VIP_ADDRESS via $FIRST_KUBENODE_IP dev $VIP_INTERFACE" - ip route add "$VIP_ADDRESS/32" via "$FIRST_KUBENODE_IP" dev "$VIP_INTERFACE" 2>/dev/null || true - - # Verify route was added - if ip route show | grep -q "$VIP_ADDRESS"; then - echo "✓ Static route configured successfully" - - # Test connectivity again - if timeout 2 bash -c "cat < /dev/null > /dev/tcp/$VIP_ADDRESS/6443" 2>/dev/null; then - echo "✓ VIP $VIP_ADDRESS:6443 is now reachable!" - else - echo "⚠ WARNING: VIP still not reachable after adding route" - fi - else - echo "⚠ WARNING: Failed to add static route" - fi - else - echo "⚠ WARNING: Could not determine first kubenode IP from inventory" - fi + if [ -n "$VIP_ADDRESS" ] && [ "$VIP_ADDRESS" != "null" ]; then + echo "Deploying kube-vip with VIP: $VIP_ADDRESS" + ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ + --tags kube-vip,client \ + -e "{\"loadbalancer_apiserver\": {\"address\": \"$VIP_ADDRESS\", \"port\": 6443}}" \ + -e "apiserver_loadbalancer_domain_name=$VIP_ADDRESS" \ + -e "loadbalancer_apiserver_localhost=false" \ + -e "{\"supplementary_addresses_in_ssl_keys\": [\"$VIP_ADDRESS\"]}" + + export KUBECONFIG="$ANSIBLE_DIR/inventory/offline/artifacts/admin.conf" + echo "✓ kube-vip deployed with VIP: $VIP_ADDRESS" else - echo "✓ VIP $VIP_ADDRESS:6443 is already reachable, no routing changes needed" + echo "ERROR: kube_vip_enabled=true but no VIP address found in inventory!" + exit 1 fi - else - echo "No VIP configured, skipping kube-vip deployment" - - # Still export KUBECONFIG for nginx localhost load balancer + # ===== Direct Node IP Mode (No kube-vip) ===== + # Phase 1 already configured kubeconfig with first node IP during cluster bootstrap + # No additional configuration needed + echo "kube-vip disabled, using direct node IP from cluster bootstrap" export KUBECONFIG="$ANSIBLE_DIR/inventory/offline/artifacts/admin.conf" - echo "Exported KUBECONFIG=$KUBECONFIG (using nginx localhost load balancer)" + echo "✓ Kubernetes API endpoint configured during Phase 1 bootstrap" fi # Deploy all other services which don't run in kubernetes. diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf index 855847ff2..fdb3a5d14 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf @@ -151,7 +151,7 @@ resource "hcloud_server" "adminhost" { server_type = local.medium_server_type network { network_id = hcloud_network.main.id - # Reserve .10 for adminhost so VIP (.100) stays free for kube-vip + # Reserve .10 for adminhost (deterministic IP allocation) ip = cidrhost(hcloud_network_subnet.main.ip_range, 10) } } @@ -176,7 +176,7 @@ resource "hcloud_server" "assethost" { } network { network_id = hcloud_network.main.id - # Reserve .11 for assethost to avoid consuming the kube-vip range + # Reserve .11 for assethost ip = cidrhost(hcloud_network_subnet.main.ip_range, 11) } } diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf index aee3016cf..19c73eb7d 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf @@ -37,6 +37,7 @@ output "adminhost" { sensitive = true value = hcloud_server.adminhost.ipv4_address } + # output format that a static inventory file expects output "static-inventory" { sensitive = true @@ -99,27 +100,10 @@ output "static-inventory" { docker_dns_servers_strict = false upstream_dns_servers = [tolist(hcloud_server.adminhost.network)[0].ip] - # kube-vip configuration for control plane HA - # Network: 10.1.1.0/24 (Hetzner Cloud private network) - # VIP: 10.1.1.100 - # - # IMPORTANT: kube_vip_interface MUST be specified for Hetzner Cloud - # Without it, kube-vip defaults to eth0, but Hetzner uses enp7s0 for private network - kube_vip_enabled = true - kube_vip_controlplane_enabled = true - kube_vip_arp_enabled = true - kube_vip_services_enabled = false - kube_vip_interface = "enp7s0" # Hetzner Cloud private network interface - kube_vip_address = cidrhost(hcloud_network_subnet.main.ip_range, 100) - kube_proxy_strict_arp = true - - # Leader election timing (fix for GitHub issue #453) - # Increased timeouts prevent "context deadline exceeded" during lease acquisition - # Default values are too aggressive for slower etcd/API responses - kube_vip_leader_election_enabled = true - kube_vip_leaseduration = 30 # seconds (default: 15) - kube_vip_renewdeadline = 20 # seconds (default: 10) - kube_vip_retryperiod = 4 # seconds (default: 2) + # kube-vip DISABLED for Hetzner Cloud CI testing + # Reason: Hetzner Cloud's /32 + gateway networking is incompatible with ARP-based VIP + # Using direct first kubenode IP as API endpoint instead + kube_vip_enabled = false } } cassandra = { From 59d71ace7ab65789ecd2c6b1f653c72a0dd2661c Mon Sep 17 00:00:00 2001 From: sghosh23 Date: Fri, 28 Nov 2025 11:51:27 +0100 Subject: [PATCH 23/23] Fix sonarCloud complains --- bin/offline-cluster.sh | 54 +++++++++++++++++++++--------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/bin/offline-cluster.sh b/bin/offline-cluster.sh index 4df79a066..ff53e36de 100755 --- a/bin/offline-cluster.sh +++ b/bin/offline-cluster.sh @@ -9,18 +9,18 @@ set -x ls $ANSIBLE_DIR/inventory/offline -if [ -f "$ANSIBLE_DIR/inventory/offline/hosts.ini" ]; then +if [[ -f "$ANSIBLE_DIR/inventory/offline/hosts.ini" ]]; then INVENTORY_FILE="$ANSIBLE_DIR/inventory/offline/hosts.ini" -elif [ -f "$ANSIBLE_DIR/inventory/offline/inventory.yml" ]; then +elif [[ -f "$ANSIBLE_DIR/inventory/offline/inventory.yml" ]]; then INVENTORY_FILE="$ANSIBLE_DIR/inventory/offline/inventory.yml" else - echo "No inventory file in ansible/inventory/offline/. Please supply an $ANSIBLE_DIR/inventory/offline/inventory.yml or $ANSIBLE_DIR/inventory/offline/hosts.ini" - exit -1 + echo "No inventory file in ansible/inventory/offline/. Please supply an $ANSIBLE_DIR/inventory/offline/inventory.yml or $ANSIBLE_DIR/inventory/offline/hosts.ini" >&2 + exit 1 fi -if [ -f "$ANSIBLE_DIR/inventory/offline/hosts.ini" ] && [ -f "$ANSIBLE_DIR/inventory/offline/inventory.yml" ]; then - echo "Both hosts.ini and inventory.yml provided in ansible/inventory/offline! Pick only one." - exit -1 +if [[ -f "$ANSIBLE_DIR/inventory/offline/hosts.ini" ]] && [[ -f "$ANSIBLE_DIR/inventory/offline/inventory.yml" ]]; then + echo "Both hosts.ini and inventory.yml provided in ansible/inventory/offline! Pick only one." >&2 + exit 1 fi echo "using ansible inventory: $INVENTORY_FILE" @@ -31,22 +31,22 @@ echo "using ansible inventory: $INVENTORY_FILE" # other hosts to fetch debs from it. # # If this step fails partway, and you know that parts of it completed, the `--skip-tags debs,binaries,containers,containers-helm,containers-other` tags may come in handy. -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/setup-offline-sources.yml +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/setup-offline-sources.yml" # Run kubespray until docker is installed and runs. This allows us to preseed the docker containers that # are part of the offline bundle -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml --tags bastion,bootstrap-os,preinstall,container-engine +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/kubernetes.yml" --tags bastion,bootstrap-os,preinstall,container-engine # With ctr being installed on all nodes that need it, seed all container images: -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/seed-offline-containerd.yml +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/seed-offline-containerd.yml" # Install NTP -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/sync_time.yml -v +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/sync_time.yml" -v # Run the rest of kubespray. This should bootstrap a kubernetes cluster successfully: # Phase 1: Bootstrap WITHOUT loadbalancer_apiserver so kubeadm uses node IP # We skip kube-vip to avoid race condition with VIP -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/kubernetes.yml" \ --skip-tags bootstrap-os,preinstall,container-engine,multus,kube-vip # Phase 2: Configure API endpoint (kube-vip or direct node IP) @@ -55,27 +55,27 @@ INVENTORY_DIR="$(dirname "$INVENTORY_FILE")" # Check kube_vip_enabled flag from inventory KUBE_VIP_ENABLED=$(yq eval '.k8s-cluster.vars.kube_vip_enabled // ""' "$INVENTORY_FILE" 2>/dev/null || echo "") -if [ -z "$KUBE_VIP_ENABLED" ] || [ "$KUBE_VIP_ENABLED" = "null" ]; then +if [[ -z "$KUBE_VIP_ENABLED" ]] || [[ "$KUBE_VIP_ENABLED" = "null" ]]; then GROUP_VARS_FILE="$INVENTORY_DIR/group_vars/k8s-cluster/k8s-cluster.yml" - if [ -f "$GROUP_VARS_FILE" ]; then + if [[ -f "$GROUP_VARS_FILE" ]]; then KUBE_VIP_ENABLED=$(yq eval '.kube_vip_enabled // ""' "$GROUP_VARS_FILE" 2>/dev/null || echo "") fi fi -if [ "$KUBE_VIP_ENABLED" = "true" ]; then +if [[ "$KUBE_VIP_ENABLED" = "true" ]]; then # ===== kube-vip HA Mode ===== # Extract VIP address from inventory VIP_ADDRESS=$(yq eval '.k8s-cluster.vars.kube_vip_address // ""' "$INVENTORY_FILE" 2>/dev/null || echo "") - if [ -z "$VIP_ADDRESS" ] || [ "$VIP_ADDRESS" = "null" ]; then + if [[ -z "$VIP_ADDRESS" ]] || [[ "$VIP_ADDRESS" = "null" ]]; then GROUP_VARS_FILE="$INVENTORY_DIR/group_vars/k8s-cluster/k8s-cluster.yml" - if [ -f "$GROUP_VARS_FILE" ]; then + if [[ -f "$GROUP_VARS_FILE" ]]; then VIP_ADDRESS=$(yq eval '.kube_vip_address // ""' "$GROUP_VARS_FILE" 2>/dev/null || echo "") fi fi - if [ -n "$VIP_ADDRESS" ] && [ "$VIP_ADDRESS" != "null" ]; then + if [[ -n "$VIP_ADDRESS" ]] && [[ "$VIP_ADDRESS" != "null" ]]; then echo "Deploying kube-vip with VIP: $VIP_ADDRESS" - ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/kubernetes.yml \ + ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/kubernetes.yml" \ --tags kube-vip,client \ -e "{\"loadbalancer_apiserver\": {\"address\": \"$VIP_ADDRESS\", \"port\": 6443}}" \ -e "apiserver_loadbalancer_domain_name=$VIP_ADDRESS" \ @@ -85,7 +85,7 @@ if [ "$KUBE_VIP_ENABLED" = "true" ]; then export KUBECONFIG="$ANSIBLE_DIR/inventory/offline/artifacts/admin.conf" echo "✓ kube-vip deployed with VIP: $VIP_ADDRESS" else - echo "ERROR: kube_vip_enabled=true but no VIP address found in inventory!" + echo "ERROR: kube_vip_enabled=true but no VIP address found in inventory!" >&2 exit 1 fi else @@ -98,14 +98,14 @@ else fi # Deploy all other services which don't run in kubernetes. -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/cassandra.yml -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/elasticsearch.yml -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/minio.yml -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/postgresql-deploy.yml +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/cassandra.yml" +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/elasticsearch.yml" +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/minio.yml" +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/postgresql-deploy.yml" # Uncomment to deploy external RabbitMQ (temporarily commented out until implemented in CD), PS. remote --skip-tags=rabbitmq-external from the next section -#ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/roles/rabbitmq-cluster/tasks/configure_dns.yml -#ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/rabbitmq.yml +#ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/roles/rabbitmq-cluster/tasks/configure_dns.yml" +#ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/rabbitmq.yml" # create helm values that tell our helm charts what the IP addresses of cassandra, elasticsearch and minio are: -ansible-playbook -i $INVENTORY_FILE $ANSIBLE_DIR/helm_external.yml --skip-tags=rabbitmq-external +ansible-playbook -i "$INVENTORY_FILE" "$ANSIBLE_DIR/helm_external.yml" --skip-tags=rabbitmq-external